use of tab.TabAccess 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 tab.TabAccess 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 tab.TabAccess 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);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class HelpController method mnuSystemSettings.
@FXML
private void mnuSystemSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSystem");
Stage HelpStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(HelpStage);
}
use of tab.TabAccess in project Money-Manager by krHasan.
the class HelpController method mnuSourceSettings.
@FXML
private void mnuSourceSettings(ActionEvent event) {
(new TabAccess()).setTabName("tabSource");
Stage HelpStage = (Stage) btnSignOut.getScene().getWindow();
(new GoToOperation()).goToSettings(HelpStage);
}
Aggregations