-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputmenu.cpp
183 lines (141 loc) · 5.06 KB
/
outputmenu.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
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
#include "outputmenu.h"
#include <QGridLayout>
#include <QStyle>
#include <QPushButton>
#include <QLabel>
#include <QCheckBox>
#include <QSpinBox>
#include <QComboBox>
#include "leftmenu.h"
OutputMenu::OutputMenu(LeftMenu *leftMenu)
{
setParent(leftMenu);
setTitle("Discrete flow");
vertSpace = leftMenu->getVertSpace();
createButtons();
createLayout();
}
void OutputMenu::createButtons()
{
iterateButton = new QPushButton(QString("Run flow (N)"));
iterateButton->setToolTip("Iterate the discrete flow");
computeButton = new QPushButton(QString("Run flow (%1)").arg(QChar(0x221E)));
computeButton->setToolTip("Run the discrete flow");
flowComboBox = new QComboBox;
flowComboBox->addItem(QString("Choose flow method..."), FLOW_CHOICE);
flowComboBox->addItem(QString("Cosh-center of mass"), FLOW_CENTROID);
flowComboBox->addItem(QString("Discrete heat flow (C)"), FLOW_ENERGY_CONSTANT_STEP);
flowComboBox->addItem(QString("Discrete heat flow (O)"), FLOW_ENERGY_OPTIMAL_STEP);
flowComboBox->setToolTip("Choose flow method");
resetButton = new QPushButton(QString("Reset"));
resetButton->setToolTip("Reset the function to its initialization");
iterateLabel = new QLabel("N = ");
iterateSpinBox = new QSpinBox();
iterateSpinBox->setRange(1, 10000);
iterateSpinBox->setValue(1);
iterateSpinBox->setToolTip("Choose number of iterations");
showLiveLabel = new QLabel("Show live ");
showLiveCheckbox = new QCheckBox;
showLiveCheckbox->setToolTip("Show function while running the discrete heat flow");
buttonHeight = computeButton->sizeHint().height();
iterateButton->setFixedHeight(buttonHeight);
computeButton->setFixedHeight(buttonHeight);
flowComboBox->setFixedHeight(buttonHeight);
resetButton->setFixedHeight(buttonHeight);
showLiveLabel->setFixedHeight(buttonHeight);
showLiveCheckbox->setFixedHeight(buttonHeight);
}
void OutputMenu::createLayout()
{
layout = new QGridLayout;
layout->setSpacing(0);
layout->setRowMinimumHeight(0, 2*vertSpace);
layout->setRowMinimumHeight(1, buttonHeight);
layout->setRowMinimumHeight(2, 4*vertSpace);
layout->setRowMinimumHeight(3, buttonHeight);
layout->setRowMinimumHeight(4, 4*vertSpace);
layout->setRowMinimumHeight(5, buttonHeight);
layout->setRowMinimumHeight(6, vertSpace);
layout->setRowMinimumHeight(7, buttonHeight);
layout->setRowMinimumHeight(8, 4*vertSpace);
layout->setRowMinimumHeight(9, buttonHeight);
layout->setRowMinimumHeight(10, vertSpace);
layout->setRowMinimumHeight(11, buttonHeight);
layout->addWidget(resetButton, 1, 0, 1, 2);
resetButton->setVisible(true);
resetButton->setEnabled(false);
layout->addWidget(flowComboBox, 3, 0, 1, 2);
iterateButton->setVisible(true);
iterateButton->setEnabled(true);
layout->addWidget(iterateButton, 5, 0, 1, 2);
iterateButton->setVisible(true);
iterateButton->setEnabled(true);
layout->addWidget(iterateLabel, 7, 0, 1, 1, Qt::AlignRight);
showLiveLabel->setVisible(true);
layout->addWidget(iterateSpinBox, 7, 1, 1, 1);
showLiveCheckbox->setVisible(true);
layout->addWidget(computeButton, 9, 0, 1, 2);
computeButton->setVisible(true);
computeButton->setEnabled(true);
layout->addWidget(showLiveLabel, 11, 0, 1, 1, Qt::AlignRight);
showLiveLabel->setVisible(true);
layout->addWidget(showLiveCheckbox, 11, 1, 1, 1);
showLiveCheckbox->setVisible(true);
showLiveCheckbox->setChecked(true);
setLayout(layout);
}
void OutputMenu::resetMenu(bool fullReset)
{
resetButton->setEnabled(false);
iterateLabel->setEnabled(true);
iterateSpinBox->setEnabled(true);
flowComboBox->setEnabled(true);
showLiveLabel->setEnabled(true);
showLiveCheckbox->setEnabled(true);
enableRunButtons(flowComboBox->currentIndex() != FLOW_CHOICE);
if (fullReset)
{
iterateButton->setEnabled(false);
computeButton->setEnabled(false);
iterateSpinBox->setValue(1);
flowComboBox->setCurrentIndex(FLOW_CHOICE);
showLiveCheckbox->setChecked(false);
}
}
void OutputMenu::disableAllButStop()
{
resetButton->setEnabled(false);
flowComboBox->setEnabled(false);
iterateButton->setEnabled(false);
iterateLabel->setEnabled(false);
iterateSpinBox->setEnabled(false);
showLiveLabel->setEnabled(false);
showLiveCheckbox->setEnabled(false);
}
void OutputMenu::enableAll()
{
resetButton->setEnabled(true);
iterateButton->setEnabled(true);
flowComboBox->setEnabled(true);
iterateLabel->setEnabled(true);
iterateSpinBox->setEnabled(true);
showLiveLabel->setEnabled(true);
showLiveCheckbox->setEnabled(true);
}
void OutputMenu::enableRunButtons(bool b)
{
iterateButton->setEnabled(b);
computeButton->setEnabled(b);
}
void OutputMenu::switchComputeToStopButton()
{
computeButton->setText(tr("Stop"));
}
void OutputMenu::switchStopToComputeButton()
{
computeButton->setText(QString("Run flow (%1)").arg(QChar(0x221E)));
}
void OutputMenu::enableReset()
{
resetButton->setEnabled(true);
}