-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdedc08
commit f622923
Showing
3 changed files
with
130 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,59 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import java.net.URL?> | ||
<?import javafx.geometry.Insets?> | ||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.layout.*?> | ||
<?import javafx.scene.control.Label?> | ||
<?import javafx.scene.control.ListView?> | ||
<?import javafx.scene.layout.BorderPane?> | ||
<?import javafx.scene.layout.HBox?> | ||
<?import javafx.scene.layout.VBox?> | ||
<?import org.controlsfx.control.PropertySheet?> | ||
<?import java.net.URL?> | ||
<AnchorPane id="AnchorPane" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.mirkosertic.desktopsearch.ConfigurationController"> | ||
<children> | ||
<VBox> | ||
<children> | ||
<PropertySheet fx:id="propertySheet" minHeight="400.0" mode="CATEGORY" /> | ||
<HBox alignment="TOP_RIGHT" styleClass="dialogButtonArea" VBox.vgrow="NEVER"> | ||
<children> | ||
<Button fx:id="buttonOk" alignment="CENTER" contentDisplay="CENTER" maxWidth="120.0" minWidth="120.0" mnemonicParsing="false" prefWidth="120.0" text="Ok" textAlignment="CENTER" /> | ||
</children> | ||
<padding> | ||
<Insets bottom="10.0" right="10.0" top="10.0" /> | ||
</padding> | ||
<VBox.margin> | ||
<Insets top="10.0" /> | ||
</VBox.margin> | ||
</HBox> | ||
</children> | ||
<padding> | ||
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" /> | ||
</padding> | ||
</VBox> | ||
</children> | ||
<stylesheets> | ||
<URL value="@JMetroLightTheme.css" /> | ||
<URL value="@userinterface.css" /> | ||
</stylesheets> | ||
<opaqueInsets> | ||
<Insets /> | ||
</opaqueInsets> | ||
</AnchorPane> | ||
|
||
<BorderPane minHeight="500.0" minWidth="400.0" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.mirkosertic.desktopsearch.ConfigurationController"> | ||
<bottom> | ||
<HBox alignment="TOP_RIGHT" styleClass="dialogButtonArea" BorderPane.alignment="CENTER"> | ||
<children> | ||
<Button fx:id="buttonOk" alignment="CENTER" contentDisplay="CENTER" maxWidth="120.0" minWidth="120.0" mnemonicParsing="false" prefWidth="120.0" text="Ok" textAlignment="CENTER" /> | ||
</children> | ||
<padding> | ||
<Insets bottom="10.0" right="10.0" top="10.0" /> | ||
</padding> | ||
</HBox> | ||
</bottom> | ||
<center> | ||
<PropertySheet fx:id="propertySheet" mode="CATEGORY" modeSwitcherVisible="false" searchBoxVisible="false" BorderPane.alignment="CENTER" /> | ||
</center> | ||
<stylesheets> | ||
<URL value="@JMetroLightTheme.css" /> | ||
<URL value="@userinterface.css" /> | ||
</stylesheets> | ||
<top> | ||
<BorderPane BorderPane.alignment="CENTER"> | ||
<right> | ||
<VBox BorderPane.alignment="CENTER"> | ||
<children> | ||
<Button fx:id="buttonAdd" maxHeight="25.0" maxWidth="25.0" minHeight="25.0" minWidth="25.0" mnemonicParsing="false" prefHeight="25.0" prefWidth="25.0" styleClass="buttonAdd" text="+" /> | ||
<Button fx:id="buttonRemove" maxHeight="25.0" maxWidth="25.0" minHeight="25.0" minWidth="25.0" mnemonicParsing="false" prefHeight="25.0" prefWidth="25.0" styleClass="buttonRemove" text="-"> | ||
<VBox.margin> | ||
<Insets top="5.0" /> | ||
</VBox.margin> | ||
</Button> | ||
</children> | ||
<padding> | ||
<Insets left="5.0" /> | ||
</padding> | ||
</VBox> | ||
</right> | ||
<center> | ||
<ListView fx:id="indexedDirectories" prefHeight="100.0" BorderPane.alignment="CENTER" /> | ||
</center> | ||
<top> | ||
<Label text="Configured crawl locations:" BorderPane.alignment="TOP_LEFT" /> | ||
</top> | ||
<padding> | ||
<Insets bottom="5.0" left="5.0" right="5.0" /> | ||
</padding> | ||
</BorderPane> | ||
</top> | ||
</BorderPane> |