diff options
| author | Florian Jung <flo@windfisch.org> | 2011-10-11 13:35:11 +0000 | 
|---|---|---|
| committer | Florian Jung <flo@windfisch.org> | 2011-10-11 13:35:11 +0000 | 
| commit | 3dd4d0393c2824e98022d921667826a568843a7c (patch) | |
| tree | 7ef8708fc9623cb830ca2fd3515bdf137e1533fb /muse2/muse | |
| parent | 872bace8291a63849ce690100eec7042bf8e05b6 (diff) | |
added new drum tracks to appearance settings
Diffstat (limited to 'muse2/muse')
| -rw-r--r-- | muse2/muse/appearance.cpp | 12 | ||||
| -rw-r--r-- | muse2/muse/midiedit/scoreedit.cpp | 1 | 
2 files changed, 10 insertions, 3 deletions
| diff --git a/muse2/muse/appearance.cpp b/muse2/muse/appearance.cpp index ab2f8872..49397c0f 100644 --- a/muse2/muse/appearance.cpp +++ b/muse2/muse/appearance.cpp @@ -216,6 +216,7 @@ Appearance::Appearance(Arranger* a, QWidget* parent)             new IdListViewItem(0x411, id, "background");             new IdListViewItem(0x412, id, "midi background");             new IdListViewItem(0x413, id, "drum background"); +           new IdListViewItem(0x41e, id, "new drum background");             new IdListViewItem(0x414, id, "wave background");             new IdListViewItem(0x415, id, "output background");             new IdListViewItem(0x416, id, "input background"); @@ -224,6 +225,7 @@ Appearance::Appearance(Arranger* a, QWidget* parent)             new IdListViewItem(0x419, id, "synth background");             new IdListViewItem(0x41a, id, "selected track background");             new IdListViewItem(0x41b, id, "selected track foreground"); +           //   0x41e is already used (between 413 and 414)        id = new IdListViewItem(0, itemList, "BigTime");             new IdListViewItem(0x100, id, "background");             new IdListViewItem(0x101, id, "foreground"); @@ -237,12 +239,14 @@ Appearance::Appearance(Arranger* a, QWidget* parent)             new IdListViewItem(0x500, id, "background");             new IdListViewItem(0x501, id, "midi label");             new IdListViewItem(0x502, id, "drum label"); +           new IdListViewItem(0x509, id, "new drum label");             new IdListViewItem(0x503, id, "wave label");             new IdListViewItem(0x504, id, "audio output label");             new IdListViewItem(0x505, id, "audio input label");             new IdListViewItem(0x506, id, "group label");             new IdListViewItem(0x507, id, "aux label");             new IdListViewItem(0x508, id, "synth label"); +           //   0x509 is already used (between 502 and 503)        colorNameLineEdit->setEnabled(false); @@ -842,7 +846,8 @@ void Appearance::colorItemSelectionChanged()              case 0x300: color = &config->waveEditBackgroundColor; break;              case 0x411: color = &config->trackBg;       break;              case 0x412: color = &config->midiTrackBg;   break; -            case 0x413: color = &config->drumTrackBg;   break; //FINDMICHJETZT add newDrum... +            case 0x413: color = &config->drumTrackBg;   break; +            case 0x41e: color = &config->newDrumTrackBg;break;              case 0x414: color = &config->waveTrackBg;   break;              case 0x415: color = &config->outputTrackBg; break;              case 0x416: color = &config->inputTrackBg;  break; @@ -853,16 +858,19 @@ void Appearance::colorItemSelectionChanged()              case 0x41b: color = &config->selectTrackFg;  break;              case 0x41c: color = &config->partCanvasBg; break;              case 0x41d: color = &config->ctrlGraphFg; break; +            //   0x41e is already used (between 413 and 414)              case 0x500: color = &config->mixerBg;   break;              case 0x501: color = &config->midiTrackLabelBg;   break; -            case 0x502: color = &config->drumTrackLabelBg;   break; //FINDMICHJETZT add newDrum... +            case 0x502: color = &config->drumTrackLabelBg;   break; +            case 0x509: color = &config->newDrumTrackLabelBg;break;              case 0x503: color = &config->waveTrackLabelBg;   break;              case 0x504: color = &config->outputTrackLabelBg; break;              case 0x505: color = &config->inputTrackLabelBg;  break;              case 0x506: color = &config->groupTrackLabelBg;  break;              case 0x507: color = &config->auxTrackLabelBg;    break;              case 0x508: color = &config->synthTrackLabelBg;  break; +            //   0x509 is already used (between 502 and 503)              default:                    color = 0; diff --git a/muse2/muse/midiedit/scoreedit.cpp b/muse2/muse/midiedit/scoreedit.cpp index 2be4bf60..962a7ae3 100644 --- a/muse2/muse/midiedit/scoreedit.cpp +++ b/muse2/muse/midiedit/scoreedit.cpp @@ -4607,7 +4607,6 @@ void ScoreCanvas::add_new_parts(const std::map< MusECore::Part*, std::set<MusECo   *        o offer some way to set maintained_automatically to true again   *        o move generation and deletion of ourDrumMap from DCanvas to DrumEditor and remove ugly wrapper functions   * - *   o in appearance.cpp: add the new stuff for drumTrackLabelBg and drumTrackBg    *   o find and fix FINDMICHJETZT   *   o fix all segfaults and non-working stuff!   *        - creating, changing types to and from, erasing NEW_DRUM tracks | 
