| 
 | 1 | +<?xml version="1.0" encoding="UTF-8"?>  | 
 | 2 | + | 
 | 3 | +<?import javafx.geometry.Insets?>  | 
 | 4 | +<?import javafx.scene.control.Button?>  | 
 | 5 | +<?import javafx.scene.control.ButtonType?>  | 
 | 6 | +<?import javafx.scene.control.DialogPane?>  | 
 | 7 | +<?import javafx.scene.control.Label?>  | 
 | 8 | +<?import javafx.scene.control.ListView?>  | 
 | 9 | +<?import javafx.scene.control.Separator?>  | 
 | 10 | +<?import javafx.scene.layout.HBox?>  | 
 | 11 | +<?import javafx.scene.layout.VBox?>  | 
 | 12 | + | 
 | 13 | +<DialogPane minHeight="450.0" minWidth="375.0" prefHeight="450.0" prefWidth="407.0" xmlns="http://javafx.com/javafx/8.0.172-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="org.jabref.gui.contentselector.ContentSelectorDialogView">  | 
 | 14 | +    <content>  | 
 | 15 | +        <VBox>  | 
 | 16 | +         <children>  | 
 | 17 | +            <Label prefHeight="27.0" prefWidth="108.0" text="Field names" />  | 
 | 18 | +            <HBox prefHeight="140.0" prefWidth="385.0">  | 
 | 19 | +               <children>  | 
 | 20 | +                  <ListView fx:id="fieldNamesListView" prefHeight="140.0" prefWidth="297.0"/>  | 
 | 21 | +                  <VBox alignment="TOP_CENTER" prefHeight="200.0" prefWidth="100.0">  | 
 | 22 | +                     <children>  | 
 | 23 | +                        <Button fx:id="addFieldNameButton" alignment="CENTER" mnemonicParsing="false" prefHeight="26.0" prefWidth="72.0" text="%Add" onAction="#addNewFieldName">  | 
 | 24 | +                           <VBox.margin>  | 
 | 25 | +                              <Insets top="5.0" />  | 
 | 26 | +                           </VBox.margin>  | 
 | 27 | +                        </Button>  | 
 | 28 | +                        <Button fx:id="removeFieldNameButton" mnemonicParsing="false" text="%Remove" onAction="#removeFieldName">  | 
 | 29 | +                           <VBox.margin>  | 
 | 30 | +                              <Insets top="5.0" />  | 
 | 31 | +                           </VBox.margin>  | 
 | 32 | +                        </Button>  | 
 | 33 | +                     </children>  | 
 | 34 | +                  </VBox>  | 
 | 35 | +               </children>  | 
 | 36 | +            </HBox>  | 
 | 37 | +            <Separator prefWidth="200.0">  | 
 | 38 | +               <VBox.margin>  | 
 | 39 | +                  <Insets top="20.0" />  | 
 | 40 | +               </VBox.margin>  | 
 | 41 | +            </Separator>  | 
 | 42 | +             <Label prefHeight="27.0" prefWidth="108.0" text="Keywords" />  | 
 | 43 | +             <HBox prefHeight="140.0" prefWidth="385.0">  | 
 | 44 | +                 <children>  | 
 | 45 | +                     <ListView fx:id="keywordsListView" prefHeight="140.0" prefWidth="297.0" />  | 
 | 46 | +                     <VBox alignment="TOP_CENTER" prefHeight="200.0" prefWidth="100.0">  | 
 | 47 | +                         <children>  | 
 | 48 | +                             <Button fx:id="addKeywordButton" alignment="CENTER" mnemonicParsing="false" prefHeight="26.0" prefWidth="72.0" text="%Add" onAction="#addNewKeyword">  | 
 | 49 | +                                 <VBox.margin>  | 
 | 50 | +                                     <Insets top="5.0" />  | 
 | 51 | +                                 </VBox.margin>  | 
 | 52 | +                             </Button>  | 
 | 53 | +                             <Button fx:id="removeKeywordButton" mnemonicParsing="false" text="%Remove" onAction="#removeKeyword">  | 
 | 54 | +                                 <VBox.margin>  | 
 | 55 | +                                     <Insets top="5.0" />  | 
 | 56 | +                                 </VBox.margin>  | 
 | 57 | +                             </Button>  | 
 | 58 | +                         </children>  | 
 | 59 | +                     </VBox>  | 
 | 60 | +                 </children>  | 
 | 61 | +             </HBox>  | 
 | 62 | +         </children>  | 
 | 63 | +        </VBox>  | 
 | 64 | +    </content>  | 
 | 65 | +    <ButtonType fx:id="saveButton" buttonData="OK_DONE" text="%Save" />  | 
 | 66 | +    <ButtonType fx:constant="CANCEL" />  | 
 | 67 | +</DialogPane>  | 
0 commit comments