-
Notifications
You must be signed in to change notification settings - Fork 0
/
clsTransactionsScreen.h
164 lines (123 loc) · 4.16 KB
/
clsTransactionsScreen.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#pragma once
#include <iostream>
#include "clsScreen.h"
#include "clsInputValidate.h"
#include <iomanip>
#include "clsDepositScreen.h"
#include "clsWithdrawScreen.h"
#include "clsTotalBalancesScreen.h"
#include "clsTransferScreen.h"
#include "clsTransferLogScreen.h"
using namespace std;
class clsTransactionsScreen :protected clsScreen
{
private:
enum enTransactionsMenueOptions {
eDeposit = 1, eWithdraw = 2,
eShowTotalBalance = 3, eTransfer = 4, eTransferLog = 5,
eShowMainMenue = 6
};
static short ReadTransactionsMenueOption()
{
cout << setw(37) << left << "" << "Choose what do you want to do? [1 to 6]? ";
short Choice = clsInputValidate::ReadShortNumberBetween(1, 6, "Enter Number between 1 to 6? ");
return Choice;
}
static void _ShowDepositScreen()
{
//cout << "\n Deposit Screen will be here.\n";
clsDepositScreen::ShowDepositScreen();
}
static void _ShowWithdrawScreen()
{
//cout << "\n Withdraw Screen will be here.\n";
clsWithdrawScreen::ShowWithdrawScreen();
}
static void _ShowTotalBalancesScreen()
{
// cout << "\n Balances Screen will be here.\n";
clsTotalBalancesScreen::ShowTotalBalances();
}
static void _ShowTransferScreen()
{
//cout << "\n Transfer Screen will be here.\n";
clsTransferScreen::ShowTransferScreen();
}
static void _ShowTransferLogScreen()
{
//cout << "\n Transfer Screen will be here.\n";
clsTransferLogScreen::ShowTransferLogScreen();
}
static void _GoBackToTransactionsMenue()
{
cout << "\n\nPress any key to go back to Transactions Menue...";
system("pause>0");
ShowTransactionsMenue();
}
static void _PerformTransactionsMenueOption(enTransactionsMenueOptions TransactionsMenueOption)
{
switch (TransactionsMenueOption)
{
case enTransactionsMenueOptions::eDeposit:
{
system("cls");
_ShowDepositScreen();
_GoBackToTransactionsMenue();
break;
}
case enTransactionsMenueOptions::eWithdraw:
{
system("cls");
_ShowWithdrawScreen();
_GoBackToTransactionsMenue();
break;
}
case enTransactionsMenueOptions::eShowTotalBalance:
{
system("cls");
_ShowTotalBalancesScreen();
_GoBackToTransactionsMenue();
break;
}
case enTransactionsMenueOptions::eTransfer:
{
system("cls");
_ShowTransferScreen();
_GoBackToTransactionsMenue();
break;
}
case enTransactionsMenueOptions::eTransferLog:
{
system("cls");
_ShowTransferLogScreen();
_GoBackToTransactionsMenue();
break;
}
case enTransactionsMenueOptions::eShowMainMenue:
{
//do nothing here the main screen will handle it :-) ;
}
}
}
public:
static void ShowTransactionsMenue()
{
if (!CheckAccessRights(clsUser::enPermissions::pTranactions))
{
return;// this will exit the function and it will not continue
}
system("cls");
_DrawScreenHeader("\tTransactions Screen");
cout << setw(37) << left << "" << "===========================================\n";
cout << setw(37) << left << "" << "\t\t Transactions Menue\n";
cout << setw(37) << left << "" << "===========================================\n";
cout << setw(37) << left << "" << "\t[1] Deposit.\n";
cout << setw(37) << left << "" << "\t[2] Withdraw.\n";
cout << setw(37) << left << "" << "\t[3] Total Balances.\n";
cout << setw(37) << left << "" << "\t[4] Transfer.\n";
cout << setw(37) << left << "" << "\t[5] Transfer Log.\n";
cout << setw(37) << left << "" << "\t[6] Main Menue.\n";
cout << setw(37) << left << "" << "===========================================\n";
_PerformTransactionsMenueOption((enTransactionsMenueOptions)ReadTransactionsMenueOption());
}
};