-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcAddUserFrame.cpp
70 lines (66 loc) · 2.76 KB
/
cAddUserFrame.cpp
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
#include "cAddUserFrame.h"
cAddUserFrame::cAddUserFrame(std::shared_ptr<Service> serv) : wxFrame(nullptr, wxID_ANY, "Add User", wxDefaultPosition, wxSize(265, 350), wxSYSTEM_MENU | wxMINIMIZE_BOX | wxCLOSE_BOX | wxCAPTION | wxCLIP_CHILDREN) {
CentreOnScreen();
service = serv;
SetBackgroundColour(*wxWHITE);
username_label = new wxStaticText(this, wxID_ANY, "Username", wxPoint(20, 10));
username_txt = new wxTextCtrl(this, wxID_ANY, "", wxPoint(10, 30), wxSize(230, 20));
password_label = new wxStaticText(this, wxID_ANY, "Password", wxPoint(20, 60));
password_txt = new wxTextCtrl(this, wxID_ANY, "", wxPoint(10, 80), wxSize(230, 20));
wxArrayString choices;
choices.Add("Admin");
choices.Add("Employee");
choices.Add("Client");
type = new wxRadioBox(this, wxID_ANY, "Select user type", wxPoint(10, 110), wxDefaultSize, choices, 3, wxRA_HORIZONTAL);
name_label = new wxStaticText(this, wxID_ANY, "Name", wxPoint(20, 170));
name_txt = new wxTextCtrl(this, wxID_ANY, "", wxPoint(10, 190), wxSize(230, 20));
surname_label = new wxStaticText(this, wxID_ANY, "Surname", wxPoint(20, 220));
surname_txt = new wxTextCtrl(this, wxID_ANY, "", wxPoint(10, 240), wxSize(230, 20));
add = new wxButton(this, 1, "Add User", wxPoint(80, 270), wxSize(90, 25));
add->SetBackgroundColour(wxColour(*wxWHITE));
Connect(1, wxEVT_BUTTON, wxCommandEventHandler(cAddUserFrame::onAdd));
}
cAddUserFrame::~cAddUserFrame() {
}
void cAddUserFrame::onAdd(wxCommandEvent& WXUNUSED(event)) {
std::string username = std::string(username_txt->GetValue());
std::string password = std::string(password_txt->GetValue());
int type_val = type->GetSelection();
std::string name = std::string(name_txt->GetValue());
std::string surname = std::string(surname_txt->GetValue());
if (username.compare("")) {
if (password.compare("")) {
if (type_val!=wxNOT_FOUND) {
if (name.compare("")) {
if (surname.compare("")) {
if (!service->addUser(username, password, type_val, name, surname)) {
wxMessageDialog* err_msg = new wxMessageDialog(this, "Couldn't add user!", "Database Error");
err_msg->ShowModal();
}
}
else {
wxMessageDialog* err_msg = new wxMessageDialog(this, "Enter surname!", "Input Error");
err_msg->ShowModal();
}
}
else {
wxMessageDialog* err_msg = new wxMessageDialog(this, "Enter name!", "Input Error");
err_msg->ShowModal();
}
}
else {
wxMessageDialog* err_msg = new wxMessageDialog(this, "Choose type!", "Input Error");
err_msg->ShowModal();
}
}
else {
wxMessageDialog* err_msg = new wxMessageDialog(this, "Enter password!", "Input Error");
err_msg->ShowModal();
}
}
else {
wxMessageDialog* err_msg = new wxMessageDialog(this, "Enter username!", "Input Error");
err_msg->ShowModal();
}
this->Close();
}