2016-07-17 10:48:12 +00:00
|
|
|
#ifndef SETTINGSWINDOW_H
|
|
|
|
|
#define SETTINGSWINDOW_H
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
#include <QComboBox>
|
2016-07-17 17:16:47 +00:00
|
|
|
#include <QGroupBox>;
|
|
|
|
|
#include <QCheckBox>
|
|
|
|
|
#include <QSpinBox>
|
2016-07-17 10:48:12 +00:00
|
|
|
|
|
|
|
|
#include "qmidimessage.h"
|
|
|
|
|
#include "qmidiin.h"
|
|
|
|
|
#include "qmidiout.h"
|
|
|
|
|
|
|
|
|
|
class settingsWindow : public QMainWindow
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit settingsWindow(QWidget *parent = 0);
|
|
|
|
|
|
|
|
|
|
QMidiMessage* _midiMessage;
|
|
|
|
|
|
|
|
|
|
QComboBox *_inPortComboBox;
|
|
|
|
|
QComboBox *_outPortComboBox;
|
2016-07-17 17:16:47 +00:00
|
|
|
|
|
|
|
|
QCheckBox *_channelThruCheckBox;
|
|
|
|
|
QCheckBox *_sysexThruCheckBox;
|
|
|
|
|
QCheckBox *_realtimeThruCheckBox;
|
|
|
|
|
QSpinBox *_masterChannelSpinBox;
|
|
|
|
|
|
2016-07-17 10:48:12 +00:00
|
|
|
private:
|
|
|
|
|
QMidiIn *_midiIn;
|
|
|
|
|
QMidiOut *_midiOut;
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // SETTINGSWINDOW_H
|