-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeasure.cpp
261 lines (229 loc) · 5.82 KB
/
measure.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
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
#include "measure.h"
#include "ui_measure.h"
Measure::Measure(QWidget *parent) :
QWidget(parent),
ui(new Ui::Measure)
{
ui->setupUi(this);
ui->vLayout_buttons->setAlignment(Qt::AlignTop);
}
Measure::Measure(QJsonObject jsonObject, QWidget *parent):
Measure(parent)
{
loadFromJson(jsonObject);
}
Measure::~Measure()
{
delete ui;
}
// =============================================================================
// Getters
/**
* @brief Measure::getBpm
* @return beats per minute for the measure
*/
int Measure::getBpm()
{
return ui->spn_beatsPerMinute->value();
}
/**
* @brief Measure::getRepetitions
* @return total repetitions for the measure
*/
int Measure::getRepetitions()
{
return ui->spn_numberOfRepeats->value();
}
/**
* @brief Measure::getTimeSignature
* @return the time signature for the measure
*
* Calculate the time signature from the user entered
* numerator and denominator
*
*/
int Measure::getTimeSignature()
{
int numerator = getNumerator();
int denominator = getDenominator();
if (numerator <= 0) {
return DEFAULT_TIME_SIGNATURE;
}
return (numerator / denominator) * denominator;
}
/**
* @brief Measure::getNumerator
* @return the value of the numerator spinner
*/
int Measure::getNumerator()
{
return ui->cbox_timeSignatureNumerator->currentText().toInt();
}
/**
* @brief Measure::getNumeratorIndex
* @return the index of the numerator spinner
*/
int Measure::getNumeratorIndex()
{
return ui->cbox_timeSignatureNumerator->currentIndex();
}
/**
* @brief Measure::getDenominator
* @return the value of the denominator spinner
*/
int Measure::getDenominator()
{
return ui->cbox_timeSignatureDenominator->currentText().toInt();
}
/**
* @brief Measure::getDenominatorIndex
* @return the index of the denominator spinner
*/
int Measure::getDenominatorIndex()
{
return ui->cbox_timeSignatureDenominator->currentIndex();
}
/**
* @brief Measure::getTitle
* @return the title for the measure
*/
QString Measure::getTitle()
{
return ui->le_title->text();
}
// =============================================================================
// Setter
/**
* @brief Measure::setBpm
* @param beatsPerMinute the beats per minute for the measure
*
* Set the beats per minute for the measure
*
*/
void Measure::setBpm(int beatsPerMinute)
{
int minBeatsPerMinute = ui->spn_beatsPerMinute->minimum();
int maxBeatsPerMinute = ui->spn_beatsPerMinute->maximum();
if (beatsPerMinute >= minBeatsPerMinute && beatsPerMinute <= maxBeatsPerMinute) {
ui->spn_beatsPerMinute->setValue(beatsPerMinute);
}
}
/**
* @brief Measure::setRepetitions
* @param repetitions the total repetitions for the measure
*
* Set the total repetitions for the measure
*
*/
void Measure::setRepetitions(int repetitions)
{
int minRepetitions= ui->spn_numberOfRepeats->minimum();
int maxRepetitions = ui->spn_numberOfRepeats->maximum();
if (repetitions >= minRepetitions && repetitions <= maxRepetitions) {
ui->spn_numberOfRepeats->setValue(repetitions);
}
}
/**
* @brief Measure::setTimeSignatureIndex
* @param numeratorIndex index of the numerator spinner
* @param denominatorIndex index of the denominator spinner
*
* Set the time signature based on the indices for the
* numerator and denominator spinners
*
*/
void Measure::setTimeSignatureIndex(int numeratorIndex, int denominatorIndex)
{
ui->cbox_timeSignatureNumerator->setCurrentIndex(numeratorIndex);
ui->cbox_timeSignatureDenominator->setCurrentIndex(denominatorIndex);
}
/**
* @brief Measure::setTitle
* @param title the title for the measure
*
* Set the title for the measure
*
*/
void Measure::setTitle(QString title)
{
ui->le_title->setText(title);
}
// =============================================================================
// Json
/**
* @brief Measure::getJsonObject
* @return json representation of the measure
*
* Put all user fillable fields into a json object
*
*/
QJsonObject Measure::getJsonObject()
{
QString title = getTitle();
int bpm = getBpm();
int repetitions = getRepetitions();
int numeratorIndex = getNumeratorIndex();
int denominatorIndex = getDenominatorIndex();
QJsonObject jsonObject;
jsonObject.insert(JSON_KEY_TITLE, title);
jsonObject.insert(JSON_KEY_BPM, bpm);
jsonObject.insert(JSON_KEY_REPEATS, repetitions);
jsonObject.insert(JSON_KEY_NUMERATOR, numeratorIndex);
jsonObject.insert(JSON_KEY_DENOMINATOR, denominatorIndex);
return jsonObject;
}
/**
* @brief Measure::loadFromJson
* @param jsonObject the json object that needs to be loaded
*
* Load all the json values into the corresponding user
* fillable fields
*
*/
void Measure::loadFromJson(QJsonObject jsonObject)
{
QString title = jsonObject.value(JSON_KEY_TITLE).toString();
int bpm = jsonObject.value(JSON_KEY_BPM).toInt();
int repetitions = jsonObject.value(JSON_KEY_REPEATS).toInt();
int numeratorIndex = jsonObject.value(JSON_KEY_NUMERATOR).toInt();
int denominatorIndex = jsonObject.value(JSON_KEY_DENOMINATOR).toInt();
setTitle(title);
setBpm(bpm);
setRepetitions(repetitions);
setTimeSignatureIndex(numeratorIndex, denominatorIndex);
}
// =============================================================================
// Slots
/**
* @brief Measure::on_btn_moveUp_clicked
*
* Notify the listeners that the measure is
* supposed to be moved up
*
*/
void Measure::on_btn_moveUp_clicked()
{
emit notifyMoveUp(this);
}
/**
* @brief Measure::on_btn_moveDown_clicked
*
* Notify the listeners that the measure is
* supposed to be moved down
*
*/
void Measure::on_btn_moveDown_clicked()
{
emit notifyMoveDown(this);
}
/**
* @brief Measure::on_btn_delete_clicked
*
* Delete the current object
*
*/
void Measure::on_btn_delete_clicked()
{
emit notifyDelete(this);
this->deleteLater();
}