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