~ubuntu-branches/ubuntu/raring/muse/raring-proposed

« back to all changes in this revision

Viewing changes to muse/widgets/musewidgetsplug.cpp

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2012-11-22 01:16:59 UTC
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: package-import@ubuntu.com-20121122011659-a2fwbf33ceqe1s0t
Tags: upstream-2.1~rc1
ImportĀ upstreamĀ versionĀ 2.1~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
      };
55
55
 
56
56
MusEGlobal::GlobalConfigValues config = {
57
 
      190,                        // globalAlphaBlend    
 
57
      170,                        // globalAlphaBlend    
58
58
      {
59
59
        QColor(0xff, 0xff, 0xff),   // palette
60
60
        QColor(0xff, 0xff, 0xff),
131
131
      
132
132
      QColor(0, 160, 255),          // midiTrackLabelBg;   // Med blue
133
133
      QColor(0, 160, 255),          // drumTrackLabelBg;   // Med blue
 
134
      QColor(0, 160, 255),          // newDrumTrackLabelBg;   // Med blue
134
135
      Qt::magenta,                  // waveTrackLabelBg;
135
136
      Qt::green,                    // outputTrackLabelBg;
136
137
      Qt::red,                      // inputTrackLabelBg;
140
141
      
141
142
      QColor(220, 220, 220),     // midiTrackBg;
142
143
      QColor(220, 220, 220),     // drumTrackBg;
 
144
      QColor(220, 220, 220),     // newDrumTrackBg;
143
145
      QColor(220, 220, 220),     // waveTrackBg;
144
146
      QColor(189, 220, 193),     // outputTrackBg;
145
147
      QColor(189, 220, 193),     // inputTrackBg;
153
155
 
154
156
      384,                          // division;
155
157
      1024,                         // rtcTicks
 
158
      true,                         // midiSendInit Send instrument initialization sequences
 
159
      true,                         // warnInitPending Warn instrument initialization sequences pending
 
160
      false,                        // midiSendCtlDefaults Send instrument controller defaults at position 0 if none in song
 
161
      true,                         // warnIfBadTiming Warn if timer res not good
 
162
      false,                        // velocityPerNote Whether to show per-note or all velocities
156
163
      -60,                          // int minMeter;
157
164
      -60.0,                        // double minSlider;
158
165
      false,                        // use Jack freewheel
166
173
      false,                        // midi export file 2 byte timesigs instead of 4
167
174
      true,                         // optimize midi export file note offs
168
175
      true,                         // Split imported tracks into multiple parts.
 
176
      true,                         // importMidiNewStyleDrum
 
177
      true,                         // importDevNameMetas Import Prefer Device Name metas over port number metas if both exist.
 
178
      true,                         // importInstrNameMetas Import Prefer Instrument Name metas over Mode sysexes if both exist.
 
179
      MusEGlobal::EXPORT_PORTS_DEVICES_ALL,    // exportPortsDevices Export port number metas and/or device name metas.
 
180
      true,                         // exportPortDeviceSMF0 Export a port and/or device meta even for SMF0.
 
181
      MusEGlobal::EXPORT_MODE_INSTR_ALL,       // exportModeInstr Export mode sysexes and/or instrument name metas.
 
182
      QString("GM"),                // importMidiDefaultInstr Default to this instrument not Generic, if no match found
169
183
      1,                            // startMode
170
184
      QString(""),                  // start song path
171
185
      false,                        // startSongLoadConfig
178
192
         QString("Mixer A"),
179
193
         QRect(0, 0, 300, 500),        // Mixer1
180
194
         true, true, true, true,
181
 
         true, true, true, true
 
195
         true, true, true, true, true
182
196
         },
183
197
      {
184
198
         QString("Mixer B"),
185
199
         QRect(200, 200, 300, 500),    // Mixer2
186
200
         true, true, true, true,
187
 
         true, true, true, true
 
201
         true, true, true, true, true
188
202
         },
189
203
      true,                         // TransportVisible;
190
204
      false,                        // BigTimeVisible;
208
222
      true,                         // showDidYouKnow
209
223
      false,                        // vstInPlace  Enable VST in-place processing
210
224
      44100,                        // Dummy audio preferred sample rate
211
 
      512                           // Dummy audio buffer size
 
225
      512,                          // Dummy audio buffer size
212
226
      QString("./"),                // projectBaseFolder
213
227
      true,                         // projectStoreInFolder
214
228
      true,                         // useProjectSaveDialog
215
229
      256,                          // minControlProcessPeriod
216
230
      false,                        // popupsDefaultStayOpen
217
231
      false,                        // leftMouseButtonCanDecrease
218
 
      false,                        // rangeMarkerWithoutMMBCheckBox
 
232
      false,                        // rangeMarkerWithoutMMB
 
233
      MusECore::DONT_REC_MUTED_OR_HIDDEN,
219
234
      true,                         // addHiddenTracks
220
235
      true,                         // unhideTracks
 
236
      MusEGlobal::PREFER_NEW,       // drumTrackPreference
221
237
      true                          // smartFocus
222
238
      };
223
239