Skip to content
Snippets Groups Projects
Commit 6c4e7fdd authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #9, convert to utf-8, refractoring

parent 19cbec3e
No related branches found
No related tags found
No related merge requests found
Showing
with 0 additions and 90 deletions
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
File deleted
<?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>
File deleted
File deleted
File deleted
File deleted
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.text.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="userInterface.TimePickerController">
<children>
<HBox fx:id="hbox" alignment="CENTER" />
</children>
</AnchorPane>
File deleted
File deleted
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment