Compare commits
2 Commits
dcf8749a43
...
22618081ee
Author | SHA1 | Date | |
---|---|---|---|
22618081ee | |||
aae24ce058 |
78
.gitignore
vendored
Normal file
78
.gitignore
vendored
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
### Java template
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Mobile Tools for Java (J2ME)
|
||||||
|
.mtj.tmp/
|
||||||
|
|
||||||
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
|
hs_err_pid*
|
||||||
|
### JetBrains template
|
||||||
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
|
||||||
|
|
||||||
|
*.iml
|
||||||
|
|
||||||
|
## Directory-based project format:
|
||||||
|
.idea/
|
||||||
|
# if you remove the above rule, at least ignore the following:
|
||||||
|
|
||||||
|
# User-specific stuff:
|
||||||
|
# .idea/workspace.xml
|
||||||
|
# .idea/tasks.xml
|
||||||
|
# .idea/dictionaries
|
||||||
|
|
||||||
|
# Sensitive or high-churn files:
|
||||||
|
# .idea/dataSources.ids
|
||||||
|
# .idea/dataSources.xml
|
||||||
|
# .idea/sqlDataSources.xml
|
||||||
|
# .idea/dynamic.xml
|
||||||
|
# .idea/uiDesigner.xml
|
||||||
|
|
||||||
|
# Gradle:
|
||||||
|
# .idea/gradle.xml
|
||||||
|
# .idea/libraries
|
||||||
|
|
||||||
|
# Mongo Explorer plugin:
|
||||||
|
# .idea/mongoSettings.xml
|
||||||
|
|
||||||
|
## File-based project format:
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
## Plugin-specific files:
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
/out/
|
||||||
|
|
||||||
|
# mpeltonen/sbt-idea plugin
|
||||||
|
.idea_modules/
|
||||||
|
|
||||||
|
# JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
|
||||||
|
# Created by .ignore support plugin (hsz.mobi)
|
||||||
|
|
||||||
|
# Compiled class file
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Log file
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Package Files #
|
||||||
|
*.jar
|
||||||
|
*.war
|
||||||
|
*.nar
|
||||||
|
*.ear
|
||||||
|
*.zip
|
||||||
|
*.tar.gz
|
||||||
|
*.rar
|
||||||
|
|
||||||
|
# by github https://github.com/github/gitignore/blob/master/Java.gitignore
|
||||||
|
|
||||||
|
client/.gradle/
|
||||||
|
client/.idea/
|
||||||
|
client/build/
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,2 +0,0 @@
|
|||||||
#Sat Nov 13 20:08:41 CET 2021
|
|
||||||
gradle.version=7.1.1
|
|
Binary file not shown.
@ -1,16 +1,99 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<?import javafx.geometry.Insets?>
|
<?import javafx.geometry.Insets?>
|
||||||
<?import javafx.scene.control.Label?>
|
<?import javafx.scene.layout.*?>
|
||||||
<?import javafx.scene.layout.VBox?>
|
<?import javafx.scene.image.*?>
|
||||||
|
<?import javafx.scene.control.*?>
|
||||||
|
|
||||||
<?import javafx.scene.control.Button?>
|
<GridPane gridLinesVisible="true" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" style="-fx-background-color: #424242;" xmlns="http://javafx.com/javafx/11.0.2" xmlns:fx="http://javafx.com/fxml/1">
|
||||||
<VBox alignment="CENTER" spacing="20.0" xmlns:fx="http://javafx.com/fxml"
|
<columnConstraints>
|
||||||
fx:controller="com.vpr.client.HelloController">
|
<ColumnConstraints hgrow="NEVER" maxWidth="60.0" minWidth="60.0" />
|
||||||
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
|
||||||
|
</columnConstraints>
|
||||||
|
<rowConstraints>
|
||||||
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||||
|
</rowConstraints>
|
||||||
|
<children>
|
||||||
|
<VBox alignment="TOP_CENTER" prefHeight="200.0" prefWidth="100.0" spacing="5.0" style="-fx-background-color: #333333;">
|
||||||
|
<children>
|
||||||
|
<ImageView fitHeight="50.0" fitWidth="50.0" pickOnBounds="true" preserveRatio="true">
|
||||||
|
</ImageView>
|
||||||
|
<Button mnemonicParsing="false" prefHeight="50" prefWidth="50" style="-fx-background-color: #424242;" textAlignment="CENTER" textFill="WHITE">
|
||||||
|
ADD
|
||||||
|
</Button>
|
||||||
|
<Button mnemonicParsing="false" prefHeight="50" prefWidth="50" style="-fx-background-color: #424242;" textAlignment="CENTER" textFill="WHITE">
|
||||||
|
ADD
|
||||||
|
</Button>
|
||||||
|
<Button mnemonicParsing="false" prefHeight="50" prefWidth="50" style="-fx-background-color: #424242;" textAlignment="CENTER" textFill="WHITE">
|
||||||
|
ADD
|
||||||
|
</Button>
|
||||||
|
</children>
|
||||||
|
</VBox>
|
||||||
|
<GridPane gridLinesVisible="true" GridPane.columnIndex="1">
|
||||||
|
<columnConstraints>
|
||||||
|
<ColumnConstraints hgrow="ALWAYS" />
|
||||||
|
<ColumnConstraints hgrow="ALWAYS" />
|
||||||
|
<ColumnConstraints hgrow="ALWAYS" />
|
||||||
|
<ColumnConstraints hgrow="ALWAYS" />
|
||||||
|
<ColumnConstraints hgrow="ALWAYS" />
|
||||||
|
<ColumnConstraints hgrow="ALWAYS" />
|
||||||
|
<ColumnConstraints hgrow="ALWAYS" />
|
||||||
|
</columnConstraints>
|
||||||
|
<rowConstraints>
|
||||||
|
<RowConstraints maxHeight="25.0" minHeight="25.0" vgrow="NEVER" />
|
||||||
|
<RowConstraints maxHeight="25.0" minHeight="25.0" vgrow="NEVER" />
|
||||||
|
<RowConstraints vgrow="ALWAYS" />
|
||||||
|
</rowConstraints>
|
||||||
|
<children>
|
||||||
|
<Label textFill="WHITE">
|
||||||
|
Monat
|
||||||
<padding>
|
<padding>
|
||||||
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0"/>
|
<Insets left="5" />
|
||||||
</padding>
|
</padding>
|
||||||
|
</Label>
|
||||||
<Label fx:id="welcomeText"/>
|
<Label textFill="WHITE" GridPane.columnIndex="0" GridPane.rowIndex="1">
|
||||||
<Button text="Hello!" onAction="#onHelloButtonClick"/>
|
Mo
|
||||||
</VBox>
|
<padding>
|
||||||
|
<Insets left="5" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<Label textFill="WHITE" GridPane.columnIndex="1" GridPane.rowIndex="1">
|
||||||
|
Di
|
||||||
|
<padding>
|
||||||
|
<Insets left="5" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<Label textFill="WHITE" GridPane.columnIndex="2" GridPane.rowIndex="1">
|
||||||
|
Mi
|
||||||
|
<padding>
|
||||||
|
<Insets left="5" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<Label textFill="WHITE" GridPane.columnIndex="3" GridPane.rowIndex="1">
|
||||||
|
Do
|
||||||
|
<padding>
|
||||||
|
<Insets left="5" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<Label textFill="WHITE" GridPane.columnIndex="4" GridPane.rowIndex="1">
|
||||||
|
Fr
|
||||||
|
<padding>
|
||||||
|
<Insets left="5" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<Label textFill="WHITE" GridPane.columnIndex="5" GridPane.rowIndex="1">
|
||||||
|
Sa
|
||||||
|
<padding>
|
||||||
|
<Insets left="5" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
<Label textFill="WHITE" GridPane.columnIndex="6" GridPane.rowIndex="1">
|
||||||
|
So
|
||||||
|
<padding>
|
||||||
|
<Insets left="5" />
|
||||||
|
</padding>
|
||||||
|
</Label>
|
||||||
|
</children>
|
||||||
|
</GridPane>
|
||||||
|
</children>
|
||||||
|
</GridPane>
|
||||||
|
Loading…
Reference in New Issue
Block a user