Puts the controls of the InstrumentTrackWindow into a grid layout

Puts the controls of the InstrumentTrackWindow into a grid layout to
give them a more balanced look. Without this patch the labels of the
widgets are not aligned which gives the instrument controls a rather
unbalanced look.

Added a "SAVE" label for the preset button to make the layout more
balanced.
This commit is contained in:
Michael Gregorius
2015-09-12 13:01:10 +02:00
parent 98346f7a9a
commit 8b7a48cd37
2 changed files with 64 additions and 18 deletions

View File

@@ -59,6 +59,7 @@ class PluginView;
class TabWidget;
class TrackLabelButton;
class LedCheckBox;
class QLabel;
class EXPORT InstrumentTrack : public Track, public MidiEventProcessor
@@ -431,7 +432,9 @@ private:
Knob * m_volumeKnob;
Knob * m_panningKnob;
Knob * m_pitchKnob;
QLabel * m_pitchLabel;
LcdSpinBox* m_pitchRangeSpinBox;
QLabel * m_pitchRangeLabel;
LcdSpinBox * m_effectChannelNumber;