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