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