1345 moved LedCheckBox to MISC tab

This commit is contained in:
Dave French
2015-01-10 19:05:40 +00:00
parent af22d39612
commit 83baea6605
4 changed files with 53 additions and 9 deletions

View File

@@ -34,6 +34,8 @@
class GroupBox;
class LcdSpinBox;
class QToolButton;
class LedCheckBox;
class InstrumentTrack;
class InstrumentMidiIOView : public QWidget, public ModelView
@@ -63,4 +65,16 @@ private:
} ;
class InstrumentMiscView : public QWidget
{
Q_OBJECT
public:
InstrumentMiscView( InstrumentTrack *it, QWidget* parent );
~InstrumentMiscView();
private:
LedCheckBox * m_useMasterPitchBox;
};
#endif

View File

@@ -49,6 +49,7 @@ class FadeButton;
class Instrument;
class InstrumentTrackWindow;
class InstrumentMidiIOView;
class InstrumentMiscView;
class Knob;
class LcdSpinBox;
class midiPortMenu;
@@ -268,6 +269,7 @@ private:
friend class InstrumentTrackWindow;
friend class NotePlayHandle;
friend class FlpImport;
friend class InstrumentMiscView;
} ;
@@ -416,7 +418,7 @@ private:
Knob * m_pitchKnob;
LcdSpinBox* m_pitchRangeSpinBox;
LcdSpinBox * m_effectChannelNumber;
LedCheckBox * m_useMasterPitchBox;
// tab-widget with all children
@@ -427,6 +429,8 @@ private:
InstrumentFunctionArpeggioView* m_arpeggioView;
InstrumentMidiIOView * m_midiView;
EffectRackView * m_effectView;
InstrumentMiscView *m_miscView;
// test-piano at the bottom of every instrument-settings-window
PianoView * m_pianoView;