diff options
author | Robert Jonsson <spamatica@gmail.com> | 2012-10-04 16:08:51 +0000 |
---|---|---|
committer | Robert Jonsson <spamatica@gmail.com> | 2012-10-04 16:08:51 +0000 |
commit | 8f81edb163136e8374db131eeefd261fc58e2dc9 (patch) | |
tree | aa107d525e28c06a3543b2de1d1e48d76ac057a3 /muse2/muse/widgets | |
parent | 2783d453532728eee509c1e61d4bdd4a5bfac64f (diff) |
added gain knob to channel strips
Diffstat (limited to 'muse2/muse/widgets')
-rw-r--r-- | muse2/muse/widgets/knob.h | 6 | ||||
-rw-r--r-- | muse2/muse/widgets/mtrackinfobase.ui | 17 |
2 files changed, 22 insertions, 1 deletions
diff --git a/muse2/muse/widgets/knob.h b/muse2/muse/widgets/knob.h index bd8621a1..114284d0 100644 --- a/muse2/muse/widgets/knob.h +++ b/muse2/muse/widgets/knob.h @@ -43,6 +43,12 @@ class Knob : public SliderBase, public ScaleIf public: enum Symbol { Line, Dot }; + enum KnobType { + panType, + auxType, + gainType, + }; + private: bool hasScale; diff --git a/muse2/muse/widgets/mtrackinfobase.ui b/muse2/muse/widgets/mtrackinfobase.ui index 93c2f2c9..f566d207 100644 --- a/muse2/muse/widgets/mtrackinfobase.ui +++ b/muse2/muse/widgets/mtrackinfobase.ui @@ -6,7 +6,7 @@ <rect> <x>0</x> <y>0</y> - <width>93</width> + <width>94</width> <height>417</height> </rect> </property> @@ -284,6 +284,9 @@ <verstretch>0</verstretch> </sizepolicy> </property> + <property name="toolTip"> + <string>Transpose notes up or down</string> + </property> <property name="text"> <string>Transp.</string> </property> @@ -325,6 +328,9 @@ <verstretch>0</verstretch> </sizepolicy> </property> + <property name="toolTip"> + <string>Offset playback of notes before or after actual note</string> + </property> <property name="text"> <string>Delay</string> </property> @@ -369,6 +375,9 @@ <verstretch>0</verstretch> </sizepolicy> </property> + <property name="toolTip"> + <string>Change note length in percent of actual length</string> + </property> <property name="text"> <string>Length</string> </property> @@ -416,6 +425,9 @@ <verstretch>0</verstretch> </sizepolicy> </property> + <property name="toolTip"> + <string><html><head/><body><p>Add or substract velocity to notes on track.</p><p><span style=" font-style:italic;">Since the midi note range is 0-127 this <br/>might mean that the notes do not reach <br/>the combined velocity, note + Velocity.</span></p></body></html></string> + </property> <property name="text"> <string>Velocity</string> </property> @@ -463,6 +475,9 @@ <verstretch>0</verstretch> </sizepolicy> </property> + <property name="toolTip"> + <string>Compress the notes velocity range, in percent of actual velocity</string> + </property> <property name="text"> <string>Compr.</string> </property> |