use of operation.GoToOperation in project Money-Manager by krHasan.
the class MakeATransactionController method btnSignOut.
@FXML
private void btnSignOut(ActionEvent event) {
Stage MakeATransactionStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSignIn(MakeATransactionStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class MakeATransactionController method mnuSectorSettings.
@FXML
private void mnuSectorSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSector");
Stage MakeATransactionStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(MakeATransactionStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuHowTo.
@FXML
private void mnuHowTo(ActionEvent event) {
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToHelp(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method btnDashboard.
// /////////////////// Button Function ///////////////////////////
@FXML
private void btnDashboard(ActionEvent event) {
Stage SettingsStage = (Stage) btnDashboard.getScene().getWindow();
(new GoToOperation()).goToDashboard(SettingsStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class SettingsController method mnuExpense.
@FXML
private void mnuExpense(ActionEvent event) {
(new TabAccess()).setTabName("tabExpense");
Stage SettingsStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(SettingsStage);
}
Aggregations