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