Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. <TabCheck text="Pin" fx:id="chkPin">
  2. <content>
  3. <VBox spacing="10">
  4. <HBox spacing="10.0">
  5. <children>
  6. <Label prefHeight="21.0" prefWidth="120.0" text="Timeout activity:" />
  7. <MySpinner fx:id="spinTimeoutPinMin" editable="true" initialValue="0" max="1000" min="0" prefHeight="31.0" prefWidth="122.0" />
  8. <Label text="-" />
  9. <MySpinner fx:id="spinTimeoutPinMax" editable="true" initialValue="0" max="1000" min="0" prefHeight="31.0" prefWidth="122.0" />
  10. </children>
  11. </HBox>
  12. <HBox spacing="10.0">
  13. <children>
  14. <Label prefHeight="21.0" prefWidth="120.0" text="Action limit:" />
  15. <MySpinner fx:id="spinPinMin" editable="true" initialValue="5" max="9999" min="1" prefHeight="31.0" prefWidth="88.0" />
  16. <Label text="-" />
  17. <MySpinner fx:id="spinPinMax" editable="true" initialValue="15" max="9999" min="1" prefHeight="31.0" prefWidth="88.0" />
  18. <Button fx:id="btnPromo" onAction="#btnPromo_click" text="Promo" />
  19. </children>
  20. </HBox>
  21. <padding>
  22. <Insets left="10" top="10.0" />
  23. </padding>
  24. <VBox maxHeight="1.7976931348623157E308" spacing="10.0" VBox.vgrow="ALWAYS">
  25. <Separator />
  26. <HBox spacing="10.0" VBox.vgrow="ALWAYS">
  27. <children>
  28. <VBox>
  29. <children>
  30. <Label text="Boards:" />
  31. <ListView fx:id="lstBoards" style="-fx-border-color: #828790;" VBox.vgrow="ALWAYS" />
  32. </children>
  33. </VBox>
  34. <VBox HBox.hgrow="ALWAYS">
  35. <children>
  36. <HBox spacing="5.0" alignment="CENTER_LEFT">
  37. <Label text="Queries:" />
  38. <MyHelpToolTip fx:id="ttHelp_pin" fitHeight="18.0" fitWidth="18.0"/>
  39. </HBox>
  40. <TextArea fx:id="txtQueries_pin" VBox.vgrow="ALWAYS" />
  41. </children>
  42. </VBox>
  43. </children>
  44. </HBox>
  45. <padding>
  46. <Insets left="10.0" right="10.0" />
  47. </padding>
  48. </VBox>
  49. </VBox>
  50. </content>
  51. </TabCheck>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement