forked from PALYGAP/MidyAX-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBeatStep.cpp
More file actions
executable file
·37 lines (27 loc) · 784 Bytes
/
Copy pathBeatStep.cpp
File metadata and controls
executable file
·37 lines (27 loc) · 784 Bytes
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
#include <QCloseEvent>
#include "BeatStep.h"
BeatStep::BeatStep(QWidget *parent) :
MIDIControllerGenericDialogMOD1(parent, QString("BEATSTEP"), BEATSTEP_MC, 17, 0, 0, 16), //m_numberOfKnobs, m_numberOfSlidders, m_numberOfParameterButtons, m_numberOfPageSelectButtons
ui(new Ui::BeatStep)
{
ui->setupUi(this);
init();
}
BeatStep::~BeatStep()
{
delete ui;
}
void BeatStep::init( void)
{
m_initMode = false;
m_initMode_timer.start();
m_initMode = true;
MIDIControllerGenericDialogMOD1::init( );
constructWidgetLists( &ui->gridLayoutWidget );
connectWidgetOnDialog();
// Initiate the KNOBS elements
// fillComboBox(); //TODO: reactivate for non-fixed mapping use
updateKnobsDisplay();
m_initMode = false;
this->repaint();
}