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