~ubuntu-branches/ubuntu/oneiric/muse/oneiric

« back to all changes in this revision

Viewing changes to muse/gconfig.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2010-11-17 21:43:38 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101117214338-1hvfl7oo2dsqnvrb
Tags: 1.1-0ubuntu1
* New upstream release (LP: #668631)
* Switch to dpkg-source 3.0 (quilt) format
* Switch to dh7 short form
* debian/rules:
  - added --enable-dssi and --enable-osc to conf flags for dssi support
  - added -ljackserver to LDFLAGS to fix a FTBFS because of --as-needed
* debian/control:
  - added build build dependency on liblo-dev and dssi-dev for dssi support
  - bump Standards-version to 3.9.1. No changes required.
* debian/muse.desktop, debian/muse.xpm: dropped as desktop file and icon is
  now shipped upstream.
* fix-desktop-categories.patch: fix Categories tag in upstream desktop file
* 10_es_locale_fix.dpatch: refreshed and converted to quilt as
  fix_es_locale.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
      QColor(0x80, 0xff, 0x80),     // selected track Bg;
65
65
      QColor(0x00, 0x00, 0x00),     // selected track Fg;
66
66
      QColor(220, 220, 220),     // midiTrackBg;
67
 
      QColor(0x00, 0x00, 0xff),     // ctrlGraphFg;
 
67
      QColor(255, 170, 0),       // ctrlGraphFg;    Medium orange
68
68
      QColor(220, 220, 220),     // drumTrackBg;
69
69
      QColor(220, 220, 220),     // waveTrackBg;
70
70
      QColor(189, 220, 193),     // outputTrackBg;
88
88
      1,                            // smf export file format
89
89
      false,                        // midi export file 2 byte timesigs instead of 4
90
90
      true,                         // optimize midi export file note offs
 
91
      true,                         // Split imported tracks into multiple parts.
91
92
      1,                            // startMode
92
93
      QString(""),                  // start song path
93
94
      384,                          // gui division
96
97
      QRect(0, 0, 600, 200),        // GeometryBigTime;
97
98
      QRect(0, 0, 400, 300),        // GeometryPianoroll;
98
99
      QRect(0, 0, 400, 300),        // GeometryDrumedit;
99
 
      QRect(0, 0, 300, 500),        // GeometryMixer;
 
100
      //QRect(0, 0, 300, 500),        // GeometryMixer;  // Obsolete
 
101
      {
 
102
         QString("Mixer A"),
 
103
         QRect(0, 0, 300, 500),        // Mixer1
 
104
         true, true, true, true,
 
105
         true, true, true, true
 
106
         },
 
107
      {
 
108
         QString("Mixer B"),
 
109
         QRect(200, 200, 300, 500),    // Mixer2
 
110
         true, true, true, true,
 
111
         true, true, true, true
 
112
         },
100
113
      true,                         // TransportVisible;
101
114
      false,                        // BigTimeVisible;
102
 
      false,                        // mixerVisible;
 
115
      false,                        // mixer1Visible;
 
116
      false,                        // mixer2Visible;
 
117
      
103
118
      false,                        // markerVisible;
104
119
      true,                         // showSplashScreen
105
120
      1,                            // canvasShowPartType 1 - names, 2 events
106
121
      5,                            // canvasShowPartEvent
107
 
      false,                        // canvasShowGrid;
 
122
      true,                        // canvasShowGrid;
108
123
      QString(""),                  // canvasBgPixmap;
109
124
      QString(""),                  // style
110
125
      QString("sweep"),             // externalWavEditor
111
126
      false,                        // useOldStyleStopShortCut
 
127
      true,                        // moveArmedCheckBox
112
128
      true,                         // useDenormalBias
113
129
      false,                        // useOutputLimiter
114
130
      true,                         // showDidYouKnow
115
 
      false                         // vstInPlace  Enable VST in-place processing
 
131
      false,                        // vstInPlace  Enable VST in-place processing
 
132
      44100,                        // Dummy audio preferred sample rate
 
133
      512                           // Dummy audio buffer size
116
134
    };
117
135