forked from NVlabs/FPSci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDialogs.h
269 lines (242 loc) · 11 KB
/
Dialogs.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#pragma once
#include <G3D/G3D.h>
// Internal class for ease of use
class DialogBase : public GuiWindow {
protected:
GuiText m_prompt;
DialogBase(const shared_ptr<GuiTheme> theme, const String& title = "Dialog", Point2 pos = Point2(200.f, 200.0f), Point2 size = Point2(400.0f, 200.0f)) :
GuiWindow(title, theme, Rect2D::xywh(pos, size), GuiTheme::MENU_WINDOW_STYLE, GuiWindow::HIDE_ON_CLOSE) {};
public:
String result = "";
bool complete = false;
void reset() {
result = "";
complete = false;
setVisible(true);
}
};
// N-way selection dialog
class SelectionDialog : public DialogBase {
protected:
GuiButton* m_submitBtn = nullptr;
GuiButton* m_clearBtn = nullptr;
Array<GuiButton*> m_optionBtns;
Array<String> m_options;
Array<std::function<void()>> m_callbacks;
void callback(String option) {
result = option;
if (!m_submitBtn) {
submitCallback(); // If we don't have a submit button finish the dialog here
}
else {
m_submitBtn->setEnabled(true); // If we have a submit button set it enabled here
m_clearBtn->setEnabled(true);
for (auto btn : m_optionBtns) {
if (btn->caption().text() == option) btn->setEnabled(false);
else btn->setVisible(false);
}
}
}
void submitCallback() {
complete = true;
setVisible(false);
}
void clearCallback() {
m_submitBtn->setEnabled(false);
m_clearBtn->setEnabled(false);
for (auto btn : m_optionBtns) {
btn->setVisible(true);
btn->setEnabled(true);
}
}
SelectionDialog(const String& prompt, const Array<String>& options, const shared_ptr<GuiTheme>& theme,
const String& title = "Selection", bool submitButton = false, int itemsPerRow = 3,
Point2 size = Point2(400.0f, 400.0f), bool resize = true,
float promptFontSize = -1.f, float optionFontSize = -1.f, float buttonFontSize = -1.f,
Point2 pos = Point2(200.0f, 200.0f), GFont::XAlign promptAlign = GFont::XALIGN_CENTER) :
DialogBase(theme, title, pos, size)
{
m_prompt = GuiText(prompt, shared_ptr<GFont>(), promptFontSize);
m_options = options;
GuiPane *pane = GuiWindow::pane();
pane->beginRow(); {
auto promptLabel = pane->addLabel(m_prompt, promptAlign);
if (!resize) {
promptLabel->setWidth(size.x); // Set the prompt label to full width to center text
promptLabel->setHeight(0.4f * size.y); // Set the prompt height to center the question
promptLabel->setYAlign(GFont::YALIGN_BOTTOM); // Set the Y-alignment to put the prompt directly above the options (buttons)
}
} pane->endRow();
// Create option buttons
int cnt = 0;
int i = 0;
const int rows = options.length() / itemsPerRow;
for (const String& option : options) {
cnt %= itemsPerRow;
if (cnt == 0) {
pane->beginRow();
}
m_callbacks.append(std::bind(&SelectionDialog::callback, this, option));
GuiButton* btn = pane->addButton(GuiText(option, shared_ptr<GFont>(), optionFontSize), m_callbacks[i]);
if (!resize) { // Larger buttons when not resizing
btn->setWidth(0.99f*size.x / itemsPerRow);
btn->setHeight(min(100.0f, 0.99f * size.y/rows));
}
m_optionBtns.append(btn);
i++;
if (++cnt == itemsPerRow) {
pane->endRow();
}
}
if (!resize && cnt != itemsPerRow) { // Horizontal centering for non-resizable window without options not a multiple of items per row
pane->endRow();
float offsetX = (0.99f * size.x * (itemsPerRow - cnt) / itemsPerRow) / 2.f;
for (int i = 1; i < cnt + 1; i++) {
m_optionBtns[options.length() - i]->moveBy(offsetX, 0.f);
}
}
if (submitButton) {
pane->beginRow(); {
// Create submit and clear buttons
m_clearBtn = pane->addButton(GuiText("Clear", shared_ptr<GFont>(), buttonFontSize), std::bind(&SelectionDialog::clearCallback, this));
m_submitBtn = pane->addButton(GuiText("Submit", shared_ptr<GFont>(), buttonFontSize) , std::bind(&SelectionDialog::submitCallback, this));
// Start with submit/clear buttons disabled
m_clearBtn->setEnabled(false);
m_submitBtn->setEnabled(false);
} pane->endRow();
}
// Optionally resize the window for contents
if (resize) { pack();}
if (m_submitBtn) {
// Move submit button to the far right bottom corner of the pane
m_submitBtn->moveBy(bounds().width() - m_clearBtn->rect().width() - m_submitBtn->rect().width() - 5.f, 0.f);
}
};
public:
static shared_ptr<SelectionDialog> create(const String& prompt, const Array<String>& options, const shared_ptr<GuiTheme> theme,
const String& title = "Selection", bool submitBtn = false, int itemsPerRow = 3, Point2 size = Point2(400.0f, 200.0f), bool resize = true,
float promptFontSize = -1.f, float optionFontSize = -1.f, float buttonFontSize = -1.f, Point2 position = Point2(200.0f, 200.0f))
{
return createShared<SelectionDialog>(prompt, options, theme, title, submitBtn, itemsPerRow, size, resize, promptFontSize, optionFontSize, buttonFontSize, position);
}
const Array<String>& options() const { return m_options; }
};
class YesNoDialog : public SelectionDialog {
protected:
YesNoDialog(const String& question, const shared_ptr<GuiTheme> theme, const String& title = "Dialog", bool submitBtn=false, float promptFontSize = -1.f, float optionFontSize = -1.f, float buttonFontSize = -1.f) :
SelectionDialog(question, Array<String>{"Yes", "No"}, theme, title, submitBtn, 2, G3D::Point2(400.f,400.f), true, promptFontSize, optionFontSize, buttonFontSize) {};
public:
static shared_ptr<YesNoDialog> create(const String& question, const shared_ptr<GuiTheme> theme, const String& title="Dialog", bool submitBtn=false, float promptFontSize = -1.f, float optionFontSize = -1.f, float buttonFontSize = -1.f){
return createShared<YesNoDialog>(question, theme, title, submitBtn, promptFontSize, optionFontSize, buttonFontSize);
}
};
class YesNoCancelDialog : public SelectionDialog {
protected:
YesNoCancelDialog(const String& question, const shared_ptr<GuiTheme> theme, const String& title = "Dialog", bool submitBtn=false, float promptFontSize = -1.f, float optionFontSize = -1.f, float buttonFontSize = -1.f) :
SelectionDialog(question, Array<String>{"Yes", "No", "Cancel"}, theme, title, submitBtn, 3, G3D::Point2(400.f, 400.f), true, promptFontSize, optionFontSize, buttonFontSize) {};
public:
static shared_ptr<YesNoCancelDialog> create(const String& question, const shared_ptr<GuiTheme> theme, const String& title = "Dialog", bool submitBtn=false, float promptFontSize = -1.f, float optionFontSize = -1.f, float buttonFontSize = -1.f) {
return createShared<YesNoCancelDialog>(question, theme, title, submitBtn, promptFontSize, optionFontSize, buttonFontSize);
}
};
class TextEntryDialog : public DialogBase {
protected:
bool m_allowEmpty;
GuiLabel* m_warningLabel;
GuiMultiLineTextBox* m_textbox;
void submitCallback() {
if (!m_allowEmpty && result.length() == 0) {
m_warningLabel->setCaption("Must provide a response!");
m_textbox->setFocused(true);
}
else {
complete = true;
setVisible(false);
}
}
TextEntryDialog(const String& prompt, const shared_ptr<GuiTheme> theme, const String& title = "Dialog", bool allowEmpty = true,
Point2 size = Point2(400.0f, 200.0f), bool resize=true,
float promptFontSize = -1.f, float buttonFontSize = -1.f,
Point2 position = Point2(200.0f, 200.0f)) :
DialogBase(theme, title, position, size)
{
m_prompt = GuiText(prompt, shared_ptr<GFont>(), promptFontSize);
m_allowEmpty = allowEmpty;
GuiPane *pane = GuiWindow::pane();
pane->beginRow(); {
auto l = pane->addLabel(m_prompt);
l->setSize(0.99f*size[0], 50.0f);
} pane->endRow();
if (!m_allowEmpty) {
pane->beginRow(); {
m_warningLabel = pane->addLabel("", GFont::XALIGN_CENTER);
}pane->endRow();
}
pane->beginRow(); {
m_textbox = pane->addMultiLineTextBox("", &result);
m_textbox->setSize(0.99f*size[0], size[1] - 150.0f);
} pane->endRow();
pane->beginRow(); {
auto b = pane->addButton(GuiText("Submit", shared_ptr<GFont>(), buttonFontSize), std::bind(&TextEntryDialog::submitCallback, this));
b->setSize(0.99f*size[0], 50.0f);
}
if (resize) { pack(); }
}
public:
static shared_ptr<TextEntryDialog> create(const String& prompt, const shared_ptr<GuiTheme> theme,
const String& title = "Dialog", bool allowEmpty=true, Point2 size = Point2(400.0f, 300.0f), bool resize=true,
float promptFontSize = -1.f, float buttonFontSize = -1.f, Point2 position = Point2(200.0f, 200.0f))
{
return createShared<TextEntryDialog>(prompt, theme, title, allowEmpty, size, resize, promptFontSize, buttonFontSize, position);
}
};
class RatingDialog : public SelectionDialog {
protected:
RatingDialog(const String& prompt, const Array<String>& levels, const shared_ptr<GuiTheme> theme,
const String& title = "Dialog", bool submitBtn=false, Point2 size = Point2(400.0f, 200.0f), bool resize=true,
float promptFontSize = -1.f, float optionFontSize = -1.f, float buttonFontSize = -1.f, Point2 position = Point2(200.0f, 200.0f)) :
SelectionDialog(prompt, levels, theme, title, submitBtn, levels.size(), size, resize, promptFontSize, optionFontSize, buttonFontSize, position, GFont::XALIGN_LEFT) {}
public:
static shared_ptr<RatingDialog> create(const String& prompt, const Array<String>& levels, const shared_ptr<GuiTheme> theme,
const String& title = "Dialog", bool submitBtn=false, Point2 size = Point2(400.0f, 200.0f), bool resize=true,
float promptFontSize = -1.f, float optionFontSize = -1.f, float buttonFontSize = -1.f, Point2 position = Point2(200.0f, 200.0f))
{
return createShared<RatingDialog>(prompt, levels, theme, title, submitBtn, size, resize, promptFontSize, optionFontSize, buttonFontSize, position);
}
};
class DropDownDialog : public DialogBase {
protected:
GuiDropDownList* m_dropDown; // Drop down selection list
void submitCallback() {
complete = true;
setVisible(false);
result = m_dropDown->selectedValue();
}
DropDownDialog(const String& prompt, const Array<String>& options, const shared_ptr<GuiTheme> theme, const String& title = "Dialog",
Point2 size = Point2(400.f, 200.f), bool resize=true,
float promptFontSize = -1.f, float buttonFontSize = -1.f, Point2 position = Point2(200.f, 200.f)) :
DialogBase(theme, title, position, size)
{
m_prompt = GuiText(prompt, shared_ptr<GFont>(), promptFontSize);
GuiPane* pane = GuiWindow::pane();
pane->beginRow(); {
auto l = pane->addLabel(m_prompt);
l->setSize(0.99f * size[0], 50.0f);
} pane->endRow();
pane->beginRow(); {
m_dropDown = pane->addDropDownList("", options);
m_dropDown->setSize(0.99f * size[0], size[1] - 150.0f);
} pane->endRow();
pane->beginRow(); {
auto b = pane->addButton(GuiText("Submit", shared_ptr<GFont>(), buttonFontSize), std::bind(&DropDownDialog::submitCallback, this));
b->setSize(0.99f * size[0], 50.0f);
} pane->endRow();
if (resize) pack();
}
public:
static shared_ptr<DropDownDialog> create(const String& prompt, const Array<String>& options, const shared_ptr<GuiTheme> theme, const String& title = "Dialog",
Point2 size = Point2(400.f, 200.f), bool resize = true, float promptFontSize = -1.f, float buttonFontSize = -1.f, Point2 position = Point2(200.f, 200.f))
{
return createShared<DropDownDialog>(prompt, options, theme, title, size, resize, promptFontSize, buttonFontSize, position);
}
};