-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainwin-select.cpp
More file actions
146 lines (127 loc) · 4.39 KB
/
mainwin-select.cpp
File metadata and controls
146 lines (127 loc) · 4.39 KB
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
#include "mainwin.h"
#include <exception>
#include <stdexcept>
int Mainwin::select_container() {
if (_emp->num_containers() == 0) {
Gtk::MessageDialog dialog{*this, "At least 1 container must be created first"};
dialog.run();
dialog.close();
return -1;
}
if (_emp->num_containers() == 1) return 0;
std::vector<std::string> names;
for (int c=0; c < _emp->num_containers(); ++c) {
names.push_back(_emp->container(c).name());
}
return select_from_vector(names, "Container");
}
int Mainwin::select_scoop() {
if (_emp->num_scoops() == 0) {
Gtk::MessageDialog dialog{*this, "At least 1 scoop must be created first"};
dialog.run();
dialog.close();
return -1;
}
std::vector<std::string> names;
for (int s=0; s < _emp->num_scoops(); ++s) {
names.push_back(_emp->scoop(s).name());
}
return select_from_vector(names, "Scoop");
}
int Mainwin::select_topping() {
if (_emp->num_toppings() == 0) {
Gtk::MessageDialog dialog{*this, "At least 1 topping must be created first"};
dialog.run();
dialog.close();
return -1;
}
std::vector<std::string> names;
for (int t=0; t < _emp->num_toppings(); ++t) {
names.push_back(_emp->topping(t).name());
}
return select_from_vector(names, "Topping");
}
int Mainwin::select_order(Mice::Order_state state) {
std::vector<std::string> names;
std::vector<int> order_ids;
for (int t=0; t < _emp->num_orders(); ++t) {
if (_emp->order(t).state() == state) {
names.push_back("Order " + std::to_string(_emp->order(t).id()));
order_ids.push_back(t);
}
}
if (names.size() == 0) {
Gtk::MessageDialog dialog{*this, "No orders qualify for this action"};
dialog.run();
dialog.close();
return -1;
}
int selection = select_from_vector(names, "Order");
return (selection >= 0) ? order_ids[selection] : selection;
}
int Mainwin::select_customer() {
if (_emp->num_customers() == 0) on_create_customer_click();
if (_emp->num_customers() == 0) return -1;
std::vector<std::string> names;
for (int c=0; c < _emp->num_customers(); ++c) {
names.push_back(_emp->customer(c).name());
}
return select_from_vector(names, "Customer");
}
int Mainwin::select_manager() {
if (_emp->num_managers() == 0) on_create_manager_click();
if (_emp->num_managers() == 0) return -1;
std::vector<std::string> names;
for (int c=0; c < _emp->num_managers(); ++c) {
names.push_back(_emp->manager(c).name());
}
return select_from_vector(names, "Manager");
}
int Mainwin::select_server() {
if (_emp->num_servers() == 0) on_create_server_click();
if (_emp->num_servers() == 0) return -1;
std::vector<std::string> names;
for (int s=0; s < _emp->num_servers(); ++s) {
names.push_back(_emp->server(s).name());
}
return select_from_vector(names, "Server");
}
int Mainwin::select_from_vector(std::vector<std::string> names, std::string title) {
Gtk::Dialog dialog_index{"Select " + title, *this};
const int WIDTH = 15;
// Container
Gtk::HBox b_index;
Gtk::Label l_index{title + ":"};
l_index.set_width_chars(WIDTH);
b_index.pack_start(l_index, Gtk::PACK_SHRINK);
// Create dropdown list
Gtk::ComboBoxText c_index;
c_index.set_size_request(WIDTH*10);
for (std::string s : names) c_index.append(s);
b_index.pack_start(c_index, Gtk::PACK_SHRINK);
dialog_index.get_vbox()->pack_start(b_index, Gtk::PACK_SHRINK);
// Show dialog_index
dialog_index.add_button("Cancel", 0);
dialog_index.add_button("OK", 1);
dialog_index.show_all();
if (dialog_index.run() != 1) return -1;
int index = c_index.get_active_row_number();
dialog_index.close();
return index;
}
int Mainwin::select_order() {
std::vector<std::string> names;
std::vector<int> order_ids;
for (int t=0; t < _emp->num_orders(); ++t) {
names.push_back("Order " + std::to_string(_emp->order(t).id()));
order_ids.push_back(t);
}
if (names.size() == 0) {
Gtk::MessageDialog dialog{*this, "No orders qualify for this action"};
dialog.run();
dialog.close();
return -1;
}
int selection = select_from_vector(names, "Order");
return (selection >= 0) ? order_ids[selection] : selection;
}