use of operation.GoToOperation in project Money-Manager by krHasan.
the class AboutController method mnuAbout.
@FXML
private void mnuAbout(ActionEvent event) {
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToAbout(AboutStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class AboutController method mnuSystemSettings.
@FXML
private void mnuSystemSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSystem");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(AboutStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class AboutController method mnuGetMoney.
@FXML
private void mnuGetMoney(ActionEvent event) {
// name of which Tab should open
(new TabAccess()).setTabName("tabGetMoney");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(AboutStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class AboutController method mnuDashboard.
// ////////////////////////////////////////// Menu Function ////////////////////////////////////////////
// ---------------------------------------------------------------------------------------------------//
// all menu function
@FXML
private void mnuDashboard(ActionEvent event) {
// create stage object
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
// start expected stage
(new GoToOperation()).goToDashboard(AboutStage);
}
use of operation.GoToOperation in project Money-Manager by krHasan.
the class AboutController method mnuSectorSettings.
@FXML
private void mnuSectorSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSector");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(AboutStage);
}
Aggregations