Compare commits
11 Commits
CSS-Refact
...
master
Author | SHA1 | Date | |
---|---|---|---|
44a4ca7967 | |||
f23a596f47 | |||
0522908001 | |||
59be5048d8 | |||
34e51cb72f | |||
88c8a30ad0 | |||
111d5758e0 | |||
af441656de | |||
a190d91e7a | |||
1050455a4a | |||
8c46670148 |
@ -28,15 +28,15 @@ public class CreateEventController {
|
||||
@FXML
|
||||
protected JFXComboBox<String> comboBoxPriority;
|
||||
@FXML
|
||||
private JFXToggleButton toggleBtnIsFullDay;
|
||||
protected JFXToggleButton toggleBtnIsFullDay;
|
||||
@FXML
|
||||
private JFXToggleButton toggleBtnIsPrivate;
|
||||
protected JFXToggleButton toggleBtnIsPrivate;
|
||||
@FXML
|
||||
private Label labelError;
|
||||
@FXML
|
||||
private JFXTimePicker timeStart;
|
||||
protected JFXTimePicker timeStart;
|
||||
@FXML
|
||||
private JFXTimePicker timeEnd;
|
||||
protected JFXTimePicker timeEnd;
|
||||
|
||||
|
||||
public CreateEventController() {
|
||||
@ -91,7 +91,7 @@ public class CreateEventController {
|
||||
dataController.createEvent(event);
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
//Marco Kühn//
|
||||
@FXML
|
||||
protected void abortBtnClick(ActionEvent event) {
|
||||
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();
|
||||
|
@ -1,9 +1,12 @@
|
||||
//Marc Beyer//
|
||||
package events;
|
||||
|
||||
import helper.HttpRequestException;
|
||||
import container.DataController;
|
||||
import container.Event;
|
||||
|
||||
import java.time.LocalTime;
|
||||
|
||||
public class EditEventController extends CreateEventController{
|
||||
|
||||
private Event currentEvent;
|
||||
@ -19,7 +22,17 @@ public class EditEventController extends CreateEventController{
|
||||
datePickerDate.setValue(currentEvent.getDate().toLocalDate());
|
||||
comboBoxPriority.getSelectionModel().select(currentEvent.getPriority());
|
||||
|
||||
//timeEnd.setValue(currentEvent.getEnd());
|
||||
try{
|
||||
timeStart.setValue(LocalTime.parse(currentEvent.getStart()));
|
||||
}catch (Exception e){}
|
||||
|
||||
|
||||
try{
|
||||
timeEnd.setValue(LocalTime.parse(currentEvent.getEnd()));
|
||||
}catch (Exception e){}
|
||||
|
||||
toggleBtnIsFullDay.setSelected(currentEvent.isFullDay());
|
||||
toggleBtnIsPrivate.setSelected(currentEvent.isPrivate());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -57,7 +57,7 @@ public class MainApplication extends Application {
|
||||
scene.getStylesheets().add(Objects.requireNonNull(
|
||||
MainApplication.class.getResource("main-view.css")).toExternalForm()
|
||||
);
|
||||
stage.setTitle("SharePlaner");
|
||||
stage.setTitle("SharePlanner");
|
||||
stage.setScene(scene);
|
||||
stage.show();
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Marco Kühn, Marc Beyer */
|
||||
// Marco Kühn, Marc Beyer //
|
||||
package main;
|
||||
|
||||
import config.Config;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Marco Kühn */
|
||||
// Marco Kühn //
|
||||
package main;
|
||||
|
||||
import com.jfoenix.controls.*;
|
||||
|
@ -1,3 +1,4 @@
|
||||
//Marc Beyer//
|
||||
package ui;
|
||||
|
||||
import javafx.scene.control.Label;
|
||||
|
@ -1,3 +1,4 @@
|
||||
//Marc Beyer, Marco Kühn//
|
||||
package ui;
|
||||
|
||||
import container.Event;
|
||||
|
@ -1,3 +1,4 @@
|
||||
//Marco Kühn//
|
||||
package ui;
|
||||
|
||||
import javafx.geometry.Bounds;
|
||||
|
@ -1,14 +1,14 @@
|
||||
//Alex Rechtin//
|
||||
package users;
|
||||
|
||||
import com.jfoenix.controls.JFXPasswordField;
|
||||
import com.jfoenix.controls.JFXTextField;
|
||||
import com.jfoenix.controls.JFXToggleButton;
|
||||
import helper.HttpRequestException;
|
||||
import javafx.event.ActionEvent;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.scene.Node;
|
||||
import javafx.scene.control.Label;
|
||||
import javafx.scene.control.PasswordField;
|
||||
import javafx.scene.control.TextField;
|
||||
import javafx.scene.control.ToggleButton;
|
||||
import javafx.stage.Stage;
|
||||
import container.DataController;
|
||||
import container.User;
|
||||
@ -18,17 +18,17 @@ import java.util.Objects;
|
||||
public class CreateUserController {
|
||||
|
||||
@FXML
|
||||
protected TextField textName;
|
||||
protected JFXTextField textName;
|
||||
@FXML
|
||||
protected PasswordField textPassword;
|
||||
protected JFXPasswordField textPassword;
|
||||
@FXML
|
||||
protected PasswordField textPasswordSecond;
|
||||
protected JFXPasswordField textPasswordSecond;
|
||||
@FXML
|
||||
protected ToggleButton checkButtonIsAdmin;
|
||||
protected JFXToggleButton checkButtonIsAdmin;
|
||||
@FXML
|
||||
protected TextField textLogin;
|
||||
protected JFXTextField textLogin;
|
||||
@FXML
|
||||
protected TextField textForename;
|
||||
protected JFXTextField textForename;
|
||||
@FXML
|
||||
protected Label labelError;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Marc Beyer */
|
||||
// Marc Beyer //
|
||||
package users;
|
||||
|
||||
import container.DataController;
|
||||
|
@ -1,8 +1,10 @@
|
||||
/*Alex Rechtin*/
|
||||
* {
|
||||
-fx-dark-background-color: #3E415F;
|
||||
-fx-bright-background-color: #ffffff;
|
||||
-fx-bright-border-color: #B0B0B0;
|
||||
-fx-brighter-text-color: #ffffff;
|
||||
-fx-brighter-text-color: #ff5555;
|
||||
-fx-brightest-text-color: #ffffff;
|
||||
}
|
||||
|
||||
|
||||
@ -29,12 +31,13 @@ GridPane{
|
||||
|
||||
|
||||
Label{
|
||||
-fx-text-fill: -fx-brighter-text-color;
|
||||
-fx-text-fill: -fx-brightest-text-color;
|
||||
-fx-max-width: 150px;
|
||||
-fx-min-width: 150px;
|
||||
}
|
||||
|
||||
.textField{
|
||||
-fx-background-color: -fx-bright-background-color;
|
||||
-fx-max-width: 400px;
|
||||
-fx-min-width: 400px;
|
||||
}
|
||||
@ -42,9 +45,11 @@ Label{
|
||||
.errorMessage{
|
||||
-fx-max-width: 400px;
|
||||
-fx-min-width: 400px;
|
||||
-fx-text-fill: -fx-brighter-text-color;
|
||||
}
|
||||
|
||||
Button{
|
||||
JFXButton{
|
||||
-fx-background-color: -fx-bright-background-color;
|
||||
-fx-max-width: 150px;
|
||||
-fx-min-width: 150px;
|
||||
}
|
||||
|
@ -2,10 +2,13 @@
|
||||
|
||||
<!-- Alex Rechtin -->
|
||||
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.control.Label?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.geometry.Insets?>
|
||||
<?import com.jfoenix.controls.JFXToggleButton?>
|
||||
<?import com.jfoenix.controls.JFXButton?>
|
||||
<?import com.jfoenix.controls.JFXPasswordField?>
|
||||
<?import com.jfoenix.controls.JFXTextField?>
|
||||
<GridPane xmlns="http://javafx.com/javafx"
|
||||
xmlns:fx="http://javafx.com/fxml"
|
||||
fx:controller="users.CreateUserController">
|
||||
@ -33,15 +36,15 @@
|
||||
<Label styleClass="inputLabel" GridPane.rowIndex="2" GridPane.columnIndex="1">Vorname:</Label>
|
||||
<Label styleClass="inputLabel" GridPane.rowIndex="3" GridPane.columnIndex="1">Nachname:</Label>
|
||||
<Label styleClass="inputLabel" GridPane.rowIndex="4" GridPane.columnIndex="1">Passwort:</Label>
|
||||
<Label styleClass="inputLabel" GridPane.rowIndex="5" GridPane.columnIndex="1">Passwort wiederholen:</Label>
|
||||
<Label styleClass="inputLabel" wrapText="true" GridPane.rowIndex="5" GridPane.columnIndex="1">Passwort wiederholen:</Label>
|
||||
|
||||
<Label styleClass="inputLabelAdmin" GridPane.rowIndex="6" GridPane.columnIndex="1">Admin:</Label>
|
||||
|
||||
<TextField fx:id="textLogin" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="1" />
|
||||
<TextField fx:id="textForename" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="2" />
|
||||
<TextField fx:id="textName" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="3" />
|
||||
<PasswordField fx:id="textPassword" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="4" />
|
||||
<PasswordField fx:id="textPasswordSecond" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="5" />
|
||||
<JFXTextField fx:id="textLogin" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="1" />
|
||||
<JFXTextField fx:id="textForename" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="2" />
|
||||
<JFXTextField fx:id="textName" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="3" />
|
||||
<JFXPasswordField fx:id="textPassword" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="4" />
|
||||
<JFXPasswordField fx:id="textPasswordSecond" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="5" />
|
||||
|
||||
<JFXToggleButton fx:id="checkButtonIsAdmin" GridPane.columnIndex="2" GridPane.rowIndex="6"/>
|
||||
|
||||
@ -51,8 +54,8 @@
|
||||
<HBox.margin>
|
||||
<Insets right="100" left="100"/>
|
||||
</HBox.margin>
|
||||
<Button onAction="#abortBtnClick">Abbrechen</Button>
|
||||
<Button onAction="#createUser" styleClass="btnLogin" >Anlegen</Button>
|
||||
<JFXButton onAction="#abortBtnClick">Abbrechen</JFXButton>
|
||||
<JFXButton onAction="#createUser" styleClass="btnLogin" >Anlegen</JFXButton>
|
||||
|
||||
</HBox>
|
||||
</GridPane>
|
||||
|
@ -1,9 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.control.*?>
|
||||
<!-- Alex Rechtin-->
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.geometry.Insets?>
|
||||
<?import com.jfoenix.controls.JFXToggleButton?>
|
||||
<?import com.jfoenix.controls.JFXTextField?>
|
||||
<?import com.jfoenix.controls.JFXPasswordField?>
|
||||
<?import com.jfoenix.controls.JFXButton?>
|
||||
<?import javafx.scene.control.Label?>
|
||||
<GridPane xmlns="http://javafx.com/javafx"
|
||||
xmlns:fx="http://javafx.com/fxml"
|
||||
fx:controller="users.EditUserController">
|
||||
@ -31,15 +35,15 @@
|
||||
<Label styleClass="inputLabel" GridPane.rowIndex="2" GridPane.columnIndex="1">Vorname:</Label>
|
||||
<Label styleClass="inputLabel" GridPane.rowIndex="3" GridPane.columnIndex="1">Nachname:</Label>
|
||||
<Label styleClass="inputLabel" GridPane.rowIndex="4" GridPane.columnIndex="1">Passwort:</Label>
|
||||
<Label styleClass="inputLabel" GridPane.rowIndex="5" GridPane.columnIndex="1">Passwort wiederholen:</Label>
|
||||
<Label styleClass="inputLabel" wrapText="true" GridPane.rowIndex="5" GridPane.columnIndex="1">Passwort wiederholen:</Label>
|
||||
|
||||
<Label styleClass="inputLabelAdmin" GridPane.rowIndex="6" GridPane.columnIndex="1">Admin:</Label>
|
||||
|
||||
<TextField fx:id="textLogin" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="1" />
|
||||
<TextField fx:id="textForename" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="2" />
|
||||
<TextField fx:id="textName" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="3" />
|
||||
<PasswordField fx:id="textPassword" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="4" />
|
||||
<PasswordField fx:id="textPasswordSecond" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="5" />
|
||||
<JFXTextField fx:id="textLogin" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="1" />
|
||||
<JFXTextField fx:id="textForename" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="2" />
|
||||
<JFXTextField fx:id="textName" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="3" />
|
||||
<JFXPasswordField fx:id="textPassword" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="4" />
|
||||
<JFXPasswordField fx:id="textPasswordSecond" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="5" />
|
||||
|
||||
<JFXToggleButton fx:id="checkButtonIsAdmin" GridPane.columnIndex="2" GridPane.rowIndex="6"/>
|
||||
|
||||
@ -49,8 +53,8 @@
|
||||
<HBox.margin>
|
||||
<Insets right="100" left="100"/>
|
||||
</HBox.margin>
|
||||
<Button onAction="#abortBtnClick">Abbrechen</Button>
|
||||
<Button onAction="#createUser" styleClass="btnLogin" >Bearbeiten</Button>
|
||||
<JFXButton onAction="#abortBtnClick">Abbrechen</JFXButton>
|
||||
<JFXButton onAction="#createUser" styleClass="btnLogin" >Bearbeiten</JFXButton>
|
||||
|
||||
</HBox>
|
||||
</GridPane>
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
-fx-bright-border-color: #B0B0B0;
|
||||
|
||||
-fx-bright-text-color: ##ff5555;
|
||||
-fx-bright-text-color: #ff5555;
|
||||
-fx-brighter-text-color: #ffffff;
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
<JFXTextField styleClass="userField" GridPane.columnIndex="1" GridPane.rowIndex="1" fx:id="userField"/>
|
||||
<Label styleClass="errorLbl" GridPane.columnIndex="2" GridPane.rowIndex="1" fx:id="userErrLabel"/>
|
||||
|
||||
<Label GridPane.rowIndex="2">Paswort</Label>
|
||||
<Label GridPane.rowIndex="2">Passwort</Label>
|
||||
<JFXPasswordField styleClass="passField" GridPane.columnIndex="1" GridPane.rowIndex="2" fx:id="passField"/>
|
||||
<Label styleClass="errorLbl" GridPane.columnIndex="2" GridPane.rowIndex="2" fx:id="passErrLabel"/>
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
//Marc Beyer//
|
||||
package container;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
|
@ -1,3 +1,4 @@
|
||||
//Marco Kühn//
|
||||
package container;
|
||||
|
||||
import java.time.Duration;
|
||||
|
@ -1,3 +1,4 @@
|
||||
//Marc Beyer//
|
||||
package container;
|
||||
|
||||
import helper.Tuple;
|
||||
|
@ -1,3 +1,4 @@
|
||||
//Marco Kühn//
|
||||
package container;
|
||||
|
||||
public class User {
|
||||
|
Loading…
Reference in New Issue
Block a user