use of tab.TabAccess in project Money-Manager by krHasan.
the class HelpController method mnuSettings.
@FXML
private void mnuSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage HelpStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(HelpStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class HelpController method mnuAdvancedSettings.
@FXML
private void mnuAdvancedSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabAdvanced");
Stage HelpStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(HelpStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class HelpController method mnuBank.
@FXML
private void mnuBank(ActionEvent event) {
(new TabAccess()).setTabName("tabBank");
Stage HelpStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToMakeATransaction(HelpStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class AboutController method mnuSourceSettings.
@FXML
private void mnuSourceSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSource");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(AboutStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class AboutController method mnuAdvancedSettings.
@FXML
private void mnuAdvancedSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabAdvanced");
Stage AboutStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(AboutStage);
}
Aggregations