diff --git a/voting-station-gui/src/pictures/[Originals]/profile.png b/voting-station-gui/src/pictures/[Originals]/profile.png new file mode 100644 index 0000000..7971691 Binary files /dev/null and b/voting-station-gui/src/pictures/[Originals]/profile.png differ diff --git a/voting-station-gui/src/pictures/profile.png b/voting-station-gui/src/pictures/profile.png new file mode 100644 index 0000000..7ac6047 Binary files /dev/null and b/voting-station-gui/src/pictures/profile.png differ diff --git a/voting-station-gui/src/polling_station_dashboard/StatusLog/fxml/status_log.fxml b/voting-station-gui/src/polling_station_dashboard/StatusLog/fxml/status_log.fxml index 6cdbb56..eb1a5b0 100644 --- a/voting-station-gui/src/polling_station_dashboard/StatusLog/fxml/status_log.fxml +++ b/voting-station-gui/src/polling_station_dashboard/StatusLog/fxml/status_log.fxml @@ -7,7 +7,7 @@ - +
diff --git a/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogController.java b/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogController.java index 625e432..aeda2d5 100644 --- a/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogController.java +++ b/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogController.java @@ -1,4 +1,4 @@ -package polling_station_dashboard.StatusLog.java; +package polling_station_dashboard.statusLog.java; import javafx.fxml.FXML; import javafx.stage.Stage; diff --git a/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogLoader.java b/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogLoader.java index 5753f6e..1824bfe 100644 --- a/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogLoader.java +++ b/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogLoader.java @@ -1,4 +1,4 @@ -package polling_station_dashboard.StatusLog.java; +package polling_station_dashboard.statusLog.java; import javafx.fxml.FXMLLoader; import javafx.scene.layout.GridPane; diff --git a/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogUpdate.java b/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogUpdate.java index e032d72..ed977d0 100644 --- a/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogUpdate.java +++ b/voting-station-gui/src/polling_station_dashboard/StatusLog/java/StatusLogUpdate.java @@ -1,4 +1,4 @@ -package polling_station_dashboard.StatusLog.java; +package polling_station_dashboard.statusLog.java; /** * Created by Vladimir Eliezer Tokarev on 04/06/2016. diff --git a/voting-station-gui/src/polling_station_dashboard/java/PollingStationDashboardController.java b/voting-station-gui/src/polling_station_dashboard/java/PollingStationDashboardController.java index 0884fe6..b2cf658 100644 --- a/voting-station-gui/src/polling_station_dashboard/java/PollingStationDashboardController.java +++ b/voting-station-gui/src/polling_station_dashboard/java/PollingStationDashboardController.java @@ -5,7 +5,7 @@ import javafx.scene.control.Button; import javafx.scene.layout.GridPane; import javafx.scene.layout.Pane; import javafx.stage.Stage; -import polling_station_dashboard.StatusLog.java.StatusLogUpdate; +import polling_station_dashboard.statusLog.java.StatusLogUpdate; import polling_station_dashboard.settings.java.SettingsUpdate; /** @@ -58,18 +58,18 @@ public class PollingStationDashboardController implements StatusLogUpdate, Setti } private void addStatusLog() { - Pane statusLog = (Pane) currentStage.getScene().lookup("#StatusLog"); + Pane statusLog = (Pane) currentStage.getScene().lookup("#statusLog"); statusLog.getChildren().add(this.statusLog); } private void removeStatusLog(){ - Pane statusLog = (Pane) currentStage.getScene().lookup("#StatusLog"); + Pane statusLog = (Pane) currentStage.getScene().lookup("#statusLog"); statusLog.getChildren().remove(this.statusLog); } private void SetStatusLogSize(int expansionWidth) { currentStage.setWidth(currentStage.getWidth() + expansionWidth); - Pane statusLog = (Pane) currentStage.getScene().lookup("#StatusLog"); + Pane statusLog = (Pane) currentStage.getScene().lookup("#statusLog"); statusLog.setPrefWidth(expansionWidth); } diff --git a/voting-station-gui/src/polling_station_dashboard/java/PollingStationDashboardLoader.java b/voting-station-gui/src/polling_station_dashboard/java/PollingStationDashboardLoader.java index baf782e..ddcb355 100644 --- a/voting-station-gui/src/polling_station_dashboard/java/PollingStationDashboardLoader.java +++ b/voting-station-gui/src/polling_station_dashboard/java/PollingStationDashboardLoader.java @@ -4,7 +4,7 @@ import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.stage.Stage; -import polling_station_dashboard.StatusLog.java.StatusLogLoader; +import polling_station_dashboard.statusLog.java.StatusLogLoader; import polling_station_dashboard.settings.java.settingsLoader; import java.io.IOException; diff --git a/voting-station-gui/src/polling_station_dashboard/settings/java/settingsLoader.java b/voting-station-gui/src/polling_station_dashboard/settings/java/settingsLoader.java index f5bf59d..d89057f 100644 --- a/voting-station-gui/src/polling_station_dashboard/settings/java/settingsLoader.java +++ b/voting-station-gui/src/polling_station_dashboard/settings/java/settingsLoader.java @@ -3,8 +3,6 @@ package polling_station_dashboard.settings.java; import javafx.fxml.FXMLLoader; import javafx.scene.layout.GridPane; import javafx.stage.Stage; -import polling_station_dashboard.StatusLog.java.StatusLogController; -import polling_station_dashboard.StatusLog.java.StatusLogUpdate; import java.io.IOException; diff --git a/voting-station-gui/src/polling_station_dashboard/settings/settings.fxml b/voting-station-gui/src/polling_station_dashboard/settings/settings.fxml index aa6b371..a37f6a2 100644 --- a/voting-station-gui/src/polling_station_dashboard/settings/settings.fxml +++ b/voting-station-gui/src/polling_station_dashboard/settings/settings.fxml @@ -7,7 +7,7 @@ - + diff --git a/voting-station-gui/src/polling_station_dashboard/voterEdit/fxml/voter_edit.fxml b/voting-station-gui/src/polling_station_dashboard/voterEdit/fxml/voter_edit.fxml new file mode 100644 index 0000000..dc42ded --- /dev/null +++ b/voting-station-gui/src/polling_station_dashboard/voterEdit/fxml/voter_edit.fxml @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +