Skip to content
Snippets Groups Projects
Select Git revision
  • 27ced22e6500c9b7490d928b4d2db03df327a798
  • master default
  • renovate/assertj-core.version
  • renovate/major-fontawesome.version
  • renovate/datatables.version
  • renovate/opencsv.version
  • renovate/org.springframework.boot-spring-boot-starter-parent-3.x
  • renovate/junit-jupiter-engine.version
  • renovate/selenium.version
  • renovate/testcontainer.version
  • demo
  • v1_8_1
  • v2.18.1
  • v2.18.0
  • v2.17.2
  • v2.17.1
  • v2.17.0
  • v2.16.1
  • v2.16.0
  • v2.15.1
  • v2.15.0
  • v2.14.0
  • v2.13.0
  • v2.12.0
  • v2.11.0
  • v2.10.0
  • v2.9.2
  • v2.9.1
  • v2.9.0
  • v2.8.0
  • testPipeline2
  • v2.7.0
32 results

base_en.properties

Blame
  • WebApiSettings.fxml 3.33 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    
    <?import de.thecodelabs.utils.ui.scene.input.NumberTextField?>
    <?import javafx.geometry.Insets?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" spacing="14.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
        <children>
            <Label text="%webapi-settings.server" underline="true" />
            <HBox alignment="CENTER_LEFT" spacing="14.0">
                <children>
                    <Label alignment="CENTER_RIGHT" prefWidth="150.0" text="%webapi.settings.server.enable" />
                    <CheckBox fx:id="activeCheckbox" mnemonicParsing="false" text="%webapi.settings.server.enabled" />
                </children>
            </HBox>
            <HBox alignment="CENTER_LEFT" spacing="14.0">
                <children>
                    <Label alignment="CENTER_RIGHT" prefWidth="150.0" text="%webapi.settings.server.port" />
                    <NumberTextField fx:id="portTextField" />
                </children>
            </HBox>
            <Label text="%webapi.settings.server.restart">
                <padding>
                    <Insets left="164.0" />
                </padding>
            </Label>
          <Separator prefWidth="200.0" />
          <Label text="%webapi-settings.remote" underline="true" />
          <HBox spacing="14.0" VBox.vgrow="ALWAYS">
             <children>
                <VBox spacing="14.0">
                   <children>
                      <ListView fx:id="remoteListView" VBox.vgrow="ALWAYS" />
                      <HBox spacing="14.0">
                         <children>
                            <Button fx:id="remoteAddButton" onAction="#onRemoteAddButton" maxWidth="1.7976931348623157E308" mnemonicParsing="false" text="%webapi-settings.remote.add" HBox.hgrow="ALWAYS" />
                            <Button fx:id="remoteDeleteButton" onAction="#onRemoteDeleteButton" maxWidth="1.7976931348623157E308" mnemonicParsing="false" text="%webapi-settings.remote.remove" HBox.hgrow="ALWAYS" />
                         </children>
                      </HBox>
                   </children>
                </VBox>
                <VBox spacing="14.0">
                   <children>
                      <HBox alignment="CENTER_LEFT" spacing="14.0">
                         <children>
                            <Label alignment="CENTER_RIGHT" prefWidth="100.0" text="%webapi-settings.remote.name" />
                            <TextField fx:id="remoteNameTextField" />
                         </children>
                      </HBox>
                      <HBox alignment="CENTER_LEFT" spacing="14.0">
                         <children>
                            <Label alignment="CENTER_RIGHT" prefWidth="100.0" text="%webapi-settings.remote.address" />
                            <TextField fx:id="remoteAddressTextField" />
                         </children>
                      </HBox>
                      <HBox alignment="CENTER_LEFT" spacing="14.0">
                         <children>
                            <Label alignment="CENTER_RIGHT" prefWidth="100.0" text="%webapi-settings.remote.port" />
                            <NumberTextField fx:id="remotePortTextField" />
                         </children>
                      </HBox>
                   </children>
                </VBox>
             </children>
          </HBox>
        </children>
        <padding>
            <Insets bottom="14.0" left="14.0" right="14.0" top="14.0" />
        </padding>
    </VBox>