Skip to content
Snippets Groups Projects
Select Git revision
  • 01210d806f74d2dfb7f8dc29485415d6dd7ba96c
  • master default
  • 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
29 results

settings.js

Blame
  • InsertTimeGUI.fxml 3.00 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    
    <?import javafx.scene.control.Button?>
    <?import javafx.scene.control.ComboBox?>
    <?import javafx.scene.control.DatePicker?>
    <?import javafx.scene.control.Label?>
    <?import javafx.scene.layout.AnchorPane?>
    <?import javafx.scene.text.Font?>
    
    <AnchorPane prefHeight="400.0" prefWidth="540.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="userInterface.InsertTimeController">
       <children>
          <Label layoutX="35.0" layoutY="128.0" text="Startdatum:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <DatePicker fx:id="datePicker1" layoutX="151.0" layoutY="129.0" prefHeight="25.0" prefWidth="134.0" />
          <Label layoutX="313.0" layoutY="128.0" text="Startzeit:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <AnchorPane layoutX="409.0" layoutY="105.0">
             <children>
                <fx:include fx:id="timePicker1" source="TimePicker.fxml" />
             </children>
          </AnchorPane>
          <AnchorPane layoutX="407.0" layoutY="195.0">
             <children>
                <fx:include fx:id="timePicker2" source="TimePicker.fxml" />
             </children>
          </AnchorPane>
          <Label layoutX="321.0" layoutY="218.0" text="Endzeit:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <DatePicker fx:id="datePicker2" layoutX="154.0" layoutY="219.0" prefHeight="25.0" prefWidth="134.0" />
          <Label layoutX="48.0" layoutY="218.0" text="Enddatum:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <Label layoutX="157.0" layoutY="299.0" text="Arbeitszeit:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <Label fx:id="labelDuration" layoutX="284.0" layoutY="299.0" text="0 h 0 min 0 sek">
             <font>
                <Font size="18.0" />
             </font>
          </Label>
          <Button fx:id="buttonAdd" layoutX="174.0" layoutY="348.0" mnemonicParsing="false" onAction="#buttonAdd" text="Hinzufügen">
             <font>
                <Font name="System Bold" size="13.0" />
             </font>
          </Button>
          <Button fx:id="buttonCancel" layoutX="302.0" layoutY="348.0" mnemonicParsing="false" onAction="#buttonCancel" text="Abbrechen">
             <font>
                <Font name="System Bold" size="13.0" />
             </font>
          </Button>
          <Label layoutX="35.0" layoutY="42.0" text="Projekt:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <Label layoutX="278.0" layoutY="42.0" text="Task:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <ComboBox fx:id="comboBoxProject" editable="true" layoutX="114.0" layoutY="43.0" prefWidth="150.0" />
          <ComboBox fx:id="comboBoxTask" editable="true" layoutX="332.0" layoutY="43.0" prefWidth="150.0" />
       </children>
    </AnchorPane>