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