Chris@0
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@0
|
2
|
Chris@0
|
3 /*
|
Chris@0
|
4 Sonic Visualiser
|
Chris@0
|
5 An audio file viewer and annotation editor.
|
Chris@0
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@77
|
7 This file copyright 2006 Chris Cannam and QMUL.
|
Chris@0
|
8
|
Chris@0
|
9 This program is free software; you can redistribute it and/or
|
Chris@0
|
10 modify it under the terms of the GNU General Public License as
|
Chris@0
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@0
|
12 License, or (at your option) any later version. See the file
|
Chris@0
|
13 COPYING included with this distribution for more information.
|
Chris@0
|
14 */
|
Chris@0
|
15
|
Chris@144
|
16 #include "../version.h"
|
Chris@0
|
17
|
Chris@0
|
18 #include "MainWindow.h"
|
Chris@1
|
19 #include "document/Document.h"
|
Chris@0
|
20 #include "PreferencesDialog.h"
|
Chris@0
|
21
|
Chris@1
|
22 #include "view/Pane.h"
|
Chris@1
|
23 #include "view/PaneStack.h"
|
Chris@1
|
24 #include "data/model/WaveFileModel.h"
|
Chris@1
|
25 #include "data/model/SparseOneDimensionalModel.h"
|
Chris@1
|
26 #include "view/ViewManager.h"
|
Chris@0
|
27 #include "base/Preferences.h"
|
Chris@0
|
28 #include "layer/WaveformLayer.h"
|
Chris@0
|
29 #include "layer/TimeRulerLayer.h"
|
Chris@0
|
30 #include "layer/TimeInstantLayer.h"
|
Chris@0
|
31 #include "layer/TimeValueLayer.h"
|
Chris@0
|
32 #include "layer/Colour3DPlotLayer.h"
|
Chris@95
|
33 #include "layer/SliceLayer.h"
|
Chris@95
|
34 #include "layer/SliceableLayer.h"
|
Chris@0
|
35 #include "widgets/Fader.h"
|
Chris@65
|
36 #include "view/Overview.h"
|
Chris@0
|
37 #include "widgets/PropertyBox.h"
|
Chris@0
|
38 #include "widgets/PropertyStack.h"
|
Chris@0
|
39 #include "widgets/AudioDial.h"
|
Chris@0
|
40 #include "widgets/LayerTree.h"
|
Chris@0
|
41 #include "widgets/ListInputDialog.h"
|
Chris@36
|
42 #include "widgets/SubdividingMenu.h"
|
Chris@90
|
43 #include "widgets/NotifyingPushButton.h"
|
Chris@0
|
44 #include "audioio/AudioCallbackPlaySource.h"
|
Chris@0
|
45 #include "audioio/AudioCallbackPlayTarget.h"
|
Chris@0
|
46 #include "audioio/AudioTargetFactory.h"
|
Chris@59
|
47 #include "audioio/PlaySpeedRangeMapper.h"
|
Chris@1
|
48 #include "data/fileio/AudioFileReaderFactory.h"
|
Chris@1
|
49 #include "data/fileio/DataFileReaderFactory.h"
|
Chris@1
|
50 #include "data/fileio/WavFileWriter.h"
|
Chris@1
|
51 #include "data/fileio/CSVFileWriter.h"
|
Chris@1
|
52 #include "data/fileio/BZipFileDevice.h"
|
Chris@85
|
53 #include "data/fileio/RemoteFile.h"
|
Chris@91
|
54 #include "data/fft/FFTDataServer.h"
|
Chris@1
|
55 #include "base/RecentFiles.h"
|
Chris@0
|
56 #include "transform/TransformFactory.h"
|
Chris@0
|
57 #include "base/PlayParameterRepository.h"
|
Chris@0
|
58 #include "base/XmlExportable.h"
|
Chris@0
|
59 #include "base/CommandHistory.h"
|
Chris@0
|
60 #include "base/Profiler.h"
|
Chris@0
|
61 #include "base/Clipboard.h"
|
Chris@69
|
62 #include "osc/OSCQueue.h"
|
Chris@0
|
63
|
Chris@0
|
64 // For version information
|
Chris@0
|
65 #include "vamp/vamp.h"
|
Chris@0
|
66 #include "vamp-sdk/PluginBase.h"
|
Chris@0
|
67 #include "plugin/api/ladspa.h"
|
Chris@0
|
68 #include "plugin/api/dssi.h"
|
Chris@0
|
69
|
Chris@0
|
70 #include <QApplication>
|
Chris@0
|
71 #include <QMessageBox>
|
Chris@0
|
72 #include <QGridLayout>
|
Chris@0
|
73 #include <QLabel>
|
Chris@0
|
74 #include <QAction>
|
Chris@0
|
75 #include <QMenuBar>
|
Chris@0
|
76 #include <QToolBar>
|
Chris@0
|
77 #include <QInputDialog>
|
Chris@0
|
78 #include <QStatusBar>
|
Chris@0
|
79 #include <QTreeView>
|
Chris@0
|
80 #include <QFile>
|
Chris@88
|
81 #include <QFileInfo>
|
Chris@88
|
82 #include <QDir>
|
Chris@0
|
83 #include <QTextStream>
|
Chris@0
|
84 #include <QProcess>
|
Chris@7
|
85 #include <QShortcut>
|
Chris@5
|
86 #include <QSettings>
|
Chris@11
|
87 #include <QDateTime>
|
Chris@11
|
88 #include <QProcess>
|
Chris@16
|
89 #include <QCheckBox>
|
Chris@55
|
90 #include <QRegExp>
|
Chris@0
|
91
|
Chris@0
|
92 #include <iostream>
|
Chris@0
|
93 #include <cstdio>
|
Chris@0
|
94 #include <errno.h>
|
Chris@0
|
95
|
Chris@0
|
96 using std::cerr;
|
Chris@0
|
97 using std::endl;
|
Chris@0
|
98
|
Chris@33
|
99 using std::vector;
|
Chris@33
|
100 using std::map;
|
Chris@33
|
101 using std::set;
|
Chris@33
|
102
|
Chris@0
|
103
|
Chris@70
|
104 MainWindow::MainWindow(bool withAudioOutput, bool withOSCSupport) :
|
Chris@0
|
105 m_document(0),
|
Chris@0
|
106 m_paneStack(0),
|
Chris@0
|
107 m_viewManager(0),
|
Chris@65
|
108 m_overview(0),
|
Chris@0
|
109 m_timeRulerLayer(0),
|
Chris@46
|
110 m_audioOutput(withAudioOutput),
|
Chris@0
|
111 m_playSource(0),
|
Chris@0
|
112 m_playTarget(0),
|
Chris@70
|
113 m_oscQueue(withOSCSupport ? new OSCQueue() : 0),
|
Chris@81
|
114 m_recentFiles("RecentFiles", 20),
|
Chris@49
|
115 m_recentTransforms("RecentTransforms", 20),
|
Chris@0
|
116 m_mainMenusCreated(false),
|
Chris@0
|
117 m_paneMenu(0),
|
Chris@0
|
118 m_layerMenu(0),
|
Chris@34
|
119 m_transformsMenu(0),
|
Chris@0
|
120 m_existingLayersMenu(0),
|
Chris@95
|
121 m_sliceMenu(0),
|
Chris@34
|
122 m_recentFilesMenu(0),
|
Chris@34
|
123 m_recentTransformsMenu(0),
|
Chris@0
|
124 m_rightButtonMenu(0),
|
Chris@0
|
125 m_rightButtonLayerMenu(0),
|
Chris@34
|
126 m_rightButtonTransformsMenu(0),
|
Chris@0
|
127 m_documentModified(false),
|
Chris@70
|
128 m_openingAudioFile(false),
|
Chris@70
|
129 m_abandoning(false),
|
Chris@0
|
130 m_preferencesDialog(0)
|
Chris@0
|
131 {
|
Chris@0
|
132 setWindowTitle(tr("Sonic Visualiser"));
|
Chris@0
|
133
|
Chris@0
|
134 UnitDatabase::getInstance()->registerUnit("Hz");
|
Chris@0
|
135 UnitDatabase::getInstance()->registerUnit("dB");
|
Chris@0
|
136
|
Chris@0
|
137 connect(CommandHistory::getInstance(), SIGNAL(commandExecuted()),
|
Chris@0
|
138 this, SLOT(documentModified()));
|
Chris@0
|
139 connect(CommandHistory::getInstance(), SIGNAL(documentRestored()),
|
Chris@0
|
140 this, SLOT(documentRestored()));
|
Chris@0
|
141
|
Chris@0
|
142 QFrame *frame = new QFrame;
|
Chris@0
|
143 setCentralWidget(frame);
|
Chris@0
|
144
|
Chris@0
|
145 QGridLayout *layout = new QGridLayout;
|
Chris@0
|
146
|
Chris@0
|
147 m_viewManager = new ViewManager();
|
Chris@0
|
148 connect(m_viewManager, SIGNAL(selectionChanged()),
|
Chris@0
|
149 this, SLOT(updateMenuStates()));
|
Chris@117
|
150 connect(m_viewManager, SIGNAL(inProgressSelectionChanged()),
|
Chris@117
|
151 this, SLOT(inProgressSelectionChanged()));
|
Chris@0
|
152
|
Chris@0
|
153 m_descriptionLabel = new QLabel;
|
Chris@0
|
154
|
Chris@0
|
155 m_paneStack = new PaneStack(frame, m_viewManager);
|
Chris@0
|
156 connect(m_paneStack, SIGNAL(currentPaneChanged(Pane *)),
|
Chris@0
|
157 this, SLOT(currentPaneChanged(Pane *)));
|
Chris@0
|
158 connect(m_paneStack, SIGNAL(currentLayerChanged(Pane *, Layer *)),
|
Chris@0
|
159 this, SLOT(currentLayerChanged(Pane *, Layer *)));
|
Chris@0
|
160 connect(m_paneStack, SIGNAL(rightButtonMenuRequested(Pane *, QPoint)),
|
Chris@0
|
161 this, SLOT(rightButtonMenuRequested(Pane *, QPoint)));
|
Chris@73
|
162 connect(m_paneStack, SIGNAL(propertyStacksResized()),
|
Chris@73
|
163 this, SLOT(propertyStacksResized()));
|
Chris@90
|
164 connect(m_paneStack, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@116
|
165 this, SLOT(contextHelpChanged(const QString &)));
|
Chris@0
|
166
|
Chris@65
|
167 m_overview = new Overview(frame);
|
Chris@65
|
168 m_overview->setViewManager(m_viewManager);
|
Chris@65
|
169 m_overview->setFixedHeight(40);
|
Chris@144
|
170 #ifndef _WIN32
|
Chris@144
|
171 // For some reason, the contents of the overview never appear if we
|
Chris@144
|
172 // make this setting on Windows. I have no inclination at the moment
|
Chris@144
|
173 // to track down the reason why.
|
Chris@129
|
174 m_overview->setFrameStyle(QFrame::StyledPanel | QFrame::Sunken);
|
Chris@144
|
175 #endif
|
Chris@90
|
176 connect(m_overview, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@116
|
177 this, SLOT(contextHelpChanged(const QString &)));
|
Chris@0
|
178
|
Chris@0
|
179 m_panLayer = new WaveformLayer;
|
Chris@0
|
180 m_panLayer->setChannelMode(WaveformLayer::MergeChannels);
|
Chris@0
|
181 // m_panLayer->setScale(WaveformLayer::MeterScale);
|
Chris@39
|
182 // m_panLayer->setAutoNormalize(true);
|
Chris@0
|
183 m_panLayer->setBaseColour(Qt::darkGreen);
|
Chris@0
|
184 m_panLayer->setAggressiveCacheing(true);
|
Chris@65
|
185 m_overview->addLayer(m_panLayer);
|
Chris@0
|
186
|
Chris@0
|
187 m_playSource = new AudioCallbackPlaySource(m_viewManager);
|
Chris@0
|
188
|
Chris@0
|
189 connect(m_playSource, SIGNAL(sampleRateMismatch(size_t, size_t, bool)),
|
Chris@0
|
190 this, SLOT(sampleRateMismatch(size_t, size_t, bool)));
|
Chris@42
|
191 connect(m_playSource, SIGNAL(audioOverloadPluginDisabled()),
|
Chris@42
|
192 this, SLOT(audioOverloadPluginDisabled()));
|
Chris@0
|
193
|
Chris@0
|
194 m_fader = new Fader(frame, false);
|
Chris@90
|
195 connect(m_fader, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@90
|
196 connect(m_fader, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@0
|
197
|
Chris@0
|
198 m_playSpeed = new AudioDial(frame);
|
Chris@12
|
199 m_playSpeed->setMinimum(0);
|
Chris@48
|
200 m_playSpeed->setMaximum(200);
|
Chris@25
|
201 m_playSpeed->setValue(100);
|
Chris@0
|
202 m_playSpeed->setFixedWidth(24);
|
Chris@0
|
203 m_playSpeed->setFixedHeight(24);
|
Chris@0
|
204 m_playSpeed->setNotchesVisible(true);
|
Chris@25
|
205 m_playSpeed->setPageStep(10);
|
Chris@60
|
206 m_playSpeed->setObjectName(tr("Playback Speedup"));
|
Chris@25
|
207 m_playSpeed->setDefaultValue(100);
|
Chris@59
|
208 m_playSpeed->setRangeMapper(new PlaySpeedRangeMapper(0, 200));
|
Chris@60
|
209 m_playSpeed->setShowToolTip(true);
|
Chris@0
|
210 connect(m_playSpeed, SIGNAL(valueChanged(int)),
|
Chris@0
|
211 this, SLOT(playSpeedChanged(int)));
|
Chris@90
|
212 connect(m_playSpeed, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@90
|
213 connect(m_playSpeed, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@90
|
214
|
Chris@90
|
215 m_playSharpen = new NotifyingPushButton(frame);
|
Chris@17
|
216 m_playSharpen->setToolTip(tr("Sharpen percussive transients"));
|
Chris@26
|
217 m_playSharpen->setFixedSize(20, 20);
|
Chris@26
|
218 // m_playSharpen->setFlat(true);
|
Chris@16
|
219 m_playSharpen->setEnabled(false);
|
Chris@26
|
220 m_playSharpen->setCheckable(true);
|
Chris@26
|
221 m_playSharpen->setChecked(false);
|
Chris@26
|
222 m_playSharpen->setIcon(QIcon(":icons/sharpen.png"));
|
Chris@26
|
223 connect(m_playSharpen, SIGNAL(clicked()), this, SLOT(playSharpenToggled()));
|
Chris@90
|
224 connect(m_playSharpen, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@90
|
225 connect(m_playSharpen, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@90
|
226
|
Chris@90
|
227 m_playMono = new NotifyingPushButton(frame);
|
Chris@26
|
228 m_playMono->setToolTip(tr("Run time stretcher in mono only"));
|
Chris@26
|
229 m_playMono->setFixedSize(20, 20);
|
Chris@26
|
230 // m_playMono->setFlat(true);
|
Chris@26
|
231 m_playMono->setEnabled(false);
|
Chris@26
|
232 m_playMono->setCheckable(true);
|
Chris@26
|
233 m_playMono->setChecked(false);
|
Chris@26
|
234 m_playMono->setIcon(QIcon(":icons/mono.png"));
|
Chris@26
|
235 connect(m_playMono, SIGNAL(clicked()), this, SLOT(playMonoToggled()));
|
Chris@90
|
236 connect(m_playMono, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@90
|
237 connect(m_playMono, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@21
|
238
|
Chris@21
|
239 QSettings settings;
|
Chris@21
|
240 settings.beginGroup("MainWindow");
|
Chris@24
|
241 m_playSharpen->setChecked(settings.value("playsharpen", true).toBool());
|
Chris@26
|
242 m_playMono->setChecked(settings.value("playmono", false).toBool());
|
Chris@21
|
243 settings.endGroup();
|
Chris@21
|
244
|
Chris@129
|
245 layout->setSpacing(4);
|
Chris@26
|
246 layout->addWidget(m_paneStack, 0, 0, 1, 5);
|
Chris@65
|
247 layout->addWidget(m_overview, 1, 0);
|
Chris@0
|
248 layout->addWidget(m_fader, 1, 1);
|
Chris@0
|
249 layout->addWidget(m_playSpeed, 1, 2);
|
Chris@16
|
250 layout->addWidget(m_playSharpen, 1, 3);
|
Chris@26
|
251 layout->addWidget(m_playMono, 1, 4);
|
Chris@16
|
252
|
Chris@129
|
253 m_paneStack->setPropertyStackMinWidth
|
Chris@129
|
254 (m_fader->width() + m_playSpeed->width() + m_playSharpen->width() +
|
Chris@129
|
255 m_playMono->width() + layout->spacing() * 4);
|
Chris@129
|
256
|
Chris@16
|
257 layout->setColumnStretch(0, 10);
|
Chris@16
|
258
|
Chris@0
|
259 frame->setLayout(layout);
|
Chris@0
|
260
|
Chris@0
|
261 connect(m_viewManager, SIGNAL(outputLevelsChanged(float, float)),
|
Chris@0
|
262 this, SLOT(outputLevelsChanged(float, float)));
|
Chris@0
|
263
|
Chris@116
|
264 connect(m_viewManager, SIGNAL(playbackFrameChanged(unsigned long)),
|
Chris@116
|
265 this, SLOT(playbackFrameChanged(unsigned long)));
|
Chris@116
|
266
|
Chris@116
|
267 connect(m_viewManager, SIGNAL(globalCentreFrameChanged(unsigned long)),
|
Chris@116
|
268 this, SLOT(globalCentreFrameChanged(unsigned long)));
|
Chris@116
|
269
|
Chris@116
|
270 connect(m_viewManager, SIGNAL(viewCentreFrameChanged(View *, unsigned long)),
|
Chris@116
|
271 this, SLOT(viewCentreFrameChanged(View *, unsigned long)));
|
Chris@116
|
272
|
Chris@116
|
273 connect(m_viewManager, SIGNAL(viewZoomLevelChanged(View *, unsigned long, bool)),
|
Chris@116
|
274 this, SLOT(viewZoomLevelChanged(View *, unsigned long, bool)));
|
Chris@116
|
275
|
Chris@0
|
276 connect(Preferences::getInstance(),
|
Chris@0
|
277 SIGNAL(propertyChanged(PropertyContainer::PropertyName)),
|
Chris@0
|
278 this,
|
Chris@0
|
279 SLOT(preferenceChanged(PropertyContainer::PropertyName)));
|
Chris@0
|
280
|
Chris@98
|
281 // preferenceChanged("Property Box Layout");
|
Chris@98
|
282
|
Chris@70
|
283 if (m_oscQueue && m_oscQueue->isOK()) {
|
Chris@69
|
284 connect(m_oscQueue, SIGNAL(messagesAvailable()), this, SLOT(pollOSC()));
|
Chris@69
|
285 QTimer *oscTimer = new QTimer(this);
|
Chris@69
|
286 connect(oscTimer, SIGNAL(timeout()), this, SLOT(pollOSC()));
|
Chris@69
|
287 oscTimer->start(1000);
|
Chris@69
|
288 }
|
Chris@69
|
289
|
Chris@0
|
290 setupMenus();
|
Chris@0
|
291 setupToolbars();
|
Chris@0
|
292
|
Chris@90
|
293 statusBar();
|
Chris@0
|
294
|
Chris@0
|
295 newSession();
|
Chris@0
|
296 }
|
Chris@0
|
297
|
Chris@0
|
298 MainWindow::~MainWindow()
|
Chris@0
|
299 {
|
Chris@137
|
300 // std::cerr << "MainWindow::~MainWindow()" << std::endl;
|
Chris@118
|
301
|
Chris@70
|
302 if (!m_abandoning) {
|
Chris@70
|
303 closeSession();
|
Chris@70
|
304 }
|
Chris@0
|
305 delete m_playTarget;
|
Chris@0
|
306 delete m_playSource;
|
Chris@0
|
307 delete m_viewManager;
|
Chris@69
|
308 delete m_oscQueue;
|
Chris@0
|
309 Profiles::getInstance()->dump();
|
Chris@0
|
310 }
|
Chris@0
|
311
|
Chris@81
|
312 QString
|
Chris@88
|
313 MainWindow::getOpenFileName(FileFinder::FileType type)
|
Chris@81
|
314 {
|
Chris@88
|
315 FileFinder *ff = FileFinder::getInstance();
|
Chris@81
|
316 switch (type) {
|
Chris@88
|
317 case FileFinder::SessionFile:
|
Chris@88
|
318 return ff->getOpenFileName(type, m_sessionFile);
|
Chris@88
|
319 case FileFinder::AudioFile:
|
Chris@88
|
320 return ff->getOpenFileName(type, m_audioFile);
|
Chris@88
|
321 case FileFinder::LayerFile:
|
Chris@88
|
322 return ff->getOpenFileName(type, m_sessionFile);
|
Chris@88
|
323 case FileFinder::SessionOrAudioFile:
|
Chris@88
|
324 return ff->getOpenFileName(type, m_sessionFile);
|
Chris@121
|
325 case FileFinder::ImageFile:
|
Chris@121
|
326 return ff->getOpenFileName(type, m_sessionFile);
|
Chris@88
|
327 case FileFinder::AnyFile:
|
Chris@88
|
328 if (getMainModel() != 0 &&
|
Chris@88
|
329 m_paneStack != 0 &&
|
Chris@88
|
330 m_paneStack->getCurrentPane() != 0) { // can import a layer
|
Chris@88
|
331 return ff->getOpenFileName(FileFinder::AnyFile, m_sessionFile);
|
Chris@81
|
332 } else {
|
Chris@88
|
333 return ff->getOpenFileName(FileFinder::SessionOrAudioFile,
|
Chris@88
|
334 m_sessionFile);
|
Chris@81
|
335 }
|
Chris@81
|
336 }
|
Chris@88
|
337 return "";
|
Chris@88
|
338 }
|
Chris@88
|
339
|
Chris@88
|
340 QString
|
Chris@88
|
341 MainWindow::getSaveFileName(FileFinder::FileType type)
|
Chris@88
|
342 {
|
Chris@88
|
343 FileFinder *ff = FileFinder::getInstance();
|
Chris@88
|
344 switch (type) {
|
Chris@88
|
345 case FileFinder::SessionFile:
|
Chris@88
|
346 return ff->getSaveFileName(type, m_sessionFile);
|
Chris@88
|
347 case FileFinder::AudioFile:
|
Chris@88
|
348 return ff->getSaveFileName(type, m_audioFile);
|
Chris@88
|
349 case FileFinder::LayerFile:
|
Chris@88
|
350 return ff->getSaveFileName(type, m_sessionFile);
|
Chris@88
|
351 case FileFinder::SessionOrAudioFile:
|
Chris@88
|
352 return ff->getSaveFileName(type, m_sessionFile);
|
Chris@121
|
353 case FileFinder::ImageFile:
|
Chris@121
|
354 return ff->getSaveFileName(type, m_sessionFile);
|
Chris@88
|
355 case FileFinder::AnyFile:
|
Chris@88
|
356 return ff->getSaveFileName(type, m_sessionFile);
|
Chris@81
|
357 }
|
Chris@88
|
358 return "";
|
Chris@81
|
359 }
|
Chris@81
|
360
|
Chris@88
|
361 void
|
Chris@88
|
362 MainWindow::registerLastOpenedFilePath(FileFinder::FileType type, QString path)
|
Chris@81
|
363 {
|
Chris@88
|
364 FileFinder *ff = FileFinder::getInstance();
|
Chris@88
|
365 ff->registerLastOpenedFilePath(type, path);
|
Chris@81
|
366 }
|
Chris@81
|
367
|
Chris@81
|
368 void
|
Chris@0
|
369 MainWindow::setupMenus()
|
Chris@0
|
370 {
|
Chris@0
|
371 if (!m_mainMenusCreated) {
|
Chris@0
|
372 m_rightButtonMenu = new QMenu();
|
Chris@104
|
373
|
Chris@104
|
374 // No -- we don't want tear-off enabled on the right-button
|
Chris@104
|
375 // menu. If it is enabled, then simply right-clicking and
|
Chris@104
|
376 // releasing will pop up the menu, activate the tear-off, and
|
Chris@104
|
377 // leave the torn-off menu window in front of the main window.
|
Chris@104
|
378 // That isn't desirable. I'm not sure it ever would be, in a
|
Chris@104
|
379 // context menu -- perhaps technically a Qt bug?
|
Chris@104
|
380 // m_rightButtonMenu->setTearOffEnabled(true);
|
Chris@0
|
381 }
|
Chris@0
|
382
|
Chris@0
|
383 if (m_rightButtonLayerMenu) {
|
Chris@0
|
384 m_rightButtonLayerMenu->clear();
|
Chris@0
|
385 } else {
|
Chris@0
|
386 m_rightButtonLayerMenu = m_rightButtonMenu->addMenu(tr("&Layer"));
|
Chris@97
|
387 m_rightButtonLayerMenu->setTearOffEnabled(true);
|
Chris@0
|
388 m_rightButtonMenu->addSeparator();
|
Chris@0
|
389 }
|
Chris@0
|
390
|
Chris@34
|
391 if (m_rightButtonTransformsMenu) {
|
Chris@34
|
392 m_rightButtonTransformsMenu->clear();
|
Chris@34
|
393 } else {
|
Chris@34
|
394 m_rightButtonTransformsMenu = m_rightButtonMenu->addMenu(tr("&Transform"));
|
Chris@97
|
395 m_rightButtonTransformsMenu->setTearOffEnabled(true);
|
Chris@34
|
396 m_rightButtonMenu->addSeparator();
|
Chris@34
|
397 }
|
Chris@34
|
398
|
Chris@0
|
399 if (!m_mainMenusCreated) {
|
Chris@0
|
400 CommandHistory::getInstance()->registerMenu(m_rightButtonMenu);
|
Chris@0
|
401 m_rightButtonMenu->addSeparator();
|
Chris@66
|
402 }
|
Chris@66
|
403
|
Chris@66
|
404 setupFileMenu();
|
Chris@66
|
405 setupEditMenu();
|
Chris@66
|
406 setupViewMenu();
|
Chris@66
|
407 setupPaneAndLayerMenus();
|
Chris@66
|
408 setupTransformsMenu();
|
Chris@66
|
409 setupHelpMenu();
|
Chris@66
|
410
|
Chris@66
|
411 m_mainMenusCreated = true;
|
Chris@66
|
412 }
|
Chris@66
|
413
|
Chris@66
|
414 void
|
Chris@66
|
415 MainWindow::setupFileMenu()
|
Chris@66
|
416 {
|
Chris@66
|
417 if (m_mainMenusCreated) return;
|
Chris@66
|
418
|
Chris@66
|
419 QMenu *menu = menuBar()->addMenu(tr("&File"));
|
Chris@97
|
420 menu->setTearOffEnabled(true);
|
Chris@66
|
421 QToolBar *toolbar = addToolBar(tr("File Toolbar"));
|
Chris@66
|
422
|
Chris@66
|
423 QIcon icon(":icons/filenew.png");
|
Chris@66
|
424 icon.addFile(":icons/filenew-22.png");
|
Chris@66
|
425 QAction *action = new QAction(icon, tr("&New Session"), this);
|
Chris@66
|
426 action->setShortcut(tr("Ctrl+N"));
|
Chris@90
|
427 action->setStatusTip(tr("Abandon the current Sonic Visualiser session and start a new one"));
|
Chris@66
|
428 connect(action, SIGNAL(triggered()), this, SLOT(newSession()));
|
Chris@66
|
429 menu->addAction(action);
|
Chris@66
|
430 toolbar->addAction(action);
|
Chris@138
|
431
|
Chris@138
|
432 icon = QIcon(":icons/fileopensession.png");
|
Chris@66
|
433 action = new QAction(icon, tr("&Open Session..."), this);
|
Chris@66
|
434 action->setShortcut(tr("Ctrl+O"));
|
Chris@66
|
435 action->setStatusTip(tr("Open a previously saved Sonic Visualiser session file"));
|
Chris@66
|
436 connect(action, SIGNAL(triggered()), this, SLOT(openSession()));
|
Chris@66
|
437 menu->addAction(action);
|
Chris@66
|
438
|
Chris@138
|
439 icon = QIcon(":icons/fileopen.png");
|
Chris@138
|
440 icon.addFile(":icons/fileopen-22.png");
|
Chris@138
|
441
|
Chris@66
|
442 action = new QAction(icon, tr("&Open..."), this);
|
Chris@66
|
443 action->setStatusTip(tr("Open a session file, audio file, or layer"));
|
Chris@66
|
444 connect(action, SIGNAL(triggered()), this, SLOT(openSomething()));
|
Chris@66
|
445 toolbar->addAction(action);
|
Chris@66
|
446
|
Chris@66
|
447 icon = QIcon(":icons/filesave.png");
|
Chris@66
|
448 icon.addFile(":icons/filesave-22.png");
|
Chris@66
|
449 action = new QAction(icon, tr("&Save Session"), this);
|
Chris@66
|
450 action->setShortcut(tr("Ctrl+S"));
|
Chris@66
|
451 action->setStatusTip(tr("Save the current session into a Sonic Visualiser session file"));
|
Chris@66
|
452 connect(action, SIGNAL(triggered()), this, SLOT(saveSession()));
|
Chris@66
|
453 connect(this, SIGNAL(canSave(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
454 menu->addAction(action);
|
Chris@66
|
455 toolbar->addAction(action);
|
Chris@0
|
456
|
Chris@66
|
457 icon = QIcon(":icons/filesaveas.png");
|
Chris@66
|
458 icon.addFile(":icons/filesaveas-22.png");
|
Chris@66
|
459 action = new QAction(icon, tr("Save Session &As..."), this);
|
Chris@66
|
460 action->setStatusTip(tr("Save the current session into a new Sonic Visualiser session file"));
|
Chris@66
|
461 connect(action, SIGNAL(triggered()), this, SLOT(saveSessionAs()));
|
Chris@66
|
462 menu->addAction(action);
|
Chris@66
|
463 toolbar->addAction(action);
|
Chris@66
|
464
|
Chris@66
|
465 menu->addSeparator();
|
Chris@66
|
466
|
Chris@138
|
467 icon = QIcon(":icons/fileopenaudio.png");
|
Chris@138
|
468 action = new QAction(icon, tr("&Import Audio File..."), this);
|
Chris@66
|
469 action->setShortcut(tr("Ctrl+I"));
|
Chris@66
|
470 action->setStatusTip(tr("Import an existing audio file"));
|
Chris@66
|
471 connect(action, SIGNAL(triggered()), this, SLOT(importAudio()));
|
Chris@66
|
472 menu->addAction(action);
|
Chris@66
|
473
|
Chris@66
|
474 action = new QAction(tr("Import Secondary Audio File..."), this);
|
Chris@66
|
475 action->setShortcut(tr("Ctrl+Shift+I"));
|
Chris@66
|
476 action->setStatusTip(tr("Import an extra audio file as a separate layer"));
|
Chris@66
|
477 connect(action, SIGNAL(triggered()), this, SLOT(importMoreAudio()));
|
Chris@66
|
478 connect(this, SIGNAL(canImportMoreAudio(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
479 menu->addAction(action);
|
Chris@66
|
480
|
Chris@66
|
481 action = new QAction(tr("&Export Audio File..."), this);
|
Chris@66
|
482 action->setStatusTip(tr("Export selection as an audio file"));
|
Chris@66
|
483 connect(action, SIGNAL(triggered()), this, SLOT(exportAudio()));
|
Chris@66
|
484 connect(this, SIGNAL(canExportAudio(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
485 menu->addAction(action);
|
Chris@66
|
486
|
Chris@66
|
487 menu->addSeparator();
|
Chris@66
|
488
|
Chris@66
|
489 action = new QAction(tr("Import Annotation &Layer..."), this);
|
Chris@66
|
490 action->setShortcut(tr("Ctrl+L"));
|
Chris@66
|
491 action->setStatusTip(tr("Import layer data from an existing file"));
|
Chris@66
|
492 connect(action, SIGNAL(triggered()), this, SLOT(importLayer()));
|
Chris@66
|
493 connect(this, SIGNAL(canImportLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
494 menu->addAction(action);
|
Chris@66
|
495
|
Chris@66
|
496 action = new QAction(tr("Export Annotation Layer..."), this);
|
Chris@66
|
497 action->setStatusTip(tr("Export layer data to a file"));
|
Chris@66
|
498 connect(action, SIGNAL(triggered()), this, SLOT(exportLayer()));
|
Chris@66
|
499 connect(this, SIGNAL(canExportLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
500 menu->addAction(action);
|
Chris@66
|
501
|
Chris@66
|
502 menu->addSeparator();
|
Chris@86
|
503
|
Chris@121
|
504 action = new QAction(tr("Export Image File..."), this);
|
Chris@121
|
505 action->setStatusTip(tr("Export a single pane to an image file"));
|
Chris@121
|
506 connect(action, SIGNAL(triggered()), this, SLOT(exportImage()));
|
Chris@121
|
507 connect(this, SIGNAL(canExportImage(bool)), action, SLOT(setEnabled(bool)));
|
Chris@121
|
508 menu->addAction(action);
|
Chris@121
|
509
|
Chris@121
|
510 menu->addSeparator();
|
Chris@121
|
511
|
Chris@86
|
512 action = new QAction(tr("Open Lo&cation..."), this);
|
Chris@86
|
513 action->setShortcut(tr("Ctrl+Shift+O"));
|
Chris@86
|
514 action->setStatusTip(tr("Open or import a file from a remote URL"));
|
Chris@86
|
515 connect(action, SIGNAL(triggered()), this, SLOT(openLocation()));
|
Chris@86
|
516 menu->addAction(action);
|
Chris@86
|
517
|
Chris@86
|
518 menu->addSeparator();
|
Chris@86
|
519
|
Chris@66
|
520 m_recentFilesMenu = menu->addMenu(tr("&Recent Files"));
|
Chris@97
|
521 m_recentFilesMenu->setTearOffEnabled(true);
|
Chris@66
|
522 setupRecentFilesMenu();
|
Chris@66
|
523 connect(&m_recentFiles, SIGNAL(recentChanged()),
|
Chris@66
|
524 this, SLOT(setupRecentFilesMenu()));
|
Chris@66
|
525
|
Chris@66
|
526 menu->addSeparator();
|
Chris@66
|
527 action = new QAction(tr("&Preferences..."), this);
|
Chris@66
|
528 action->setStatusTip(tr("Adjust the application preferences"));
|
Chris@66
|
529 connect(action, SIGNAL(triggered()), this, SLOT(preferences()));
|
Chris@66
|
530 menu->addAction(action);
|
Chris@0
|
531
|
Chris@66
|
532 /*!!!
|
Chris@66
|
533 menu->addSeparator();
|
Chris@0
|
534
|
Chris@66
|
535 action = new QAction(tr("Play / Pause"), this);
|
Chris@66
|
536 action->setShortcut(tr("Space"));
|
Chris@66
|
537 action->setStatusTip(tr("Start or stop playback from the current position"));
|
Chris@66
|
538 connect(action, SIGNAL(triggered()), this, SLOT(play()));
|
Chris@66
|
539 menu->addAction(action);
|
Chris@66
|
540 */
|
Chris@66
|
541
|
Chris@66
|
542 menu->addSeparator();
|
Chris@66
|
543 action = new QAction(QIcon(":/icons/exit.png"),
|
Chris@66
|
544 tr("&Quit"), this);
|
Chris@66
|
545 action->setShortcut(tr("Ctrl+Q"));
|
Chris@90
|
546 action->setStatusTip(tr("Exit Sonic Visualiser"));
|
Chris@66
|
547 connect(action, SIGNAL(triggered()), this, SLOT(close()));
|
Chris@66
|
548 menu->addAction(action);
|
Chris@66
|
549 }
|
Chris@66
|
550
|
Chris@66
|
551 void
|
Chris@66
|
552 MainWindow::setupEditMenu()
|
Chris@66
|
553 {
|
Chris@66
|
554 if (m_mainMenusCreated) return;
|
Chris@66
|
555
|
Chris@66
|
556 QMenu *menu = menuBar()->addMenu(tr("&Edit"));
|
Chris@97
|
557 menu->setTearOffEnabled(true);
|
Chris@66
|
558 CommandHistory::getInstance()->registerMenu(menu);
|
Chris@66
|
559
|
Chris@66
|
560 menu->addSeparator();
|
Chris@66
|
561
|
Chris@66
|
562 QAction *action = new QAction(QIcon(":/icons/editcut.png"),
|
Chris@66
|
563 tr("Cu&t"), this);
|
Chris@66
|
564 action->setShortcut(tr("Ctrl+X"));
|
Chris@90
|
565 action->setStatusTip(tr("Cut the selection from the current layer to the clipboard"));
|
Chris@66
|
566 connect(action, SIGNAL(triggered()), this, SLOT(cut()));
|
Chris@66
|
567 connect(this, SIGNAL(canEditSelection(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
568 menu->addAction(action);
|
Chris@66
|
569 m_rightButtonMenu->addAction(action);
|
Chris@66
|
570
|
Chris@66
|
571 action = new QAction(QIcon(":/icons/editcopy.png"),
|
Chris@66
|
572 tr("&Copy"), this);
|
Chris@66
|
573 action->setShortcut(tr("Ctrl+C"));
|
Chris@90
|
574 action->setStatusTip(tr("Copy the selection from the current layer to the clipboard"));
|
Chris@66
|
575 connect(action, SIGNAL(triggered()), this, SLOT(copy()));
|
Chris@66
|
576 connect(this, SIGNAL(canEditSelection(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
577 menu->addAction(action);
|
Chris@66
|
578 m_rightButtonMenu->addAction(action);
|
Chris@66
|
579
|
Chris@66
|
580 action = new QAction(QIcon(":/icons/editpaste.png"),
|
Chris@66
|
581 tr("&Paste"), this);
|
Chris@66
|
582 action->setShortcut(tr("Ctrl+V"));
|
Chris@90
|
583 action->setStatusTip(tr("Paste from the clipboard to the current layer"));
|
Chris@66
|
584 connect(action, SIGNAL(triggered()), this, SLOT(paste()));
|
Chris@66
|
585 connect(this, SIGNAL(canPaste(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
586 menu->addAction(action);
|
Chris@66
|
587 m_rightButtonMenu->addAction(action);
|
Chris@66
|
588
|
Chris@66
|
589 action = new QAction(tr("&Delete Selected Items"), this);
|
Chris@66
|
590 action->setShortcut(tr("Del"));
|
Chris@90
|
591 action->setStatusTip(tr("Delete the selection from the current layer"));
|
Chris@66
|
592 connect(action, SIGNAL(triggered()), this, SLOT(deleteSelected()));
|
Chris@66
|
593 connect(this, SIGNAL(canEditSelection(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
594 menu->addAction(action);
|
Chris@66
|
595 m_rightButtonMenu->addAction(action);
|
Chris@66
|
596
|
Chris@66
|
597 menu->addSeparator();
|
Chris@66
|
598 m_rightButtonMenu->addSeparator();
|
Chris@0
|
599
|
Chris@66
|
600 action = new QAction(tr("Select &All"), this);
|
Chris@66
|
601 action->setShortcut(tr("Ctrl+A"));
|
Chris@90
|
602 action->setStatusTip(tr("Select the whole duration of the current session"));
|
Chris@66
|
603 connect(action, SIGNAL(triggered()), this, SLOT(selectAll()));
|
Chris@66
|
604 connect(this, SIGNAL(canSelect(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
605 menu->addAction(action);
|
Chris@66
|
606 m_rightButtonMenu->addAction(action);
|
Chris@0
|
607
|
Chris@66
|
608 action = new QAction(tr("Select &Visible Range"), this);
|
Chris@66
|
609 action->setShortcut(tr("Ctrl+Shift+A"));
|
Chris@90
|
610 action->setStatusTip(tr("Select the time range corresponding to the current window width"));
|
Chris@66
|
611 connect(action, SIGNAL(triggered()), this, SLOT(selectVisible()));
|
Chris@66
|
612 connect(this, SIGNAL(canSelect(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
613 menu->addAction(action);
|
Chris@0
|
614
|
Chris@66
|
615 action = new QAction(tr("Select to &Start"), this);
|
Chris@66
|
616 action->setShortcut(tr("Shift+Left"));
|
Chris@90
|
617 action->setStatusTip(tr("Select from the start of the session to the current playback position"));
|
Chris@66
|
618 connect(action, SIGNAL(triggered()), this, SLOT(selectToStart()));
|
Chris@66
|
619 connect(this, SIGNAL(canSelect(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
620 menu->addAction(action);
|
Chris@0
|
621
|
Chris@66
|
622 action = new QAction(tr("Select to &End"), this);
|
Chris@66
|
623 action->setShortcut(tr("Shift+Right"));
|
Chris@90
|
624 action->setStatusTip(tr("Select from the current playback position to the end of the session"));
|
Chris@66
|
625 connect(action, SIGNAL(triggered()), this, SLOT(selectToEnd()));
|
Chris@66
|
626 connect(this, SIGNAL(canSelect(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
627 menu->addAction(action);
|
Chris@66
|
628
|
Chris@66
|
629 action = new QAction(tr("C&lear Selection"), this);
|
Chris@66
|
630 action->setShortcut(tr("Esc"));
|
Chris@90
|
631 action->setStatusTip(tr("Clear the selection"));
|
Chris@66
|
632 connect(action, SIGNAL(triggered()), this, SLOT(clearSelection()));
|
Chris@66
|
633 connect(this, SIGNAL(canClearSelection(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
634 menu->addAction(action);
|
Chris@66
|
635 m_rightButtonMenu->addAction(action);
|
Chris@66
|
636
|
Chris@66
|
637 menu->addSeparator();
|
Chris@66
|
638
|
Chris@66
|
639 action = new QAction(tr("&Insert Instant at Playback Position"), this);
|
Chris@66
|
640 action->setShortcut(tr("Enter"));
|
Chris@90
|
641 action->setStatusTip(tr("Insert a new time instant at the current playback position, in a new layer if necessary"));
|
Chris@66
|
642 connect(action, SIGNAL(triggered()), this, SLOT(insertInstant()));
|
Chris@66
|
643 connect(this, SIGNAL(canInsertInstant(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
644 menu->addAction(action);
|
Chris@66
|
645
|
Chris@81
|
646 action = new QAction(tr("Insert Instants at Selection &Boundaries"), this);
|
Chris@81
|
647 action->setShortcut(tr("Shift+Enter"));
|
Chris@90
|
648 action->setStatusTip(tr("Insert new time instants at the start and end of the current selection, in a new layer if necessary"));
|
Chris@81
|
649 connect(action, SIGNAL(triggered()), this, SLOT(insertInstantsAtBoundaries()));
|
Chris@81
|
650 connect(this, SIGNAL(canInsertInstantsAtBoundaries(bool)), action, SLOT(setEnabled(bool)));
|
Chris@81
|
651 menu->addAction(action);
|
Chris@81
|
652
|
Chris@66
|
653 // Laptop shortcut (no keypad Enter key)
|
Chris@66
|
654 connect(new QShortcut(tr(";"), this), SIGNAL(activated()),
|
Chris@66
|
655 this, SLOT(insertInstant()));
|
Chris@66
|
656 }
|
Chris@66
|
657
|
Chris@66
|
658 void
|
Chris@66
|
659 MainWindow::setupViewMenu()
|
Chris@66
|
660 {
|
Chris@66
|
661 if (m_mainMenusCreated) return;
|
Chris@66
|
662
|
Chris@90
|
663 QAction *action = 0;
|
Chris@90
|
664
|
Chris@66
|
665 QMenu *menu = menuBar()->addMenu(tr("&View"));
|
Chris@97
|
666 menu->setTearOffEnabled(true);
|
Chris@66
|
667 action = new QAction(tr("Scroll &Left"), this);
|
Chris@66
|
668 action->setShortcut(tr("Left"));
|
Chris@66
|
669 action->setStatusTip(tr("Scroll the current pane to the left"));
|
Chris@66
|
670 connect(action, SIGNAL(triggered()), this, SLOT(scrollLeft()));
|
Chris@66
|
671 connect(this, SIGNAL(canScroll(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
672 menu->addAction(action);
|
Chris@0
|
673
|
Chris@66
|
674 action = new QAction(tr("Scroll &Right"), this);
|
Chris@66
|
675 action->setShortcut(tr("Right"));
|
Chris@66
|
676 action->setStatusTip(tr("Scroll the current pane to the right"));
|
Chris@66
|
677 connect(action, SIGNAL(triggered()), this, SLOT(scrollRight()));
|
Chris@66
|
678 connect(this, SIGNAL(canScroll(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
679 menu->addAction(action);
|
Chris@0
|
680
|
Chris@90
|
681 action = new QAction(tr("&Jump Left"), this);
|
Chris@66
|
682 action->setShortcut(tr("Ctrl+Left"));
|
Chris@66
|
683 action->setStatusTip(tr("Scroll the current pane a big step to the left"));
|
Chris@66
|
684 connect(action, SIGNAL(triggered()), this, SLOT(jumpLeft()));
|
Chris@66
|
685 connect(this, SIGNAL(canScroll(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
686 menu->addAction(action);
|
Chris@0
|
687
|
Chris@90
|
688 action = new QAction(tr("J&ump Right"), this);
|
Chris@66
|
689 action->setShortcut(tr("Ctrl+Right"));
|
Chris@66
|
690 action->setStatusTip(tr("Scroll the current pane a big step to the right"));
|
Chris@66
|
691 connect(action, SIGNAL(triggered()), this, SLOT(jumpRight()));
|
Chris@66
|
692 connect(this, SIGNAL(canScroll(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
693 menu->addAction(action);
|
Chris@66
|
694
|
Chris@66
|
695 menu->addSeparator();
|
Chris@66
|
696
|
Chris@66
|
697 action = new QAction(QIcon(":/icons/zoom-in.png"),
|
Chris@66
|
698 tr("Zoom &In"), this);
|
Chris@66
|
699 action->setShortcut(tr("Up"));
|
Chris@66
|
700 action->setStatusTip(tr("Increase the zoom level"));
|
Chris@66
|
701 connect(action, SIGNAL(triggered()), this, SLOT(zoomIn()));
|
Chris@66
|
702 connect(this, SIGNAL(canZoom(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
703 menu->addAction(action);
|
Chris@0
|
704
|
Chris@66
|
705 action = new QAction(QIcon(":/icons/zoom-out.png"),
|
Chris@66
|
706 tr("Zoom &Out"), this);
|
Chris@66
|
707 action->setShortcut(tr("Down"));
|
Chris@66
|
708 action->setStatusTip(tr("Decrease the zoom level"));
|
Chris@66
|
709 connect(action, SIGNAL(triggered()), this, SLOT(zoomOut()));
|
Chris@66
|
710 connect(this, SIGNAL(canZoom(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
711 menu->addAction(action);
|
Chris@0
|
712
|
Chris@66
|
713 action = new QAction(tr("Restore &Default Zoom"), this);
|
Chris@90
|
714 action->setStatusTip(tr("Restore the zoom level to the default"));
|
Chris@66
|
715 connect(action, SIGNAL(triggered()), this, SLOT(zoomDefault()));
|
Chris@66
|
716 connect(this, SIGNAL(canZoom(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
717 menu->addAction(action);
|
Chris@66
|
718
|
Chris@138
|
719 action = new QAction(QIcon(":/icons/zoom-fit.png"),
|
Chris@138
|
720 tr("Zoom to &Fit"), this);
|
Chris@66
|
721 action->setStatusTip(tr("Zoom to show the whole file"));
|
Chris@66
|
722 connect(action, SIGNAL(triggered()), this, SLOT(zoomToFit()));
|
Chris@66
|
723 connect(this, SIGNAL(canZoom(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
724 menu->addAction(action);
|
Chris@90
|
725
|
Chris@90
|
726 menu->addSeparator();
|
Chris@90
|
727
|
Chris@90
|
728 QActionGroup *overlayGroup = new QActionGroup(this);
|
Chris@90
|
729
|
Chris@90
|
730 action = new QAction(tr("Show &No Overlays"), this);
|
Chris@90
|
731 action->setShortcut(tr("0"));
|
Chris@90
|
732 action->setStatusTip(tr("Hide centre indicator, frame times, layer names and scale"));
|
Chris@90
|
733 connect(action, SIGNAL(triggered()), this, SLOT(showNoOverlays()));
|
Chris@90
|
734 action->setCheckable(true);
|
Chris@90
|
735 action->setChecked(false);
|
Chris@90
|
736 overlayGroup->addAction(action);
|
Chris@90
|
737 menu->addAction(action);
|
Chris@90
|
738
|
Chris@90
|
739 action = new QAction(tr("Show &Minimal Overlays"), this);
|
Chris@90
|
740 action->setShortcut(tr("9"));
|
Chris@90
|
741 action->setStatusTip(tr("Show centre indicator only"));
|
Chris@90
|
742 connect(action, SIGNAL(triggered()), this, SLOT(showMinimalOverlays()));
|
Chris@90
|
743 action->setCheckable(true);
|
Chris@90
|
744 action->setChecked(false);
|
Chris@90
|
745 overlayGroup->addAction(action);
|
Chris@90
|
746 menu->addAction(action);
|
Chris@90
|
747
|
Chris@90
|
748 action = new QAction(tr("Show &Standard Overlays"), this);
|
Chris@90
|
749 action->setShortcut(tr("8"));
|
Chris@90
|
750 action->setStatusTip(tr("Show centre indicator, frame times and scale"));
|
Chris@90
|
751 connect(action, SIGNAL(triggered()), this, SLOT(showStandardOverlays()));
|
Chris@90
|
752 action->setCheckable(true);
|
Chris@90
|
753 action->setChecked(true);
|
Chris@90
|
754 overlayGroup->addAction(action);
|
Chris@90
|
755 menu->addAction(action);
|
Chris@90
|
756
|
Chris@90
|
757 action = new QAction(tr("Show &All Overlays"), this);
|
Chris@90
|
758 action->setShortcut(tr("7"));
|
Chris@90
|
759 action->setStatusTip(tr("Show all texts and scale"));
|
Chris@90
|
760 connect(action, SIGNAL(triggered()), this, SLOT(showAllOverlays()));
|
Chris@90
|
761 action->setCheckable(true);
|
Chris@90
|
762 action->setChecked(false);
|
Chris@90
|
763 overlayGroup->addAction(action);
|
Chris@90
|
764 menu->addAction(action);
|
Chris@7
|
765
|
Chris@72
|
766 menu->addSeparator();
|
Chris@72
|
767
|
Chris@66
|
768 action = new QAction(tr("Show &Zoom Wheels"), this);
|
Chris@66
|
769 action->setShortcut(tr("Z"));
|
Chris@66
|
770 action->setStatusTip(tr("Show thumbwheels for zooming horizontally and vertically"));
|
Chris@66
|
771 connect(action, SIGNAL(triggered()), this, SLOT(toggleZoomWheels()));
|
Chris@66
|
772 action->setCheckable(true);
|
Chris@66
|
773 action->setChecked(m_viewManager->getZoomWheelsEnabled());
|
Chris@66
|
774 menu->addAction(action);
|
Chris@72
|
775
|
Chris@72
|
776 action = new QAction(tr("Show Property Bo&xes"), this);
|
Chris@72
|
777 action->setShortcut(tr("X"));
|
Chris@72
|
778 action->setStatusTip(tr("Show the layer property boxes at the side of the main window"));
|
Chris@72
|
779 connect(action, SIGNAL(triggered()), this, SLOT(togglePropertyBoxes()));
|
Chris@72
|
780 action->setCheckable(true);
|
Chris@72
|
781 action->setChecked(true);
|
Chris@72
|
782 menu->addAction(action);
|
Chris@0
|
783
|
Chris@90
|
784 action = new QAction(tr("Show Status &Bar"), this);
|
Chris@90
|
785 action->setStatusTip(tr("Show context help information in the status bar at the bottom of the window"));
|
Chris@90
|
786 connect(action, SIGNAL(triggered()), this, SLOT(toggleStatusBar()));
|
Chris@90
|
787 action->setCheckable(true);
|
Chris@90
|
788 action->setChecked(true);
|
Chris@90
|
789 menu->addAction(action);
|
Chris@90
|
790
|
Chris@90
|
791 QSettings settings;
|
Chris@90
|
792 settings.beginGroup("MainWindow");
|
Chris@90
|
793 bool sb = settings.value("showstatusbar", true).toBool();
|
Chris@90
|
794 if (!sb) {
|
Chris@90
|
795 action->setChecked(false);
|
Chris@90
|
796 statusBar()->hide();
|
Chris@90
|
797 }
|
Chris@90
|
798 settings.endGroup();
|
Chris@90
|
799
|
Chris@0
|
800 /*!!! This one doesn't work properly yet
|
Chris@90
|
801
|
Chris@66
|
802 menu->addSeparator();
|
Chris@66
|
803
|
Chris@90
|
804 action = new QAction(tr("Show La&yer Hierarchy"), this);
|
Chris@66
|
805 action->setShortcut(tr("Alt+L"));
|
Chris@90
|
806 action->setStatusTip(tr("Open a window displaying the hierarchy of panes and layers in this session"));
|
Chris@66
|
807 connect(action, SIGNAL(triggered()), this, SLOT(showLayerTree()));
|
Chris@66
|
808 menu->addAction(action);
|
Chris@90
|
809 */
|
Chris@66
|
810 }
|
Chris@66
|
811
|
Chris@66
|
812 void
|
Chris@66
|
813 MainWindow::setupPaneAndLayerMenus()
|
Chris@66
|
814 {
|
Chris@0
|
815 if (m_paneMenu) {
|
Chris@0
|
816 m_paneActions.clear();
|
Chris@0
|
817 m_paneMenu->clear();
|
Chris@0
|
818 } else {
|
Chris@0
|
819 m_paneMenu = menuBar()->addMenu(tr("&Pane"));
|
Chris@97
|
820 m_paneMenu->setTearOffEnabled(true);
|
Chris@0
|
821 }
|
Chris@0
|
822
|
Chris@0
|
823 if (m_layerMenu) {
|
Chris@0
|
824 m_layerActions.clear();
|
Chris@0
|
825 m_layerMenu->clear();
|
Chris@0
|
826 } else {
|
Chris@0
|
827 m_layerMenu = menuBar()->addMenu(tr("&Layer"));
|
Chris@97
|
828 m_layerMenu->setTearOffEnabled(true);
|
Chris@0
|
829 }
|
Chris@0
|
830
|
Chris@66
|
831 QMenu *menu = m_paneMenu;
|
Chris@66
|
832
|
Chris@66
|
833 QAction *action = new QAction(QIcon(":/icons/pane.png"), tr("Add &New Pane"), this);
|
Chris@66
|
834 action->setShortcut(tr("Alt+N"));
|
Chris@66
|
835 action->setStatusTip(tr("Add a new pane containing only a time ruler"));
|
Chris@66
|
836 connect(action, SIGNAL(triggered()), this, SLOT(addPane()));
|
Chris@66
|
837 connect(this, SIGNAL(canAddPane(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
838 m_paneActions[action] = PaneConfiguration(LayerFactory::TimeRuler);
|
Chris@66
|
839 menu->addAction(action);
|
Chris@66
|
840
|
Chris@66
|
841 menu->addSeparator();
|
Chris@66
|
842
|
Chris@66
|
843 menu = m_layerMenu;
|
Chris@66
|
844
|
Chris@66
|
845 // menu->addSeparator();
|
Chris@66
|
846
|
Chris@66
|
847 LayerFactory::LayerTypeSet emptyLayerTypes =
|
Chris@66
|
848 LayerFactory::getInstance()->getValidEmptyLayerTypes();
|
Chris@66
|
849
|
Chris@66
|
850 for (LayerFactory::LayerTypeSet::iterator i = emptyLayerTypes.begin();
|
Chris@66
|
851 i != emptyLayerTypes.end(); ++i) {
|
Chris@66
|
852
|
Chris@66
|
853 QIcon icon;
|
Chris@66
|
854 QString mainText, tipText, channelText;
|
Chris@66
|
855 LayerFactory::LayerType type = *i;
|
Chris@66
|
856 QString name = LayerFactory::getInstance()->getLayerPresentationName(type);
|
Chris@66
|
857
|
Chris@66
|
858 icon = QIcon(QString(":/icons/%1.png")
|
Chris@66
|
859 .arg(LayerFactory::getInstance()->getLayerIconName(type)));
|
Chris@66
|
860
|
Chris@66
|
861 mainText = tr("Add New %1 Layer").arg(name);
|
Chris@66
|
862 tipText = tr("Add a new empty layer of type %1").arg(name);
|
Chris@66
|
863
|
Chris@66
|
864 action = new QAction(icon, mainText, this);
|
Chris@66
|
865 action->setStatusTip(tipText);
|
Chris@66
|
866
|
Chris@66
|
867 if (type == LayerFactory::Text) {
|
Chris@66
|
868 action->setShortcut(tr("Alt+T"));
|
Chris@66
|
869 }
|
Chris@66
|
870
|
Chris@66
|
871 connect(action, SIGNAL(triggered()), this, SLOT(addLayer()));
|
Chris@66
|
872 connect(this, SIGNAL(canAddLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
873 m_layerActions[action] = type;
|
Chris@66
|
874 menu->addAction(action);
|
Chris@66
|
875 m_rightButtonLayerMenu->addAction(action);
|
Chris@66
|
876 }
|
Chris@66
|
877
|
Chris@66
|
878 m_rightButtonLayerMenu->addSeparator();
|
Chris@66
|
879 menu->addSeparator();
|
Chris@66
|
880
|
Chris@66
|
881 LayerFactory::LayerType backgroundTypes[] = {
|
Chris@66
|
882 LayerFactory::Waveform,
|
Chris@66
|
883 LayerFactory::Spectrogram,
|
Chris@66
|
884 LayerFactory::MelodicRangeSpectrogram,
|
Chris@66
|
885 LayerFactory::PeakFrequencySpectrogram,
|
Chris@66
|
886 LayerFactory::Spectrum
|
Chris@66
|
887 };
|
Chris@66
|
888
|
Chris@66
|
889 std::vector<Model *> models;
|
Chris@66
|
890 if (m_document) models = m_document->getTransformInputModels(); //!!! not well named for this!
|
Chris@66
|
891 bool plural = (models.size() > 1);
|
Chris@66
|
892 if (models.empty()) {
|
Chris@67
|
893 models.push_back(getMainModel()); // probably 0
|
Chris@66
|
894 }
|
Chris@66
|
895
|
Chris@66
|
896 for (unsigned int i = 0;
|
Chris@66
|
897 i < sizeof(backgroundTypes)/sizeof(backgroundTypes[0]); ++i) {
|
Chris@66
|
898
|
Chris@66
|
899 for (int menuType = 0; menuType <= 1; ++menuType) { // pane, layer
|
Chris@66
|
900
|
Chris@66
|
901 if (menuType == 0) menu = m_paneMenu;
|
Chris@66
|
902 else menu = m_layerMenu;
|
Chris@66
|
903
|
Chris@66
|
904 QMenu *submenu = 0;
|
Chris@66
|
905
|
Chris@66
|
906 QIcon icon;
|
Chris@66
|
907 QString mainText, shortcutText, tipText, channelText;
|
Chris@66
|
908 LayerFactory::LayerType type = backgroundTypes[i];
|
Chris@66
|
909 bool mono = true;
|
Chris@66
|
910
|
Chris@66
|
911 switch (type) {
|
Chris@66
|
912
|
Chris@66
|
913 case LayerFactory::Waveform:
|
Chris@66
|
914 icon = QIcon(":/icons/waveform.png");
|
Chris@66
|
915 mainText = tr("Add &Waveform");
|
Chris@66
|
916 if (menuType == 0) {
|
Chris@66
|
917 shortcutText = tr("Alt+W");
|
Chris@66
|
918 tipText = tr("Add a new pane showing a waveform view");
|
Chris@66
|
919 } else {
|
Chris@66
|
920 tipText = tr("Add a new layer showing a waveform view");
|
Chris@66
|
921 }
|
Chris@66
|
922 mono = false;
|
Chris@66
|
923 break;
|
Chris@66
|
924
|
Chris@66
|
925 case LayerFactory::Spectrogram:
|
Chris@67
|
926 icon = QIcon(":/icons/spectrogram.png");
|
Chris@66
|
927 mainText = tr("Add &Spectrogram");
|
Chris@66
|
928 if (menuType == 0) {
|
Chris@66
|
929 shortcutText = tr("Alt+S");
|
Chris@90
|
930 tipText = tr("Add a new pane showing a spectrogram");
|
Chris@66
|
931 } else {
|
Chris@90
|
932 tipText = tr("Add a new layer showing a spectrogram");
|
Chris@66
|
933 }
|
Chris@66
|
934 break;
|
Chris@66
|
935
|
Chris@66
|
936 case LayerFactory::MelodicRangeSpectrogram:
|
Chris@67
|
937 icon = QIcon(":/icons/spectrogram.png");
|
Chris@66
|
938 mainText = tr("Add &Melodic Range Spectrogram");
|
Chris@66
|
939 if (menuType == 0) {
|
Chris@66
|
940 shortcutText = tr("Alt+M");
|
Chris@90
|
941 tipText = tr("Add a new pane showing a spectrogram set up for an overview of note pitches");
|
Chris@66
|
942 } else {
|
Chris@90
|
943 tipText = tr("Add a new layer showing a spectrogram set up for an overview of note pitches");
|
Chris@66
|
944 }
|
Chris@66
|
945 break;
|
Chris@66
|
946
|
Chris@66
|
947 case LayerFactory::PeakFrequencySpectrogram:
|
Chris@67
|
948 icon = QIcon(":/icons/spectrogram.png");
|
Chris@66
|
949 mainText = tr("Add &Peak Frequency Spectrogram");
|
Chris@66
|
950 if (menuType == 0) {
|
Chris@66
|
951 shortcutText = tr("Alt+P");
|
Chris@66
|
952 tipText = tr("Add a new pane showing a spectrogram set up for tracking frequencies");
|
Chris@66
|
953 } else {
|
Chris@66
|
954 tipText = tr("Add a new layer showing a spectrogram set up for tracking frequencies");
|
Chris@66
|
955 }
|
Chris@66
|
956 break;
|
Chris@66
|
957
|
Chris@66
|
958 case LayerFactory::Spectrum:
|
Chris@67
|
959 icon = QIcon(":/icons/spectrum.png");
|
Chris@66
|
960 mainText = tr("Add Spectr&um");
|
Chris@66
|
961 if (menuType == 0) {
|
Chris@66
|
962 shortcutText = tr("Alt+U");
|
Chris@66
|
963 tipText = tr("Add a new pane showing a frequency spectrum");
|
Chris@66
|
964 } else {
|
Chris@66
|
965 tipText = tr("Add a new layer showing a frequency spectrum");
|
Chris@66
|
966 }
|
Chris@66
|
967 break;
|
Chris@66
|
968
|
Chris@66
|
969 default: break;
|
Chris@66
|
970 }
|
Chris@66
|
971
|
Chris@66
|
972 std::vector<Model *> candidateModels;
|
Chris@66
|
973 if (menuType == 0) {
|
Chris@66
|
974 candidateModels = models;
|
Chris@66
|
975 } else {
|
Chris@66
|
976 candidateModels.push_back(0);
|
Chris@66
|
977 }
|
Chris@66
|
978
|
Chris@66
|
979 for (std::vector<Model *>::iterator mi =
|
Chris@66
|
980 candidateModels.begin();
|
Chris@66
|
981 mi != candidateModels.end(); ++mi) {
|
Chris@66
|
982
|
Chris@66
|
983 Model *model = *mi;
|
Chris@66
|
984
|
Chris@66
|
985 int channels = 0;
|
Chris@66
|
986 if (model) {
|
Chris@66
|
987 DenseTimeValueModel *dtvm =
|
Chris@66
|
988 dynamic_cast<DenseTimeValueModel *>(model);
|
Chris@66
|
989 if (dtvm) channels = dtvm->getChannelCount();
|
Chris@66
|
990 }
|
Chris@66
|
991 if (channels < 1 && getMainModel()) {
|
Chris@66
|
992 channels = getMainModel()->getChannelCount();
|
Chris@66
|
993 }
|
Chris@66
|
994 if (channels < 1) channels = 1;
|
Chris@66
|
995
|
Chris@66
|
996 for (int c = 0; c <= channels; ++c) {
|
Chris@66
|
997
|
Chris@66
|
998 if (c == 1 && channels == 1) continue;
|
Chris@66
|
999 bool isDefault = (c == 0);
|
Chris@66
|
1000 bool isOnly = (isDefault && (channels == 1));
|
Chris@66
|
1001
|
Chris@66
|
1002 if (menuType == 1) {
|
Chris@66
|
1003 if (isDefault) isOnly = true;
|
Chris@66
|
1004 else continue;
|
Chris@66
|
1005 }
|
Chris@66
|
1006
|
Chris@66
|
1007 if (isOnly && (!plural || menuType == 1)) {
|
Chris@66
|
1008
|
Chris@138
|
1009 if (menuType == 1 && type != LayerFactory::Waveform) {
|
Chris@67
|
1010 action = new QAction(mainText, this);
|
Chris@67
|
1011 } else {
|
Chris@67
|
1012 action = new QAction(icon, mainText, this);
|
Chris@67
|
1013 }
|
Chris@67
|
1014
|
Chris@66
|
1015 action->setShortcut(shortcutText);
|
Chris@66
|
1016 action->setStatusTip(tipText);
|
Chris@66
|
1017 if (menuType == 0) {
|
Chris@66
|
1018 connect(action, SIGNAL(triggered()),
|
Chris@66
|
1019 this, SLOT(addPane()));
|
Chris@66
|
1020 connect(this, SIGNAL(canAddPane(bool)),
|
Chris@66
|
1021 action, SLOT(setEnabled(bool)));
|
Chris@66
|
1022 m_paneActions[action] = PaneConfiguration(type);
|
Chris@66
|
1023 } else {
|
Chris@66
|
1024 connect(action, SIGNAL(triggered()),
|
Chris@66
|
1025 this, SLOT(addLayer()));
|
Chris@66
|
1026 connect(this, SIGNAL(canAddLayer(bool)),
|
Chris@66
|
1027 action, SLOT(setEnabled(bool)));
|
Chris@66
|
1028 m_layerActions[action] = type;
|
Chris@66
|
1029 }
|
Chris@66
|
1030 menu->addAction(action);
|
Chris@66
|
1031
|
Chris@66
|
1032 } else {
|
Chris@66
|
1033
|
Chris@66
|
1034 if (!submenu) {
|
Chris@66
|
1035 submenu = menu->addMenu(mainText);
|
Chris@97
|
1036 submenu->setTearOffEnabled(true);
|
Chris@67
|
1037 } else if (isDefault) {
|
Chris@67
|
1038 submenu->addSeparator();
|
Chris@66
|
1039 }
|
Chris@66
|
1040
|
Chris@66
|
1041 QString actionText;
|
Chris@66
|
1042 if (c == 0) {
|
Chris@66
|
1043 if (mono) {
|
Chris@66
|
1044 actionText = tr("&All Channels Mixed");
|
Chris@66
|
1045 } else {
|
Chris@66
|
1046 actionText = tr("&All Channels");
|
Chris@66
|
1047 }
|
Chris@66
|
1048 } else {
|
Chris@66
|
1049 actionText = tr("Channel &%1").arg(c);
|
Chris@66
|
1050 }
|
Chris@66
|
1051
|
Chris@66
|
1052 if (model) {
|
Chris@66
|
1053 actionText = tr("%1: %2")
|
Chris@66
|
1054 .arg(model->objectName())
|
Chris@66
|
1055 .arg(actionText);
|
Chris@66
|
1056 }
|
Chris@67
|
1057
|
Chris@67
|
1058 if (isDefault) {
|
Chris@67
|
1059 action = new QAction(icon, actionText, this);
|
Chris@67
|
1060 if (!model || model == getMainModel()) {
|
Chris@67
|
1061 action->setShortcut(shortcutText);
|
Chris@67
|
1062 }
|
Chris@67
|
1063 } else {
|
Chris@67
|
1064 action = new QAction(actionText, this);
|
Chris@67
|
1065 }
|
Chris@67
|
1066
|
Chris@66
|
1067 action->setStatusTip(tipText);
|
Chris@66
|
1068
|
Chris@66
|
1069 if (menuType == 0) {
|
Chris@66
|
1070 connect(action, SIGNAL(triggered()),
|
Chris@66
|
1071 this, SLOT(addPane()));
|
Chris@66
|
1072 connect(this, SIGNAL(canAddPane(bool)),
|
Chris@66
|
1073 action, SLOT(setEnabled(bool)));
|
Chris@66
|
1074 m_paneActions[action] =
|
Chris@66
|
1075 PaneConfiguration(type, model, c - 1);
|
Chris@66
|
1076 } else {
|
Chris@66
|
1077 connect(action, SIGNAL(triggered()),
|
Chris@66
|
1078 this, SLOT(addLayer()));
|
Chris@66
|
1079 connect(this, SIGNAL(canAddLayer(bool)),
|
Chris@66
|
1080 action, SLOT(setEnabled(bool)));
|
Chris@66
|
1081 m_layerActions[action] = type;
|
Chris@66
|
1082 }
|
Chris@66
|
1083
|
Chris@66
|
1084 submenu->addAction(action);
|
Chris@66
|
1085 }
|
Chris@66
|
1086 }
|
Chris@66
|
1087 }
|
Chris@66
|
1088 }
|
Chris@66
|
1089 }
|
Chris@66
|
1090
|
Chris@66
|
1091 menu = m_paneMenu;
|
Chris@66
|
1092
|
Chris@66
|
1093 menu->addSeparator();
|
Chris@66
|
1094
|
Chris@66
|
1095 action = new QAction(QIcon(":/icons/editdelete.png"), tr("&Delete Pane"), this);
|
Chris@66
|
1096 action->setShortcut(tr("Alt+D"));
|
Chris@90
|
1097 action->setStatusTip(tr("Delete the currently active pane"));
|
Chris@66
|
1098 connect(action, SIGNAL(triggered()), this, SLOT(deleteCurrentPane()));
|
Chris@66
|
1099 connect(this, SIGNAL(canDeleteCurrentPane(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
1100 menu->addAction(action);
|
Chris@66
|
1101
|
Chris@66
|
1102 menu = m_layerMenu;
|
Chris@66
|
1103
|
Chris@66
|
1104 action = new QAction(QIcon(":/icons/timeruler.png"), tr("Add &Time Ruler"), this);
|
Chris@66
|
1105 action->setStatusTip(tr("Add a new layer showing a time ruler"));
|
Chris@66
|
1106 connect(action, SIGNAL(triggered()), this, SLOT(addLayer()));
|
Chris@66
|
1107 connect(this, SIGNAL(canAddLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
1108 m_layerActions[action] = LayerFactory::TimeRuler;
|
Chris@66
|
1109 menu->addAction(action);
|
Chris@66
|
1110
|
Chris@66
|
1111 menu->addSeparator();
|
Chris@66
|
1112
|
Chris@66
|
1113 m_existingLayersMenu = menu->addMenu(tr("Add &Existing Layer"));
|
Chris@97
|
1114 m_existingLayersMenu->setTearOffEnabled(true);
|
Chris@66
|
1115 m_rightButtonLayerMenu->addMenu(m_existingLayersMenu);
|
Chris@95
|
1116
|
Chris@95
|
1117 m_sliceMenu = menu->addMenu(tr("Add S&lice of Layer"));
|
Chris@97
|
1118 m_sliceMenu->setTearOffEnabled(true);
|
Chris@95
|
1119 m_rightButtonLayerMenu->addMenu(m_sliceMenu);
|
Chris@95
|
1120
|
Chris@95
|
1121 setupExistingLayersMenus();
|
Chris@66
|
1122
|
Chris@66
|
1123 m_rightButtonLayerMenu->addSeparator();
|
Chris@66
|
1124 menu->addSeparator();
|
Chris@66
|
1125
|
Chris@66
|
1126 action = new QAction(tr("&Rename Layer..."), this);
|
Chris@66
|
1127 action->setShortcut(tr("Alt+R"));
|
Chris@66
|
1128 action->setStatusTip(tr("Rename the currently active layer"));
|
Chris@66
|
1129 connect(action, SIGNAL(triggered()), this, SLOT(renameCurrentLayer()));
|
Chris@66
|
1130 connect(this, SIGNAL(canRenameLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
1131 menu->addAction(action);
|
Chris@66
|
1132 m_rightButtonLayerMenu->addAction(action);
|
Chris@66
|
1133
|
Chris@66
|
1134 action = new QAction(QIcon(":/icons/editdelete.png"), tr("&Delete Layer"), this);
|
Chris@66
|
1135 action->setShortcut(tr("Alt+Shift+D"));
|
Chris@66
|
1136 action->setStatusTip(tr("Delete the currently active layer"));
|
Chris@66
|
1137 connect(action, SIGNAL(triggered()), this, SLOT(deleteCurrentLayer()));
|
Chris@66
|
1138 connect(this, SIGNAL(canDeleteCurrentLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@66
|
1139 menu->addAction(action);
|
Chris@66
|
1140 m_rightButtonLayerMenu->addAction(action);
|
Chris@66
|
1141 }
|
Chris@66
|
1142
|
Chris@66
|
1143 void
|
Chris@66
|
1144 MainWindow::setupTransformsMenu()
|
Chris@66
|
1145 {
|
Chris@34
|
1146 if (m_transformsMenu) {
|
Chris@34
|
1147 m_transformActions.clear();
|
Chris@34
|
1148 m_transformActionsReverse.clear();
|
Chris@34
|
1149 m_transformsMenu->clear();
|
Chris@34
|
1150 } else {
|
Chris@97
|
1151 m_transformsMenu = menuBar()->addMenu(tr("&Transform"));
|
Chris@97
|
1152 m_transformsMenu->setTearOffEnabled(true);
|
Chris@97
|
1153 }
|
Chris@34
|
1154
|
Chris@0
|
1155 TransformFactory::TransformList transforms =
|
Chris@0
|
1156 TransformFactory::getInstance()->getAllTransforms();
|
Chris@0
|
1157
|
Chris@33
|
1158 vector<QString> types =
|
Chris@0
|
1159 TransformFactory::getInstance()->getAllTransformTypes();
|
Chris@0
|
1160
|
Chris@37
|
1161 map<QString, map<QString, SubdividingMenu *> > categoryMenus;
|
Chris@37
|
1162 map<QString, map<QString, SubdividingMenu *> > makerMenus;
|
Chris@33
|
1163
|
Chris@36
|
1164 map<QString, SubdividingMenu *> byPluginNameMenus;
|
Chris@33
|
1165 map<QString, map<QString, QMenu *> > pluginNameMenus;
|
Chris@33
|
1166
|
Chris@37
|
1167 set<SubdividingMenu *> pendingMenus;
|
Chris@37
|
1168
|
Chris@34
|
1169 m_recentTransformsMenu = m_transformsMenu->addMenu(tr("&Recent Transforms"));
|
Chris@97
|
1170 m_recentTransformsMenu->setTearOffEnabled(true);
|
Chris@34
|
1171 m_rightButtonTransformsMenu->addMenu(m_recentTransformsMenu);
|
Chris@34
|
1172 connect(&m_recentTransforms, SIGNAL(recentChanged()),
|
Chris@34
|
1173 this, SLOT(setupRecentTransformsMenu()));
|
Chris@34
|
1174
|
Chris@34
|
1175 m_transformsMenu->addSeparator();
|
Chris@34
|
1176 m_rightButtonTransformsMenu->addSeparator();
|
Chris@34
|
1177
|
Chris@33
|
1178 for (vector<QString>::iterator i = types.begin(); i != types.end(); ++i) {
|
Chris@33
|
1179
|
Chris@33
|
1180 if (i != types.begin()) {
|
Chris@34
|
1181 m_transformsMenu->addSeparator();
|
Chris@34
|
1182 m_rightButtonTransformsMenu->addSeparator();
|
Chris@33
|
1183 }
|
Chris@33
|
1184
|
Chris@33
|
1185 QString byCategoryLabel = tr("%1 by Category").arg(*i);
|
Chris@37
|
1186 SubdividingMenu *byCategoryMenu = new SubdividingMenu(byCategoryLabel,
|
Chris@37
|
1187 20, 40);
|
Chris@97
|
1188 byCategoryMenu->setTearOffEnabled(true);
|
Chris@37
|
1189 m_transformsMenu->addMenu(byCategoryMenu);
|
Chris@34
|
1190 m_rightButtonTransformsMenu->addMenu(byCategoryMenu);
|
Chris@37
|
1191 pendingMenus.insert(byCategoryMenu);
|
Chris@33
|
1192
|
Chris@33
|
1193 vector<QString> categories =
|
Chris@33
|
1194 TransformFactory::getInstance()->getTransformCategories(*i);
|
Chris@33
|
1195
|
Chris@33
|
1196 for (vector<QString>::iterator j = categories.begin();
|
Chris@33
|
1197 j != categories.end(); ++j) {
|
Chris@33
|
1198
|
Chris@33
|
1199 QString category = *j;
|
Chris@33
|
1200 if (category == "") category = tr("Unclassified");
|
Chris@33
|
1201
|
Chris@33
|
1202 if (categories.size() < 2) {
|
Chris@33
|
1203 categoryMenus[*i][category] = byCategoryMenu;
|
Chris@33
|
1204 continue;
|
Chris@33
|
1205 }
|
Chris@33
|
1206
|
Chris@33
|
1207 QStringList components = category.split(" > ");
|
Chris@33
|
1208 QString key;
|
Chris@33
|
1209
|
Chris@33
|
1210 for (QStringList::iterator k = components.begin();
|
Chris@33
|
1211 k != components.end(); ++k) {
|
Chris@33
|
1212
|
Chris@33
|
1213 QString parentKey = key;
|
Chris@33
|
1214 if (key != "") key += " > ";
|
Chris@33
|
1215 key += *k;
|
Chris@33
|
1216
|
Chris@33
|
1217 if (categoryMenus[*i].find(key) == categoryMenus[*i].end()) {
|
Chris@37
|
1218 SubdividingMenu *m = new SubdividingMenu(*k, 20, 40);
|
Chris@97
|
1219 m->setTearOffEnabled(true);
|
Chris@37
|
1220 pendingMenus.insert(m);
|
Chris@37
|
1221 categoryMenus[*i][key] = m;
|
Chris@33
|
1222 if (parentKey == "") {
|
Chris@37
|
1223 byCategoryMenu->addMenu(m);
|
Chris@33
|
1224 } else {
|
Chris@37
|
1225 categoryMenus[*i][parentKey]->addMenu(m);
|
Chris@33
|
1226 }
|
Chris@33
|
1227 }
|
Chris@33
|
1228 }
|
Chris@33
|
1229 }
|
Chris@33
|
1230
|
Chris@34
|
1231 QString byPluginNameLabel = tr("%1 by Plugin Name").arg(*i);
|
Chris@36
|
1232 byPluginNameMenus[*i] = new SubdividingMenu(byPluginNameLabel);
|
Chris@97
|
1233 byPluginNameMenus[*i]->setTearOffEnabled(true);
|
Chris@36
|
1234 m_transformsMenu->addMenu(byPluginNameMenus[*i]);
|
Chris@34
|
1235 m_rightButtonTransformsMenu->addMenu(byPluginNameMenus[*i]);
|
Chris@37
|
1236 pendingMenus.insert(byPluginNameMenus[*i]);
|
Chris@34
|
1237
|
Chris@33
|
1238 QString byMakerLabel = tr("%1 by Maker").arg(*i);
|
Chris@37
|
1239 SubdividingMenu *byMakerMenu = new SubdividingMenu(byMakerLabel, 20, 40);
|
Chris@97
|
1240 byMakerMenu->setTearOffEnabled(true);
|
Chris@37
|
1241 m_transformsMenu->addMenu(byMakerMenu);
|
Chris@34
|
1242 m_rightButtonTransformsMenu->addMenu(byMakerMenu);
|
Chris@37
|
1243 pendingMenus.insert(byMakerMenu);
|
Chris@33
|
1244
|
Chris@33
|
1245 vector<QString> makers =
|
Chris@33
|
1246 TransformFactory::getInstance()->getTransformMakers(*i);
|
Chris@37
|
1247
|
Chris@33
|
1248 for (vector<QString>::iterator j = makers.begin();
|
Chris@33
|
1249 j != makers.end(); ++j) {
|
Chris@33
|
1250
|
Chris@33
|
1251 QString maker = *j;
|
Chris@33
|
1252 if (maker == "") maker = tr("Unknown");
|
Chris@55
|
1253 maker.replace(QRegExp(tr(" [\\(<].*$")), "");
|
Chris@55
|
1254
|
Chris@37
|
1255 makerMenus[*i][maker] = new SubdividingMenu(maker, 30, 40);
|
Chris@97
|
1256 makerMenus[*i][maker]->setTearOffEnabled(true);
|
Chris@37
|
1257 byMakerMenu->addMenu(makerMenus[*i][maker]);
|
Chris@37
|
1258 pendingMenus.insert(makerMenus[*i][maker]);
|
Chris@33
|
1259 }
|
Chris@0
|
1260 }
|
Chris@0
|
1261
|
Chris@0
|
1262 for (unsigned int i = 0; i < transforms.size(); ++i) {
|
Chris@0
|
1263
|
Chris@107
|
1264 QString name = transforms[i].name;
|
Chris@107
|
1265 if (name == "") name = transforms[i].identifier;
|
Chris@107
|
1266
|
Chris@107
|
1267 // std::cerr << "Plugin Name: " << name.toStdString() << std::endl;
|
Chris@80
|
1268
|
Chris@33
|
1269 QString type = transforms[i].type;
|
Chris@33
|
1270
|
Chris@33
|
1271 QString category = transforms[i].category;
|
Chris@33
|
1272 if (category == "") category = tr("Unclassified");
|
Chris@33
|
1273
|
Chris@33
|
1274 QString maker = transforms[i].maker;
|
Chris@33
|
1275 if (maker == "") maker = tr("Unknown");
|
Chris@55
|
1276 maker.replace(QRegExp(tr(" [\\(<].*$")), "");
|
Chris@33
|
1277
|
Chris@107
|
1278 QString pluginName = name.section(": ", 0, 0);
|
Chris@107
|
1279 QString output = name.section(": ", 1);
|
Chris@107
|
1280
|
Chris@107
|
1281 QAction *action = new QAction(tr("%1...").arg(name), this);
|
Chris@0
|
1282 connect(action, SIGNAL(triggered()), this, SLOT(addLayer()));
|
Chris@107
|
1283 m_transformActions[action] = transforms[i].identifier;
|
Chris@107
|
1284 m_transformActionsReverse[transforms[i].identifier] = action;
|
Chris@0
|
1285 connect(this, SIGNAL(canAddLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@33
|
1286
|
Chris@108
|
1287 action->setStatusTip(transforms[i].description);
|
Chris@90
|
1288
|
Chris@33
|
1289 if (categoryMenus[type].find(category) == categoryMenus[type].end()) {
|
Chris@33
|
1290 std::cerr << "WARNING: MainWindow::setupMenus: Internal error: "
|
Chris@33
|
1291 << "No category menu for transform \""
|
Chris@107
|
1292 << name.toStdString() << "\" (category = \""
|
Chris@33
|
1293 << category.toStdString() << "\")" << std::endl;
|
Chris@33
|
1294 } else {
|
Chris@33
|
1295 categoryMenus[type][category]->addAction(action);
|
Chris@33
|
1296 }
|
Chris@33
|
1297
|
Chris@33
|
1298 if (makerMenus[type].find(maker) == makerMenus[type].end()) {
|
Chris@33
|
1299 std::cerr << "WARNING: MainWindow::setupMenus: Internal error: "
|
Chris@33
|
1300 << "No maker menu for transform \""
|
Chris@107
|
1301 << name.toStdString() << "\" (maker = \""
|
Chris@33
|
1302 << maker.toStdString() << "\")" << std::endl;
|
Chris@33
|
1303 } else {
|
Chris@80
|
1304 makerMenus[type][maker]->addAction(action);
|
Chris@33
|
1305 }
|
Chris@33
|
1306
|
Chris@33
|
1307 action = new QAction(tr("%1...").arg(output == "" ? pluginName : output), this);
|
Chris@33
|
1308 connect(action, SIGNAL(triggered()), this, SLOT(addLayer()));
|
Chris@107
|
1309 m_transformActions[action] = transforms[i].identifier;
|
Chris@33
|
1310 connect(this, SIGNAL(canAddLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@108
|
1311 action->setStatusTip(transforms[i].description);
|
Chris@33
|
1312
|
Chris@34
|
1313 // cerr << "Transform: \"" << name.toStdString() << "\": plugin name \"" << pluginName.toStdString() << "\"" << endl;
|
Chris@34
|
1314
|
Chris@33
|
1315 if (pluginNameMenus[type].find(pluginName) ==
|
Chris@33
|
1316 pluginNameMenus[type].end()) {
|
Chris@33
|
1317
|
Chris@36
|
1318 SubdividingMenu *parentMenu = byPluginNameMenus[type];
|
Chris@97
|
1319 parentMenu->setTearOffEnabled(true);
|
Chris@34
|
1320
|
Chris@33
|
1321 if (output == "") {
|
Chris@36
|
1322 parentMenu->addAction(pluginName, action);
|
Chris@33
|
1323 } else {
|
Chris@34
|
1324 pluginNameMenus[type][pluginName] =
|
Chris@34
|
1325 parentMenu->addMenu(pluginName);
|
Chris@33
|
1326 connect(this, SIGNAL(canAddLayer(bool)),
|
Chris@33
|
1327 pluginNameMenus[type][pluginName],
|
Chris@33
|
1328 SLOT(setEnabled(bool)));
|
Chris@33
|
1329 }
|
Chris@33
|
1330 }
|
Chris@33
|
1331
|
Chris@33
|
1332 if (pluginNameMenus[type].find(pluginName) !=
|
Chris@33
|
1333 pluginNameMenus[type].end()) {
|
Chris@33
|
1334 pluginNameMenus[type][pluginName]->addAction(action);
|
Chris@33
|
1335 }
|
Chris@0
|
1336 }
|
Chris@0
|
1337
|
Chris@37
|
1338 for (set<SubdividingMenu *>::iterator i = pendingMenus.begin();
|
Chris@37
|
1339 i != pendingMenus.end(); ++i) {
|
Chris@37
|
1340 (*i)->entriesAdded();
|
Chris@37
|
1341 }
|
Chris@37
|
1342
|
Chris@34
|
1343 setupRecentTransformsMenu();
|
Chris@66
|
1344 }
|
Chris@66
|
1345
|
Chris@66
|
1346 void
|
Chris@66
|
1347 MainWindow::setupHelpMenu()
|
Chris@66
|
1348 {
|
Chris@66
|
1349 if (m_mainMenusCreated) return;
|
Chris@66
|
1350
|
Chris@66
|
1351 QMenu *menu = menuBar()->addMenu(tr("&Help"));
|
Chris@97
|
1352 menu->setTearOffEnabled(true);
|
Chris@66
|
1353
|
Chris@138
|
1354 QAction *action = new QAction(QIcon(":icons/help.png"),
|
Chris@138
|
1355 tr("&Help Reference"), this);
|
Chris@66
|
1356 action->setStatusTip(tr("Open the Sonic Visualiser reference manual"));
|
Chris@66
|
1357 connect(action, SIGNAL(triggered()), this, SLOT(help()));
|
Chris@0
|
1358 menu->addAction(action);
|
Chris@0
|
1359
|
Chris@66
|
1360 action = new QAction(tr("Sonic Visualiser on the &Web"), this);
|
Chris@66
|
1361 action->setStatusTip(tr("Open the Sonic Visualiser website"));
|
Chris@66
|
1362 connect(action, SIGNAL(triggered()), this, SLOT(website()));
|
Chris@0
|
1363 menu->addAction(action);
|
Chris@66
|
1364
|
Chris@66
|
1365 action = new QAction(tr("&About Sonic Visualiser"), this);
|
Chris@66
|
1366 action->setStatusTip(tr("Show information about Sonic Visualiser"));
|
Chris@66
|
1367 connect(action, SIGNAL(triggered()), this, SLOT(about()));
|
Chris@0
|
1368 menu->addAction(action);
|
Chris@0
|
1369 }
|
Chris@0
|
1370
|
Chris@0
|
1371 void
|
Chris@0
|
1372 MainWindow::setupRecentFilesMenu()
|
Chris@0
|
1373 {
|
Chris@0
|
1374 m_recentFilesMenu->clear();
|
Chris@34
|
1375 vector<QString> files = m_recentFiles.getRecent();
|
Chris@0
|
1376 for (size_t i = 0; i < files.size(); ++i) {
|
Chris@0
|
1377 QAction *action = new QAction(files[i], this);
|
Chris@0
|
1378 connect(action, SIGNAL(triggered()), this, SLOT(openRecentFile()));
|
Chris@0
|
1379 m_recentFilesMenu->addAction(action);
|
Chris@0
|
1380 }
|
Chris@0
|
1381 }
|
Chris@0
|
1382
|
Chris@0
|
1383 void
|
Chris@34
|
1384 MainWindow::setupRecentTransformsMenu()
|
Chris@34
|
1385 {
|
Chris@34
|
1386 m_recentTransformsMenu->clear();
|
Chris@34
|
1387 vector<QString> transforms = m_recentTransforms.getRecent();
|
Chris@34
|
1388 for (size_t i = 0; i < transforms.size(); ++i) {
|
Chris@34
|
1389 TransformActionReverseMap::iterator ti =
|
Chris@34
|
1390 m_transformActionsReverse.find(transforms[i]);
|
Chris@34
|
1391 if (ti == m_transformActionsReverse.end()) {
|
Chris@34
|
1392 std::cerr << "WARNING: MainWindow::setupRecentTransformsMenu: "
|
Chris@34
|
1393 << "Unknown transform \"" << transforms[i].toStdString()
|
Chris@34
|
1394 << "\" in recent transforms list" << std::endl;
|
Chris@34
|
1395 continue;
|
Chris@34
|
1396 }
|
Chris@34
|
1397 m_recentTransformsMenu->addAction(ti->second);
|
Chris@34
|
1398 }
|
Chris@34
|
1399 }
|
Chris@34
|
1400
|
Chris@34
|
1401 void
|
Chris@95
|
1402 MainWindow::setupExistingLayersMenus()
|
Chris@0
|
1403 {
|
Chris@0
|
1404 if (!m_existingLayersMenu) return; // should have been created by setupMenus
|
Chris@0
|
1405
|
Chris@0
|
1406 // std::cerr << "MainWindow::setupExistingLayersMenu" << std::endl;
|
Chris@0
|
1407
|
Chris@0
|
1408 m_existingLayersMenu->clear();
|
Chris@0
|
1409 m_existingLayerActions.clear();
|
Chris@0
|
1410
|
Chris@95
|
1411 m_sliceMenu->clear();
|
Chris@95
|
1412 m_sliceActions.clear();
|
Chris@95
|
1413
|
Chris@33
|
1414 vector<Layer *> orderedLayers;
|
Chris@33
|
1415 set<Layer *> observedLayers;
|
Chris@95
|
1416 set<Layer *> sliceableLayers;
|
Chris@95
|
1417
|
Chris@95
|
1418 LayerFactory *factory = LayerFactory::getInstance();
|
Chris@0
|
1419
|
Chris@0
|
1420 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@0
|
1421
|
Chris@0
|
1422 Pane *pane = m_paneStack->getPane(i);
|
Chris@0
|
1423 if (!pane) continue;
|
Chris@0
|
1424
|
Chris@0
|
1425 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@0
|
1426
|
Chris@0
|
1427 Layer *layer = pane->getLayer(j);
|
Chris@0
|
1428 if (!layer) continue;
|
Chris@0
|
1429 if (observedLayers.find(layer) != observedLayers.end()) {
|
Chris@137
|
1430 // std::cerr << "found duplicate layer " << layer << std::endl;
|
Chris@0
|
1431 continue;
|
Chris@0
|
1432 }
|
Chris@0
|
1433
|
Chris@0
|
1434 // std::cerr << "found new layer " << layer << " (name = "
|
Chris@0
|
1435 // << layer->getLayerPresentationName().toStdString() << ")" << std::endl;
|
Chris@0
|
1436
|
Chris@0
|
1437 orderedLayers.push_back(layer);
|
Chris@0
|
1438 observedLayers.insert(layer);
|
Chris@95
|
1439
|
Chris@95
|
1440 if (factory->isLayerSliceable(layer)) {
|
Chris@95
|
1441 sliceableLayers.insert(layer);
|
Chris@95
|
1442 }
|
Chris@0
|
1443 }
|
Chris@0
|
1444 }
|
Chris@0
|
1445
|
Chris@33
|
1446 map<QString, int> observedNames;
|
Chris@0
|
1447
|
Chris@137
|
1448 for (size_t i = 0; i < orderedLayers.size(); ++i) {
|
Chris@0
|
1449
|
Chris@95
|
1450 Layer *layer = orderedLayers[i];
|
Chris@95
|
1451
|
Chris@95
|
1452 QString name = layer->getLayerPresentationName();
|
Chris@0
|
1453 int n = ++observedNames[name];
|
Chris@0
|
1454 if (n > 1) name = QString("%1 <%2>").arg(name).arg(n);
|
Chris@0
|
1455
|
Chris@95
|
1456 QIcon icon = QIcon(QString(":/icons/%1.png")
|
Chris@95
|
1457 .arg(factory->getLayerIconName
|
Chris@95
|
1458 (factory->getLayerType(layer))));
|
Chris@95
|
1459
|
Chris@95
|
1460 QAction *action = new QAction(icon, name, this);
|
Chris@0
|
1461 connect(action, SIGNAL(triggered()), this, SLOT(addLayer()));
|
Chris@0
|
1462 connect(this, SIGNAL(canAddLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@95
|
1463 m_existingLayerActions[action] = layer;
|
Chris@0
|
1464
|
Chris@0
|
1465 m_existingLayersMenu->addAction(action);
|
Chris@95
|
1466
|
Chris@95
|
1467 if (sliceableLayers.find(layer) != sliceableLayers.end()) {
|
Chris@95
|
1468 action = new QAction(icon, name, this);
|
Chris@95
|
1469 connect(action, SIGNAL(triggered()), this, SLOT(addLayer()));
|
Chris@95
|
1470 connect(this, SIGNAL(canAddLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@95
|
1471 m_sliceActions[action] = layer;
|
Chris@95
|
1472 m_sliceMenu->addAction(action);
|
Chris@95
|
1473 }
|
Chris@0
|
1474 }
|
Chris@95
|
1475
|
Chris@95
|
1476 m_sliceMenu->setEnabled(!m_sliceActions.empty());
|
Chris@0
|
1477 }
|
Chris@0
|
1478
|
Chris@0
|
1479 void
|
Chris@0
|
1480 MainWindow::setupToolbars()
|
Chris@0
|
1481 {
|
Chris@0
|
1482 QToolBar *toolbar = addToolBar(tr("Transport Toolbar"));
|
Chris@0
|
1483
|
Chris@0
|
1484 QAction *action = toolbar->addAction(QIcon(":/icons/rewind-start.png"),
|
Chris@0
|
1485 tr("Rewind to Start"));
|
Chris@0
|
1486 action->setShortcut(tr("Home"));
|
Chris@0
|
1487 action->setStatusTip(tr("Rewind to the start"));
|
Chris@0
|
1488 connect(action, SIGNAL(triggered()), this, SLOT(rewindStart()));
|
Chris@0
|
1489 connect(this, SIGNAL(canPlay(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
1490
|
Chris@0
|
1491 action = toolbar->addAction(QIcon(":/icons/rewind.png"),
|
Chris@0
|
1492 tr("Rewind"));
|
Chris@0
|
1493 action->setShortcut(tr("PageUp"));
|
Chris@0
|
1494 action->setStatusTip(tr("Rewind to the previous time instant in the current layer"));
|
Chris@0
|
1495 connect(action, SIGNAL(triggered()), this, SLOT(rewind()));
|
Chris@0
|
1496 connect(this, SIGNAL(canRewind(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
1497
|
Chris@0
|
1498 action = toolbar->addAction(QIcon(":/icons/playpause.png"),
|
Chris@0
|
1499 tr("Play / Pause"));
|
Chris@0
|
1500 action->setCheckable(true);
|
Chris@0
|
1501 action->setShortcut(tr("Space"));
|
Chris@0
|
1502 action->setStatusTip(tr("Start or stop playback from the current position"));
|
Chris@0
|
1503 connect(action, SIGNAL(triggered()), this, SLOT(play()));
|
Chris@0
|
1504 connect(m_playSource, SIGNAL(playStatusChanged(bool)),
|
Chris@0
|
1505 action, SLOT(setChecked(bool)));
|
Chris@0
|
1506 connect(this, SIGNAL(canPlay(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
1507
|
Chris@0
|
1508 action = toolbar->addAction(QIcon(":/icons/ffwd.png"),
|
Chris@0
|
1509 tr("Fast Forward"));
|
Chris@0
|
1510 action->setShortcut(tr("PageDown"));
|
Chris@0
|
1511 action->setStatusTip(tr("Fast forward to the next time instant in the current layer"));
|
Chris@0
|
1512 connect(action, SIGNAL(triggered()), this, SLOT(ffwd()));
|
Chris@0
|
1513 connect(this, SIGNAL(canFfwd(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
1514
|
Chris@0
|
1515 action = toolbar->addAction(QIcon(":/icons/ffwd-end.png"),
|
Chris@0
|
1516 tr("Fast Forward to End"));
|
Chris@0
|
1517 action->setShortcut(tr("End"));
|
Chris@0
|
1518 action->setStatusTip(tr("Fast-forward to the end"));
|
Chris@0
|
1519 connect(action, SIGNAL(triggered()), this, SLOT(ffwdEnd()));
|
Chris@0
|
1520 connect(this, SIGNAL(canPlay(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
1521
|
Chris@0
|
1522 toolbar = addToolBar(tr("Play Mode Toolbar"));
|
Chris@0
|
1523
|
Chris@0
|
1524 action = toolbar->addAction(QIcon(":/icons/playselection.png"),
|
Chris@0
|
1525 tr("Constrain Playback to Selection"));
|
Chris@0
|
1526 action->setCheckable(true);
|
Chris@0
|
1527 action->setChecked(m_viewManager->getPlaySelectionMode());
|
Chris@0
|
1528 action->setShortcut(tr("s"));
|
Chris@0
|
1529 action->setStatusTip(tr("Constrain playback to the selected area"));
|
Chris@69
|
1530 connect(m_viewManager, SIGNAL(playSelectionModeChanged(bool)),
|
Chris@69
|
1531 action, SLOT(setChecked(bool)));
|
Chris@0
|
1532 connect(action, SIGNAL(triggered()), this, SLOT(playSelectionToggled()));
|
Chris@0
|
1533 connect(this, SIGNAL(canPlaySelection(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
1534
|
Chris@0
|
1535 action = toolbar->addAction(QIcon(":/icons/playloop.png"),
|
Chris@0
|
1536 tr("Loop Playback"));
|
Chris@0
|
1537 action->setCheckable(true);
|
Chris@0
|
1538 action->setChecked(m_viewManager->getPlayLoopMode());
|
Chris@0
|
1539 action->setShortcut(tr("l"));
|
Chris@0
|
1540 action->setStatusTip(tr("Loop playback"));
|
Chris@69
|
1541 connect(m_viewManager, SIGNAL(playLoopModeChanged(bool)),
|
Chris@69
|
1542 action, SLOT(setChecked(bool)));
|
Chris@0
|
1543 connect(action, SIGNAL(triggered()), this, SLOT(playLoopToggled()));
|
Chris@0
|
1544 connect(this, SIGNAL(canPlay(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
1545
|
Chris@0
|
1546 toolbar = addToolBar(tr("Edit Toolbar"));
|
Chris@0
|
1547 CommandHistory::getInstance()->registerToolbar(toolbar);
|
Chris@0
|
1548
|
Chris@0
|
1549 toolbar = addToolBar(tr("Tools Toolbar"));
|
Chris@0
|
1550 QActionGroup *group = new QActionGroup(this);
|
Chris@0
|
1551
|
Chris@0
|
1552 action = toolbar->addAction(QIcon(":/icons/navigate.png"),
|
Chris@0
|
1553 tr("Navigate"));
|
Chris@0
|
1554 action->setCheckable(true);
|
Chris@0
|
1555 action->setChecked(true);
|
Chris@0
|
1556 action->setShortcut(tr("1"));
|
Chris@90
|
1557 action->setStatusTip(tr("Navigate"));
|
Chris@0
|
1558 connect(action, SIGNAL(triggered()), this, SLOT(toolNavigateSelected()));
|
Chris@0
|
1559 group->addAction(action);
|
Chris@0
|
1560 m_toolActions[ViewManager::NavigateMode] = action;
|
Chris@0
|
1561
|
Chris@0
|
1562 action = toolbar->addAction(QIcon(":/icons/select.png"),
|
Chris@0
|
1563 tr("Select"));
|
Chris@0
|
1564 action->setCheckable(true);
|
Chris@0
|
1565 action->setShortcut(tr("2"));
|
Chris@90
|
1566 action->setStatusTip(tr("Select ranges"));
|
Chris@0
|
1567 connect(action, SIGNAL(triggered()), this, SLOT(toolSelectSelected()));
|
Chris@0
|
1568 group->addAction(action);
|
Chris@0
|
1569 m_toolActions[ViewManager::SelectMode] = action;
|
Chris@0
|
1570
|
Chris@0
|
1571 action = toolbar->addAction(QIcon(":/icons/move.png"),
|
Chris@0
|
1572 tr("Edit"));
|
Chris@0
|
1573 action->setCheckable(true);
|
Chris@0
|
1574 action->setShortcut(tr("3"));
|
Chris@90
|
1575 action->setStatusTip(tr("Edit items in layer"));
|
Chris@0
|
1576 connect(action, SIGNAL(triggered()), this, SLOT(toolEditSelected()));
|
Chris@0
|
1577 connect(this, SIGNAL(canEditLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
1578 group->addAction(action);
|
Chris@0
|
1579 m_toolActions[ViewManager::EditMode] = action;
|
Chris@0
|
1580
|
Chris@0
|
1581 action = toolbar->addAction(QIcon(":/icons/draw.png"),
|
Chris@0
|
1582 tr("Draw"));
|
Chris@0
|
1583 action->setCheckable(true);
|
Chris@0
|
1584 action->setShortcut(tr("4"));
|
Chris@90
|
1585 action->setStatusTip(tr("Draw new items in layer"));
|
Chris@0
|
1586 connect(action, SIGNAL(triggered()), this, SLOT(toolDrawSelected()));
|
Chris@0
|
1587 connect(this, SIGNAL(canEditLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
1588 group->addAction(action);
|
Chris@0
|
1589 m_toolActions[ViewManager::DrawMode] = action;
|
Chris@0
|
1590
|
Chris@151
|
1591 action = toolbar->addAction(QIcon(":/icons/measure.png"),
|
Chris@151
|
1592 tr("Measure"));
|
Chris@151
|
1593 action->setCheckable(true);
|
Chris@151
|
1594 action->setShortcut(tr("5"));
|
Chris@151
|
1595 action->setStatusTip(tr("Make measurements in layer"));
|
Chris@151
|
1596 connect(action, SIGNAL(triggered()), this, SLOT(toolMeasureSelected()));
|
Chris@151
|
1597 group->addAction(action);
|
Chris@151
|
1598 m_toolActions[ViewManager::MeasureMode] = action;
|
Chris@151
|
1599
|
Chris@0
|
1600 // action = toolbar->addAction(QIcon(":/icons/text.png"),
|
Chris@0
|
1601 // tr("Text"));
|
Chris@0
|
1602 // action->setCheckable(true);
|
Chris@0
|
1603 // action->setShortcut(tr("5"));
|
Chris@0
|
1604 // connect(action, SIGNAL(triggered()), this, SLOT(toolTextSelected()));
|
Chris@0
|
1605 // group->addAction(action);
|
Chris@0
|
1606 // m_toolActions[ViewManager::TextMode] = action;
|
Chris@0
|
1607
|
Chris@0
|
1608 toolNavigateSelected();
|
Chris@0
|
1609 }
|
Chris@0
|
1610
|
Chris@0
|
1611 void
|
Chris@0
|
1612 MainWindow::updateMenuStates()
|
Chris@0
|
1613 {
|
Chris@117
|
1614 Pane *currentPane = 0;
|
Chris@117
|
1615 Layer *currentLayer = 0;
|
Chris@117
|
1616
|
Chris@117
|
1617 if (m_paneStack) currentPane = m_paneStack->getCurrentPane();
|
Chris@117
|
1618 if (currentPane) currentLayer = currentPane->getSelectedLayer();
|
Chris@117
|
1619
|
Chris@0
|
1620 bool haveCurrentPane =
|
Chris@117
|
1621 (currentPane != 0);
|
Chris@0
|
1622 bool haveCurrentLayer =
|
Chris@117
|
1623 (haveCurrentPane &&
|
Chris@117
|
1624 (currentLayer != 0));
|
Chris@0
|
1625 bool haveMainModel =
|
Chris@0
|
1626 (getMainModel() != 0);
|
Chris@0
|
1627 bool havePlayTarget =
|
Chris@0
|
1628 (m_playTarget != 0);
|
Chris@0
|
1629 bool haveSelection =
|
Chris@0
|
1630 (m_viewManager &&
|
Chris@0
|
1631 !m_viewManager->getSelections().empty());
|
Chris@0
|
1632 bool haveCurrentEditableLayer =
|
Chris@0
|
1633 (haveCurrentLayer &&
|
Chris@117
|
1634 currentLayer->isLayerEditable());
|
Chris@0
|
1635 bool haveCurrentTimeInstantsLayer =
|
Chris@0
|
1636 (haveCurrentLayer &&
|
Chris@117
|
1637 dynamic_cast<TimeInstantLayer *>(currentLayer));
|
Chris@0
|
1638 bool haveCurrentTimeValueLayer =
|
Chris@0
|
1639 (haveCurrentLayer &&
|
Chris@117
|
1640 dynamic_cast<TimeValueLayer *>(currentLayer));
|
Chris@0
|
1641 bool haveCurrentColour3DPlot =
|
Chris@0
|
1642 (haveCurrentLayer &&
|
Chris@117
|
1643 dynamic_cast<Colour3DPlotLayer *>(currentLayer));
|
Chris@0
|
1644 bool haveClipboardContents =
|
Chris@0
|
1645 (m_viewManager &&
|
Chris@0
|
1646 !m_viewManager->getClipboard().empty());
|
Chris@0
|
1647
|
Chris@0
|
1648 emit canAddPane(haveMainModel);
|
Chris@0
|
1649 emit canDeleteCurrentPane(haveCurrentPane);
|
Chris@0
|
1650 emit canZoom(haveMainModel && haveCurrentPane);
|
Chris@0
|
1651 emit canScroll(haveMainModel && haveCurrentPane);
|
Chris@0
|
1652 emit canAddLayer(haveMainModel && haveCurrentPane);
|
Chris@0
|
1653 emit canImportMoreAudio(haveMainModel);
|
Chris@0
|
1654 emit canImportLayer(haveMainModel && haveCurrentPane);
|
Chris@0
|
1655 emit canExportAudio(haveMainModel);
|
Chris@0
|
1656 emit canExportLayer(haveMainModel &&
|
Chris@0
|
1657 (haveCurrentEditableLayer || haveCurrentColour3DPlot));
|
Chris@121
|
1658 emit canExportImage(haveMainModel && haveCurrentPane);
|
Chris@0
|
1659 emit canDeleteCurrentLayer(haveCurrentLayer);
|
Chris@0
|
1660 emit canRenameLayer(haveCurrentLayer);
|
Chris@0
|
1661 emit canEditLayer(haveCurrentEditableLayer);
|
Chris@0
|
1662 emit canSelect(haveMainModel && haveCurrentPane);
|
Chris@0
|
1663 emit canPlay(/*!!! haveMainModel && */ havePlayTarget);
|
Chris@0
|
1664 emit canFfwd(haveCurrentTimeInstantsLayer || haveCurrentTimeValueLayer);
|
Chris@0
|
1665 emit canRewind(haveCurrentTimeInstantsLayer || haveCurrentTimeValueLayer);
|
Chris@0
|
1666 emit canPaste(haveCurrentEditableLayer && haveClipboardContents);
|
Chris@0
|
1667 emit canInsertInstant(haveCurrentPane);
|
Chris@81
|
1668 emit canInsertInstantsAtBoundaries(haveCurrentPane && haveSelection);
|
Chris@0
|
1669 emit canPlaySelection(haveMainModel && havePlayTarget && haveSelection);
|
Chris@0
|
1670 emit canClearSelection(haveSelection);
|
Chris@0
|
1671 emit canEditSelection(haveSelection && haveCurrentEditableLayer);
|
Chris@0
|
1672 emit canSave(m_sessionFile != "" && m_documentModified);
|
Chris@0
|
1673 }
|
Chris@0
|
1674
|
Chris@0
|
1675 void
|
Chris@0
|
1676 MainWindow::updateDescriptionLabel()
|
Chris@0
|
1677 {
|
Chris@0
|
1678 if (!getMainModel()) {
|
Chris@0
|
1679 m_descriptionLabel->setText(tr("No audio file loaded."));
|
Chris@0
|
1680 return;
|
Chris@0
|
1681 }
|
Chris@0
|
1682
|
Chris@0
|
1683 QString description;
|
Chris@0
|
1684
|
Chris@0
|
1685 size_t ssr = getMainModel()->getSampleRate();
|
Chris@0
|
1686 size_t tsr = ssr;
|
Chris@0
|
1687 if (m_playSource) tsr = m_playSource->getTargetSampleRate();
|
Chris@0
|
1688
|
Chris@0
|
1689 if (ssr != tsr) {
|
Chris@0
|
1690 description = tr("%1Hz (resampling to %2Hz)").arg(ssr).arg(tsr);
|
Chris@0
|
1691 } else {
|
Chris@0
|
1692 description = QString("%1Hz").arg(ssr);
|
Chris@0
|
1693 }
|
Chris@0
|
1694
|
Chris@0
|
1695 description = QString("%1 - %2")
|
Chris@0
|
1696 .arg(RealTime::frame2RealTime(getMainModel()->getEndFrame(), ssr)
|
Chris@0
|
1697 .toText(false).c_str())
|
Chris@0
|
1698 .arg(description);
|
Chris@0
|
1699
|
Chris@0
|
1700 m_descriptionLabel->setText(description);
|
Chris@0
|
1701 }
|
Chris@0
|
1702
|
Chris@0
|
1703 void
|
Chris@0
|
1704 MainWindow::documentModified()
|
Chris@0
|
1705 {
|
Chris@0
|
1706 // std::cerr << "MainWindow::documentModified" << std::endl;
|
Chris@0
|
1707
|
Chris@0
|
1708 if (!m_documentModified) {
|
Chris@0
|
1709 setWindowTitle(tr("%1 (modified)").arg(windowTitle()));
|
Chris@0
|
1710 }
|
Chris@0
|
1711
|
Chris@0
|
1712 m_documentModified = true;
|
Chris@0
|
1713 updateMenuStates();
|
Chris@0
|
1714 }
|
Chris@0
|
1715
|
Chris@0
|
1716 void
|
Chris@0
|
1717 MainWindow::documentRestored()
|
Chris@0
|
1718 {
|
Chris@0
|
1719 // std::cerr << "MainWindow::documentRestored" << std::endl;
|
Chris@0
|
1720
|
Chris@0
|
1721 if (m_documentModified) {
|
Chris@0
|
1722 QString wt(windowTitle());
|
Chris@0
|
1723 wt.replace(tr(" (modified)"), "");
|
Chris@0
|
1724 setWindowTitle(wt);
|
Chris@0
|
1725 }
|
Chris@0
|
1726
|
Chris@0
|
1727 m_documentModified = false;
|
Chris@0
|
1728 updateMenuStates();
|
Chris@0
|
1729 }
|
Chris@0
|
1730
|
Chris@0
|
1731 void
|
Chris@0
|
1732 MainWindow::playLoopToggled()
|
Chris@0
|
1733 {
|
Chris@0
|
1734 QAction *action = dynamic_cast<QAction *>(sender());
|
Chris@0
|
1735
|
Chris@0
|
1736 if (action) {
|
Chris@0
|
1737 m_viewManager->setPlayLoopMode(action->isChecked());
|
Chris@0
|
1738 } else {
|
Chris@0
|
1739 m_viewManager->setPlayLoopMode(!m_viewManager->getPlayLoopMode());
|
Chris@0
|
1740 }
|
Chris@0
|
1741 }
|
Chris@0
|
1742
|
Chris@0
|
1743 void
|
Chris@0
|
1744 MainWindow::playSelectionToggled()
|
Chris@0
|
1745 {
|
Chris@0
|
1746 QAction *action = dynamic_cast<QAction *>(sender());
|
Chris@0
|
1747
|
Chris@0
|
1748 if (action) {
|
Chris@0
|
1749 m_viewManager->setPlaySelectionMode(action->isChecked());
|
Chris@0
|
1750 } else {
|
Chris@0
|
1751 m_viewManager->setPlaySelectionMode(!m_viewManager->getPlaySelectionMode());
|
Chris@0
|
1752 }
|
Chris@0
|
1753 }
|
Chris@0
|
1754
|
Chris@0
|
1755 void
|
Chris@116
|
1756 MainWindow::currentPaneChanged(Pane *p)
|
Chris@0
|
1757 {
|
Chris@0
|
1758 updateMenuStates();
|
Chris@116
|
1759 updateVisibleRangeDisplay(p);
|
Chris@0
|
1760 }
|
Chris@0
|
1761
|
Chris@0
|
1762 void
|
Chris@116
|
1763 MainWindow::currentLayerChanged(Pane *p, Layer *)
|
Chris@0
|
1764 {
|
Chris@0
|
1765 updateMenuStates();
|
Chris@116
|
1766 updateVisibleRangeDisplay(p);
|
Chris@0
|
1767 }
|
Chris@0
|
1768
|
Chris@0
|
1769 void
|
Chris@0
|
1770 MainWindow::toolNavigateSelected()
|
Chris@0
|
1771 {
|
Chris@0
|
1772 m_viewManager->setToolMode(ViewManager::NavigateMode);
|
Chris@0
|
1773 }
|
Chris@0
|
1774
|
Chris@0
|
1775 void
|
Chris@0
|
1776 MainWindow::toolSelectSelected()
|
Chris@0
|
1777 {
|
Chris@0
|
1778 m_viewManager->setToolMode(ViewManager::SelectMode);
|
Chris@0
|
1779 }
|
Chris@0
|
1780
|
Chris@0
|
1781 void
|
Chris@0
|
1782 MainWindow::toolEditSelected()
|
Chris@0
|
1783 {
|
Chris@0
|
1784 m_viewManager->setToolMode(ViewManager::EditMode);
|
Chris@0
|
1785 }
|
Chris@0
|
1786
|
Chris@0
|
1787 void
|
Chris@0
|
1788 MainWindow::toolDrawSelected()
|
Chris@0
|
1789 {
|
Chris@0
|
1790 m_viewManager->setToolMode(ViewManager::DrawMode);
|
Chris@0
|
1791 }
|
Chris@0
|
1792
|
Chris@151
|
1793 void
|
Chris@151
|
1794 MainWindow::toolMeasureSelected()
|
Chris@151
|
1795 {
|
Chris@151
|
1796 m_viewManager->setToolMode(ViewManager::MeasureMode);
|
Chris@151
|
1797 }
|
Chris@151
|
1798
|
Chris@0
|
1799 //void
|
Chris@0
|
1800 //MainWindow::toolTextSelected()
|
Chris@0
|
1801 //{
|
Chris@0
|
1802 // m_viewManager->setToolMode(ViewManager::TextMode);
|
Chris@0
|
1803 //}
|
Chris@0
|
1804
|
Chris@0
|
1805 void
|
Chris@0
|
1806 MainWindow::selectAll()
|
Chris@0
|
1807 {
|
Chris@0
|
1808 if (!getMainModel()) return;
|
Chris@0
|
1809 m_viewManager->setSelection(Selection(getMainModel()->getStartFrame(),
|
Chris@0
|
1810 getMainModel()->getEndFrame()));
|
Chris@0
|
1811 }
|
Chris@0
|
1812
|
Chris@0
|
1813 void
|
Chris@0
|
1814 MainWindow::selectToStart()
|
Chris@0
|
1815 {
|
Chris@0
|
1816 if (!getMainModel()) return;
|
Chris@0
|
1817 m_viewManager->setSelection(Selection(getMainModel()->getStartFrame(),
|
Chris@0
|
1818 m_viewManager->getGlobalCentreFrame()));
|
Chris@0
|
1819 }
|
Chris@0
|
1820
|
Chris@0
|
1821 void
|
Chris@0
|
1822 MainWindow::selectToEnd()
|
Chris@0
|
1823 {
|
Chris@0
|
1824 if (!getMainModel()) return;
|
Chris@0
|
1825 m_viewManager->setSelection(Selection(m_viewManager->getGlobalCentreFrame(),
|
Chris@0
|
1826 getMainModel()->getEndFrame()));
|
Chris@0
|
1827 }
|
Chris@0
|
1828
|
Chris@0
|
1829 void
|
Chris@0
|
1830 MainWindow::selectVisible()
|
Chris@0
|
1831 {
|
Chris@0
|
1832 Model *model = getMainModel();
|
Chris@0
|
1833 if (!model) return;
|
Chris@0
|
1834
|
Chris@0
|
1835 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
1836 if (!currentPane) return;
|
Chris@0
|
1837
|
Chris@0
|
1838 size_t startFrame, endFrame;
|
Chris@0
|
1839
|
Chris@0
|
1840 if (currentPane->getStartFrame() < 0) startFrame = 0;
|
Chris@0
|
1841 else startFrame = currentPane->getStartFrame();
|
Chris@0
|
1842
|
Chris@0
|
1843 if (currentPane->getEndFrame() > model->getEndFrame()) endFrame = model->getEndFrame();
|
Chris@0
|
1844 else endFrame = currentPane->getEndFrame();
|
Chris@0
|
1845
|
Chris@0
|
1846 m_viewManager->setSelection(Selection(startFrame, endFrame));
|
Chris@0
|
1847 }
|
Chris@0
|
1848
|
Chris@0
|
1849 void
|
Chris@0
|
1850 MainWindow::clearSelection()
|
Chris@0
|
1851 {
|
Chris@0
|
1852 m_viewManager->clearSelections();
|
Chris@0
|
1853 }
|
Chris@0
|
1854
|
Chris@0
|
1855 void
|
Chris@0
|
1856 MainWindow::cut()
|
Chris@0
|
1857 {
|
Chris@0
|
1858 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
1859 if (!currentPane) return;
|
Chris@0
|
1860
|
Chris@0
|
1861 Layer *layer = currentPane->getSelectedLayer();
|
Chris@0
|
1862 if (!layer) return;
|
Chris@0
|
1863
|
Chris@0
|
1864 Clipboard &clipboard = m_viewManager->getClipboard();
|
Chris@0
|
1865 clipboard.clear();
|
Chris@0
|
1866
|
Chris@0
|
1867 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@0
|
1868
|
Chris@0
|
1869 CommandHistory::getInstance()->startCompoundOperation(tr("Cut"), true);
|
Chris@0
|
1870
|
Chris@0
|
1871 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@0
|
1872 i != selections.end(); ++i) {
|
Chris@0
|
1873 layer->copy(*i, clipboard);
|
Chris@0
|
1874 layer->deleteSelection(*i);
|
Chris@0
|
1875 }
|
Chris@0
|
1876
|
Chris@0
|
1877 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@0
|
1878 }
|
Chris@0
|
1879
|
Chris@0
|
1880 void
|
Chris@0
|
1881 MainWindow::copy()
|
Chris@0
|
1882 {
|
Chris@0
|
1883 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
1884 if (!currentPane) return;
|
Chris@0
|
1885
|
Chris@0
|
1886 Layer *layer = currentPane->getSelectedLayer();
|
Chris@0
|
1887 if (!layer) return;
|
Chris@0
|
1888
|
Chris@0
|
1889 Clipboard &clipboard = m_viewManager->getClipboard();
|
Chris@0
|
1890 clipboard.clear();
|
Chris@0
|
1891
|
Chris@0
|
1892 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@0
|
1893
|
Chris@0
|
1894 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@0
|
1895 i != selections.end(); ++i) {
|
Chris@0
|
1896 layer->copy(*i, clipboard);
|
Chris@0
|
1897 }
|
Chris@0
|
1898 }
|
Chris@0
|
1899
|
Chris@0
|
1900 void
|
Chris@0
|
1901 MainWindow::paste()
|
Chris@0
|
1902 {
|
Chris@0
|
1903 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
1904 if (!currentPane) return;
|
Chris@0
|
1905
|
Chris@0
|
1906 //!!! if we have no current layer, we should create one of the most
|
Chris@0
|
1907 // appropriate type
|
Chris@0
|
1908
|
Chris@0
|
1909 Layer *layer = currentPane->getSelectedLayer();
|
Chris@0
|
1910 if (!layer) return;
|
Chris@0
|
1911
|
Chris@0
|
1912 Clipboard &clipboard = m_viewManager->getClipboard();
|
Chris@0
|
1913 Clipboard::PointList contents = clipboard.getPoints();
|
Chris@0
|
1914 /*
|
Chris@0
|
1915 long minFrame = 0;
|
Chris@0
|
1916 bool have = false;
|
Chris@0
|
1917 for (int i = 0; i < contents.size(); ++i) {
|
Chris@0
|
1918 if (!contents[i].haveFrame()) continue;
|
Chris@0
|
1919 if (!have || contents[i].getFrame() < minFrame) {
|
Chris@0
|
1920 minFrame = contents[i].getFrame();
|
Chris@0
|
1921 have = true;
|
Chris@0
|
1922 }
|
Chris@0
|
1923 }
|
Chris@0
|
1924
|
Chris@0
|
1925 long frameOffset = long(m_viewManager->getGlobalCentreFrame()) - minFrame;
|
Chris@0
|
1926
|
Chris@0
|
1927 layer->paste(clipboard, frameOffset);
|
Chris@0
|
1928 */
|
Chris@0
|
1929 layer->paste(clipboard, 0, true);
|
Chris@0
|
1930 }
|
Chris@0
|
1931
|
Chris@0
|
1932 void
|
Chris@0
|
1933 MainWindow::deleteSelected()
|
Chris@0
|
1934 {
|
Chris@0
|
1935 if (m_paneStack->getCurrentPane() &&
|
Chris@0
|
1936 m_paneStack->getCurrentPane()->getSelectedLayer()) {
|
Chris@0
|
1937
|
Chris@0
|
1938 MultiSelection::SelectionList selections =
|
Chris@0
|
1939 m_viewManager->getSelections();
|
Chris@0
|
1940
|
Chris@0
|
1941 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@0
|
1942 i != selections.end(); ++i) {
|
Chris@0
|
1943
|
Chris@0
|
1944 m_paneStack->getCurrentPane()->getSelectedLayer()->deleteSelection(*i);
|
Chris@0
|
1945 }
|
Chris@0
|
1946 }
|
Chris@0
|
1947 }
|
Chris@0
|
1948
|
Chris@0
|
1949 void
|
Chris@0
|
1950 MainWindow::insertInstant()
|
Chris@0
|
1951 {
|
Chris@0
|
1952 int frame = m_viewManager->getPlaybackFrame();
|
Chris@81
|
1953 insertInstantAt(frame);
|
Chris@81
|
1954 }
|
Chris@81
|
1955
|
Chris@81
|
1956 void
|
Chris@81
|
1957 MainWindow::insertInstantsAtBoundaries()
|
Chris@81
|
1958 {
|
Chris@81
|
1959 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@81
|
1960 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@81
|
1961 i != selections.end(); ++i) {
|
Chris@81
|
1962 size_t start = i->getStartFrame();
|
Chris@81
|
1963 size_t end = i->getEndFrame();
|
Chris@81
|
1964 if (start != end) {
|
Chris@81
|
1965 insertInstantAt(i->getStartFrame());
|
Chris@81
|
1966 insertInstantAt(i->getEndFrame());
|
Chris@81
|
1967 }
|
Chris@81
|
1968 }
|
Chris@81
|
1969 }
|
Chris@81
|
1970
|
Chris@81
|
1971 void
|
Chris@81
|
1972 MainWindow::insertInstantAt(size_t frame)
|
Chris@81
|
1973 {
|
Chris@0
|
1974 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
1975 if (!pane) {
|
Chris@0
|
1976 return;
|
Chris@0
|
1977 }
|
Chris@0
|
1978
|
Chris@0
|
1979 Layer *layer = dynamic_cast<TimeInstantLayer *>
|
Chris@0
|
1980 (pane->getSelectedLayer());
|
Chris@0
|
1981
|
Chris@0
|
1982 if (!layer) {
|
Chris@0
|
1983 for (int i = pane->getLayerCount(); i > 0; --i) {
|
Chris@0
|
1984 layer = dynamic_cast<TimeInstantLayer *>(pane->getLayer(i - 1));
|
Chris@0
|
1985 if (layer) break;
|
Chris@0
|
1986 }
|
Chris@0
|
1987
|
Chris@0
|
1988 if (!layer) {
|
Chris@0
|
1989 CommandHistory::getInstance()->startCompoundOperation
|
Chris@0
|
1990 (tr("Add Point"), true);
|
Chris@0
|
1991 layer = m_document->createEmptyLayer(LayerFactory::TimeInstants);
|
Chris@0
|
1992 if (layer) {
|
Chris@0
|
1993 m_document->addLayerToView(pane, layer);
|
Chris@0
|
1994 m_paneStack->setCurrentLayer(pane, layer);
|
Chris@0
|
1995 }
|
Chris@0
|
1996 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@0
|
1997 }
|
Chris@0
|
1998 }
|
Chris@0
|
1999
|
Chris@0
|
2000 if (layer) {
|
Chris@0
|
2001
|
Chris@0
|
2002 Model *model = layer->getModel();
|
Chris@0
|
2003 SparseOneDimensionalModel *sodm = dynamic_cast<SparseOneDimensionalModel *>
|
Chris@0
|
2004 (model);
|
Chris@0
|
2005
|
Chris@0
|
2006 if (sodm) {
|
Chris@0
|
2007 SparseOneDimensionalModel::Point point
|
Chris@0
|
2008 (frame, QString("%1").arg(sodm->getPointCount() + 1));
|
Chris@0
|
2009 CommandHistory::getInstance()->addCommand
|
Chris@0
|
2010 (new SparseOneDimensionalModel::AddPointCommand(sodm, point,
|
Chris@0
|
2011 tr("Add Points")),
|
Chris@0
|
2012 true, true); // bundled
|
Chris@0
|
2013 }
|
Chris@0
|
2014 }
|
Chris@0
|
2015 }
|
Chris@0
|
2016
|
Chris@0
|
2017 void
|
Chris@0
|
2018 MainWindow::importAudio()
|
Chris@0
|
2019 {
|
Chris@88
|
2020 QString path = getOpenFileName(FileFinder::AudioFile);
|
Chris@0
|
2021
|
Chris@0
|
2022 if (path != "") {
|
Chris@82
|
2023 if (openAudioFile(path, ReplaceMainModel) == FileOpenFailed) {
|
Chris@0
|
2024 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
2025 tr("Audio file \"%1\" could not be opened").arg(path));
|
Chris@0
|
2026 }
|
Chris@0
|
2027 }
|
Chris@0
|
2028 }
|
Chris@0
|
2029
|
Chris@0
|
2030 void
|
Chris@0
|
2031 MainWindow::importMoreAudio()
|
Chris@0
|
2032 {
|
Chris@88
|
2033 QString path = getOpenFileName(FileFinder::AudioFile);
|
Chris@0
|
2034
|
Chris@0
|
2035 if (path != "") {
|
Chris@82
|
2036 if (openAudioFile(path, CreateAdditionalModel) == FileOpenFailed) {
|
Chris@0
|
2037 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
2038 tr("Audio file \"%1\" could not be opened").arg(path));
|
Chris@0
|
2039 }
|
Chris@0
|
2040 }
|
Chris@0
|
2041 }
|
Chris@0
|
2042
|
Chris@0
|
2043 void
|
Chris@0
|
2044 MainWindow::exportAudio()
|
Chris@0
|
2045 {
|
Chris@0
|
2046 if (!getMainModel()) return;
|
Chris@0
|
2047
|
Chris@88
|
2048 QString path = getSaveFileName(FileFinder::AudioFile);
|
Chris@0
|
2049
|
Chris@0
|
2050 if (path == "") return;
|
Chris@0
|
2051
|
Chris@0
|
2052 bool ok = false;
|
Chris@0
|
2053 QString error;
|
Chris@0
|
2054
|
Chris@0
|
2055 MultiSelection ms = m_viewManager->getSelection();
|
Chris@0
|
2056 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@0
|
2057
|
Chris@0
|
2058 bool multiple = false;
|
Chris@0
|
2059
|
Chris@38
|
2060 MultiSelection *selectionToWrite = 0;
|
Chris@38
|
2061
|
Chris@38
|
2062 if (selections.size() == 1) {
|
Chris@0
|
2063
|
Chris@0
|
2064 QStringList items;
|
Chris@0
|
2065 items << tr("Export the selected region only")
|
Chris@0
|
2066 << tr("Export the whole audio file");
|
Chris@0
|
2067
|
Chris@0
|
2068 bool ok = false;
|
Chris@0
|
2069 QString item = ListInputDialog::getItem
|
Chris@0
|
2070 (this, tr("Select region to export"),
|
Chris@0
|
2071 tr("Which region from the original audio file do you want to export?"),
|
Chris@0
|
2072 items, 0, &ok);
|
Chris@0
|
2073
|
Chris@0
|
2074 if (!ok || item.isEmpty()) return;
|
Chris@0
|
2075
|
Chris@38
|
2076 if (item == items[0]) selectionToWrite = &ms;
|
Chris@38
|
2077
|
Chris@38
|
2078 } else if (selections.size() > 1) {
|
Chris@0
|
2079
|
Chris@0
|
2080 QStringList items;
|
Chris@0
|
2081 items << tr("Export the selected regions into a single audio file")
|
Chris@0
|
2082 << tr("Export the selected regions into separate files")
|
Chris@0
|
2083 << tr("Export the whole audio file");
|
Chris@0
|
2084
|
Chris@0
|
2085 QString item = ListInputDialog::getItem
|
Chris@0
|
2086 (this, tr("Select region to export"),
|
Chris@0
|
2087 tr("Multiple regions of the original audio file are selected.\nWhat do you want to export?"),
|
Chris@0
|
2088 items, 0, &ok);
|
Chris@0
|
2089
|
Chris@0
|
2090 if (!ok || item.isEmpty()) return;
|
Chris@0
|
2091
|
Chris@0
|
2092 if (item == items[0]) {
|
Chris@0
|
2093
|
Chris@38
|
2094 selectionToWrite = &ms;
|
Chris@38
|
2095
|
Chris@38
|
2096 } else if (item == items[1]) {
|
Chris@0
|
2097
|
Chris@0
|
2098 multiple = true;
|
Chris@0
|
2099
|
Chris@0
|
2100 int n = 1;
|
Chris@0
|
2101 QString base = path;
|
Chris@0
|
2102 base.replace(".wav", "");
|
Chris@0
|
2103
|
Chris@0
|
2104 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@0
|
2105 i != selections.end(); ++i) {
|
Chris@0
|
2106
|
Chris@0
|
2107 MultiSelection subms;
|
Chris@0
|
2108 subms.setSelection(*i);
|
Chris@0
|
2109
|
Chris@0
|
2110 QString subpath = QString("%1.%2.wav").arg(base).arg(n);
|
Chris@0
|
2111 ++n;
|
Chris@0
|
2112
|
Chris@0
|
2113 if (QFileInfo(subpath).exists()) {
|
Chris@0
|
2114 error = tr("Fragment file %1 already exists, aborting").arg(subpath);
|
Chris@0
|
2115 break;
|
Chris@0
|
2116 }
|
Chris@0
|
2117
|
Chris@38
|
2118 WavFileWriter subwriter(subpath,
|
Chris@38
|
2119 getMainModel()->getSampleRate(),
|
Chris@38
|
2120 getMainModel()->getChannelCount());
|
Chris@38
|
2121 subwriter.writeModel(getMainModel(), &subms);
|
Chris@0
|
2122 ok = subwriter.isOK();
|
Chris@0
|
2123
|
Chris@0
|
2124 if (!ok) {
|
Chris@0
|
2125 error = subwriter.getError();
|
Chris@0
|
2126 break;
|
Chris@0
|
2127 }
|
Chris@0
|
2128 }
|
Chris@0
|
2129 }
|
Chris@0
|
2130 }
|
Chris@0
|
2131
|
Chris@38
|
2132 if (!multiple) {
|
Chris@38
|
2133 WavFileWriter writer(path,
|
Chris@38
|
2134 getMainModel()->getSampleRate(),
|
Chris@38
|
2135 getMainModel()->getChannelCount());
|
Chris@38
|
2136 writer.writeModel(getMainModel(), selectionToWrite);
|
Chris@38
|
2137 ok = writer.isOK();
|
Chris@38
|
2138 error = writer.getError();
|
Chris@0
|
2139 }
|
Chris@0
|
2140
|
Chris@0
|
2141 if (ok) {
|
Chris@0
|
2142 if (!multiple) {
|
Chris@34
|
2143 m_recentFiles.addFile(path);
|
Chris@0
|
2144 }
|
Chris@0
|
2145 } else {
|
Chris@0
|
2146 QMessageBox::critical(this, tr("Failed to write file"), error);
|
Chris@0
|
2147 }
|
Chris@0
|
2148 }
|
Chris@0
|
2149
|
Chris@0
|
2150 void
|
Chris@0
|
2151 MainWindow::importLayer()
|
Chris@0
|
2152 {
|
Chris@0
|
2153 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
2154
|
Chris@0
|
2155 if (!pane) {
|
Chris@0
|
2156 // shouldn't happen, as the menu action should have been disabled
|
Chris@0
|
2157 std::cerr << "WARNING: MainWindow::importLayer: no current pane" << std::endl;
|
Chris@0
|
2158 return;
|
Chris@0
|
2159 }
|
Chris@0
|
2160
|
Chris@0
|
2161 if (!getMainModel()) {
|
Chris@0
|
2162 // shouldn't happen, as the menu action should have been disabled
|
Chris@0
|
2163 std::cerr << "WARNING: MainWindow::importLayer: No main model -- hence no default sample rate available" << std::endl;
|
Chris@0
|
2164 return;
|
Chris@0
|
2165 }
|
Chris@0
|
2166
|
Chris@88
|
2167 QString path = getOpenFileName(FileFinder::LayerFile);
|
Chris@0
|
2168
|
Chris@0
|
2169 if (path != "") {
|
Chris@0
|
2170
|
Chris@82
|
2171 if (openLayerFile(path) == FileOpenFailed) {
|
Chris@0
|
2172 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
2173 tr("File %1 could not be opened.").arg(path));
|
Chris@0
|
2174 return;
|
Chris@0
|
2175 }
|
Chris@0
|
2176 }
|
Chris@0
|
2177 }
|
Chris@0
|
2178
|
Chris@82
|
2179 MainWindow::FileOpenStatus
|
Chris@0
|
2180 MainWindow::openLayerFile(QString path)
|
Chris@0
|
2181 {
|
Chris@86
|
2182 return openLayerFile(path, path);
|
Chris@86
|
2183 }
|
Chris@86
|
2184
|
Chris@86
|
2185 MainWindow::FileOpenStatus
|
Chris@86
|
2186 MainWindow::openLayerFile(QString path, QString location)
|
Chris@86
|
2187 {
|
Chris@0
|
2188 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
2189
|
Chris@0
|
2190 if (!pane) {
|
Chris@0
|
2191 // shouldn't happen, as the menu action should have been disabled
|
Chris@0
|
2192 std::cerr << "WARNING: MainWindow::openLayerFile: no current pane" << std::endl;
|
Chris@82
|
2193 return FileOpenFailed;
|
Chris@0
|
2194 }
|
Chris@0
|
2195
|
Chris@0
|
2196 if (!getMainModel()) {
|
Chris@0
|
2197 // shouldn't happen, as the menu action should have been disabled
|
Chris@0
|
2198 std::cerr << "WARNING: MainWindow::openLayerFile: No main model -- hence no default sample rate available" << std::endl;
|
Chris@82
|
2199 return FileOpenFailed;
|
Chris@0
|
2200 }
|
Chris@0
|
2201
|
Chris@86
|
2202 bool realFile = (location == path);
|
Chris@86
|
2203
|
Chris@0
|
2204 if (path.endsWith(".svl") || path.endsWith(".xml")) {
|
Chris@0
|
2205
|
Chris@0
|
2206 PaneCallback callback(this);
|
Chris@0
|
2207 QFile file(path);
|
Chris@0
|
2208
|
Chris@0
|
2209 if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
Chris@0
|
2210 std::cerr << "ERROR: MainWindow::openLayerFile("
|
Chris@86
|
2211 << location.toStdString()
|
Chris@0
|
2212 << "): Failed to open file for reading" << std::endl;
|
Chris@82
|
2213 return FileOpenFailed;
|
Chris@0
|
2214 }
|
Chris@0
|
2215
|
Chris@87
|
2216 SVFileReader reader(m_document, callback, location);
|
Chris@0
|
2217 reader.setCurrentPane(pane);
|
Chris@0
|
2218
|
Chris@0
|
2219 QXmlInputSource inputSource(&file);
|
Chris@0
|
2220 reader.parse(inputSource);
|
Chris@0
|
2221
|
Chris@0
|
2222 if (!reader.isOK()) {
|
Chris@0
|
2223 std::cerr << "ERROR: MainWindow::openLayerFile("
|
Chris@86
|
2224 << location.toStdString()
|
Chris@0
|
2225 << "): Failed to read XML file: "
|
Chris@0
|
2226 << reader.getErrorString().toStdString() << std::endl;
|
Chris@82
|
2227 return FileOpenFailed;
|
Chris@0
|
2228 }
|
Chris@0
|
2229
|
Chris@86
|
2230 m_recentFiles.addFile(location);
|
Chris@86
|
2231
|
Chris@86
|
2232 if (realFile) {
|
Chris@88
|
2233 registerLastOpenedFilePath(FileFinder::LayerFile, path); // for file dialog
|
Chris@86
|
2234 }
|
Chris@86
|
2235
|
Chris@82
|
2236 return FileOpenSucceeded;
|
Chris@0
|
2237
|
Chris@0
|
2238 } else {
|
Chris@0
|
2239
|
Chris@0
|
2240 Model *model = DataFileReaderFactory::load(path, getMainModel()->getSampleRate());
|
Chris@0
|
2241
|
Chris@0
|
2242 if (model) {
|
Chris@86
|
2243
|
Chris@0
|
2244 Layer *newLayer = m_document->createImportedLayer(model);
|
Chris@86
|
2245
|
Chris@0
|
2246 if (newLayer) {
|
Chris@86
|
2247
|
Chris@0
|
2248 m_document->addLayerToView(pane, newLayer);
|
Chris@86
|
2249 m_recentFiles.addFile(location);
|
Chris@86
|
2250
|
Chris@86
|
2251 if (realFile) {
|
Chris@88
|
2252 registerLastOpenedFilePath(FileFinder::LayerFile, path); // for file dialog
|
Chris@86
|
2253 }
|
Chris@86
|
2254
|
Chris@82
|
2255 return FileOpenSucceeded;
|
Chris@0
|
2256 }
|
Chris@0
|
2257 }
|
Chris@0
|
2258 }
|
Chris@0
|
2259
|
Chris@82
|
2260 return FileOpenFailed;
|
Chris@0
|
2261 }
|
Chris@0
|
2262
|
Chris@0
|
2263 void
|
Chris@0
|
2264 MainWindow::exportLayer()
|
Chris@0
|
2265 {
|
Chris@0
|
2266 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
2267 if (!pane) return;
|
Chris@0
|
2268
|
Chris@0
|
2269 Layer *layer = pane->getSelectedLayer();
|
Chris@0
|
2270 if (!layer) return;
|
Chris@0
|
2271
|
Chris@0
|
2272 Model *model = layer->getModel();
|
Chris@0
|
2273 if (!model) return;
|
Chris@0
|
2274
|
Chris@88
|
2275 QString path = getSaveFileName(FileFinder::LayerFile);
|
Chris@0
|
2276
|
Chris@0
|
2277 if (path == "") return;
|
Chris@0
|
2278
|
Chris@0
|
2279 if (QFileInfo(path).suffix() == "") path += ".svl";
|
Chris@0
|
2280
|
Chris@0
|
2281 QString error;
|
Chris@0
|
2282
|
Chris@0
|
2283 if (path.endsWith(".xml") || path.endsWith(".svl")) {
|
Chris@0
|
2284
|
Chris@0
|
2285 QFile file(path);
|
Chris@0
|
2286 if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
|
Chris@0
|
2287 error = tr("Failed to open file %1 for writing").arg(path);
|
Chris@0
|
2288 } else {
|
Chris@0
|
2289 QTextStream out(&file);
|
Chris@0
|
2290 out << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
Chris@0
|
2291 << "<!DOCTYPE sonic-visualiser>\n"
|
Chris@0
|
2292 << "<sv>\n"
|
Chris@0
|
2293 << " <data>\n";
|
Chris@0
|
2294
|
Chris@0
|
2295 model->toXml(out, " ");
|
Chris@0
|
2296
|
Chris@0
|
2297 out << " </data>\n"
|
Chris@0
|
2298 << " <display>\n";
|
Chris@0
|
2299
|
Chris@0
|
2300 layer->toXml(out, " ");
|
Chris@0
|
2301
|
Chris@0
|
2302 out << " </display>\n"
|
Chris@0
|
2303 << "</sv>\n";
|
Chris@0
|
2304 }
|
Chris@0
|
2305
|
Chris@0
|
2306 } else {
|
Chris@0
|
2307
|
Chris@0
|
2308 CSVFileWriter writer(path, model,
|
Chris@0
|
2309 (path.endsWith(".csv") ? "," : "\t"));
|
Chris@0
|
2310 writer.write();
|
Chris@0
|
2311
|
Chris@0
|
2312 if (!writer.isOK()) {
|
Chris@0
|
2313 error = writer.getError();
|
Chris@0
|
2314 }
|
Chris@0
|
2315 }
|
Chris@0
|
2316
|
Chris@0
|
2317 if (error != "") {
|
Chris@0
|
2318 QMessageBox::critical(this, tr("Failed to write file"), error);
|
Chris@0
|
2319 } else {
|
Chris@34
|
2320 m_recentFiles.addFile(path);
|
Chris@0
|
2321 }
|
Chris@0
|
2322 }
|
Chris@0
|
2323
|
Chris@121
|
2324 void
|
Chris@121
|
2325 MainWindow::exportImage()
|
Chris@121
|
2326 {
|
Chris@121
|
2327 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@121
|
2328 if (!pane) return;
|
Chris@121
|
2329
|
Chris@121
|
2330 QString path = getSaveFileName(FileFinder::ImageFile);
|
Chris@121
|
2331
|
Chris@121
|
2332 if (path == "") return;
|
Chris@121
|
2333
|
Chris@121
|
2334 if (QFileInfo(path).suffix() == "") path += ".png";
|
Chris@121
|
2335
|
Chris@123
|
2336 bool haveSelection = m_viewManager && !m_viewManager->getSelections().empty();
|
Chris@123
|
2337
|
Chris@123
|
2338 QSize total, visible, selected;
|
Chris@123
|
2339 total = pane->getImageSize();
|
Chris@123
|
2340 visible = pane->getImageSize(pane->getFirstVisibleFrame(),
|
Chris@123
|
2341 pane->getLastVisibleFrame());
|
Chris@123
|
2342
|
Chris@123
|
2343 size_t sf0 = 0, sf1 = 0;
|
Chris@123
|
2344
|
Chris@123
|
2345 if (haveSelection) {
|
Chris@123
|
2346 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@123
|
2347 sf0 = selections.begin()->getStartFrame();
|
Chris@123
|
2348 MultiSelection::SelectionList::iterator e = selections.end();
|
Chris@123
|
2349 --e;
|
Chris@123
|
2350 sf1 = e->getEndFrame();
|
Chris@123
|
2351 selected = pane->getImageSize(sf0, sf1);
|
Chris@123
|
2352 }
|
Chris@123
|
2353
|
Chris@123
|
2354 QStringList items;
|
Chris@125
|
2355 items << tr("Export the whole pane (%1x%2 pixels)")
|
Chris@123
|
2356 .arg(total.width()).arg(total.height());
|
Chris@123
|
2357 items << tr("Export the visible area only (%1x%2 pixels)")
|
Chris@123
|
2358 .arg(visible.width()).arg(visible.height());
|
Chris@123
|
2359 if (haveSelection) {
|
Chris@123
|
2360 items << tr("Export the selection extent (%1x%2 pixels)")
|
Chris@123
|
2361 .arg(selected.width()).arg(selected.height());
|
Chris@124
|
2362 } else {
|
Chris@124
|
2363 items << tr("Export the selection extent");
|
Chris@123
|
2364 }
|
Chris@123
|
2365
|
Chris@123
|
2366 QSettings settings;
|
Chris@123
|
2367 settings.beginGroup("MainWindow");
|
Chris@123
|
2368 int deflt = settings.value("lastimageexportregion", 0).toInt();
|
Chris@123
|
2369 if (deflt == 2 && !haveSelection) deflt = 1;
|
Chris@124
|
2370 if (deflt == 0 && total.width() > 32767) deflt = 1;
|
Chris@124
|
2371
|
Chris@124
|
2372 ListInputDialog *lid = new ListInputDialog
|
Chris@123
|
2373 (this, tr("Select region to export"),
|
Chris@123
|
2374 tr("Which region of the current pane do you want to export as an image?"),
|
Chris@124
|
2375 items, deflt);
|
Chris@124
|
2376
|
Chris@124
|
2377 if (!haveSelection) {
|
Chris@124
|
2378 lid->setItemAvailability(2, false);
|
Chris@124
|
2379 }
|
Chris@124
|
2380 if (total.width() > 32767) { // appears to be the limit of a QImage
|
Chris@124
|
2381 lid->setItemAvailability(0, false);
|
Chris@124
|
2382 lid->setFootnote(tr("Note: the whole pane is too wide to be exported as a single image."));
|
Chris@124
|
2383 }
|
Chris@124
|
2384
|
Chris@124
|
2385 bool ok = lid->exec();
|
Chris@124
|
2386 QString item = lid->getCurrentString();
|
Chris@124
|
2387 delete lid;
|
Chris@123
|
2388
|
Chris@123
|
2389 if (!ok || item.isEmpty()) return;
|
Chris@123
|
2390
|
Chris@123
|
2391 settings.setValue("lastimageexportregion", deflt);
|
Chris@123
|
2392
|
Chris@123
|
2393 QImage *image = 0;
|
Chris@123
|
2394
|
Chris@123
|
2395 if (item == items[0]) {
|
Chris@123
|
2396 image = pane->toNewImage();
|
Chris@123
|
2397 } else if (item == items[1]) {
|
Chris@123
|
2398 image = pane->toNewImage(pane->getFirstVisibleFrame(),
|
Chris@123
|
2399 pane->getLastVisibleFrame());
|
Chris@123
|
2400 } else if (haveSelection) {
|
Chris@123
|
2401 image = pane->toNewImage(sf0, sf1);
|
Chris@123
|
2402 }
|
Chris@123
|
2403
|
Chris@121
|
2404 if (!image) return;
|
Chris@121
|
2405
|
Chris@121
|
2406 if (!image->save(path, "PNG")) {
|
Chris@121
|
2407 QMessageBox::critical(this, tr("Failed to save image file"),
|
Chris@121
|
2408 tr("Failed to save image file %1").arg(path));
|
Chris@121
|
2409 }
|
Chris@121
|
2410
|
Chris@121
|
2411 delete image;
|
Chris@121
|
2412 }
|
Chris@121
|
2413
|
Chris@82
|
2414 MainWindow::FileOpenStatus
|
Chris@0
|
2415 MainWindow::openAudioFile(QString path, AudioFileOpenMode mode)
|
Chris@0
|
2416 {
|
Chris@86
|
2417 return openAudioFile(path, path, mode);
|
Chris@86
|
2418 }
|
Chris@86
|
2419
|
Chris@86
|
2420 MainWindow::FileOpenStatus
|
Chris@86
|
2421 MainWindow::openAudioFile(QString path, QString location, AudioFileOpenMode mode)
|
Chris@86
|
2422 {
|
Chris@0
|
2423 if (!(QFileInfo(path).exists() &&
|
Chris@0
|
2424 QFileInfo(path).isFile() &&
|
Chris@0
|
2425 QFileInfo(path).isReadable())) {
|
Chris@82
|
2426 return FileOpenFailed;
|
Chris@0
|
2427 }
|
Chris@0
|
2428
|
Chris@70
|
2429 m_openingAudioFile = true;
|
Chris@70
|
2430
|
Chris@88
|
2431 WaveFileModel *newModel = new WaveFileModel(path, location);
|
Chris@0
|
2432
|
Chris@0
|
2433 if (!newModel->isOK()) {
|
Chris@0
|
2434 delete newModel;
|
Chris@70
|
2435 m_openingAudioFile = false;
|
Chris@82
|
2436 return FileOpenFailed;
|
Chris@0
|
2437 }
|
Chris@0
|
2438
|
Chris@0
|
2439 bool setAsMain = true;
|
Chris@0
|
2440 static bool prevSetAsMain = true;
|
Chris@0
|
2441
|
Chris@86
|
2442 bool realFile = (location == path);
|
Chris@86
|
2443
|
Chris@0
|
2444 if (mode == CreateAdditionalModel) setAsMain = false;
|
Chris@0
|
2445 else if (mode == AskUser) {
|
Chris@0
|
2446 if (m_document->getMainModel()) {
|
Chris@0
|
2447
|
Chris@0
|
2448 QStringList items;
|
Chris@0
|
2449 items << tr("Replace the existing main waveform")
|
Chris@0
|
2450 << tr("Load this file into a new waveform pane");
|
Chris@0
|
2451
|
Chris@0
|
2452 bool ok = false;
|
Chris@0
|
2453 QString item = ListInputDialog::getItem
|
Chris@0
|
2454 (this, tr("Select target for import"),
|
Chris@0
|
2455 tr("You already have an audio waveform loaded.\nWhat would you like to do with the new audio file?"),
|
Chris@0
|
2456 items, prevSetAsMain ? 0 : 1, &ok);
|
Chris@0
|
2457
|
Chris@0
|
2458 if (!ok || item.isEmpty()) {
|
Chris@0
|
2459 delete newModel;
|
Chris@70
|
2460 m_openingAudioFile = false;
|
Chris@82
|
2461 return FileOpenCancelled;
|
Chris@0
|
2462 }
|
Chris@0
|
2463
|
Chris@0
|
2464 setAsMain = (item == items[0]);
|
Chris@0
|
2465 prevSetAsMain = setAsMain;
|
Chris@0
|
2466 }
|
Chris@0
|
2467 }
|
Chris@0
|
2468
|
Chris@0
|
2469 if (setAsMain) {
|
Chris@0
|
2470
|
Chris@0
|
2471 Model *prevMain = getMainModel();
|
Chris@118
|
2472 if (prevMain) {
|
Chris@118
|
2473 m_playSource->removeModel(prevMain);
|
Chris@118
|
2474 PlayParameterRepository::getInstance()->removeModel(prevMain);
|
Chris@118
|
2475 }
|
Chris@118
|
2476
|
Chris@118
|
2477 PlayParameterRepository::getInstance()->addModel(newModel);
|
Chris@0
|
2478
|
Chris@0
|
2479 m_document->setMainModel(newModel);
|
Chris@0
|
2480 setupMenus();
|
Chris@0
|
2481
|
Chris@0
|
2482 if (m_sessionFile == "") {
|
Chris@0
|
2483 setWindowTitle(tr("Sonic Visualiser: %1")
|
Chris@86
|
2484 .arg(QFileInfo(location).fileName()));
|
Chris@0
|
2485 CommandHistory::getInstance()->clear();
|
Chris@0
|
2486 CommandHistory::getInstance()->documentSaved();
|
Chris@0
|
2487 m_documentModified = false;
|
Chris@0
|
2488 } else {
|
Chris@0
|
2489 setWindowTitle(tr("Sonic Visualiser: %1 [%2]")
|
Chris@0
|
2490 .arg(QFileInfo(m_sessionFile).fileName())
|
Chris@86
|
2491 .arg(QFileInfo(location).fileName()));
|
Chris@0
|
2492 if (m_documentModified) {
|
Chris@0
|
2493 m_documentModified = false;
|
Chris@0
|
2494 documentModified(); // so as to restore "(modified)" window title
|
Chris@0
|
2495 }
|
Chris@0
|
2496 }
|
Chris@0
|
2497
|
Chris@86
|
2498 if (realFile) m_audioFile = path;
|
Chris@0
|
2499
|
Chris@0
|
2500 } else { // !setAsMain
|
Chris@0
|
2501
|
Chris@0
|
2502 CommandHistory::getInstance()->startCompoundOperation
|
Chris@86
|
2503 (tr("Import \"%1\"").arg(QFileInfo(location).fileName()), true);
|
Chris@0
|
2504
|
Chris@0
|
2505 m_document->addImportedModel(newModel);
|
Chris@0
|
2506
|
Chris@0
|
2507 AddPaneCommand *command = new AddPaneCommand(this);
|
Chris@0
|
2508 CommandHistory::getInstance()->addCommand(command);
|
Chris@0
|
2509
|
Chris@0
|
2510 Pane *pane = command->getPane();
|
Chris@0
|
2511
|
Chris@0
|
2512 if (!m_timeRulerLayer) {
|
Chris@0
|
2513 m_timeRulerLayer = m_document->createMainModelLayer
|
Chris@0
|
2514 (LayerFactory::TimeRuler);
|
Chris@0
|
2515 }
|
Chris@0
|
2516
|
Chris@0
|
2517 m_document->addLayerToView(pane, m_timeRulerLayer);
|
Chris@0
|
2518
|
Chris@0
|
2519 Layer *newLayer = m_document->createImportedLayer(newModel);
|
Chris@0
|
2520
|
Chris@0
|
2521 if (newLayer) {
|
Chris@0
|
2522 m_document->addLayerToView(pane, newLayer);
|
Chris@0
|
2523 }
|
Chris@0
|
2524
|
Chris@0
|
2525 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@0
|
2526 }
|
Chris@0
|
2527
|
Chris@0
|
2528 updateMenuStates();
|
Chris@86
|
2529 m_recentFiles.addFile(location);
|
Chris@86
|
2530 if (realFile) {
|
Chris@88
|
2531 registerLastOpenedFilePath(FileFinder::AudioFile, path); // for file dialog
|
Chris@86
|
2532 }
|
Chris@70
|
2533 m_openingAudioFile = false;
|
Chris@0
|
2534
|
Chris@82
|
2535 return FileOpenSucceeded;
|
Chris@0
|
2536 }
|
Chris@0
|
2537
|
Chris@0
|
2538 void
|
Chris@0
|
2539 MainWindow::createPlayTarget()
|
Chris@0
|
2540 {
|
Chris@0
|
2541 if (m_playTarget) return;
|
Chris@0
|
2542
|
Chris@0
|
2543 m_playTarget = AudioTargetFactory::createCallbackTarget(m_playSource);
|
Chris@0
|
2544 if (!m_playTarget) {
|
Chris@0
|
2545 QMessageBox::warning
|
Chris@0
|
2546 (this, tr("Couldn't open audio device"),
|
Chris@0
|
2547 tr("Could not open an audio device for playback.\nAudio playback will not be available during this session.\n"),
|
Chris@0
|
2548 QMessageBox::Ok, 0);
|
Chris@0
|
2549 }
|
Chris@0
|
2550 connect(m_fader, SIGNAL(valueChanged(float)),
|
Chris@0
|
2551 m_playTarget, SLOT(setOutputGain(float)));
|
Chris@0
|
2552 }
|
Chris@0
|
2553
|
Chris@0
|
2554 WaveFileModel *
|
Chris@0
|
2555 MainWindow::getMainModel()
|
Chris@0
|
2556 {
|
Chris@0
|
2557 if (!m_document) return 0;
|
Chris@0
|
2558 return m_document->getMainModel();
|
Chris@0
|
2559 }
|
Chris@0
|
2560
|
Chris@116
|
2561 const WaveFileModel *
|
Chris@116
|
2562 MainWindow::getMainModel() const
|
Chris@116
|
2563 {
|
Chris@116
|
2564 if (!m_document) return 0;
|
Chris@116
|
2565 return m_document->getMainModel();
|
Chris@116
|
2566 }
|
Chris@116
|
2567
|
Chris@0
|
2568 void
|
Chris@0
|
2569 MainWindow::newSession()
|
Chris@0
|
2570 {
|
Chris@0
|
2571 if (!checkSaveModified()) return;
|
Chris@0
|
2572
|
Chris@0
|
2573 closeSession();
|
Chris@0
|
2574 createDocument();
|
Chris@0
|
2575
|
Chris@0
|
2576 Pane *pane = m_paneStack->addPane();
|
Chris@0
|
2577
|
Chris@90
|
2578 connect(pane, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@116
|
2579 this, SLOT(contextHelpChanged(const QString &)));
|
Chris@90
|
2580
|
Chris@0
|
2581 if (!m_timeRulerLayer) {
|
Chris@0
|
2582 m_timeRulerLayer = m_document->createMainModelLayer
|
Chris@0
|
2583 (LayerFactory::TimeRuler);
|
Chris@0
|
2584 }
|
Chris@0
|
2585
|
Chris@0
|
2586 m_document->addLayerToView(pane, m_timeRulerLayer);
|
Chris@0
|
2587
|
Chris@0
|
2588 Layer *waveform = m_document->createMainModelLayer(LayerFactory::Waveform);
|
Chris@0
|
2589 m_document->addLayerToView(pane, waveform);
|
Chris@0
|
2590
|
Chris@65
|
2591 m_overview->registerView(pane);
|
Chris@0
|
2592
|
Chris@0
|
2593 CommandHistory::getInstance()->clear();
|
Chris@0
|
2594 CommandHistory::getInstance()->documentSaved();
|
Chris@0
|
2595 documentRestored();
|
Chris@0
|
2596 updateMenuStates();
|
Chris@0
|
2597 }
|
Chris@0
|
2598
|
Chris@0
|
2599 void
|
Chris@0
|
2600 MainWindow::createDocument()
|
Chris@0
|
2601 {
|
Chris@0
|
2602 m_document = new Document;
|
Chris@0
|
2603
|
Chris@0
|
2604 connect(m_document, SIGNAL(layerAdded(Layer *)),
|
Chris@0
|
2605 this, SLOT(layerAdded(Layer *)));
|
Chris@0
|
2606 connect(m_document, SIGNAL(layerRemoved(Layer *)),
|
Chris@0
|
2607 this, SLOT(layerRemoved(Layer *)));
|
Chris@0
|
2608 connect(m_document, SIGNAL(layerAboutToBeDeleted(Layer *)),
|
Chris@0
|
2609 this, SLOT(layerAboutToBeDeleted(Layer *)));
|
Chris@0
|
2610 connect(m_document, SIGNAL(layerInAView(Layer *, bool)),
|
Chris@0
|
2611 this, SLOT(layerInAView(Layer *, bool)));
|
Chris@0
|
2612
|
Chris@0
|
2613 connect(m_document, SIGNAL(modelAdded(Model *)),
|
Chris@0
|
2614 this, SLOT(modelAdded(Model *)));
|
Chris@0
|
2615 connect(m_document, SIGNAL(mainModelChanged(WaveFileModel *)),
|
Chris@0
|
2616 this, SLOT(mainModelChanged(WaveFileModel *)));
|
Chris@0
|
2617 connect(m_document, SIGNAL(modelAboutToBeDeleted(Model *)),
|
Chris@0
|
2618 this, SLOT(modelAboutToBeDeleted(Model *)));
|
Chris@0
|
2619
|
Chris@0
|
2620 connect(m_document, SIGNAL(modelGenerationFailed(QString)),
|
Chris@0
|
2621 this, SLOT(modelGenerationFailed(QString)));
|
Chris@63
|
2622 connect(m_document, SIGNAL(modelRegenerationFailed(QString, QString)),
|
Chris@63
|
2623 this, SLOT(modelRegenerationFailed(QString, QString)));
|
Chris@0
|
2624 }
|
Chris@0
|
2625
|
Chris@0
|
2626 void
|
Chris@0
|
2627 MainWindow::closeSession()
|
Chris@0
|
2628 {
|
Chris@0
|
2629 if (!checkSaveModified()) return;
|
Chris@0
|
2630
|
Chris@0
|
2631 while (m_paneStack->getPaneCount() > 0) {
|
Chris@0
|
2632
|
Chris@0
|
2633 Pane *pane = m_paneStack->getPane(m_paneStack->getPaneCount() - 1);
|
Chris@0
|
2634
|
Chris@0
|
2635 while (pane->getLayerCount() > 0) {
|
Chris@0
|
2636 m_document->removeLayerFromView
|
Chris@0
|
2637 (pane, pane->getLayer(pane->getLayerCount() - 1));
|
Chris@0
|
2638 }
|
Chris@0
|
2639
|
Chris@65
|
2640 m_overview->unregisterView(pane);
|
Chris@0
|
2641 m_paneStack->deletePane(pane);
|
Chris@0
|
2642 }
|
Chris@0
|
2643
|
Chris@0
|
2644 while (m_paneStack->getHiddenPaneCount() > 0) {
|
Chris@0
|
2645
|
Chris@0
|
2646 Pane *pane = m_paneStack->getHiddenPane
|
Chris@0
|
2647 (m_paneStack->getHiddenPaneCount() - 1);
|
Chris@0
|
2648
|
Chris@0
|
2649 while (pane->getLayerCount() > 0) {
|
Chris@0
|
2650 m_document->removeLayerFromView
|
Chris@0
|
2651 (pane, pane->getLayer(pane->getLayerCount() - 1));
|
Chris@0
|
2652 }
|
Chris@0
|
2653
|
Chris@65
|
2654 m_overview->unregisterView(pane);
|
Chris@0
|
2655 m_paneStack->deletePane(pane);
|
Chris@0
|
2656 }
|
Chris@0
|
2657
|
Chris@0
|
2658 delete m_document;
|
Chris@0
|
2659 m_document = 0;
|
Chris@0
|
2660 m_viewManager->clearSelections();
|
Chris@0
|
2661 m_timeRulerLayer = 0; // document owned this
|
Chris@0
|
2662
|
Chris@0
|
2663 m_sessionFile = "";
|
Chris@0
|
2664 setWindowTitle(tr("Sonic Visualiser"));
|
Chris@0
|
2665
|
Chris@0
|
2666 CommandHistory::getInstance()->clear();
|
Chris@0
|
2667 CommandHistory::getInstance()->documentSaved();
|
Chris@0
|
2668 documentRestored();
|
Chris@0
|
2669 }
|
Chris@0
|
2670
|
Chris@0
|
2671 void
|
Chris@0
|
2672 MainWindow::openSession()
|
Chris@0
|
2673 {
|
Chris@0
|
2674 if (!checkSaveModified()) return;
|
Chris@0
|
2675
|
Chris@0
|
2676 QString orig = m_audioFile;
|
Chris@0
|
2677 if (orig == "") orig = ".";
|
Chris@0
|
2678 else orig = QFileInfo(orig).absoluteDir().canonicalPath();
|
Chris@0
|
2679
|
Chris@88
|
2680 QString path = getOpenFileName(FileFinder::SessionFile);
|
Chris@0
|
2681
|
Chris@0
|
2682 if (path.isEmpty()) return;
|
Chris@0
|
2683
|
Chris@82
|
2684 if (openSessionFile(path) == FileOpenFailed) {
|
Chris@0
|
2685 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
2686 tr("Session file \"%1\" could not be opened").arg(path));
|
Chris@0
|
2687 }
|
Chris@0
|
2688 }
|
Chris@0
|
2689
|
Chris@0
|
2690 void
|
Chris@0
|
2691 MainWindow::openSomething()
|
Chris@0
|
2692 {
|
Chris@0
|
2693 QString orig = m_audioFile;
|
Chris@0
|
2694 if (orig == "") orig = ".";
|
Chris@0
|
2695 else orig = QFileInfo(orig).absoluteDir().canonicalPath();
|
Chris@0
|
2696
|
Chris@0
|
2697 bool canImportLayer = (getMainModel() != 0 &&
|
Chris@0
|
2698 m_paneStack != 0 &&
|
Chris@0
|
2699 m_paneStack->getCurrentPane() != 0);
|
Chris@0
|
2700
|
Chris@88
|
2701 QString path = getOpenFileName(FileFinder::AnyFile);
|
Chris@0
|
2702
|
Chris@0
|
2703 if (path.isEmpty()) return;
|
Chris@0
|
2704
|
Chris@0
|
2705 if (path.endsWith(".sv")) {
|
Chris@0
|
2706
|
Chris@0
|
2707 if (!checkSaveModified()) return;
|
Chris@0
|
2708
|
Chris@82
|
2709 if (openSessionFile(path) == FileOpenFailed) {
|
Chris@0
|
2710 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
2711 tr("Session file \"%1\" could not be opened").arg(path));
|
Chris@0
|
2712 }
|
Chris@0
|
2713
|
Chris@0
|
2714 } else {
|
Chris@0
|
2715
|
Chris@82
|
2716 if (openAudioFile(path, AskUser) == FileOpenFailed) {
|
Chris@82
|
2717
|
Chris@82
|
2718 if (!canImportLayer || (openLayerFile(path) == FileOpenFailed)) {
|
Chris@0
|
2719
|
Chris@0
|
2720 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
2721 tr("File \"%1\" could not be opened").arg(path));
|
Chris@0
|
2722 }
|
Chris@0
|
2723 }
|
Chris@0
|
2724 }
|
Chris@0
|
2725 }
|
Chris@0
|
2726
|
Chris@0
|
2727 void
|
Chris@86
|
2728 MainWindow::openLocation()
|
Chris@86
|
2729 {
|
Chris@103
|
2730 QSettings settings;
|
Chris@103
|
2731 settings.beginGroup("MainWindow");
|
Chris@103
|
2732 QString lastLocation = settings.value("lastremote", "").toString();
|
Chris@103
|
2733
|
Chris@86
|
2734 bool ok = false;
|
Chris@86
|
2735 QString text = QInputDialog::getText
|
Chris@86
|
2736 (this, tr("Open Location"),
|
Chris@86
|
2737 tr("Please enter the URL of the location to open:"),
|
Chris@103
|
2738 QLineEdit::Normal, lastLocation, &ok);
|
Chris@103
|
2739
|
Chris@103
|
2740 if (!ok) return;
|
Chris@103
|
2741
|
Chris@103
|
2742 settings.setValue("lastremote", text);
|
Chris@103
|
2743
|
Chris@103
|
2744 if (text.isEmpty()) return;
|
Chris@86
|
2745
|
Chris@86
|
2746 if (openURL(QUrl(text)) == FileOpenFailed) {
|
Chris@86
|
2747 QMessageBox::critical(this, tr("Failed to open location"),
|
Chris@86
|
2748 tr("URL \"%1\" could not be opened").arg(text));
|
Chris@86
|
2749 }
|
Chris@86
|
2750 }
|
Chris@86
|
2751
|
Chris@86
|
2752 void
|
Chris@0
|
2753 MainWindow::openRecentFile()
|
Chris@0
|
2754 {
|
Chris@0
|
2755 QObject *obj = sender();
|
Chris@0
|
2756 QAction *action = dynamic_cast<QAction *>(obj);
|
Chris@0
|
2757
|
Chris@0
|
2758 if (!action) {
|
Chris@0
|
2759 std::cerr << "WARNING: MainWindow::openRecentFile: sender is not an action"
|
Chris@0
|
2760 << std::endl;
|
Chris@0
|
2761 return;
|
Chris@0
|
2762 }
|
Chris@0
|
2763
|
Chris@0
|
2764 QString path = action->text();
|
Chris@0
|
2765 if (path == "") return;
|
Chris@0
|
2766
|
Chris@86
|
2767 QUrl url(path);
|
Chris@86
|
2768 if (RemoteFile::canHandleScheme(url)) {
|
Chris@86
|
2769 openURL(url);
|
Chris@86
|
2770 return;
|
Chris@86
|
2771 }
|
Chris@86
|
2772
|
Chris@0
|
2773 if (path.endsWith("sv")) {
|
Chris@0
|
2774
|
Chris@103
|
2775 if (!checkSaveModified()) return;
|
Chris@0
|
2776
|
Chris@82
|
2777 if (openSessionFile(path) == FileOpenFailed) {
|
Chris@0
|
2778 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
2779 tr("Session file \"%1\" could not be opened").arg(path));
|
Chris@0
|
2780 }
|
Chris@0
|
2781
|
Chris@0
|
2782 } else {
|
Chris@0
|
2783
|
Chris@82
|
2784 if (openAudioFile(path, AskUser) == FileOpenFailed) {
|
Chris@0
|
2785
|
Chris@0
|
2786 bool canImportLayer = (getMainModel() != 0 &&
|
Chris@0
|
2787 m_paneStack != 0 &&
|
Chris@0
|
2788 m_paneStack->getCurrentPane() != 0);
|
Chris@0
|
2789
|
Chris@82
|
2790 if (!canImportLayer || (openLayerFile(path) == FileOpenFailed)) {
|
Chris@0
|
2791
|
Chris@0
|
2792 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
2793 tr("File \"%1\" could not be opened").arg(path));
|
Chris@0
|
2794 }
|
Chris@0
|
2795 }
|
Chris@0
|
2796 }
|
Chris@0
|
2797 }
|
Chris@0
|
2798
|
Chris@82
|
2799 MainWindow::FileOpenStatus
|
Chris@85
|
2800 MainWindow::openURL(QUrl url)
|
Chris@85
|
2801 {
|
Chris@85
|
2802 if (url.scheme().toLower() == "file") {
|
Chris@85
|
2803 return openSomeFile(url.toLocalFile());
|
Chris@86
|
2804 } else if (!RemoteFile::canHandleScheme(url)) {
|
Chris@85
|
2805 QMessageBox::critical(this, tr("Unsupported scheme in URL"),
|
Chris@85
|
2806 tr("The URL scheme \"%1\" is not supported")
|
Chris@85
|
2807 .arg(url.scheme()));
|
Chris@85
|
2808 return FileOpenFailed;
|
Chris@85
|
2809 } else {
|
Chris@85
|
2810 RemoteFile rf(url);
|
Chris@85
|
2811 rf.wait();
|
Chris@85
|
2812 if (!rf.isOK()) {
|
Chris@85
|
2813 QMessageBox::critical(this, tr("File download failed"),
|
Chris@85
|
2814 tr("Failed to download URL \"%1\": %2")
|
Chris@85
|
2815 .arg(url.toString()).arg(rf.getErrorString()));
|
Chris@85
|
2816 return FileOpenFailed;
|
Chris@85
|
2817 }
|
Chris@88
|
2818 FileOpenStatus status;
|
Chris@88
|
2819 if ((status = openSomeFile(rf.getLocalFilename(), url.toString())) !=
|
Chris@88
|
2820 FileOpenSucceeded) {
|
Chris@88
|
2821 rf.deleteLocalFile();
|
Chris@88
|
2822 }
|
Chris@88
|
2823 return status;
|
Chris@85
|
2824 }
|
Chris@85
|
2825 }
|
Chris@85
|
2826
|
Chris@85
|
2827 MainWindow::FileOpenStatus
|
Chris@54
|
2828 MainWindow::openSomeFile(QString path, AudioFileOpenMode mode)
|
Chris@0
|
2829 {
|
Chris@86
|
2830 return openSomeFile(path, path, mode);
|
Chris@86
|
2831 }
|
Chris@86
|
2832
|
Chris@86
|
2833 MainWindow::FileOpenStatus
|
Chris@86
|
2834 MainWindow::openSomeFile(QString path, QString location,
|
Chris@86
|
2835 AudioFileOpenMode mode)
|
Chris@86
|
2836 {
|
Chris@82
|
2837 FileOpenStatus status;
|
Chris@82
|
2838
|
Chris@85
|
2839 bool canImportLayer = (getMainModel() != 0 &&
|
Chris@85
|
2840 m_paneStack != 0 &&
|
Chris@85
|
2841 m_paneStack->getCurrentPane() != 0);
|
Chris@85
|
2842
|
Chris@86
|
2843 if ((status = openAudioFile(path, location, mode)) != FileOpenFailed) {
|
Chris@82
|
2844 return status;
|
Chris@86
|
2845 } else if ((status = openSessionFile(path, location)) != FileOpenFailed) {
|
Chris@82
|
2846 return status;
|
Chris@85
|
2847 } else if (!canImportLayer) {
|
Chris@85
|
2848 return FileOpenFailed;
|
Chris@86
|
2849 } else if ((status = openLayerFile(path, location)) != FileOpenFailed) {
|
Chris@85
|
2850 return status;
|
Chris@0
|
2851 } else {
|
Chris@82
|
2852 return FileOpenFailed;
|
Chris@0
|
2853 }
|
Chris@0
|
2854 }
|
Chris@0
|
2855
|
Chris@82
|
2856 MainWindow::FileOpenStatus
|
Chris@0
|
2857 MainWindow::openSessionFile(QString path)
|
Chris@0
|
2858 {
|
Chris@86
|
2859 return openSessionFile(path, path);
|
Chris@86
|
2860 }
|
Chris@86
|
2861
|
Chris@86
|
2862 MainWindow::FileOpenStatus
|
Chris@86
|
2863 MainWindow::openSessionFile(QString path, QString location)
|
Chris@86
|
2864 {
|
Chris@0
|
2865 BZipFileDevice bzFile(path);
|
Chris@0
|
2866 if (!bzFile.open(QIODevice::ReadOnly)) {
|
Chris@86
|
2867 std::cerr << "Failed to open session file \"" << location.toStdString()
|
Chris@0
|
2868 << "\": " << bzFile.errorString().toStdString() << std::endl;
|
Chris@82
|
2869 return FileOpenFailed;
|
Chris@0
|
2870 }
|
Chris@0
|
2871
|
Chris@103
|
2872 if (!checkSaveModified()) return FileOpenCancelled;
|
Chris@103
|
2873
|
Chris@0
|
2874 QString error;
|
Chris@0
|
2875 closeSession();
|
Chris@0
|
2876 createDocument();
|
Chris@0
|
2877
|
Chris@0
|
2878 PaneCallback callback(this);
|
Chris@0
|
2879 m_viewManager->clearSelections();
|
Chris@0
|
2880
|
Chris@87
|
2881 SVFileReader reader(m_document, callback, location);
|
Chris@0
|
2882 QXmlInputSource inputSource(&bzFile);
|
Chris@0
|
2883 reader.parse(inputSource);
|
Chris@0
|
2884
|
Chris@0
|
2885 if (!reader.isOK()) {
|
Chris@0
|
2886 error = tr("SV XML file read error:\n%1").arg(reader.getErrorString());
|
Chris@0
|
2887 }
|
Chris@0
|
2888
|
Chris@0
|
2889 bzFile.close();
|
Chris@0
|
2890
|
Chris@0
|
2891 bool ok = (error == "");
|
Chris@86
|
2892
|
Chris@86
|
2893 bool realFile = (location == path);
|
Chris@0
|
2894
|
Chris@0
|
2895 if (ok) {
|
Chris@86
|
2896
|
Chris@0
|
2897 setWindowTitle(tr("Sonic Visualiser: %1")
|
Chris@86
|
2898 .arg(QFileInfo(location).fileName()));
|
Chris@86
|
2899
|
Chris@86
|
2900 if (realFile) m_sessionFile = path;
|
Chris@86
|
2901
|
Chris@0
|
2902 setupMenus();
|
Chris@0
|
2903 CommandHistory::getInstance()->clear();
|
Chris@0
|
2904 CommandHistory::getInstance()->documentSaved();
|
Chris@0
|
2905 m_documentModified = false;
|
Chris@0
|
2906 updateMenuStates();
|
Chris@86
|
2907
|
Chris@86
|
2908 m_recentFiles.addFile(location);
|
Chris@86
|
2909
|
Chris@86
|
2910 if (realFile) {
|
Chris@88
|
2911 registerLastOpenedFilePath(FileFinder::SessionFile, path); // for file dialog
|
Chris@86
|
2912 }
|
Chris@86
|
2913
|
Chris@0
|
2914 } else {
|
Chris@0
|
2915 setWindowTitle(tr("Sonic Visualiser"));
|
Chris@0
|
2916 }
|
Chris@0
|
2917
|
Chris@82
|
2918 return ok ? FileOpenSucceeded : FileOpenFailed;
|
Chris@0
|
2919 }
|
Chris@0
|
2920
|
Chris@0
|
2921 void
|
Chris@0
|
2922 MainWindow::closeEvent(QCloseEvent *e)
|
Chris@0
|
2923 {
|
Chris@137
|
2924 // std::cerr << "MainWindow::closeEvent" << std::endl;
|
Chris@118
|
2925
|
Chris@136
|
2926 if (m_openingAudioFile) {
|
Chris@137
|
2927 // std::cerr << "Busy - ignoring close event" << std::endl;
|
Chris@136
|
2928 e->ignore();
|
Chris@136
|
2929 return;
|
Chris@136
|
2930 }
|
Chris@136
|
2931
|
Chris@70
|
2932 if (!m_abandoning && !checkSaveModified()) {
|
Chris@137
|
2933 // std::cerr << "Ignoring close event" << std::endl;
|
Chris@0
|
2934 e->ignore();
|
Chris@0
|
2935 return;
|
Chris@0
|
2936 }
|
Chris@0
|
2937
|
Chris@5
|
2938 QSettings settings;
|
Chris@5
|
2939 settings.beginGroup("MainWindow");
|
Chris@5
|
2940 settings.setValue("size", size());
|
Chris@5
|
2941 settings.setValue("position", pos());
|
Chris@5
|
2942 settings.endGroup();
|
Chris@5
|
2943
|
Chris@0
|
2944 e->accept();
|
Chris@0
|
2945 return;
|
Chris@0
|
2946 }
|
Chris@0
|
2947
|
Chris@0
|
2948 bool
|
Chris@11
|
2949 MainWindow::commitData(bool mayAskUser)
|
Chris@11
|
2950 {
|
Chris@11
|
2951 if (mayAskUser) {
|
Chris@11
|
2952 return checkSaveModified();
|
Chris@11
|
2953 } else {
|
Chris@11
|
2954 if (!m_documentModified) return true;
|
Chris@11
|
2955
|
Chris@11
|
2956 // If we can't check with the user first, then we can't save
|
Chris@11
|
2957 // to the original session file (even if we have it) -- have
|
Chris@11
|
2958 // to use a temporary file
|
Chris@11
|
2959
|
Chris@11
|
2960 QString svDirBase = ".sv1";
|
Chris@11
|
2961 QString svDir = QDir::home().filePath(svDirBase);
|
Chris@11
|
2962
|
Chris@11
|
2963 if (!QFileInfo(svDir).exists()) {
|
Chris@11
|
2964 if (!QDir::home().mkdir(svDirBase)) return false;
|
Chris@11
|
2965 } else {
|
Chris@11
|
2966 if (!QFileInfo(svDir).isDir()) return false;
|
Chris@11
|
2967 }
|
Chris@11
|
2968
|
Chris@11
|
2969 // This name doesn't have to be unguessable
|
Chris@93
|
2970 #ifndef _WIN32
|
Chris@11
|
2971 QString fname = QString("tmp-%1-%2.sv")
|
Chris@11
|
2972 .arg(QDateTime::currentDateTime().toString("yyyyMMddhhmmsszzz"))
|
Chris@11
|
2973 .arg(QProcess().pid());
|
Chris@93
|
2974 #else
|
Chris@93
|
2975 QString fname = QString("tmp-%1.sv")
|
Chris@93
|
2976 .arg(QDateTime::currentDateTime().toString("yyyyMMddhhmmsszzz"));
|
Chris@93
|
2977 #endif
|
Chris@11
|
2978 QString fpath = QDir(svDir).filePath(fname);
|
Chris@11
|
2979 if (saveSessionFile(fpath)) {
|
Chris@34
|
2980 m_recentFiles.addFile(fpath);
|
Chris@11
|
2981 return true;
|
Chris@11
|
2982 } else {
|
Chris@11
|
2983 return false;
|
Chris@11
|
2984 }
|
Chris@11
|
2985 }
|
Chris@11
|
2986 }
|
Chris@11
|
2987
|
Chris@11
|
2988 bool
|
Chris@0
|
2989 MainWindow::checkSaveModified()
|
Chris@0
|
2990 {
|
Chris@0
|
2991 // Called before some destructive operation (e.g. new session,
|
Chris@0
|
2992 // exit program). Return true if we can safely proceed, false to
|
Chris@0
|
2993 // cancel.
|
Chris@0
|
2994
|
Chris@0
|
2995 if (!m_documentModified) return true;
|
Chris@0
|
2996
|
Chris@0
|
2997 int button =
|
Chris@0
|
2998 QMessageBox::warning(this,
|
Chris@0
|
2999 tr("Session modified"),
|
Chris@0
|
3000 tr("The current session has been modified.\nDo you want to save it?"),
|
Chris@0
|
3001 QMessageBox::Yes,
|
Chris@0
|
3002 QMessageBox::No,
|
Chris@0
|
3003 QMessageBox::Cancel);
|
Chris@0
|
3004
|
Chris@0
|
3005 if (button == QMessageBox::Yes) {
|
Chris@0
|
3006 saveSession();
|
Chris@0
|
3007 if (m_documentModified) { // save failed -- don't proceed!
|
Chris@0
|
3008 return false;
|
Chris@0
|
3009 } else {
|
Chris@0
|
3010 return true; // saved, so it's safe to continue now
|
Chris@0
|
3011 }
|
Chris@0
|
3012 } else if (button == QMessageBox::No) {
|
Chris@0
|
3013 m_documentModified = false; // so we know to abandon it
|
Chris@0
|
3014 return true;
|
Chris@0
|
3015 }
|
Chris@0
|
3016
|
Chris@0
|
3017 // else cancel
|
Chris@0
|
3018 return false;
|
Chris@0
|
3019 }
|
Chris@0
|
3020
|
Chris@0
|
3021 void
|
Chris@0
|
3022 MainWindow::saveSession()
|
Chris@0
|
3023 {
|
Chris@0
|
3024 if (m_sessionFile != "") {
|
Chris@0
|
3025 if (!saveSessionFile(m_sessionFile)) {
|
Chris@0
|
3026 QMessageBox::critical(this, tr("Failed to save file"),
|
Chris@0
|
3027 tr("Session file \"%1\" could not be saved.").arg(m_sessionFile));
|
Chris@0
|
3028 } else {
|
Chris@0
|
3029 CommandHistory::getInstance()->documentSaved();
|
Chris@0
|
3030 documentRestored();
|
Chris@0
|
3031 }
|
Chris@0
|
3032 } else {
|
Chris@0
|
3033 saveSessionAs();
|
Chris@0
|
3034 }
|
Chris@0
|
3035 }
|
Chris@0
|
3036
|
Chris@0
|
3037 void
|
Chris@0
|
3038 MainWindow::saveSessionAs()
|
Chris@0
|
3039 {
|
Chris@0
|
3040 QString orig = m_audioFile;
|
Chris@0
|
3041 if (orig == "") orig = ".";
|
Chris@0
|
3042 else orig = QFileInfo(orig).absoluteDir().canonicalPath();
|
Chris@0
|
3043
|
Chris@88
|
3044 QString path = getSaveFileName(FileFinder::SessionFile);
|
Chris@81
|
3045
|
Chris@81
|
3046 if (path == "") return;
|
Chris@0
|
3047
|
Chris@0
|
3048 if (!saveSessionFile(path)) {
|
Chris@0
|
3049 QMessageBox::critical(this, tr("Failed to save file"),
|
Chris@79
|
3050 tr("Session file \"%1\" could not be saved.").arg(path));
|
Chris@0
|
3051 } else {
|
Chris@0
|
3052 setWindowTitle(tr("Sonic Visualiser: %1")
|
Chris@0
|
3053 .arg(QFileInfo(path).fileName()));
|
Chris@0
|
3054 m_sessionFile = path;
|
Chris@0
|
3055 CommandHistory::getInstance()->documentSaved();
|
Chris@0
|
3056 documentRestored();
|
Chris@34
|
3057 m_recentFiles.addFile(path);
|
Chris@0
|
3058 }
|
Chris@0
|
3059 }
|
Chris@0
|
3060
|
Chris@0
|
3061 bool
|
Chris@0
|
3062 MainWindow::saveSessionFile(QString path)
|
Chris@0
|
3063 {
|
Chris@0
|
3064 BZipFileDevice bzFile(path);
|
Chris@0
|
3065 if (!bzFile.open(QIODevice::WriteOnly)) {
|
Chris@0
|
3066 std::cerr << "Failed to open session file \"" << path.toStdString()
|
Chris@0
|
3067 << "\" for writing: "
|
Chris@0
|
3068 << bzFile.errorString().toStdString() << std::endl;
|
Chris@0
|
3069 return false;
|
Chris@0
|
3070 }
|
Chris@0
|
3071
|
Chris@0
|
3072 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
Chris@0
|
3073
|
Chris@0
|
3074 QTextStream out(&bzFile);
|
Chris@0
|
3075 toXml(out);
|
Chris@0
|
3076 out.flush();
|
Chris@0
|
3077
|
Chris@0
|
3078 QApplication::restoreOverrideCursor();
|
Chris@0
|
3079
|
Chris@84
|
3080 if (!bzFile.isOK()) {
|
Chris@0
|
3081 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@0
|
3082 tr("Failed to write to file \"%1\": %2")
|
Chris@0
|
3083 .arg(path).arg(bzFile.errorString()));
|
Chris@0
|
3084 bzFile.close();
|
Chris@0
|
3085 return false;
|
Chris@0
|
3086 }
|
Chris@0
|
3087
|
Chris@0
|
3088 bzFile.close();
|
Chris@0
|
3089 return true;
|
Chris@0
|
3090 }
|
Chris@0
|
3091
|
Chris@0
|
3092 void
|
Chris@0
|
3093 MainWindow::toXml(QTextStream &out)
|
Chris@0
|
3094 {
|
Chris@0
|
3095 QString indent(" ");
|
Chris@0
|
3096
|
Chris@0
|
3097 out << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
|
Chris@0
|
3098 out << "<!DOCTYPE sonic-visualiser>\n";
|
Chris@0
|
3099 out << "<sv>\n";
|
Chris@0
|
3100
|
Chris@0
|
3101 m_document->toXml(out, "", "");
|
Chris@0
|
3102
|
Chris@0
|
3103 out << "<display>\n";
|
Chris@0
|
3104
|
Chris@0
|
3105 out << QString(" <window width=\"%1\" height=\"%2\"/>\n")
|
Chris@0
|
3106 .arg(width()).arg(height());
|
Chris@0
|
3107
|
Chris@0
|
3108 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@0
|
3109
|
Chris@0
|
3110 Pane *pane = m_paneStack->getPane(i);
|
Chris@0
|
3111
|
Chris@0
|
3112 if (pane) {
|
Chris@0
|
3113 pane->toXml(out, indent);
|
Chris@0
|
3114 }
|
Chris@0
|
3115 }
|
Chris@0
|
3116
|
Chris@0
|
3117 out << "</display>\n";
|
Chris@0
|
3118
|
Chris@0
|
3119 m_viewManager->getSelection().toXml(out);
|
Chris@0
|
3120
|
Chris@0
|
3121 out << "</sv>\n";
|
Chris@0
|
3122 }
|
Chris@0
|
3123
|
Chris@0
|
3124 Pane *
|
Chris@0
|
3125 MainWindow::addPaneToStack()
|
Chris@0
|
3126 {
|
Chris@0
|
3127 AddPaneCommand *command = new AddPaneCommand(this);
|
Chris@0
|
3128 CommandHistory::getInstance()->addCommand(command);
|
Chris@0
|
3129 return command->getPane();
|
Chris@0
|
3130 }
|
Chris@0
|
3131
|
Chris@0
|
3132 void
|
Chris@0
|
3133 MainWindow::zoomIn()
|
Chris@0
|
3134 {
|
Chris@0
|
3135 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
3136 if (currentPane) currentPane->zoom(true);
|
Chris@0
|
3137 }
|
Chris@0
|
3138
|
Chris@0
|
3139 void
|
Chris@0
|
3140 MainWindow::zoomOut()
|
Chris@0
|
3141 {
|
Chris@0
|
3142 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
3143 if (currentPane) currentPane->zoom(false);
|
Chris@0
|
3144 }
|
Chris@0
|
3145
|
Chris@0
|
3146 void
|
Chris@0
|
3147 MainWindow::zoomToFit()
|
Chris@0
|
3148 {
|
Chris@0
|
3149 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
3150 if (!currentPane) return;
|
Chris@0
|
3151
|
Chris@0
|
3152 Model *model = getMainModel();
|
Chris@0
|
3153 if (!model) return;
|
Chris@0
|
3154
|
Chris@0
|
3155 size_t start = model->getStartFrame();
|
Chris@0
|
3156 size_t end = model->getEndFrame();
|
Chris@0
|
3157 size_t pixels = currentPane->width();
|
Chris@0
|
3158 size_t zoomLevel = (end - start) / pixels;
|
Chris@0
|
3159
|
Chris@0
|
3160 currentPane->setZoomLevel(zoomLevel);
|
Chris@0
|
3161 currentPane->setStartFrame(start);
|
Chris@0
|
3162 }
|
Chris@0
|
3163
|
Chris@0
|
3164 void
|
Chris@0
|
3165 MainWindow::zoomDefault()
|
Chris@0
|
3166 {
|
Chris@0
|
3167 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
3168 if (currentPane) currentPane->setZoomLevel(1024);
|
Chris@0
|
3169 }
|
Chris@0
|
3170
|
Chris@0
|
3171 void
|
Chris@0
|
3172 MainWindow::scrollLeft()
|
Chris@0
|
3173 {
|
Chris@0
|
3174 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
3175 if (currentPane) currentPane->scroll(false, false);
|
Chris@0
|
3176 }
|
Chris@0
|
3177
|
Chris@0
|
3178 void
|
Chris@0
|
3179 MainWindow::jumpLeft()
|
Chris@0
|
3180 {
|
Chris@0
|
3181 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
3182 if (currentPane) currentPane->scroll(false, true);
|
Chris@0
|
3183 }
|
Chris@0
|
3184
|
Chris@0
|
3185 void
|
Chris@0
|
3186 MainWindow::scrollRight()
|
Chris@0
|
3187 {
|
Chris@0
|
3188 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
3189 if (currentPane) currentPane->scroll(true, false);
|
Chris@0
|
3190 }
|
Chris@0
|
3191
|
Chris@0
|
3192 void
|
Chris@0
|
3193 MainWindow::jumpRight()
|
Chris@0
|
3194 {
|
Chris@0
|
3195 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
3196 if (currentPane) currentPane->scroll(true, true);
|
Chris@0
|
3197 }
|
Chris@0
|
3198
|
Chris@0
|
3199 void
|
Chris@0
|
3200 MainWindow::showNoOverlays()
|
Chris@0
|
3201 {
|
Chris@0
|
3202 m_viewManager->setOverlayMode(ViewManager::NoOverlays);
|
Chris@0
|
3203 }
|
Chris@0
|
3204
|
Chris@0
|
3205 void
|
Chris@90
|
3206 MainWindow::showMinimalOverlays()
|
Chris@0
|
3207 {
|
Chris@90
|
3208 m_viewManager->setOverlayMode(ViewManager::MinimalOverlays);
|
Chris@0
|
3209 }
|
Chris@0
|
3210
|
Chris@0
|
3211 void
|
Chris@90
|
3212 MainWindow::showStandardOverlays()
|
Chris@90
|
3213 {
|
Chris@90
|
3214 m_viewManager->setOverlayMode(ViewManager::StandardOverlays);
|
Chris@90
|
3215 }
|
Chris@90
|
3216
|
Chris@90
|
3217 void
|
Chris@90
|
3218 MainWindow::showAllOverlays()
|
Chris@0
|
3219 {
|
Chris@0
|
3220 m_viewManager->setOverlayMode(ViewManager::AllOverlays);
|
Chris@0
|
3221 }
|
Chris@0
|
3222
|
Chris@0
|
3223 void
|
Chris@7
|
3224 MainWindow::toggleZoomWheels()
|
Chris@7
|
3225 {
|
Chris@7
|
3226 if (m_viewManager->getZoomWheelsEnabled()) {
|
Chris@7
|
3227 m_viewManager->setZoomWheelsEnabled(false);
|
Chris@7
|
3228 } else {
|
Chris@7
|
3229 m_viewManager->setZoomWheelsEnabled(true);
|
Chris@7
|
3230 }
|
Chris@7
|
3231 }
|
Chris@7
|
3232
|
Chris@7
|
3233 void
|
Chris@72
|
3234 MainWindow::togglePropertyBoxes()
|
Chris@72
|
3235 {
|
Chris@72
|
3236 if (m_paneStack->getLayoutStyle() == PaneStack::NoPropertyStacks) {
|
Chris@72
|
3237 if (Preferences::getInstance()->getPropertyBoxLayout() ==
|
Chris@72
|
3238 Preferences::VerticallyStacked) {
|
Chris@72
|
3239 m_paneStack->setLayoutStyle(PaneStack::PropertyStackPerPaneLayout);
|
Chris@72
|
3240 } else {
|
Chris@72
|
3241 m_paneStack->setLayoutStyle(PaneStack::SinglePropertyStackLayout);
|
Chris@72
|
3242 }
|
Chris@72
|
3243 } else {
|
Chris@72
|
3244 m_paneStack->setLayoutStyle(PaneStack::NoPropertyStacks);
|
Chris@72
|
3245 }
|
Chris@72
|
3246 }
|
Chris@72
|
3247
|
Chris@72
|
3248 void
|
Chris@90
|
3249 MainWindow::toggleStatusBar()
|
Chris@90
|
3250 {
|
Chris@90
|
3251 QSettings settings;
|
Chris@90
|
3252 settings.beginGroup("MainWindow");
|
Chris@90
|
3253 bool sb = settings.value("showstatusbar", true).toBool();
|
Chris@90
|
3254
|
Chris@90
|
3255 if (sb) {
|
Chris@90
|
3256 statusBar()->hide();
|
Chris@90
|
3257 } else {
|
Chris@90
|
3258 statusBar()->show();
|
Chris@90
|
3259 }
|
Chris@90
|
3260
|
Chris@90
|
3261 settings.setValue("showstatusbar", !sb);
|
Chris@90
|
3262
|
Chris@90
|
3263 settings.endGroup();
|
Chris@90
|
3264 }
|
Chris@90
|
3265
|
Chris@90
|
3266 void
|
Chris@72
|
3267 MainWindow::preferenceChanged(PropertyContainer::PropertyName name)
|
Chris@72
|
3268 {
|
Chris@72
|
3269 if (name == "Property Box Layout") {
|
Chris@72
|
3270 if (m_paneStack->getLayoutStyle() != PaneStack::NoPropertyStacks) {
|
Chris@72
|
3271 if (Preferences::getInstance()->getPropertyBoxLayout() ==
|
Chris@72
|
3272 Preferences::VerticallyStacked) {
|
Chris@72
|
3273 m_paneStack->setLayoutStyle(PaneStack::PropertyStackPerPaneLayout);
|
Chris@72
|
3274 } else {
|
Chris@72
|
3275 m_paneStack->setLayoutStyle(PaneStack::SinglePropertyStackLayout);
|
Chris@72
|
3276 }
|
Chris@72
|
3277 }
|
Chris@72
|
3278 }
|
Chris@72
|
3279 }
|
Chris@72
|
3280
|
Chris@72
|
3281 void
|
Chris@0
|
3282 MainWindow::play()
|
Chris@0
|
3283 {
|
Chris@0
|
3284 if (m_playSource->isPlaying()) {
|
Chris@116
|
3285 stop();
|
Chris@0
|
3286 } else {
|
Chris@116
|
3287 playbackFrameChanged(m_viewManager->getPlaybackFrame());
|
Chris@0
|
3288 m_playSource->play(m_viewManager->getPlaybackFrame());
|
Chris@0
|
3289 }
|
Chris@0
|
3290 }
|
Chris@0
|
3291
|
Chris@0
|
3292 void
|
Chris@0
|
3293 MainWindow::ffwd()
|
Chris@0
|
3294 {
|
Chris@0
|
3295 if (!getMainModel()) return;
|
Chris@0
|
3296
|
Chris@0
|
3297 int frame = m_viewManager->getPlaybackFrame();
|
Chris@0
|
3298 ++frame;
|
Chris@0
|
3299
|
Chris@0
|
3300 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
3301 if (!pane) return;
|
Chris@0
|
3302
|
Chris@0
|
3303 Layer *layer = pane->getSelectedLayer();
|
Chris@0
|
3304
|
Chris@0
|
3305 if (!dynamic_cast<TimeInstantLayer *>(layer) &&
|
Chris@0
|
3306 !dynamic_cast<TimeValueLayer *>(layer)) return;
|
Chris@0
|
3307
|
Chris@0
|
3308 size_t resolution = 0;
|
Chris@0
|
3309 if (!layer->snapToFeatureFrame(pane, frame, resolution, Layer::SnapRight)) {
|
Chris@0
|
3310 frame = getMainModel()->getEndFrame();
|
Chris@0
|
3311 }
|
Chris@147
|
3312
|
Chris@147
|
3313 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@147
|
3314 MultiSelection::SelectionList sl = m_viewManager->getSelections();
|
Chris@147
|
3315 if (!sl.empty()) {
|
Chris@147
|
3316 MultiSelection::SelectionList::iterator i = sl.end();
|
Chris@147
|
3317 --i;
|
Chris@150
|
3318 int selectionEndFrame = i->getEndFrame();
|
Chris@147
|
3319 if (frame > selectionEndFrame) frame = selectionEndFrame;
|
Chris@147
|
3320 }
|
Chris@147
|
3321 }
|
Chris@0
|
3322
|
Chris@0
|
3323 m_viewManager->setPlaybackFrame(frame);
|
Chris@0
|
3324 }
|
Chris@0
|
3325
|
Chris@0
|
3326 void
|
Chris@0
|
3327 MainWindow::ffwdEnd()
|
Chris@0
|
3328 {
|
Chris@0
|
3329 if (!getMainModel()) return;
|
Chris@147
|
3330
|
Chris@147
|
3331 size_t frame = getMainModel()->getEndFrame();
|
Chris@147
|
3332
|
Chris@147
|
3333 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@147
|
3334 MultiSelection::SelectionList sl = m_viewManager->getSelections();
|
Chris@147
|
3335 if (!sl.empty()) {
|
Chris@147
|
3336 MultiSelection::SelectionList::iterator i = sl.end();
|
Chris@147
|
3337 --i;
|
Chris@147
|
3338 size_t selectionEndFrame = i->getEndFrame();
|
Chris@147
|
3339 if (frame > selectionEndFrame) frame = selectionEndFrame;
|
Chris@147
|
3340 }
|
Chris@147
|
3341 }
|
Chris@147
|
3342
|
Chris@147
|
3343 m_viewManager->setPlaybackFrame(frame);
|
Chris@0
|
3344 }
|
Chris@0
|
3345
|
Chris@0
|
3346 void
|
Chris@0
|
3347 MainWindow::rewind()
|
Chris@0
|
3348 {
|
Chris@0
|
3349 if (!getMainModel()) return;
|
Chris@0
|
3350
|
Chris@0
|
3351 int frame = m_viewManager->getPlaybackFrame();
|
Chris@0
|
3352 if (frame > 0) --frame;
|
Chris@0
|
3353
|
Chris@0
|
3354 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
3355 if (!pane) return;
|
Chris@0
|
3356
|
Chris@0
|
3357 Layer *layer = pane->getSelectedLayer();
|
Chris@0
|
3358
|
Chris@0
|
3359 if (!dynamic_cast<TimeInstantLayer *>(layer) &&
|
Chris@0
|
3360 !dynamic_cast<TimeValueLayer *>(layer)) return;
|
Chris@0
|
3361
|
Chris@0
|
3362 size_t resolution = 0;
|
Chris@0
|
3363 if (!layer->snapToFeatureFrame(pane, frame, resolution, Layer::SnapLeft)) {
|
Chris@0
|
3364 frame = getMainModel()->getEndFrame();
|
Chris@0
|
3365 }
|
Chris@147
|
3366
|
Chris@147
|
3367 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@147
|
3368 MultiSelection::SelectionList sl = m_viewManager->getSelections();
|
Chris@147
|
3369 if (!sl.empty()) {
|
Chris@150
|
3370 int selectionStartFrame = sl.begin()->getStartFrame();
|
Chris@147
|
3371 if (frame < selectionStartFrame) frame = selectionStartFrame;
|
Chris@147
|
3372 }
|
Chris@147
|
3373 }
|
Chris@147
|
3374
|
Chris@0
|
3375 m_viewManager->setPlaybackFrame(frame);
|
Chris@0
|
3376 }
|
Chris@0
|
3377
|
Chris@0
|
3378 void
|
Chris@0
|
3379 MainWindow::rewindStart()
|
Chris@0
|
3380 {
|
Chris@0
|
3381 if (!getMainModel()) return;
|
Chris@147
|
3382
|
Chris@147
|
3383 size_t frame = getMainModel()->getStartFrame();
|
Chris@147
|
3384
|
Chris@147
|
3385 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@147
|
3386 MultiSelection::SelectionList sl = m_viewManager->getSelections();
|
Chris@147
|
3387 if (!sl.empty()) {
|
Chris@147
|
3388 size_t selectionStartFrame = sl.begin()->getStartFrame();
|
Chris@147
|
3389 if (frame < selectionStartFrame) frame = selectionStartFrame;
|
Chris@147
|
3390 }
|
Chris@147
|
3391 }
|
Chris@147
|
3392
|
Chris@147
|
3393 m_viewManager->setPlaybackFrame(frame);
|
Chris@0
|
3394 }
|
Chris@0
|
3395
|
Chris@0
|
3396 void
|
Chris@0
|
3397 MainWindow::stop()
|
Chris@0
|
3398 {
|
Chris@0
|
3399 m_playSource->stop();
|
Chris@116
|
3400
|
Chris@116
|
3401 if (m_paneStack && m_paneStack->getCurrentPane()) {
|
Chris@116
|
3402 updateVisibleRangeDisplay(m_paneStack->getCurrentPane());
|
Chris@116
|
3403 } else {
|
Chris@116
|
3404 m_myStatusMessage = "";
|
Chris@116
|
3405 statusBar()->showMessage("");
|
Chris@116
|
3406 }
|
Chris@0
|
3407 }
|
Chris@0
|
3408
|
Chris@0
|
3409 void
|
Chris@0
|
3410 MainWindow::addPane()
|
Chris@0
|
3411 {
|
Chris@0
|
3412 QObject *s = sender();
|
Chris@0
|
3413 QAction *action = dynamic_cast<QAction *>(s);
|
Chris@0
|
3414
|
Chris@0
|
3415 if (!action) {
|
Chris@0
|
3416 std::cerr << "WARNING: MainWindow::addPane: sender is not an action"
|
Chris@0
|
3417 << std::endl;
|
Chris@0
|
3418 return;
|
Chris@0
|
3419 }
|
Chris@0
|
3420
|
Chris@0
|
3421 PaneActionMap::iterator i = m_paneActions.find(action);
|
Chris@0
|
3422
|
Chris@0
|
3423 if (i == m_paneActions.end()) {
|
Chris@0
|
3424 std::cerr << "WARNING: MainWindow::addPane: unknown action "
|
Chris@0
|
3425 << action->objectName().toStdString() << std::endl;
|
Chris@0
|
3426 return;
|
Chris@0
|
3427 }
|
Chris@0
|
3428
|
Chris@69
|
3429 addPane(i->second, action->text());
|
Chris@69
|
3430 }
|
Chris@69
|
3431
|
Chris@69
|
3432 void
|
Chris@69
|
3433 MainWindow::addPane(const PaneConfiguration &configuration, QString text)
|
Chris@69
|
3434 {
|
Chris@69
|
3435 CommandHistory::getInstance()->startCompoundOperation(text, true);
|
Chris@0
|
3436
|
Chris@0
|
3437 AddPaneCommand *command = new AddPaneCommand(this);
|
Chris@0
|
3438 CommandHistory::getInstance()->addCommand(command);
|
Chris@0
|
3439
|
Chris@0
|
3440 Pane *pane = command->getPane();
|
Chris@0
|
3441
|
Chris@69
|
3442 if (configuration.layer == LayerFactory::Spectrum) {
|
Chris@109
|
3443 pane->setPlaybackFollow(PlaybackScrollContinuous);
|
Chris@110
|
3444 pane->setFollowGlobalZoom(false);
|
Chris@112
|
3445 pane->setZoomLevel(512);
|
Chris@7
|
3446 }
|
Chris@7
|
3447
|
Chris@69
|
3448 if (configuration.layer != LayerFactory::TimeRuler &&
|
Chris@69
|
3449 configuration.layer != LayerFactory::Spectrum) {
|
Chris@8
|
3450
|
Chris@0
|
3451 if (!m_timeRulerLayer) {
|
Chris@0
|
3452 // std::cerr << "no time ruler layer, creating one" << std::endl;
|
Chris@0
|
3453 m_timeRulerLayer = m_document->createMainModelLayer
|
Chris@0
|
3454 (LayerFactory::TimeRuler);
|
Chris@0
|
3455 }
|
Chris@0
|
3456
|
Chris@0
|
3457 // std::cerr << "adding time ruler layer " << m_timeRulerLayer << std::endl;
|
Chris@0
|
3458
|
Chris@0
|
3459 m_document->addLayerToView(pane, m_timeRulerLayer);
|
Chris@0
|
3460 }
|
Chris@0
|
3461
|
Chris@69
|
3462 Layer *newLayer = m_document->createLayer(configuration.layer);
|
Chris@69
|
3463
|
Chris@69
|
3464 Model *suggestedModel = configuration.sourceModel;
|
Chris@66
|
3465 Model *model = 0;
|
Chris@66
|
3466
|
Chris@66
|
3467 if (suggestedModel) {
|
Chris@66
|
3468
|
Chris@66
|
3469 // check its validity
|
Chris@66
|
3470 std::vector<Model *> inputModels = m_document->getTransformInputModels();
|
Chris@66
|
3471 for (size_t j = 0; j < inputModels.size(); ++j) {
|
Chris@66
|
3472 if (inputModels[j] == suggestedModel) {
|
Chris@66
|
3473 model = suggestedModel;
|
Chris@66
|
3474 break;
|
Chris@66
|
3475 }
|
Chris@66
|
3476 }
|
Chris@66
|
3477
|
Chris@66
|
3478 if (!model) {
|
Chris@66
|
3479 std::cerr << "WARNING: Model " << (void *)suggestedModel
|
Chris@66
|
3480 << " appears in pane action map, but is not reported "
|
Chris@66
|
3481 << "by document as a valid transform source" << std::endl;
|
Chris@66
|
3482 }
|
Chris@66
|
3483 }
|
Chris@66
|
3484
|
Chris@66
|
3485 if (!model) model = m_document->getMainModel();
|
Chris@66
|
3486
|
Chris@66
|
3487 m_document->setModel(newLayer, model);
|
Chris@66
|
3488
|
Chris@69
|
3489 m_document->setChannel(newLayer, configuration.channel);
|
Chris@0
|
3490 m_document->addLayerToView(pane, newLayer);
|
Chris@0
|
3491
|
Chris@0
|
3492 m_paneStack->setCurrentPane(pane);
|
Chris@70
|
3493 m_paneStack->setCurrentLayer(pane, newLayer);
|
Chris@0
|
3494
|
Chris@130
|
3495 // std::cerr << "MainWindow::addPane: global centre frame is "
|
Chris@130
|
3496 // << m_viewManager->getGlobalCentreFrame() << std::endl;
|
Chris@130
|
3497 // pane->setCentreFrame(m_viewManager->getGlobalCentreFrame());
|
Chris@73
|
3498
|
Chris@0
|
3499 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@0
|
3500
|
Chris@0
|
3501 updateMenuStates();
|
Chris@0
|
3502 }
|
Chris@0
|
3503
|
Chris@0
|
3504 MainWindow::AddPaneCommand::AddPaneCommand(MainWindow *mw) :
|
Chris@0
|
3505 m_mw(mw),
|
Chris@0
|
3506 m_pane(0),
|
Chris@0
|
3507 m_prevCurrentPane(0),
|
Chris@0
|
3508 m_added(false)
|
Chris@0
|
3509 {
|
Chris@0
|
3510 }
|
Chris@0
|
3511
|
Chris@0
|
3512 MainWindow::AddPaneCommand::~AddPaneCommand()
|
Chris@0
|
3513 {
|
Chris@0
|
3514 if (m_pane && !m_added) {
|
Chris@0
|
3515 m_mw->m_paneStack->deletePane(m_pane);
|
Chris@0
|
3516 }
|
Chris@0
|
3517 }
|
Chris@0
|
3518
|
Chris@0
|
3519 QString
|
Chris@0
|
3520 MainWindow::AddPaneCommand::getName() const
|
Chris@0
|
3521 {
|
Chris@0
|
3522 return tr("Add Pane");
|
Chris@0
|
3523 }
|
Chris@0
|
3524
|
Chris@0
|
3525 void
|
Chris@0
|
3526 MainWindow::AddPaneCommand::execute()
|
Chris@0
|
3527 {
|
Chris@0
|
3528 if (!m_pane) {
|
Chris@0
|
3529 m_prevCurrentPane = m_mw->m_paneStack->getCurrentPane();
|
Chris@0
|
3530 m_pane = m_mw->m_paneStack->addPane();
|
Chris@90
|
3531
|
Chris@90
|
3532 connect(m_pane, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@116
|
3533 m_mw, SLOT(contextHelpChanged(const QString &)));
|
Chris@0
|
3534 } else {
|
Chris@0
|
3535 m_mw->m_paneStack->showPane(m_pane);
|
Chris@0
|
3536 }
|
Chris@0
|
3537
|
Chris@0
|
3538 m_mw->m_paneStack->setCurrentPane(m_pane);
|
Chris@65
|
3539 m_mw->m_overview->registerView(m_pane);
|
Chris@0
|
3540 m_added = true;
|
Chris@0
|
3541 }
|
Chris@0
|
3542
|
Chris@0
|
3543 void
|
Chris@0
|
3544 MainWindow::AddPaneCommand::unexecute()
|
Chris@0
|
3545 {
|
Chris@0
|
3546 m_mw->m_paneStack->hidePane(m_pane);
|
Chris@0
|
3547 m_mw->m_paneStack->setCurrentPane(m_prevCurrentPane);
|
Chris@65
|
3548 m_mw->m_overview->unregisterView(m_pane);
|
Chris@0
|
3549 m_added = false;
|
Chris@0
|
3550 }
|
Chris@0
|
3551
|
Chris@0
|
3552 MainWindow::RemovePaneCommand::RemovePaneCommand(MainWindow *mw, Pane *pane) :
|
Chris@0
|
3553 m_mw(mw),
|
Chris@0
|
3554 m_pane(pane),
|
Chris@0
|
3555 m_added(true)
|
Chris@0
|
3556 {
|
Chris@0
|
3557 }
|
Chris@0
|
3558
|
Chris@0
|
3559 MainWindow::RemovePaneCommand::~RemovePaneCommand()
|
Chris@0
|
3560 {
|
Chris@0
|
3561 if (m_pane && !m_added) {
|
Chris@0
|
3562 m_mw->m_paneStack->deletePane(m_pane);
|
Chris@0
|
3563 }
|
Chris@0
|
3564 }
|
Chris@0
|
3565
|
Chris@0
|
3566 QString
|
Chris@0
|
3567 MainWindow::RemovePaneCommand::getName() const
|
Chris@0
|
3568 {
|
Chris@0
|
3569 return tr("Remove Pane");
|
Chris@0
|
3570 }
|
Chris@0
|
3571
|
Chris@0
|
3572 void
|
Chris@0
|
3573 MainWindow::RemovePaneCommand::execute()
|
Chris@0
|
3574 {
|
Chris@0
|
3575 m_prevCurrentPane = m_mw->m_paneStack->getCurrentPane();
|
Chris@0
|
3576 m_mw->m_paneStack->hidePane(m_pane);
|
Chris@65
|
3577 m_mw->m_overview->unregisterView(m_pane);
|
Chris@0
|
3578 m_added = false;
|
Chris@0
|
3579 }
|
Chris@0
|
3580
|
Chris@0
|
3581 void
|
Chris@0
|
3582 MainWindow::RemovePaneCommand::unexecute()
|
Chris@0
|
3583 {
|
Chris@0
|
3584 m_mw->m_paneStack->showPane(m_pane);
|
Chris@0
|
3585 m_mw->m_paneStack->setCurrentPane(m_prevCurrentPane);
|
Chris@65
|
3586 m_mw->m_overview->registerView(m_pane);
|
Chris@0
|
3587 m_added = true;
|
Chris@0
|
3588 }
|
Chris@0
|
3589
|
Chris@0
|
3590 void
|
Chris@0
|
3591 MainWindow::addLayer()
|
Chris@0
|
3592 {
|
Chris@0
|
3593 QObject *s = sender();
|
Chris@0
|
3594 QAction *action = dynamic_cast<QAction *>(s);
|
Chris@0
|
3595
|
Chris@0
|
3596 if (!action) {
|
Chris@0
|
3597 std::cerr << "WARNING: MainWindow::addLayer: sender is not an action"
|
Chris@0
|
3598 << std::endl;
|
Chris@0
|
3599 return;
|
Chris@0
|
3600 }
|
Chris@0
|
3601
|
Chris@0
|
3602 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
3603
|
Chris@0
|
3604 if (!pane) {
|
Chris@0
|
3605 std::cerr << "WARNING: MainWindow::addLayer: no current pane" << std::endl;
|
Chris@0
|
3606 return;
|
Chris@0
|
3607 }
|
Chris@0
|
3608
|
Chris@0
|
3609 ExistingLayerActionMap::iterator ei = m_existingLayerActions.find(action);
|
Chris@0
|
3610
|
Chris@0
|
3611 if (ei != m_existingLayerActions.end()) {
|
Chris@0
|
3612 Layer *newLayer = ei->second;
|
Chris@0
|
3613 m_document->addLayerToView(pane, newLayer);
|
Chris@0
|
3614 m_paneStack->setCurrentLayer(pane, newLayer);
|
Chris@0
|
3615 return;
|
Chris@0
|
3616 }
|
Chris@0
|
3617
|
Chris@95
|
3618 ei = m_sliceActions.find(action);
|
Chris@95
|
3619
|
Chris@95
|
3620 if (ei != m_sliceActions.end()) {
|
Chris@95
|
3621 Layer *newLayer = m_document->createLayer(LayerFactory::Slice);
|
Chris@95
|
3622 // document->setModel(newLayer, ei->second->getModel());
|
Chris@95
|
3623 SliceableLayer *source = dynamic_cast<SliceableLayer *>(ei->second);
|
Chris@95
|
3624 SliceLayer *dest = dynamic_cast<SliceLayer *>(newLayer);
|
Chris@95
|
3625 if (source && dest) {
|
Chris@95
|
3626 dest->setSliceableModel(source->getSliceableModel());
|
Chris@95
|
3627 connect(source, SIGNAL(sliceableModelReplaced(const Model *, const Model *)),
|
Chris@95
|
3628 dest, SLOT(sliceableModelReplaced(const Model *, const Model *)));
|
Chris@95
|
3629 connect(m_document, SIGNAL(modelAboutToBeDeleted(Model *)),
|
Chris@95
|
3630 dest, SLOT(modelAboutToBeDeleted(Model *)));
|
Chris@95
|
3631 }
|
Chris@95
|
3632 m_document->addLayerToView(pane, newLayer);
|
Chris@95
|
3633 m_paneStack->setCurrentLayer(pane, newLayer);
|
Chris@95
|
3634 return;
|
Chris@95
|
3635 }
|
Chris@95
|
3636
|
Chris@34
|
3637 TransformActionMap::iterator i = m_transformActions.find(action);
|
Chris@34
|
3638
|
Chris@34
|
3639 if (i == m_transformActions.end()) {
|
Chris@0
|
3640
|
Chris@0
|
3641 LayerActionMap::iterator i = m_layerActions.find(action);
|
Chris@0
|
3642
|
Chris@0
|
3643 if (i == m_layerActions.end()) {
|
Chris@0
|
3644 std::cerr << "WARNING: MainWindow::addLayer: unknown action "
|
Chris@0
|
3645 << action->objectName().toStdString() << std::endl;
|
Chris@0
|
3646 return;
|
Chris@0
|
3647 }
|
Chris@0
|
3648
|
Chris@0
|
3649 LayerFactory::LayerType type = i->second;
|
Chris@0
|
3650
|
Chris@0
|
3651 LayerFactory::LayerTypeSet emptyTypes =
|
Chris@0
|
3652 LayerFactory::getInstance()->getValidEmptyLayerTypes();
|
Chris@0
|
3653
|
Chris@0
|
3654 Layer *newLayer;
|
Chris@0
|
3655
|
Chris@0
|
3656 if (emptyTypes.find(type) != emptyTypes.end()) {
|
Chris@0
|
3657
|
Chris@0
|
3658 newLayer = m_document->createEmptyLayer(type);
|
Chris@0
|
3659 m_toolActions[ViewManager::DrawMode]->trigger();
|
Chris@0
|
3660
|
Chris@0
|
3661 } else {
|
Chris@0
|
3662
|
Chris@0
|
3663 newLayer = m_document->createMainModelLayer(type);
|
Chris@0
|
3664 }
|
Chris@0
|
3665
|
Chris@0
|
3666 m_document->addLayerToView(pane, newLayer);
|
Chris@0
|
3667 m_paneStack->setCurrentLayer(pane, newLayer);
|
Chris@0
|
3668
|
Chris@0
|
3669 return;
|
Chris@0
|
3670 }
|
Chris@0
|
3671
|
Chris@107
|
3672 TransformId transform = i->second;
|
Chris@0
|
3673 TransformFactory *factory = TransformFactory::getInstance();
|
Chris@0
|
3674
|
Chris@0
|
3675 QString configurationXml;
|
Chris@0
|
3676
|
Chris@0
|
3677 int channel = -1;
|
Chris@0
|
3678 // pick up the default channel from any existing layers on the same pane
|
Chris@0
|
3679 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@0
|
3680 int c = LayerFactory::getInstance()->getChannel(pane->getLayer(j));
|
Chris@0
|
3681 if (c != -1) {
|
Chris@0
|
3682 channel = c;
|
Chris@0
|
3683 break;
|
Chris@0
|
3684 }
|
Chris@0
|
3685 }
|
Chris@0
|
3686
|
Chris@33
|
3687 // We always ask for configuration, even if the plugin isn't
|
Chris@33
|
3688 // supposed to be configurable, because we need to let the user
|
Chris@33
|
3689 // change the execution context (block size etc).
|
Chris@0
|
3690
|
Chris@27
|
3691 PluginTransform::ExecutionContext context(channel);
|
Chris@27
|
3692
|
Chris@66
|
3693 std::vector<Model *> candidateInputModels =
|
Chris@66
|
3694 m_document->getTransformInputModels();
|
Chris@53
|
3695
|
Chris@54
|
3696 Model *inputModel = factory->getConfigurationForTransform(transform,
|
Chris@54
|
3697 candidateInputModels,
|
Chris@54
|
3698 context,
|
Chris@54
|
3699 configurationXml,
|
Chris@54
|
3700 m_playSource);
|
Chris@54
|
3701 if (!inputModel) return;
|
Chris@54
|
3702
|
Chris@135
|
3703 // std::cerr << "MainWindow::addLayer: Input model is " << inputModel << " \"" << inputModel->objectName().toStdString() << "\"" << std::endl;
|
Chris@0
|
3704
|
Chris@0
|
3705 Layer *newLayer = m_document->createDerivedLayer(transform,
|
Chris@54
|
3706 inputModel,
|
Chris@27
|
3707 context,
|
Chris@0
|
3708 configurationXml);
|
Chris@0
|
3709
|
Chris@0
|
3710 if (newLayer) {
|
Chris@0
|
3711 m_document->addLayerToView(pane, newLayer);
|
Chris@27
|
3712 m_document->setChannel(newLayer, context.channel);
|
Chris@34
|
3713 m_recentTransforms.add(transform);
|
Chris@70
|
3714 m_paneStack->setCurrentLayer(pane, newLayer);
|
Chris@0
|
3715 }
|
Chris@0
|
3716
|
Chris@0
|
3717 updateMenuStates();
|
Chris@0
|
3718 }
|
Chris@0
|
3719
|
Chris@0
|
3720 void
|
Chris@0
|
3721 MainWindow::deleteCurrentPane()
|
Chris@0
|
3722 {
|
Chris@0
|
3723 CommandHistory::getInstance()->startCompoundOperation
|
Chris@0
|
3724 (tr("Delete Pane"), true);
|
Chris@0
|
3725
|
Chris@0
|
3726 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
3727 if (pane) {
|
Chris@0
|
3728 while (pane->getLayerCount() > 0) {
|
Chris@0
|
3729 Layer *layer = pane->getLayer(0);
|
Chris@0
|
3730 if (layer) {
|
Chris@0
|
3731 m_document->removeLayerFromView(pane, layer);
|
Chris@0
|
3732 } else {
|
Chris@0
|
3733 break;
|
Chris@0
|
3734 }
|
Chris@0
|
3735 }
|
Chris@0
|
3736
|
Chris@0
|
3737 RemovePaneCommand *command = new RemovePaneCommand(this, pane);
|
Chris@0
|
3738 CommandHistory::getInstance()->addCommand(command);
|
Chris@0
|
3739 }
|
Chris@0
|
3740
|
Chris@0
|
3741 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@0
|
3742
|
Chris@0
|
3743 updateMenuStates();
|
Chris@0
|
3744 }
|
Chris@0
|
3745
|
Chris@0
|
3746 void
|
Chris@0
|
3747 MainWindow::deleteCurrentLayer()
|
Chris@0
|
3748 {
|
Chris@0
|
3749 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
3750 if (pane) {
|
Chris@0
|
3751 Layer *layer = pane->getSelectedLayer();
|
Chris@0
|
3752 if (layer) {
|
Chris@0
|
3753 m_document->removeLayerFromView(pane, layer);
|
Chris@0
|
3754 }
|
Chris@0
|
3755 }
|
Chris@0
|
3756 updateMenuStates();
|
Chris@0
|
3757 }
|
Chris@0
|
3758
|
Chris@0
|
3759 void
|
Chris@0
|
3760 MainWindow::renameCurrentLayer()
|
Chris@0
|
3761 {
|
Chris@0
|
3762 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@0
|
3763 if (pane) {
|
Chris@0
|
3764 Layer *layer = pane->getSelectedLayer();
|
Chris@0
|
3765 if (layer) {
|
Chris@0
|
3766 bool ok = false;
|
Chris@0
|
3767 QString newName = QInputDialog::getText
|
Chris@0
|
3768 (this, tr("Rename Layer"),
|
Chris@0
|
3769 tr("New name for this layer:"),
|
Chris@0
|
3770 QLineEdit::Normal, layer->objectName(), &ok);
|
Chris@0
|
3771 if (ok) {
|
Chris@0
|
3772 layer->setObjectName(newName);
|
Chris@95
|
3773 setupExistingLayersMenus();
|
Chris@0
|
3774 }
|
Chris@0
|
3775 }
|
Chris@0
|
3776 }
|
Chris@0
|
3777 }
|
Chris@0
|
3778
|
Chris@0
|
3779 void
|
Chris@59
|
3780 MainWindow::playSpeedChanged(int position)
|
Chris@0
|
3781 {
|
Chris@59
|
3782 PlaySpeedRangeMapper mapper(0, 200);
|
Chris@60
|
3783
|
Chris@60
|
3784 float percent = m_playSpeed->mappedValue();
|
Chris@60
|
3785
|
Chris@60
|
3786 float factor = mapper.getFactorForValue(percent);
|
Chris@60
|
3787
|
Chris@60
|
3788 // float factor = mapper.getFactorForPosition(position);
|
Chris@60
|
3789 // float percent = mapper.getValueForPosition(position);
|
Chris@60
|
3790
|
Chris@60
|
3791 std::cerr << "speed = " << position << " percent = " << percent << " factor = " << factor << std::endl;
|
Chris@60
|
3792
|
Chris@60
|
3793 //!!! bool slow = (position < 100);
|
Chris@59
|
3794 bool something = (position != 100);
|
Chris@60
|
3795 /*!!!
|
Chris@59
|
3796 int pc = lrintf(percent);
|
Chris@21
|
3797
|
Chris@21
|
3798 m_playSpeed->setToolTip(tr("Playback speed: %1%2%")
|
Chris@60
|
3799 .arg(!slow ? "+" : "")
|
Chris@21
|
3800 .arg(pc));
|
Chris@60
|
3801 */
|
Chris@25
|
3802 m_playSharpen->setEnabled(something);
|
Chris@26
|
3803 m_playMono->setEnabled(something);
|
Chris@25
|
3804 bool sharpen = (something && m_playSharpen->isChecked());
|
Chris@26
|
3805 bool mono = (something && m_playMono->isChecked());
|
Chris@26
|
3806 m_playSource->setTimeStretch(factor, sharpen, mono);
|
Chris@16
|
3807 }
|
Chris@16
|
3808
|
Chris@16
|
3809 void
|
Chris@16
|
3810 MainWindow::playSharpenToggled()
|
Chris@16
|
3811 {
|
Chris@21
|
3812 QSettings settings;
|
Chris@21
|
3813 settings.beginGroup("MainWindow");
|
Chris@21
|
3814 settings.setValue("playsharpen", m_playSharpen->isChecked());
|
Chris@21
|
3815 settings.endGroup();
|
Chris@21
|
3816
|
Chris@16
|
3817 playSpeedChanged(m_playSpeed->value());
|
Chris@0
|
3818 }
|
Chris@0
|
3819
|
Chris@0
|
3820 void
|
Chris@26
|
3821 MainWindow::playMonoToggled()
|
Chris@26
|
3822 {
|
Chris@26
|
3823 QSettings settings;
|
Chris@26
|
3824 settings.beginGroup("MainWindow");
|
Chris@26
|
3825 settings.setValue("playmono", m_playMono->isChecked());
|
Chris@26
|
3826 settings.endGroup();
|
Chris@26
|
3827
|
Chris@26
|
3828 playSpeedChanged(m_playSpeed->value());
|
Chris@26
|
3829 }
|
Chris@26
|
3830
|
Chris@26
|
3831 void
|
Chris@116
|
3832 MainWindow::playbackFrameChanged(unsigned long frame)
|
Chris@116
|
3833 {
|
Chris@116
|
3834 if (!(m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@116
|
3835
|
Chris@116
|
3836 RealTime now = RealTime::frame2RealTime
|
Chris@116
|
3837 (frame, getMainModel()->getSampleRate());
|
Chris@116
|
3838
|
Chris@116
|
3839 if (now.sec == m_lastPlayStatusSec) return;
|
Chris@116
|
3840
|
Chris@116
|
3841 RealTime then = RealTime::frame2RealTime
|
Chris@116
|
3842 (m_playSource->getPlayEndFrame(), getMainModel()->getSampleRate());
|
Chris@116
|
3843
|
Chris@116
|
3844 QString nowStr;
|
Chris@116
|
3845 QString thenStr;
|
Chris@116
|
3846 QString remainingStr;
|
Chris@116
|
3847
|
Chris@116
|
3848 if (then.sec > 10) {
|
Chris@116
|
3849 nowStr = now.toSecText().c_str();
|
Chris@116
|
3850 thenStr = then.toSecText().c_str();
|
Chris@116
|
3851 remainingStr = (then - now).toSecText().c_str();
|
Chris@116
|
3852 m_lastPlayStatusSec = now.sec;
|
Chris@116
|
3853 } else {
|
Chris@116
|
3854 nowStr = now.toText(true).c_str();
|
Chris@116
|
3855 thenStr = then.toText(true).c_str();
|
Chris@116
|
3856 remainingStr = (then - now).toText(true).c_str();
|
Chris@116
|
3857 }
|
Chris@116
|
3858
|
Chris@116
|
3859 m_myStatusMessage = tr("Playing: %1 of %2 (%3 remaining)")
|
Chris@116
|
3860 .arg(nowStr).arg(thenStr).arg(remainingStr);
|
Chris@116
|
3861
|
Chris@116
|
3862 statusBar()->showMessage(m_myStatusMessage);
|
Chris@116
|
3863 }
|
Chris@116
|
3864
|
Chris@116
|
3865 void
|
Chris@137
|
3866 MainWindow::globalCentreFrameChanged(unsigned long )
|
Chris@116
|
3867 {
|
Chris@116
|
3868 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@116
|
3869 Pane *p = 0;
|
Chris@116
|
3870 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@116
|
3871 if (!p->getFollowGlobalPan()) return;
|
Chris@116
|
3872 updateVisibleRangeDisplay(p);
|
Chris@116
|
3873 }
|
Chris@116
|
3874
|
Chris@116
|
3875 void
|
Chris@137
|
3876 MainWindow::viewCentreFrameChanged(View *v, unsigned long )
|
Chris@116
|
3877 {
|
Chris@116
|
3878 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@116
|
3879 Pane *p = 0;
|
Chris@116
|
3880 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@116
|
3881 if (v == p) updateVisibleRangeDisplay(p);
|
Chris@116
|
3882 }
|
Chris@116
|
3883
|
Chris@116
|
3884 void
|
Chris@137
|
3885 MainWindow::viewZoomLevelChanged(View *v, unsigned long , bool )
|
Chris@116
|
3886 {
|
Chris@116
|
3887 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@116
|
3888 Pane *p = 0;
|
Chris@116
|
3889 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@116
|
3890 if (v == p) updateVisibleRangeDisplay(p);
|
Chris@116
|
3891 }
|
Chris@116
|
3892
|
Chris@116
|
3893 void
|
Chris@116
|
3894 MainWindow::updateVisibleRangeDisplay(Pane *p) const
|
Chris@116
|
3895 {
|
Chris@116
|
3896 if (!getMainModel() || !p) {
|
Chris@116
|
3897 return;
|
Chris@116
|
3898 }
|
Chris@116
|
3899
|
Chris@117
|
3900 bool haveSelection = false;
|
Chris@117
|
3901 size_t startFrame = 0, endFrame = 0;
|
Chris@117
|
3902
|
Chris@117
|
3903 if (m_viewManager && m_viewManager->haveInProgressSelection()) {
|
Chris@117
|
3904
|
Chris@117
|
3905 bool exclusive = false;
|
Chris@117
|
3906 Selection s = m_viewManager->getInProgressSelection(exclusive);
|
Chris@117
|
3907
|
Chris@117
|
3908 if (!s.isEmpty()) {
|
Chris@117
|
3909 haveSelection = true;
|
Chris@117
|
3910 startFrame = s.getStartFrame();
|
Chris@117
|
3911 endFrame = s.getEndFrame();
|
Chris@117
|
3912 }
|
Chris@117
|
3913 }
|
Chris@117
|
3914
|
Chris@117
|
3915 if (!haveSelection) {
|
Chris@117
|
3916 startFrame = p->getFirstVisibleFrame();
|
Chris@117
|
3917 endFrame = p->getLastVisibleFrame();
|
Chris@117
|
3918 }
|
Chris@117
|
3919
|
Chris@116
|
3920 RealTime start = RealTime::frame2RealTime
|
Chris@117
|
3921 (startFrame, getMainModel()->getSampleRate());
|
Chris@116
|
3922
|
Chris@116
|
3923 RealTime end = RealTime::frame2RealTime
|
Chris@117
|
3924 (endFrame, getMainModel()->getSampleRate());
|
Chris@116
|
3925
|
Chris@116
|
3926 RealTime duration = end - start;
|
Chris@116
|
3927
|
Chris@116
|
3928 QString startStr, endStr, durationStr;
|
Chris@116
|
3929 startStr = start.toText(true).c_str();
|
Chris@116
|
3930 endStr = end.toText(true).c_str();
|
Chris@116
|
3931 durationStr = duration.toText(true).c_str();
|
Chris@116
|
3932
|
Chris@117
|
3933 if (haveSelection) {
|
Chris@117
|
3934 m_myStatusMessage = tr("Selection: %1 to %2 (duration %3)")
|
Chris@117
|
3935 .arg(startStr).arg(endStr).arg(durationStr);
|
Chris@117
|
3936 } else {
|
Chris@117
|
3937 m_myStatusMessage = tr("Visible: %1 to %2 (duration %3)")
|
Chris@117
|
3938 .arg(startStr).arg(endStr).arg(durationStr);
|
Chris@117
|
3939 }
|
Chris@116
|
3940
|
Chris@116
|
3941 statusBar()->showMessage(m_myStatusMessage);
|
Chris@116
|
3942 }
|
Chris@116
|
3943
|
Chris@116
|
3944 void
|
Chris@0
|
3945 MainWindow::outputLevelsChanged(float left, float right)
|
Chris@0
|
3946 {
|
Chris@0
|
3947 m_fader->setPeakLeft(left);
|
Chris@0
|
3948 m_fader->setPeakRight(right);
|
Chris@0
|
3949 }
|
Chris@0
|
3950
|
Chris@0
|
3951 void
|
Chris@0
|
3952 MainWindow::sampleRateMismatch(size_t requested, size_t actual,
|
Chris@0
|
3953 bool willResample)
|
Chris@0
|
3954 {
|
Chris@0
|
3955 if (!willResample) {
|
Chris@0
|
3956 //!!! more helpful message needed
|
Chris@0
|
3957 QMessageBox::information
|
Chris@0
|
3958 (this, tr("Sample rate mismatch"),
|
Chris@118
|
3959 tr("The sample rate of this audio file (%1 Hz) does not match\nthe current playback rate (%2 Hz).\n\nThe file will play at the wrong speed and pitch.")
|
Chris@0
|
3960 .arg(requested).arg(actual));
|
Chris@0
|
3961 }
|
Chris@0
|
3962
|
Chris@0
|
3963 updateDescriptionLabel();
|
Chris@0
|
3964 }
|
Chris@0
|
3965
|
Chris@0
|
3966 void
|
Chris@42
|
3967 MainWindow::audioOverloadPluginDisabled()
|
Chris@42
|
3968 {
|
Chris@42
|
3969 QMessageBox::information
|
Chris@42
|
3970 (this, tr("Audio processing overload"),
|
Chris@42
|
3971 tr("Audio effects plugin auditioning has been disabled\ndue to a processing overload."));
|
Chris@42
|
3972 }
|
Chris@42
|
3973
|
Chris@42
|
3974 void
|
Chris@137
|
3975 MainWindow::layerAdded(Layer *)
|
Chris@0
|
3976 {
|
Chris@0
|
3977 // std::cerr << "MainWindow::layerAdded(" << layer << ")" << std::endl;
|
Chris@0
|
3978 // setupExistingLayersMenu();
|
Chris@0
|
3979 updateMenuStates();
|
Chris@0
|
3980 }
|
Chris@0
|
3981
|
Chris@0
|
3982 void
|
Chris@137
|
3983 MainWindow::layerRemoved(Layer *)
|
Chris@0
|
3984 {
|
Chris@0
|
3985 // std::cerr << "MainWindow::layerRemoved(" << layer << ")" << std::endl;
|
Chris@95
|
3986 setupExistingLayersMenus();
|
Chris@0
|
3987 updateMenuStates();
|
Chris@0
|
3988 }
|
Chris@0
|
3989
|
Chris@0
|
3990 void
|
Chris@0
|
3991 MainWindow::layerAboutToBeDeleted(Layer *layer)
|
Chris@0
|
3992 {
|
Chris@0
|
3993 // std::cerr << "MainWindow::layerAboutToBeDeleted(" << layer << ")" << std::endl;
|
Chris@0
|
3994 if (layer == m_timeRulerLayer) {
|
Chris@0
|
3995 // std::cerr << "(this is the time ruler layer)" << std::endl;
|
Chris@0
|
3996 m_timeRulerLayer = 0;
|
Chris@0
|
3997 }
|
Chris@0
|
3998 }
|
Chris@0
|
3999
|
Chris@0
|
4000 void
|
Chris@0
|
4001 MainWindow::layerInAView(Layer *layer, bool inAView)
|
Chris@0
|
4002 {
|
Chris@0
|
4003 // std::cerr << "MainWindow::layerInAView(" << layer << "," << inAView << ")" << std::endl;
|
Chris@0
|
4004
|
Chris@0
|
4005 // Check whether we need to add or remove model from play source
|
Chris@0
|
4006 Model *model = layer->getModel();
|
Chris@0
|
4007 if (model) {
|
Chris@0
|
4008 if (inAView) {
|
Chris@0
|
4009 m_playSource->addModel(model);
|
Chris@0
|
4010 } else {
|
Chris@0
|
4011 bool found = false;
|
Chris@0
|
4012 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@0
|
4013 Pane *pane = m_paneStack->getPane(i);
|
Chris@0
|
4014 if (!pane) continue;
|
Chris@0
|
4015 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@0
|
4016 Layer *pl = pane->getLayer(j);
|
Chris@0
|
4017 if (pl && pl->getModel() == model) {
|
Chris@0
|
4018 found = true;
|
Chris@0
|
4019 break;
|
Chris@0
|
4020 }
|
Chris@0
|
4021 }
|
Chris@0
|
4022 if (found) break;
|
Chris@0
|
4023 }
|
Chris@0
|
4024 if (!found) m_playSource->removeModel(model);
|
Chris@0
|
4025 }
|
Chris@0
|
4026 }
|
Chris@0
|
4027
|
Chris@95
|
4028 setupExistingLayersMenus();
|
Chris@0
|
4029 updateMenuStates();
|
Chris@0
|
4030 }
|
Chris@0
|
4031
|
Chris@0
|
4032 void
|
Chris@0
|
4033 MainWindow::modelAdded(Model *model)
|
Chris@0
|
4034 {
|
Chris@0
|
4035 // std::cerr << "MainWindow::modelAdded(" << model << ")" << std::endl;
|
Chris@0
|
4036 m_playSource->addModel(model);
|
Chris@66
|
4037 if (dynamic_cast<DenseTimeValueModel *>(model)) {
|
Chris@66
|
4038 setupPaneAndLayerMenus();
|
Chris@66
|
4039 }
|
Chris@0
|
4040 }
|
Chris@0
|
4041
|
Chris@0
|
4042 void
|
Chris@0
|
4043 MainWindow::mainModelChanged(WaveFileModel *model)
|
Chris@0
|
4044 {
|
Chris@0
|
4045 // std::cerr << "MainWindow::mainModelChanged(" << model << ")" << std::endl;
|
Chris@0
|
4046 updateDescriptionLabel();
|
Chris@0
|
4047 m_panLayer->setModel(model);
|
Chris@0
|
4048 if (model) m_viewManager->setMainModelSampleRate(model->getSampleRate());
|
Chris@46
|
4049 if (model && !m_playTarget && m_audioOutput) createPlayTarget();
|
Chris@0
|
4050 }
|
Chris@0
|
4051
|
Chris@0
|
4052 void
|
Chris@0
|
4053 MainWindow::modelAboutToBeDeleted(Model *model)
|
Chris@0
|
4054 {
|
Chris@0
|
4055 // std::cerr << "MainWindow::modelAboutToBeDeleted(" << model << ")" << std::endl;
|
Chris@0
|
4056 m_playSource->removeModel(model);
|
Chris@91
|
4057 FFTDataServer::modelAboutToBeDeleted(model);
|
Chris@0
|
4058 }
|
Chris@0
|
4059
|
Chris@0
|
4060 void
|
Chris@0
|
4061 MainWindow::modelGenerationFailed(QString transformName)
|
Chris@0
|
4062 {
|
Chris@0
|
4063 QMessageBox::warning
|
Chris@0
|
4064 (this,
|
Chris@0
|
4065 tr("Failed to generate layer"),
|
Chris@34
|
4066 tr("Failed to generate a derived layer.\n\nThe layer transform \"%1\" failed.\n\nThis probably means that a plugin failed to initialise, perhaps because it\nrejected the processing block size that was requested.")
|
Chris@0
|
4067 .arg(transformName),
|
Chris@0
|
4068 QMessageBox::Ok, 0);
|
Chris@0
|
4069 }
|
Chris@0
|
4070
|
Chris@0
|
4071 void
|
Chris@0
|
4072 MainWindow::modelRegenerationFailed(QString layerName, QString transformName)
|
Chris@0
|
4073 {
|
Chris@0
|
4074 QMessageBox::warning
|
Chris@0
|
4075 (this,
|
Chris@0
|
4076 tr("Failed to regenerate layer"),
|
Chris@34
|
4077 tr("Failed to regenerate derived layer \"%1\".\n\nThe layer transform \"%2\" failed to run.\n\nThis probably means the layer used a plugin that is not currently available.")
|
Chris@0
|
4078 .arg(layerName).arg(transformName),
|
Chris@0
|
4079 QMessageBox::Ok, 0);
|
Chris@0
|
4080 }
|
Chris@0
|
4081
|
Chris@0
|
4082 void
|
Chris@0
|
4083 MainWindow::rightButtonMenuRequested(Pane *pane, QPoint position)
|
Chris@0
|
4084 {
|
Chris@0
|
4085 // std::cerr << "MainWindow::rightButtonMenuRequested(" << pane << ", " << position.x() << ", " << position.y() << ")" << std::endl;
|
Chris@0
|
4086 m_paneStack->setCurrentPane(pane);
|
Chris@0
|
4087 m_rightButtonMenu->popup(position);
|
Chris@0
|
4088 }
|
Chris@0
|
4089
|
Chris@0
|
4090 void
|
Chris@73
|
4091 MainWindow::propertyStacksResized()
|
Chris@73
|
4092 {
|
Chris@73
|
4093 /*
|
Chris@73
|
4094 std::cerr << "MainWindow::propertyStacksResized" << std::endl;
|
Chris@73
|
4095 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@73
|
4096 if (pane && m_overview) {
|
Chris@73
|
4097 std::cerr << "Fixed width: " << pane->width() << std::endl;
|
Chris@73
|
4098 m_overview->setFixedWidth(pane->width());
|
Chris@73
|
4099 }
|
Chris@73
|
4100 */
|
Chris@73
|
4101 }
|
Chris@73
|
4102
|
Chris@73
|
4103 void
|
Chris@0
|
4104 MainWindow::showLayerTree()
|
Chris@0
|
4105 {
|
Chris@0
|
4106 QTreeView *view = new QTreeView();
|
Chris@0
|
4107 LayerTreeModel *tree = new LayerTreeModel(m_paneStack);
|
Chris@0
|
4108 view->expand(tree->index(0, 0, QModelIndex()));
|
Chris@0
|
4109 view->setModel(tree);
|
Chris@0
|
4110 view->show();
|
Chris@0
|
4111 }
|
Chris@0
|
4112
|
Chris@0
|
4113 void
|
Chris@69
|
4114 MainWindow::pollOSC()
|
Chris@69
|
4115 {
|
Chris@70
|
4116 if (!m_oscQueue || m_oscQueue->isEmpty()) return;
|
Chris@69
|
4117 std::cerr << "MainWindow::pollOSC: have " << m_oscQueue->getMessagesAvailable() << " messages" << std::endl;
|
Chris@69
|
4118
|
Chris@70
|
4119 if (m_openingAudioFile) return;
|
Chris@70
|
4120
|
Chris@69
|
4121 OSCMessage message = m_oscQueue->readMessage();
|
Chris@69
|
4122
|
Chris@69
|
4123 if (message.getTarget() != 0) {
|
Chris@69
|
4124 return; //!!! for now -- this class is target 0, others not handled yet
|
Chris@69
|
4125 }
|
Chris@69
|
4126
|
Chris@69
|
4127 handleOSCMessage(message);
|
Chris@69
|
4128 }
|
Chris@69
|
4129
|
Chris@69
|
4130 void
|
Chris@69
|
4131 MainWindow::handleOSCMessage(const OSCMessage &message)
|
Chris@69
|
4132 {
|
Chris@70
|
4133 std::cerr << "MainWindow::handleOSCMessage: thread id = "
|
Chris@70
|
4134 << QThread::currentThreadId() << std::endl;
|
Chris@70
|
4135
|
Chris@69
|
4136 // This large function should really be abstracted out.
|
Chris@69
|
4137
|
Chris@69
|
4138 if (message.getMethod() == "open") {
|
Chris@69
|
4139
|
Chris@69
|
4140 if (message.getArgCount() == 1 &&
|
Chris@69
|
4141 message.getArg(0).canConvert(QVariant::String)) {
|
Chris@69
|
4142 QString path = message.getArg(0).toString();
|
Chris@82
|
4143 if (openSomeFile(path, ReplaceMainModel) != FileOpenSucceeded) {
|
Chris@69
|
4144 std::cerr << "MainWindow::handleOSCMessage: File open failed for path \""
|
Chris@69
|
4145 << path.toStdString() << "\"" << std::endl;
|
Chris@69
|
4146 }
|
Chris@69
|
4147 //!!! we really need to spin here and not return until the
|
Chris@69
|
4148 // file has been completely decoded...
|
Chris@69
|
4149 }
|
Chris@69
|
4150
|
Chris@69
|
4151 } else if (message.getMethod() == "openadditional") {
|
Chris@69
|
4152
|
Chris@69
|
4153 if (message.getArgCount() == 1 &&
|
Chris@69
|
4154 message.getArg(0).canConvert(QVariant::String)) {
|
Chris@69
|
4155 QString path = message.getArg(0).toString();
|
Chris@82
|
4156 if (openSomeFile(path, CreateAdditionalModel) != FileOpenSucceeded) {
|
Chris@69
|
4157 std::cerr << "MainWindow::handleOSCMessage: File open failed for path \""
|
Chris@69
|
4158 << path.toStdString() << "\"" << std::endl;
|
Chris@69
|
4159 }
|
Chris@69
|
4160 }
|
Chris@69
|
4161
|
Chris@69
|
4162 } else if (message.getMethod() == "recent" ||
|
Chris@69
|
4163 message.getMethod() == "last") {
|
Chris@69
|
4164
|
Chris@69
|
4165 int n = 0;
|
Chris@69
|
4166 if (message.getMethod() == "recent" &&
|
Chris@69
|
4167 message.getArgCount() == 1 &&
|
Chris@69
|
4168 message.getArg(0).canConvert(QVariant::Int)) {
|
Chris@69
|
4169 n = message.getArg(0).toInt() - 1;
|
Chris@69
|
4170 }
|
Chris@69
|
4171 std::vector<QString> recent = m_recentFiles.getRecent();
|
Chris@137
|
4172 if (n >= 0 && n < int(recent.size())) {
|
Chris@82
|
4173 if (openSomeFile(recent[n], ReplaceMainModel) != FileOpenSucceeded) {
|
Chris@69
|
4174 std::cerr << "MainWindow::handleOSCMessage: File open failed for path \""
|
Chris@69
|
4175 << recent[n].toStdString() << "\"" << std::endl;
|
Chris@69
|
4176 }
|
Chris@69
|
4177 }
|
Chris@69
|
4178
|
Chris@69
|
4179 } else if (message.getMethod() == "save") {
|
Chris@69
|
4180
|
Chris@69
|
4181 QString path;
|
Chris@69
|
4182 if (message.getArgCount() == 1 &&
|
Chris@69
|
4183 message.getArg(0).canConvert(QVariant::String)) {
|
Chris@69
|
4184 path = message.getArg(0).toString();
|
Chris@69
|
4185 if (QFileInfo(path).exists()) {
|
Chris@69
|
4186 std::cerr << "MainWindow::handleOSCMessage: Refusing to overwrite existing file in save" << std::endl;
|
Chris@69
|
4187 } else {
|
Chris@69
|
4188 saveSessionFile(path);
|
Chris@69
|
4189 }
|
Chris@69
|
4190 }
|
Chris@69
|
4191
|
Chris@69
|
4192 } else if (message.getMethod() == "export") {
|
Chris@69
|
4193
|
Chris@69
|
4194 QString path;
|
Chris@69
|
4195 if (getMainModel()) {
|
Chris@69
|
4196 if (message.getArgCount() == 1 &&
|
Chris@69
|
4197 message.getArg(0).canConvert(QVariant::String)) {
|
Chris@69
|
4198 path = message.getArg(0).toString();
|
Chris@69
|
4199 if (QFileInfo(path).exists()) {
|
Chris@69
|
4200 std::cerr << "MainWindow::handleOSCMessage: Refusing to overwrite existing file in export" << std::endl;
|
Chris@69
|
4201 } else {
|
Chris@69
|
4202 WavFileWriter writer(path,
|
Chris@69
|
4203 getMainModel()->getSampleRate(),
|
Chris@69
|
4204 getMainModel()->getChannelCount());
|
Chris@69
|
4205 MultiSelection ms = m_viewManager->getSelection();
|
Chris@69
|
4206 if (!ms.getSelections().empty()) {
|
Chris@69
|
4207 writer.writeModel(getMainModel(), &ms);
|
Chris@69
|
4208 } else {
|
Chris@69
|
4209 writer.writeModel(getMainModel());
|
Chris@69
|
4210 }
|
Chris@69
|
4211 }
|
Chris@69
|
4212 }
|
Chris@69
|
4213 }
|
Chris@69
|
4214
|
Chris@69
|
4215 } else if (message.getMethod() == "jump" ||
|
Chris@69
|
4216 message.getMethod() == "play") {
|
Chris@69
|
4217
|
Chris@69
|
4218 if (getMainModel()) {
|
Chris@69
|
4219
|
Chris@69
|
4220 unsigned long frame = m_viewManager->getPlaybackFrame();
|
Chris@69
|
4221 bool selection = false;
|
Chris@69
|
4222 bool play = (message.getMethod() == "play");
|
Chris@69
|
4223
|
Chris@69
|
4224 if (message.getArgCount() == 1) {
|
Chris@69
|
4225
|
Chris@69
|
4226 if (message.getArg(0).canConvert(QVariant::String) &&
|
Chris@69
|
4227 message.getArg(0).toString() == "selection") {
|
Chris@69
|
4228
|
Chris@69
|
4229 selection = true;
|
Chris@69
|
4230
|
Chris@69
|
4231 } else if (message.getArg(0).canConvert(QVariant::String) &&
|
Chris@69
|
4232 message.getArg(0).toString() == "end") {
|
Chris@69
|
4233
|
Chris@69
|
4234 frame = getMainModel()->getEndFrame();
|
Chris@69
|
4235
|
Chris@69
|
4236 } else if (message.getArg(0).canConvert(QVariant::Double)) {
|
Chris@69
|
4237
|
Chris@69
|
4238 double time = message.getArg(0).toDouble();
|
Chris@69
|
4239 if (time < 0.0) time = 0.0;
|
Chris@69
|
4240
|
Chris@69
|
4241 frame = lrint(time * getMainModel()->getSampleRate());
|
Chris@69
|
4242 }
|
Chris@69
|
4243 }
|
Chris@69
|
4244
|
Chris@69
|
4245 if (frame > getMainModel()->getEndFrame()) {
|
Chris@69
|
4246 frame = getMainModel()->getEndFrame();
|
Chris@69
|
4247 }
|
Chris@69
|
4248
|
Chris@69
|
4249 if (play) {
|
Chris@69
|
4250 m_viewManager->setPlaySelectionMode(selection);
|
Chris@69
|
4251 }
|
Chris@69
|
4252
|
Chris@69
|
4253 if (selection) {
|
Chris@69
|
4254 MultiSelection::SelectionList sl = m_viewManager->getSelections();
|
Chris@69
|
4255 if (!sl.empty()) {
|
Chris@69
|
4256 frame = sl.begin()->getStartFrame();
|
Chris@69
|
4257 }
|
Chris@69
|
4258 }
|
Chris@69
|
4259
|
Chris@69
|
4260 m_viewManager->setPlaybackFrame(frame);
|
Chris@69
|
4261
|
Chris@69
|
4262 if (play && !m_playSource->isPlaying()) {
|
Chris@69
|
4263 m_playSource->play(frame);
|
Chris@69
|
4264 }
|
Chris@69
|
4265 }
|
Chris@69
|
4266
|
Chris@69
|
4267 } else if (message.getMethod() == "stop") {
|
Chris@69
|
4268
|
Chris@69
|
4269 if (m_playSource->isPlaying()) m_playSource->stop();
|
Chris@69
|
4270
|
Chris@69
|
4271 } else if (message.getMethod() == "loop") {
|
Chris@69
|
4272
|
Chris@69
|
4273 if (message.getArgCount() == 1 &&
|
Chris@69
|
4274 message.getArg(0).canConvert(QVariant::String)) {
|
Chris@69
|
4275
|
Chris@69
|
4276 QString str = message.getArg(0).toString();
|
Chris@69
|
4277 if (str == "on") {
|
Chris@69
|
4278 m_viewManager->setPlayLoopMode(true);
|
Chris@69
|
4279 } else if (str == "off") {
|
Chris@69
|
4280 m_viewManager->setPlayLoopMode(false);
|
Chris@69
|
4281 }
|
Chris@69
|
4282 }
|
Chris@69
|
4283
|
Chris@69
|
4284 } else if (message.getMethod() == "select" ||
|
Chris@69
|
4285 message.getMethod() == "addselect") {
|
Chris@69
|
4286
|
Chris@69
|
4287 if (getMainModel()) {
|
Chris@69
|
4288
|
Chris@73
|
4289 int f0 = getMainModel()->getStartFrame();
|
Chris@73
|
4290 int f1 = getMainModel()->getEndFrame();
|
Chris@69
|
4291
|
Chris@69
|
4292 bool done = false;
|
Chris@69
|
4293
|
Chris@69
|
4294 if (message.getArgCount() == 2 &&
|
Chris@69
|
4295 message.getArg(0).canConvert(QVariant::Double) &&
|
Chris@69
|
4296 message.getArg(1).canConvert(QVariant::Double)) {
|
Chris@69
|
4297
|
Chris@69
|
4298 double t0 = message.getArg(0).toDouble();
|
Chris@69
|
4299 double t1 = message.getArg(1).toDouble();
|
Chris@69
|
4300 if (t1 < t0) { double temp = t0; t0 = t1; t1 = temp; }
|
Chris@69
|
4301 if (t0 < 0.0) t0 = 0.0;
|
Chris@69
|
4302 if (t1 < 0.0) t1 = 0.0;
|
Chris@69
|
4303
|
Chris@69
|
4304 f0 = lrint(t0 * getMainModel()->getSampleRate());
|
Chris@69
|
4305 f1 = lrint(t1 * getMainModel()->getSampleRate());
|
Chris@73
|
4306
|
Chris@73
|
4307 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@73
|
4308 Layer *layer = 0;
|
Chris@73
|
4309 if (pane) layer = pane->getSelectedLayer();
|
Chris@73
|
4310 if (layer) {
|
Chris@73
|
4311 size_t resolution;
|
Chris@73
|
4312 layer->snapToFeatureFrame(pane, f0, resolution,
|
Chris@73
|
4313 Layer::SnapLeft);
|
Chris@73
|
4314 layer->snapToFeatureFrame(pane, f1, resolution,
|
Chris@73
|
4315 Layer::SnapRight);
|
Chris@73
|
4316 }
|
Chris@69
|
4317
|
Chris@69
|
4318 } else if (message.getArgCount() == 1 &&
|
Chris@69
|
4319 message.getArg(0).canConvert(QVariant::String)) {
|
Chris@69
|
4320
|
Chris@69
|
4321 QString str = message.getArg(0).toString();
|
Chris@69
|
4322 if (str == "none") {
|
Chris@69
|
4323 m_viewManager->clearSelections();
|
Chris@69
|
4324 done = true;
|
Chris@69
|
4325 }
|
Chris@69
|
4326 }
|
Chris@69
|
4327
|
Chris@69
|
4328 if (!done) {
|
Chris@69
|
4329 if (message.getMethod() == "select") {
|
Chris@69
|
4330 m_viewManager->setSelection(Selection(f0, f1));
|
Chris@69
|
4331 } else {
|
Chris@69
|
4332 m_viewManager->addSelection(Selection(f0, f1));
|
Chris@69
|
4333 }
|
Chris@69
|
4334 }
|
Chris@69
|
4335 }
|
Chris@69
|
4336
|
Chris@69
|
4337 } else if (message.getMethod() == "add") {
|
Chris@69
|
4338
|
Chris@69
|
4339 if (getMainModel()) {
|
Chris@69
|
4340
|
Chris@69
|
4341 if (message.getArgCount() >= 1 &&
|
Chris@69
|
4342 message.getArg(0).canConvert(QVariant::String)) {
|
Chris@69
|
4343
|
Chris@69
|
4344 int channel = -1;
|
Chris@69
|
4345 if (message.getArgCount() == 2 &&
|
Chris@69
|
4346 message.getArg(0).canConvert(QVariant::Int)) {
|
Chris@69
|
4347 channel = message.getArg(0).toInt();
|
Chris@69
|
4348 if (channel < -1 ||
|
Chris@137
|
4349 channel > int(getMainModel()->getChannelCount())) {
|
Chris@69
|
4350 std::cerr << "WARNING: MainWindow::handleOSCMessage: channel "
|
Chris@69
|
4351 << channel << " out of range" << std::endl;
|
Chris@69
|
4352 channel = -1;
|
Chris@69
|
4353 }
|
Chris@69
|
4354 }
|
Chris@69
|
4355
|
Chris@69
|
4356 QString str = message.getArg(0).toString();
|
Chris@69
|
4357
|
Chris@69
|
4358 LayerFactory::LayerType type =
|
Chris@69
|
4359 LayerFactory::getInstance()->getLayerTypeForName(str);
|
Chris@69
|
4360
|
Chris@69
|
4361 if (type == LayerFactory::UnknownLayer) {
|
Chris@69
|
4362 std::cerr << "WARNING: MainWindow::handleOSCMessage: unknown layer "
|
Chris@69
|
4363 << "type " << str.toStdString() << std::endl;
|
Chris@69
|
4364 } else {
|
Chris@69
|
4365
|
Chris@69
|
4366 PaneConfiguration configuration(type,
|
Chris@69
|
4367 getMainModel(),
|
Chris@69
|
4368 channel);
|
Chris@69
|
4369
|
Chris@69
|
4370 addPane(configuration,
|
Chris@69
|
4371 tr("Add %1 Pane")
|
Chris@69
|
4372 .arg(LayerFactory::getInstance()->
|
Chris@69
|
4373 getLayerPresentationName(type)));
|
Chris@69
|
4374 }
|
Chris@69
|
4375 }
|
Chris@69
|
4376 }
|
Chris@69
|
4377
|
Chris@69
|
4378 } else if (message.getMethod() == "undo") {
|
Chris@69
|
4379
|
Chris@69
|
4380 CommandHistory::getInstance()->undo();
|
Chris@69
|
4381
|
Chris@69
|
4382 } else if (message.getMethod() == "redo") {
|
Chris@69
|
4383
|
Chris@69
|
4384 CommandHistory::getInstance()->redo();
|
Chris@69
|
4385
|
Chris@69
|
4386 } else if (message.getMethod() == "set") {
|
Chris@69
|
4387
|
Chris@70
|
4388 if (message.getArgCount() == 2 &&
|
Chris@69
|
4389 message.getArg(0).canConvert(QVariant::String) &&
|
Chris@69
|
4390 message.getArg(1).canConvert(QVariant::Double)) {
|
Chris@69
|
4391
|
Chris@69
|
4392 QString property = message.getArg(0).toString();
|
Chris@69
|
4393 float value = (float)message.getArg(1).toDouble();
|
Chris@69
|
4394
|
Chris@69
|
4395 if (property == "gain") {
|
Chris@69
|
4396 if (value < 0.0) value = 0.0;
|
Chris@69
|
4397 m_fader->setValue(value);
|
Chris@69
|
4398 if (m_playTarget) m_playTarget->setOutputGain(value);
|
Chris@69
|
4399 } else if (property == "speedup") {
|
Chris@69
|
4400 m_playSpeed->setMappedValue(value);
|
Chris@69
|
4401 } else if (property == "overlays") {
|
Chris@69
|
4402 if (value < 0.5) {
|
Chris@69
|
4403 m_viewManager->setOverlayMode(ViewManager::NoOverlays);
|
Chris@69
|
4404 } else if (value < 1.5) {
|
Chris@90
|
4405 m_viewManager->setOverlayMode(ViewManager::MinimalOverlays);
|
Chris@90
|
4406 } else if (value < 2.5) {
|
Chris@90
|
4407 m_viewManager->setOverlayMode(ViewManager::StandardOverlays);
|
Chris@69
|
4408 } else {
|
Chris@69
|
4409 m_viewManager->setOverlayMode(ViewManager::AllOverlays);
|
Chris@69
|
4410 }
|
Chris@70
|
4411 } else if (property == "zoomwheels") {
|
Chris@70
|
4412 m_viewManager->setZoomWheelsEnabled(value > 0.5);
|
Chris@72
|
4413 } else if (property == "propertyboxes") {
|
Chris@72
|
4414 bool toggle = ((value < 0.5) !=
|
Chris@72
|
4415 (m_paneStack->getLayoutStyle() == PaneStack::NoPropertyStacks));
|
Chris@72
|
4416 if (toggle) togglePropertyBoxes();
|
Chris@70
|
4417 }
|
Chris@70
|
4418
|
Chris@70
|
4419 } else {
|
Chris@70
|
4420 PropertyContainer *container = 0;
|
Chris@70
|
4421 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@70
|
4422 if (pane &&
|
Chris@70
|
4423 message.getArgCount() == 3 &&
|
Chris@70
|
4424 message.getArg(0).canConvert(QVariant::String) &&
|
Chris@70
|
4425 message.getArg(1).canConvert(QVariant::String) &&
|
Chris@70
|
4426 message.getArg(2).canConvert(QVariant::String)) {
|
Chris@70
|
4427 if (message.getArg(0).toString() == "pane") {
|
Chris@70
|
4428 container = pane->getPropertyContainer(0);
|
Chris@70
|
4429 } else if (message.getArg(0).toString() == "layer") {
|
Chris@70
|
4430 container = pane->getSelectedLayer();
|
Chris@70
|
4431 }
|
Chris@70
|
4432 }
|
Chris@70
|
4433 if (container) {
|
Chris@70
|
4434 QString nameString = message.getArg(1).toString();
|
Chris@70
|
4435 QString valueString = message.getArg(2).toString();
|
Chris@70
|
4436 container->setPropertyWithCommand(nameString, valueString);
|
Chris@69
|
4437 }
|
Chris@69
|
4438 }
|
Chris@69
|
4439
|
Chris@69
|
4440 } else if (message.getMethod() == "setcurrent") {
|
Chris@69
|
4441
|
Chris@69
|
4442 int paneIndex = -1, layerIndex = -1;
|
Chris@69
|
4443 bool wantLayer = false;
|
Chris@69
|
4444
|
Chris@69
|
4445 if (message.getArgCount() >= 1 &&
|
Chris@69
|
4446 message.getArg(0).canConvert(QVariant::Int)) {
|
Chris@69
|
4447
|
Chris@69
|
4448 paneIndex = message.getArg(0).toInt() - 1;
|
Chris@69
|
4449
|
Chris@69
|
4450 if (message.getArgCount() >= 2 &&
|
Chris@69
|
4451 message.getArg(1).canConvert(QVariant::Int)) {
|
Chris@69
|
4452 wantLayer = true;
|
Chris@69
|
4453 layerIndex = message.getArg(1).toInt() - 1;
|
Chris@69
|
4454 }
|
Chris@69
|
4455 }
|
Chris@69
|
4456
|
Chris@69
|
4457 if (paneIndex >= 0 && paneIndex < m_paneStack->getPaneCount()) {
|
Chris@69
|
4458 Pane *pane = m_paneStack->getPane(paneIndex);
|
Chris@70
|
4459 m_paneStack->setCurrentPane(pane);
|
Chris@69
|
4460 if (layerIndex >= 0 && layerIndex < pane->getLayerCount()) {
|
Chris@69
|
4461 Layer *layer = pane->getLayer(layerIndex);
|
Chris@69
|
4462 m_paneStack->setCurrentLayer(pane, layer);
|
Chris@69
|
4463 } else if (wantLayer && layerIndex == -1) {
|
Chris@69
|
4464 m_paneStack->setCurrentLayer(pane, 0);
|
Chris@69
|
4465 }
|
Chris@69
|
4466 }
|
Chris@69
|
4467
|
Chris@69
|
4468 } else if (message.getMethod() == "delete") {
|
Chris@69
|
4469
|
Chris@69
|
4470 if (message.getArgCount() == 1 &&
|
Chris@69
|
4471 message.getArg(0).canConvert(QVariant::String)) {
|
Chris@69
|
4472
|
Chris@69
|
4473 QString target = message.getArg(0).toString();
|
Chris@69
|
4474
|
Chris@69
|
4475 if (target == "pane") {
|
Chris@69
|
4476
|
Chris@69
|
4477 deleteCurrentPane();
|
Chris@69
|
4478
|
Chris@69
|
4479 } else if (target == "layer") {
|
Chris@69
|
4480
|
Chris@69
|
4481 deleteCurrentLayer();
|
Chris@69
|
4482
|
Chris@69
|
4483 } else {
|
Chris@69
|
4484
|
Chris@69
|
4485 std::cerr << "WARNING: MainWindow::handleOSCMessage: Unknown delete target " << target.toStdString() << std::endl;
|
Chris@69
|
4486 }
|
Chris@69
|
4487 }
|
Chris@69
|
4488
|
Chris@69
|
4489 } else if (message.getMethod() == "zoom") {
|
Chris@69
|
4490
|
Chris@69
|
4491 if (message.getArgCount() == 1) {
|
Chris@69
|
4492 if (message.getArg(0).canConvert(QVariant::String) &&
|
Chris@69
|
4493 message.getArg(0).toString() == "in") {
|
Chris@69
|
4494 zoomIn();
|
Chris@69
|
4495 } else if (message.getArg(0).canConvert(QVariant::String) &&
|
Chris@69
|
4496 message.getArg(0).toString() == "out") {
|
Chris@69
|
4497 zoomOut();
|
Chris@69
|
4498 } else if (message.getArg(0).canConvert(QVariant::String) &&
|
Chris@69
|
4499 message.getArg(0).toString() == "default") {
|
Chris@69
|
4500 zoomDefault();
|
Chris@69
|
4501 } else if (message.getArg(0).canConvert(QVariant::Double)) {
|
Chris@69
|
4502 double level = message.getArg(0).toDouble();
|
Chris@69
|
4503 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@69
|
4504 if (level < 1.0) level = 1.0;
|
Chris@69
|
4505 if (currentPane) currentPane->setZoomLevel(lrint(level));
|
Chris@69
|
4506 }
|
Chris@69
|
4507 }
|
Chris@69
|
4508
|
Chris@73
|
4509 } else if (message.getMethod() == "zoomvertical") {
|
Chris@73
|
4510
|
Chris@73
|
4511 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@73
|
4512 Layer *layer = 0;
|
Chris@73
|
4513 if (pane && pane->getLayerCount() > 0) {
|
Chris@73
|
4514 layer = pane->getLayer(pane->getLayerCount() - 1);
|
Chris@73
|
4515 }
|
Chris@73
|
4516 int defaultStep = 0;
|
Chris@73
|
4517 int steps = 0;
|
Chris@73
|
4518 if (layer) {
|
Chris@73
|
4519 steps = layer->getVerticalZoomSteps(defaultStep);
|
Chris@73
|
4520 if (message.getArgCount() == 1 && steps > 0) {
|
Chris@73
|
4521 if (message.getArg(0).canConvert(QVariant::String) &&
|
Chris@73
|
4522 message.getArg(0).toString() == "in") {
|
Chris@73
|
4523 int step = layer->getCurrentVerticalZoomStep() + 1;
|
Chris@73
|
4524 if (step < steps) layer->setVerticalZoomStep(step);
|
Chris@73
|
4525 } else if (message.getArg(0).canConvert(QVariant::String) &&
|
Chris@73
|
4526 message.getArg(0).toString() == "out") {
|
Chris@73
|
4527 int step = layer->getCurrentVerticalZoomStep() - 1;
|
Chris@73
|
4528 if (step >= 0) layer->setVerticalZoomStep(step);
|
Chris@73
|
4529 } else if (message.getArg(0).canConvert(QVariant::String) &&
|
Chris@73
|
4530 message.getArg(0).toString() == "default") {
|
Chris@73
|
4531 layer->setVerticalZoomStep(defaultStep);
|
Chris@73
|
4532 }
|
Chris@73
|
4533 } else if (message.getArgCount() == 2) {
|
Chris@73
|
4534 if (message.getArg(0).canConvert(QVariant::Double) &&
|
Chris@73
|
4535 message.getArg(1).canConvert(QVariant::Double)) {
|
Chris@73
|
4536 double min = message.getArg(0).toDouble();
|
Chris@73
|
4537 double max = message.getArg(1).toDouble();
|
Chris@73
|
4538 layer->setDisplayExtents(min, max);
|
Chris@73
|
4539 }
|
Chris@73
|
4540 }
|
Chris@73
|
4541 }
|
Chris@73
|
4542
|
Chris@70
|
4543 } else if (message.getMethod() == "quit") {
|
Chris@70
|
4544
|
Chris@70
|
4545 m_abandoning = true;
|
Chris@70
|
4546 close();
|
Chris@70
|
4547
|
Chris@70
|
4548 } else if (message.getMethod() == "resize") {
|
Chris@70
|
4549
|
Chris@70
|
4550 if (message.getArgCount() == 2) {
|
Chris@70
|
4551
|
Chris@70
|
4552 int width = 0, height = 0;
|
Chris@70
|
4553
|
Chris@70
|
4554 if (message.getArg(1).canConvert(QVariant::Int)) {
|
Chris@70
|
4555
|
Chris@70
|
4556 height = message.getArg(1).toInt();
|
Chris@70
|
4557
|
Chris@70
|
4558 if (message.getArg(0).canConvert(QVariant::String) &&
|
Chris@70
|
4559 message.getArg(0).toString() == "pane") {
|
Chris@70
|
4560
|
Chris@70
|
4561 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@70
|
4562 if (pane) pane->resize(pane->width(), height);
|
Chris@70
|
4563
|
Chris@70
|
4564 } else if (message.getArg(0).canConvert(QVariant::Int)) {
|
Chris@70
|
4565
|
Chris@70
|
4566 width = message.getArg(0).toInt();
|
Chris@70
|
4567 resize(width, height);
|
Chris@70
|
4568 }
|
Chris@70
|
4569 }
|
Chris@70
|
4570 }
|
Chris@70
|
4571
|
Chris@70
|
4572 } else if (message.getMethod() == "transform") {
|
Chris@70
|
4573
|
Chris@70
|
4574 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@70
|
4575
|
Chris@70
|
4576 if (getMainModel() &&
|
Chris@70
|
4577 pane &&
|
Chris@70
|
4578 message.getArgCount() == 1 &&
|
Chris@70
|
4579 message.getArg(0).canConvert(QVariant::String)) {
|
Chris@70
|
4580
|
Chris@107
|
4581 TransformId transform = message.getArg(0).toString();
|
Chris@70
|
4582
|
Chris@70
|
4583 Layer *newLayer = m_document->createDerivedLayer
|
Chris@70
|
4584 (transform,
|
Chris@70
|
4585 getMainModel(),
|
Chris@73
|
4586 TransformFactory::getInstance()->getDefaultContextForTransform
|
Chris@73
|
4587 (transform, getMainModel()),
|
Chris@70
|
4588 "");
|
Chris@70
|
4589
|
Chris@70
|
4590 if (newLayer) {
|
Chris@70
|
4591 m_document->addLayerToView(pane, newLayer);
|
Chris@70
|
4592 m_recentTransforms.add(transform);
|
Chris@70
|
4593 m_paneStack->setCurrentLayer(pane, newLayer);
|
Chris@70
|
4594 }
|
Chris@70
|
4595 }
|
Chris@70
|
4596
|
Chris@69
|
4597 } else {
|
Chris@69
|
4598 std::cerr << "WARNING: MainWindow::handleOSCMessage: Unknown or unsupported "
|
Chris@69
|
4599 << "method \"" << message.getMethod().toStdString()
|
Chris@69
|
4600 << "\"" << std::endl;
|
Chris@69
|
4601 }
|
Chris@69
|
4602
|
Chris@69
|
4603 }
|
Chris@69
|
4604
|
Chris@69
|
4605 void
|
Chris@0
|
4606 MainWindow::preferences()
|
Chris@0
|
4607 {
|
Chris@0
|
4608 if (!m_preferencesDialog.isNull()) {
|
Chris@0
|
4609 m_preferencesDialog->show();
|
Chris@0
|
4610 m_preferencesDialog->raise();
|
Chris@0
|
4611 return;
|
Chris@0
|
4612 }
|
Chris@0
|
4613
|
Chris@0
|
4614 m_preferencesDialog = new PreferencesDialog(this);
|
Chris@0
|
4615
|
Chris@0
|
4616 // DeleteOnClose is safe here, because m_preferencesDialog is a
|
Chris@0
|
4617 // QPointer that will be zeroed when the dialog is deleted. We
|
Chris@0
|
4618 // use it in preference to leaving the dialog lying around because
|
Chris@0
|
4619 // if you Cancel the dialog, it resets the preferences state
|
Chris@0
|
4620 // without resetting its own widgets, so its state will be
|
Chris@0
|
4621 // incorrect when next shown unless we construct it afresh
|
Chris@0
|
4622 m_preferencesDialog->setAttribute(Qt::WA_DeleteOnClose);
|
Chris@0
|
4623
|
Chris@0
|
4624 m_preferencesDialog->show();
|
Chris@0
|
4625 }
|
Chris@0
|
4626
|
Chris@0
|
4627 void
|
Chris@90
|
4628 MainWindow::mouseEnteredWidget()
|
Chris@90
|
4629 {
|
Chris@90
|
4630 QWidget *w = dynamic_cast<QWidget *>(sender());
|
Chris@90
|
4631 if (!w) return;
|
Chris@90
|
4632
|
Chris@90
|
4633 if (w == m_fader) {
|
Chris@116
|
4634 contextHelpChanged(tr("Adjust the master playback level"));
|
Chris@90
|
4635 } else if (w == m_playSpeed) {
|
Chris@116
|
4636 contextHelpChanged(tr("Adjust the master playback speed"));
|
Chris@90
|
4637 } else if (w == m_playSharpen && w->isEnabled()) {
|
Chris@116
|
4638 contextHelpChanged(tr("Toggle transient sharpening for playback time scaling"));
|
Chris@90
|
4639 } else if (w == m_playMono && w->isEnabled()) {
|
Chris@116
|
4640 contextHelpChanged(tr("Toggle mono mode for playback time scaling"));
|
Chris@90
|
4641 }
|
Chris@90
|
4642 }
|
Chris@90
|
4643
|
Chris@90
|
4644 void
|
Chris@90
|
4645 MainWindow::mouseLeftWidget()
|
Chris@90
|
4646 {
|
Chris@116
|
4647 contextHelpChanged("");
|
Chris@116
|
4648 }
|
Chris@116
|
4649
|
Chris@116
|
4650 void
|
Chris@117
|
4651 MainWindow::inProgressSelectionChanged()
|
Chris@117
|
4652 {
|
Chris@117
|
4653 Pane *currentPane = 0;
|
Chris@117
|
4654 if (m_paneStack) currentPane = m_paneStack->getCurrentPane();
|
Chris@117
|
4655 if (currentPane) updateVisibleRangeDisplay(currentPane);
|
Chris@117
|
4656 }
|
Chris@117
|
4657
|
Chris@117
|
4658 void
|
Chris@116
|
4659 MainWindow::contextHelpChanged(const QString &s)
|
Chris@116
|
4660 {
|
Chris@116
|
4661 if (s == "" && m_myStatusMessage != "") {
|
Chris@116
|
4662 statusBar()->showMessage(m_myStatusMessage);
|
Chris@116
|
4663 return;
|
Chris@116
|
4664 }
|
Chris@116
|
4665 statusBar()->showMessage(s);
|
Chris@90
|
4666 }
|
Chris@90
|
4667
|
Chris@90
|
4668 void
|
Chris@0
|
4669 MainWindow::website()
|
Chris@0
|
4670 {
|
Chris@0
|
4671 openHelpUrl(tr("http://www.sonicvisualiser.org/"));
|
Chris@0
|
4672 }
|
Chris@0
|
4673
|
Chris@0
|
4674 void
|
Chris@0
|
4675 MainWindow::help()
|
Chris@0
|
4676 {
|
Chris@126
|
4677 openHelpUrl(tr("http://www.sonicvisualiser.org/doc/reference/1.0/en/"));
|
Chris@0
|
4678 }
|
Chris@0
|
4679
|
Chris@0
|
4680 void
|
Chris@0
|
4681 MainWindow::openHelpUrl(QString url)
|
Chris@0
|
4682 {
|
Chris@0
|
4683 // This method mostly lifted from Qt Assistant source code
|
Chris@0
|
4684
|
Chris@0
|
4685 QProcess *process = new QProcess(this);
|
Chris@0
|
4686 connect(process, SIGNAL(finished(int)), process, SLOT(deleteLater()));
|
Chris@0
|
4687
|
Chris@0
|
4688 QStringList args;
|
Chris@0
|
4689
|
Chris@0
|
4690 #ifdef Q_OS_MAC
|
Chris@0
|
4691 args.append(url);
|
Chris@0
|
4692 process->start("open", args);
|
Chris@0
|
4693 #else
|
Chris@0
|
4694 #ifdef Q_OS_WIN32
|
Chris@0
|
4695
|
Chris@0
|
4696 QString pf(getenv("ProgramFiles"));
|
Chris@0
|
4697 QString command = pf + QString("\\Internet Explorer\\IEXPLORE.EXE");
|
Chris@0
|
4698
|
Chris@0
|
4699 args.append(url);
|
Chris@0
|
4700 process->start(command, args);
|
Chris@0
|
4701
|
Chris@0
|
4702 #else
|
Chris@0
|
4703 #ifdef Q_WS_X11
|
Chris@0
|
4704 if (!qgetenv("KDE_FULL_SESSION").isEmpty()) {
|
Chris@0
|
4705 args.append("exec");
|
Chris@0
|
4706 args.append(url);
|
Chris@0
|
4707 process->start("kfmclient", args);
|
Chris@0
|
4708 } else if (!qgetenv("BROWSER").isEmpty()) {
|
Chris@0
|
4709 args.append(url);
|
Chris@0
|
4710 process->start(qgetenv("BROWSER"), args);
|
Chris@0
|
4711 } else {
|
Chris@0
|
4712 args.append(url);
|
Chris@0
|
4713 process->start("firefox", args);
|
Chris@0
|
4714 }
|
Chris@0
|
4715 #endif
|
Chris@0
|
4716 #endif
|
Chris@0
|
4717 #endif
|
Chris@0
|
4718 }
|
Chris@0
|
4719
|
Chris@0
|
4720 void
|
Chris@0
|
4721 MainWindow::about()
|
Chris@0
|
4722 {
|
Chris@0
|
4723 bool debug = false;
|
Chris@0
|
4724 QString version = "(unknown version)";
|
Chris@0
|
4725
|
Chris@0
|
4726 #ifdef BUILD_DEBUG
|
Chris@0
|
4727 debug = true;
|
Chris@0
|
4728 #endif
|
Chris@0
|
4729 #ifdef SV_VERSION
|
Chris@0
|
4730 #ifdef SVNREV
|
Chris@0
|
4731 version = tr("Release %1 : Revision %2").arg(SV_VERSION).arg(SVNREV);
|
Chris@0
|
4732 #else
|
Chris@0
|
4733 version = tr("Release %1").arg(SV_VERSION);
|
Chris@0
|
4734 #endif
|
Chris@0
|
4735 #else
|
Chris@0
|
4736 #ifdef SVNREV
|
Chris@0
|
4737 version = tr("Unreleased : Revision %1").arg(SVNREV);
|
Chris@0
|
4738 #endif
|
Chris@0
|
4739 #endif
|
Chris@0
|
4740
|
Chris@0
|
4741 QString aboutText;
|
Chris@0
|
4742
|
Chris@0
|
4743 aboutText += tr("<h3>About Sonic Visualiser</h3>");
|
Chris@90
|
4744 aboutText += tr("<p>Sonic Visualiser is a program for viewing and exploring audio data for<br>semantic music analysis and annotation.</p>");
|
Chris@111
|
4745 aboutText += tr("<p>%1 : %2 configuration</p>")
|
Chris@0
|
4746 .arg(version)
|
Chris@0
|
4747 .arg(debug ? tr("Debug") : tr("Release"));
|
Chris@0
|
4748
|
Chris@132
|
4749 #ifndef BUILD_STATIC
|
Chris@132
|
4750 aboutText += tr("<br>Using Qt v%1 © Trolltech AS").arg(QT_VERSION_STR);
|
Chris@132
|
4751 #else
|
Chris@132
|
4752 #ifdef QT_SHARED
|
Chris@132
|
4753 aboutText += tr("<br>Using Qt v%1 © Trolltech AS").arg(QT_VERSION_STR);
|
Chris@132
|
4754 #endif
|
Chris@132
|
4755 #endif
|
Chris@132
|
4756
|
Chris@0
|
4757 #ifdef BUILD_STATIC
|
Chris@0
|
4758 aboutText += tr("<p>Statically linked");
|
Chris@0
|
4759 #ifndef QT_SHARED
|
Chris@0
|
4760 aboutText += tr("<br>With Qt (v%1) © Trolltech AS").arg(QT_VERSION_STR);
|
Chris@0
|
4761 #endif
|
Chris@0
|
4762 #ifdef HAVE_JACK
|
Chris@93
|
4763 #ifdef JACK_VERSION
|
Chris@0
|
4764 aboutText += tr("<br>With JACK audio output (v%1) © Paul Davis and Jack O'Quin").arg(JACK_VERSION);
|
Chris@93
|
4765 #else
|
Chris@93
|
4766 aboutText += tr("<br>With JACK audio output © Paul Davis and Jack O'Quin");
|
Chris@93
|
4767 #endif
|
Chris@0
|
4768 #endif
|
Chris@0
|
4769 #ifdef HAVE_PORTAUDIO
|
Chris@0
|
4770 aboutText += tr("<br>With PortAudio audio output © Ross Bencina and Phil Burk");
|
Chris@0
|
4771 #endif
|
Chris@0
|
4772 #ifdef HAVE_OGGZ
|
Chris@93
|
4773 #ifdef OGGZ_VERSION
|
Chris@0
|
4774 aboutText += tr("<br>With Ogg file decoder (oggz v%1, fishsound v%2) © CSIRO Australia").arg(OGGZ_VERSION).arg(FISHSOUND_VERSION);
|
Chris@93
|
4775 #else
|
Chris@93
|
4776 aboutText += tr("<br>With Ogg file decoder © CSIRO Australia");
|
Chris@93
|
4777 #endif
|
Chris@0
|
4778 #endif
|
Chris@0
|
4779 #ifdef HAVE_MAD
|
Chris@93
|
4780 #ifdef MAD_VERSION
|
Chris@0
|
4781 aboutText += tr("<br>With MAD mp3 decoder (v%1) © Underbit Technologies Inc").arg(MAD_VERSION);
|
Chris@93
|
4782 #else
|
Chris@93
|
4783 aboutText += tr("<br>With MAD mp3 decoder © Underbit Technologies Inc");
|
Chris@93
|
4784 #endif
|
Chris@0
|
4785 #endif
|
Chris@0
|
4786 #ifdef HAVE_SAMPLERATE
|
Chris@93
|
4787 #ifdef SAMPLERATE_VERSION
|
Chris@0
|
4788 aboutText += tr("<br>With libsamplerate (v%1) © Erik de Castro Lopo").arg(SAMPLERATE_VERSION);
|
Chris@93
|
4789 #else
|
Chris@93
|
4790 aboutText += tr("<br>With libsamplerate © Erik de Castro Lopo");
|
Chris@93
|
4791 #endif
|
Chris@0
|
4792 #endif
|
Chris@0
|
4793 #ifdef HAVE_SNDFILE
|
Chris@93
|
4794 #ifdef SNDFILE_VERSION
|
Chris@0
|
4795 aboutText += tr("<br>With libsndfile (v%1) © Erik de Castro Lopo").arg(SNDFILE_VERSION);
|
Chris@93
|
4796 #else
|
Chris@93
|
4797 aboutText += tr("<br>With libsndfile © Erik de Castro Lopo");
|
Chris@93
|
4798 #endif
|
Chris@0
|
4799 #endif
|
Chris@127
|
4800 #ifdef HAVE_FFTW3F
|
Chris@93
|
4801 #ifdef FFTW3_VERSION
|
Chris@0
|
4802 aboutText += tr("<br>With FFTW3 (v%1) © Matteo Frigo and MIT").arg(FFTW3_VERSION);
|
Chris@93
|
4803 #else
|
Chris@93
|
4804 aboutText += tr("<br>With FFTW3 © Matteo Frigo and MIT");
|
Chris@93
|
4805 #endif
|
Chris@0
|
4806 #endif
|
Chris@0
|
4807 #ifdef HAVE_VAMP
|
Chris@114
|
4808 aboutText += tr("<br>With Vamp plugin support (API v%1, host SDK v%2) © Chris Cannam").arg(VAMP_API_VERSION).arg(VAMP_SDK_VERSION);
|
Chris@0
|
4809 #endif
|
Chris@0
|
4810 aboutText += tr("<br>With LADSPA plugin support (API v%1) © Richard Furse, Paul Davis, Stefan Westerfeld").arg(LADSPA_VERSION);
|
Chris@0
|
4811 aboutText += tr("<br>With DSSI plugin support (API v%1) © Chris Cannam, Steve Harris, Sean Bolton").arg(DSSI_VERSION);
|
Chris@69
|
4812 #ifdef HAVE_LIBLO
|
Chris@93
|
4813 #ifdef LIBLO_VERSION
|
Chris@69
|
4814 aboutText += tr("<br>With liblo Lite OSC library (v%1) © Steve Harris").arg(LIBLO_VERSION);
|
Chris@93
|
4815 #else
|
Chris@93
|
4816 aboutText += tr("<br>With liblo Lite OSC library © Steve Harris").arg(LIBLO_VERSION);
|
Chris@93
|
4817 #endif
|
Chris@70
|
4818 if (m_oscQueue && m_oscQueue->isOK()) {
|
Chris@69
|
4819 aboutText += tr("<p>The OSC URL for this instance is: \"%1\"").arg(m_oscQueue->getOSCURL());
|
Chris@69
|
4820 }
|
Chris@69
|
4821 #endif
|
Chris@0
|
4822 aboutText += "</p>";
|
Chris@0
|
4823 #endif
|
Chris@0
|
4824
|
Chris@0
|
4825 aboutText +=
|
Chris@90
|
4826 "<p>Sonic Visualiser Copyright © 2005 - 2007 Chris Cannam and<br>"
|
Chris@90
|
4827 "Queen Mary, University of London.</p>"
|
Chris@0
|
4828 "<p>This program is free software; you can redistribute it and/or<br>"
|
Chris@0
|
4829 "modify it under the terms of the GNU General Public License as<br>"
|
Chris@0
|
4830 "published by the Free Software Foundation; either version 2 of the<br>"
|
Chris@0
|
4831 "License, or (at your option) any later version.<br>See the file "
|
Chris@0
|
4832 "COPYING included with this distribution for more information.</p>";
|
Chris@0
|
4833
|
Chris@0
|
4834 QMessageBox::about(this, tr("About Sonic Visualiser"), aboutText);
|
Chris@0
|
4835 }
|
Chris@0
|
4836
|