Search in sources :

Example 6 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class SettingsController method mnuSectorSettings.

@FXML
private void mnuSectorSettings(ActionEvent event) {
    (new TabAccess()).setTabName("tabSector");
    Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToSettings(SettingsStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 7 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class SettingsController method mnuAdvancedSettings.

@FXML
private void mnuAdvancedSettings(ActionEvent event) {
    (new TabAccess()).setTabName("tabAdvanced");
    Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToSettings(SettingsStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 8 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class SettingsController method mnuBank.

@FXML
private void mnuBank(ActionEvent event) {
    (new TabAccess()).setTabName("tabBank");
    Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToMakeATransaction(SettingsStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 9 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class SettingsController method mnuGetMoney.

@FXML
private void mnuGetMoney(ActionEvent event) {
    (new TabAccess()).setTabName("tabGetMoney");
    Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToMakeATransaction(SettingsStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Example 10 with TabAccess

use of tab.TabAccess in project Money-Manager by krHasan.

the class DashboardController method mnuCreateSector.

@FXML
private void mnuCreateSector(ActionEvent event) {
    (new TabAccess()).setTabName("tabSector");
    Stage DashboardStage = (Stage) btnSignOut.getScene().getWindow();
    (new GoToOperation()).goToSettings(DashboardStage);
}
Also used : Stage(javafx.stage.Stage) GoToOperation(operation.GoToOperation) TabAccess(tab.TabAccess) FXML(javafx.fxml.FXML)

Aggregations

FXML (javafx.fxml.FXML)100 TabAccess (tab.TabAccess)100 Stage (javafx.stage.Stage)99 GoToOperation (operation.GoToOperation)95 Alert (javafx.scene.control.Alert)7 ButtonType (javafx.scene.control.ButtonType)6 GoToRegistration (operation.GoToRegistration)2 KeyFrame (javafx.animation.KeyFrame)1 Timeline (javafx.animation.Timeline)1 ActionEvent (javafx.event.ActionEvent)1 EventHandler (javafx.event.EventHandler)1 Tooltip (javafx.scene.control.Tooltip)1 SignInModel (model.SignInModel)1