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