summaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/com/mavlushechka/notaryqueue/helper.fxml14
-rw-r--r--src/main/resources/com/mavlushechka/notaryqueue/main.fxml22
-rw-r--r--src/main/resources/com/mavlushechka/notaryqueue/monitor.fxml29
-rw-r--r--src/main/resources/com/mavlushechka/notaryqueue/notary.fxml6
4 files changed, 71 insertions, 0 deletions
diff --git a/src/main/resources/com/mavlushechka/notaryqueue/helper.fxml b/src/main/resources/com/mavlushechka/notaryqueue/helper.fxml
new file mode 100644
index 0000000..c9ac27c
--- /dev/null
+++ b/src/main/resources/com/mavlushechka/notaryqueue/helper.fxml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.scene.control.ListView?>
+<?import javafx.scene.layout.AnchorPane?>
+<?import javafx.scene.text.Text?>
+
+<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.mavlushechka.notaryqueue.controller.HelperController">
+ <ListView fx:id="waitingClients" layoutX="15.0" layoutY="30.0" prefHeight="275.0" prefWidth="175.0" />
+ <ListView fx:id="processingClients" layoutX="215.0" layoutY="30.0" prefHeight="275.0" prefWidth="175.0" />
+ <ListView fx:id="readyClients" layoutX="415.0" layoutY="30.0" prefHeight="275.0" prefWidth="175.0" />
+ <Text layoutX="67.0" layoutY="28.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Kutilmoqda" />
+ <Text layoutX="259.0" layoutY="28.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Bajarilmoqda" />
+ <Text layoutX="482.0" layoutY="28.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Tayyor" />
+</AnchorPane>
diff --git a/src/main/resources/com/mavlushechka/notaryqueue/main.fxml b/src/main/resources/com/mavlushechka/notaryqueue/main.fxml
new file mode 100644
index 0000000..b3529b0
--- /dev/null
+++ b/src/main/resources/com/mavlushechka/notaryqueue/main.fxml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.scene.control.Button?>
+<?import javafx.scene.layout.AnchorPane?>
+<?import javafx.scene.layout.VBox?>
+<?import javafx.scene.text.Font?>
+<?import javafx.scene.text.Text?>
+
+<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/18"
+ xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.mavlushechka.notaryqueue.controller.MainController">
+ <Text layoutX="238.0" layoutY="116.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Kimsiz?">
+ <font>
+ <Font size="36.0"/>
+ </font>
+ </Text>
+ <VBox alignment="TOP_CENTER" layoutY="172.0" prefHeight="150.0" prefWidth="600.0" spacing="20.0">
+ <Button mnemonicParsing="false" onAction="#onNotaryButtonClick" prefHeight="26.0" prefWidth="149.0" text="Notarius"/>
+ <Button mnemonicParsing="false" onAction="#onHelperButtonClick" text="Notarius yordamchisi"/>
+ <Button mnemonicParsing="false" onAction="#onMonitorButtonClick" prefHeight="26.0" prefWidth="149.0" text="Monitor"/>
+ <Button mnemonicParsing="false" onAction="#onTabletButtonClick" prefHeight="26.0" prefWidth="149.0" text="Planshet"/>
+ </VBox>
+</AnchorPane>
diff --git a/src/main/resources/com/mavlushechka/notaryqueue/monitor.fxml b/src/main/resources/com/mavlushechka/notaryqueue/monitor.fxml
new file mode 100644
index 0000000..473b7a5
--- /dev/null
+++ b/src/main/resources/com/mavlushechka/notaryqueue/monitor.fxml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.scene.control.ListView?>
+<?import javafx.scene.layout.AnchorPane?>
+<?import javafx.scene.text.Font?>
+<?import javafx.scene.text.Text?>
+
+<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="720.0" prefWidth="1280.0" xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.mavlushechka.notaryqueue.controller.HelperController">
+ <ListView fx:id="waitingClients" layoutX="20.0" layoutY="35.0" prefHeight="500.0" prefWidth="400.0" />
+ <ListView fx:id="processingClients" layoutX="440.0" layoutY="35.0" prefHeight="500.0" prefWidth="400.0" />
+ <ListView fx:id="readyClients" layoutX="860.0" layoutY="35.0" prefHeight="500.0" prefWidth="400.0" />
+ <Text layoutX="171.0" layoutY="29.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Kutilmoqda">
+ <font>
+ <Font size="18.0" />
+ </font></Text>
+ <Text layoutX="583.0" layoutY="28.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Bajarilmoqda">
+ <font>
+ <Font size="18.0" />
+ </font></Text>
+ <Text layoutX="1032.0" layoutY="28.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Tayyor">
+ <font>
+ <Font size="18.0" />
+ </font></Text>
+ <Text fx:id="roomInvitationText" layoutX="59.0" layoutY="640.0" strokeType="OUTSIDE" strokeWidth="0.0" text="01. Shahzoda notarius xonasiga kiring!">
+ <font>
+ <Font size="64.0" />
+ </font>
+ </Text>
+</AnchorPane>
diff --git a/src/main/resources/com/mavlushechka/notaryqueue/notary.fxml b/src/main/resources/com/mavlushechka/notaryqueue/notary.fxml
new file mode 100644
index 0000000..db61f6e
--- /dev/null
+++ b/src/main/resources/com/mavlushechka/notaryqueue/notary.fxml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.scene.layout.AnchorPane?>
+
+
+<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/18"/>