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 Tony
|
Chris@0
|
5 An intonation analysis and annotation tool
|
Chris@0
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@0
|
7 This file copyright 2006-2012 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@0
|
16 #include "../version.h"
|
Chris@0
|
17
|
Chris@0
|
18 #include "MainWindow.h"
|
Chris@95
|
19 #include "NetworkPermissionTester.h"
|
Chris@6
|
20 #include "Analyser.h"
|
Chris@6
|
21
|
Chris@0
|
22 #include "framework/Document.h"
|
Chris@95
|
23 #include "framework/VersionTester.h"
|
Chris@0
|
24
|
Chris@0
|
25 #include "view/Pane.h"
|
Chris@0
|
26 #include "view/PaneStack.h"
|
Chris@0
|
27 #include "data/model/WaveFileModel.h"
|
matthiasm@26
|
28 #include "data/model/NoteModel.h"
|
matthiasm@26
|
29 #include "data/model/FlexiNoteModel.h"
|
matthiasm@42
|
30 #include "layer/FlexiNoteLayer.h"
|
matthiasm@26
|
31 #include "data/model/NoteModel.h"
|
Chris@0
|
32 #include "view/ViewManager.h"
|
Chris@0
|
33 #include "base/Preferences.h"
|
Chris@404
|
34 #include "base/AudioLevel.h"
|
Chris@0
|
35 #include "layer/WaveformLayer.h"
|
Chris@0
|
36 #include "layer/TimeInstantLayer.h"
|
Chris@0
|
37 #include "layer/TimeValueLayer.h"
|
Chris@192
|
38 #include "layer/SpectrogramLayer.h"
|
Chris@0
|
39 #include "widgets/Fader.h"
|
Chris@0
|
40 #include "view/Overview.h"
|
Chris@0
|
41 #include "widgets/AudioDial.h"
|
Chris@0
|
42 #include "widgets/IconLoader.h"
|
Chris@0
|
43 #include "widgets/KeyReference.h"
|
Chris@414
|
44 #include "widgets/LevelPanToolButton.h"
|
Chris@0
|
45 #include "audioio/AudioCallbackPlaySource.h"
|
Chris@0
|
46 #include "audioio/AudioCallbackPlayTarget.h"
|
Chris@0
|
47 #include "audioio/PlaySpeedRangeMapper.h"
|
Chris@0
|
48 #include "base/Profiler.h"
|
Chris@0
|
49 #include "base/UnitDatabase.h"
|
Chris@0
|
50 #include "layer/ColourDatabase.h"
|
Chris@139
|
51 #include "base/Selection.h"
|
Chris@0
|
52
|
Chris@174
|
53 #include "rdf/RDFImporter.h"
|
Chris@174
|
54 #include "data/fileio/DataFileReaderFactory.h"
|
Chris@174
|
55 #include "data/fileio/CSVFormat.h"
|
matthiasm@26
|
56 #include "data/fileio/CSVFileWriter.h"
|
matthiasm@26
|
57 #include "data/fileio/MIDIFileWriter.h"
|
matthiasm@26
|
58 #include "rdf/RDFExporter.h"
|
matthiasm@26
|
59
|
Chris@227
|
60 #include "widgets/RangeInputDialog.h"
|
Chris@244
|
61 #include "widgets/ActivityLog.h"
|
Chris@227
|
62
|
Chris@0
|
63 // For version information
|
Chris@0
|
64 #include "vamp/vamp.h"
|
Chris@0
|
65 #include "vamp-sdk/PluginBase.h"
|
Chris@0
|
66 #include "plugin/api/ladspa.h"
|
Chris@0
|
67 #include "plugin/api/dssi.h"
|
Chris@0
|
68
|
Chris@0
|
69 #include <QApplication>
|
Chris@0
|
70 #include <QMessageBox>
|
Chris@0
|
71 #include <QGridLayout>
|
Chris@0
|
72 #include <QLabel>
|
Chris@0
|
73 #include <QMenuBar>
|
Chris@0
|
74 #include <QToolBar>
|
Chris@0
|
75 #include <QToolButton>
|
Chris@0
|
76 #include <QInputDialog>
|
Chris@0
|
77 #include <QStatusBar>
|
Chris@0
|
78 #include <QFileInfo>
|
Chris@0
|
79 #include <QDir>
|
Chris@0
|
80 #include <QProcess>
|
Chris@2
|
81 #include <QPushButton>
|
Chris@0
|
82 #include <QSettings>
|
Chris@0
|
83 #include <QScrollArea>
|
Chris@128
|
84 #include <QPainter>
|
Chris@413
|
85 #include <QWidgetAction>
|
Chris@0
|
86
|
Chris@0
|
87 #include <iostream>
|
Chris@0
|
88 #include <cstdio>
|
Chris@0
|
89 #include <errno.h>
|
Chris@0
|
90
|
Chris@0
|
91 using std::vector;
|
Chris@0
|
92
|
Chris@0
|
93
|
matthiasm@364
|
94 MainWindow::MainWindow(bool withAudioOutput, bool withSonification, bool withSpectrogram) :
|
Chris@277
|
95 MainWindowBase(withAudioOutput, false),
|
Chris@0
|
96 m_overview(0),
|
Chris@0
|
97 m_mainMenusCreated(false),
|
Chris@0
|
98 m_playbackMenu(0),
|
gyorgyf@45
|
99 m_recentFilesMenu(0),
|
Chris@0
|
100 m_rightButtonMenu(0),
|
Chris@0
|
101 m_rightButtonPlaybackMenu(0),
|
Chris@0
|
102 m_deleteSelectedAction(0),
|
Chris@0
|
103 m_ffwdAction(0),
|
Chris@0
|
104 m_rwdAction(0),
|
Chris@168
|
105 m_intelligentActionOn(true), //GF: !!! temporary
|
Chris@244
|
106 m_activityLog(new ActivityLog()),
|
matthiasm@296
|
107 m_keyReference(new KeyReference()),
|
matthiasm@364
|
108 m_selectionAnchor(0),
|
matthiasm@364
|
109 m_withSonification(withSonification),
|
matthiasm@364
|
110 m_withSpectrogram(withSpectrogram)
|
Chris@0
|
111 {
|
Chris@0
|
112 setWindowTitle(QApplication::applicationName());
|
Chris@0
|
113
|
Chris@206
|
114 #ifdef Q_OS_MAC
|
Chris@206
|
115 #if (QT_VERSION >= QT_VERSION_CHECK(5, 2, 0))
|
Chris@206
|
116 setUnifiedTitleAndToolBarOnMac(true);
|
Chris@206
|
117 #endif
|
Chris@206
|
118 #endif
|
Chris@206
|
119
|
Chris@0
|
120 UnitDatabase *udb = UnitDatabase::getInstance();
|
Chris@0
|
121 udb->registerUnit("Hz");
|
Chris@0
|
122 udb->registerUnit("dB");
|
Chris@0
|
123 udb->registerUnit("s");
|
Chris@0
|
124
|
Chris@0
|
125 ColourDatabase *cdb = ColourDatabase::getInstance();
|
Chris@0
|
126 cdb->addColour(Qt::black, tr("Black"));
|
Chris@0
|
127 cdb->addColour(Qt::darkRed, tr("Red"));
|
Chris@0
|
128 cdb->addColour(Qt::darkBlue, tr("Blue"));
|
Chris@0
|
129 cdb->addColour(Qt::darkGreen, tr("Green"));
|
Chris@0
|
130 cdb->addColour(QColor(200, 50, 255), tr("Purple"));
|
Chris@0
|
131 cdb->addColour(QColor(255, 150, 50), tr("Orange"));
|
Chris@120
|
132 cdb->addColour(QColor(180, 180, 180), tr("Grey"));
|
Chris@0
|
133 cdb->setUseDarkBackground(cdb->addColour(Qt::white, tr("White")), true);
|
Chris@0
|
134 cdb->setUseDarkBackground(cdb->addColour(Qt::red, tr("Bright Red")), true);
|
Chris@0
|
135 cdb->setUseDarkBackground(cdb->addColour(QColor(30, 150, 255), tr("Bright Blue")), true);
|
Chris@0
|
136 cdb->setUseDarkBackground(cdb->addColour(Qt::green, tr("Bright Green")), true);
|
Chris@0
|
137 cdb->setUseDarkBackground(cdb->addColour(QColor(225, 74, 255), tr("Bright Purple")), true);
|
Chris@0
|
138 cdb->setUseDarkBackground(cdb->addColour(QColor(255, 188, 80), tr("Bright Orange")), true);
|
Chris@0
|
139
|
Chris@0
|
140 Preferences::getInstance()->setResampleOnLoad(true);
|
Chris@315
|
141 Preferences::getInstance()->setFixedSampleRate(44100);
|
Chris@0
|
142 Preferences::getInstance()->setSpectrogramSmoothing
|
Chris@0
|
143 (Preferences::SpectrogramInterpolated);
|
Chris@332
|
144 Preferences::getInstance()->setNormaliseAudio(true);
|
Chris@0
|
145
|
Chris@0
|
146 QSettings settings;
|
Chris@0
|
147
|
Chris@0
|
148 settings.beginGroup("MainWindow");
|
Chris@0
|
149 settings.setValue("showstatusbar", false);
|
Chris@0
|
150 settings.endGroup();
|
Chris@0
|
151
|
Chris@96
|
152 settings.beginGroup("Transformer");
|
Chris@96
|
153 settings.setValue("use-flexi-note-model", true);
|
Chris@96
|
154 settings.endGroup();
|
Chris@96
|
155
|
Chris@73
|
156 settings.beginGroup("LayerDefaults");
|
Chris@73
|
157 settings.setValue("waveform",
|
Chris@73
|
158 QString("<layer scale=\"%1\" channelMode=\"%2\"/>")
|
Chris@73
|
159 .arg(int(WaveformLayer::LinearScale))
|
Chris@73
|
160 .arg(int(WaveformLayer::MixChannels)));
|
Chris@73
|
161 settings.endGroup();
|
Chris@73
|
162
|
Chris@6
|
163 m_viewManager->setAlignMode(false);
|
Chris@6
|
164 m_viewManager->setPlaySoloMode(false);
|
Chris@392
|
165 m_viewManager->setToolMode(ViewManager::NavigateMode);
|
Chris@0
|
166 m_viewManager->setZoomWheelsEnabled(false);
|
Chris@6
|
167 m_viewManager->setIlluminateLocalFeatures(true);
|
matthiasm@368
|
168 m_viewManager->setShowWorkTitle(false);
|
Chris@6
|
169 m_viewManager->setShowCentreLine(false);
|
matthiasm@368
|
170 m_viewManager->setShowDuration(false);
|
Chris@213
|
171 m_viewManager->setOverlayMode(ViewManager::GlobalOverlays);
|
Chris@0
|
172
|
Chris@192
|
173 connect(m_viewManager, SIGNAL(selectionChangedByUser()),
|
Chris@192
|
174 this, SLOT(selectionChangedByUser()));
|
Chris@164
|
175
|
Chris@0
|
176 QFrame *frame = new QFrame;
|
Chris@0
|
177 setCentralWidget(frame);
|
Chris@0
|
178
|
Chris@0
|
179 QGridLayout *layout = new QGridLayout;
|
Chris@0
|
180
|
Chris@0
|
181 QScrollArea *scroll = new QScrollArea(frame);
|
Chris@0
|
182 scroll->setWidgetResizable(true);
|
Chris@0
|
183 scroll->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
Chris@0
|
184 scroll->setFrameShape(QFrame::NoFrame);
|
Chris@0
|
185
|
Chris@6
|
186 // We have a pane stack: it comes with the territory. However, we
|
Chris@120
|
187 // have a fixed and known number of panes in it -- it isn't
|
Chris@120
|
188 // variable
|
Chris@0
|
189 m_paneStack->setLayoutStyle(PaneStack::NoPropertyStacks);
|
Chris@137
|
190 m_paneStack->setShowPaneAccessories(false);
|
Chris@399
|
191 connect(m_paneStack, SIGNAL(doubleClickSelectInvoked(sv_frame_t)),
|
Chris@399
|
192 this, SLOT(doubleClickSelectInvoked(sv_frame_t)));
|
Chris@0
|
193 scroll->setWidget(m_paneStack);
|
Chris@6
|
194
|
Chris@0
|
195 m_overview = new Overview(frame);
|
Chris@362
|
196 m_overview->setPlaybackFollow(PlaybackScrollPage);
|
Chris@0
|
197 m_overview->setViewManager(m_viewManager);
|
Chris@393
|
198 m_overview->setFixedHeight(60);
|
Chris@0
|
199 #ifndef _WIN32
|
Chris@0
|
200 // For some reason, the contents of the overview never appear if we
|
Chris@0
|
201 // make this setting on Windows. I have no inclination at the moment
|
Chris@0
|
202 // to track down the reason why.
|
Chris@0
|
203 m_overview->setFrameStyle(QFrame::StyledPanel | QFrame::Sunken);
|
Chris@0
|
204 #endif
|
Chris@0
|
205 connect(m_overview, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@0
|
206 this, SLOT(contextHelpChanged(const QString &)));
|
Chris@0
|
207
|
Chris@0
|
208 m_panLayer = new WaveformLayer;
|
Chris@0
|
209 m_panLayer->setChannelMode(WaveformLayer::MergeChannels);
|
Chris@0
|
210 m_panLayer->setAggressiveCacheing(true);
|
Chris@393
|
211 m_panLayer->setGain(0.5);
|
Chris@0
|
212 m_overview->addLayer(m_panLayer);
|
Chris@0
|
213
|
Chris@0
|
214 if (m_viewManager->getGlobalDarkBackground()) {
|
Chris@0
|
215 m_panLayer->setBaseColour
|
Chris@0
|
216 (ColourDatabase::getInstance()->getColourIndex(tr("Bright Green")));
|
Chris@0
|
217 } else {
|
Chris@0
|
218 m_panLayer->setBaseColour
|
matthiasm@13
|
219 (ColourDatabase::getInstance()->getColourIndex(tr("Blue")));
|
Chris@0
|
220 }
|
Chris@0
|
221
|
Chris@0
|
222 m_fader = new Fader(frame, false);
|
Chris@0
|
223 connect(m_fader, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@0
|
224 connect(m_fader, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@0
|
225
|
Chris@0
|
226 m_playSpeed = new AudioDial(frame);
|
Chris@343
|
227 m_playSpeed->setMeterColor(Qt::darkBlue);
|
Chris@0
|
228 m_playSpeed->setMinimum(0);
|
Chris@0
|
229 m_playSpeed->setMaximum(200);
|
Chris@0
|
230 m_playSpeed->setValue(100);
|
Chris@0
|
231 m_playSpeed->setFixedWidth(24);
|
Chris@0
|
232 m_playSpeed->setFixedHeight(24);
|
Chris@0
|
233 m_playSpeed->setNotchesVisible(true);
|
Chris@0
|
234 m_playSpeed->setPageStep(10);
|
Chris@0
|
235 m_playSpeed->setObjectName(tr("Playback Speedup"));
|
Chris@0
|
236 m_playSpeed->setDefaultValue(100);
|
Chris@0
|
237 m_playSpeed->setRangeMapper(new PlaySpeedRangeMapper(0, 200));
|
Chris@0
|
238 m_playSpeed->setShowToolTip(true);
|
Chris@0
|
239 connect(m_playSpeed, SIGNAL(valueChanged(int)),
|
gyorgyf@27
|
240 this, SLOT(playSpeedChanged(int)));
|
Chris@0
|
241 connect(m_playSpeed, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredWidget()));
|
Chris@0
|
242 connect(m_playSpeed, SIGNAL(mouseLeft()), this, SLOT(mouseLeftWidget()));
|
Chris@0
|
243
|
Chris@414
|
244 m_audioLPW = new LevelPanToolButton(frame);
|
Chris@404
|
245 m_audioLPW->setObjectName(tr("Audio Track Level and Pan"));
|
Chris@404
|
246 connect(m_audioLPW, SIGNAL(levelChanged(float)), this, SLOT(audioGainChanged(float)));
|
Chris@404
|
247 connect(m_audioLPW, SIGNAL(panChanged(float)), this, SLOT(audioPanChanged(float)));
|
Chris@404
|
248
|
Chris@404
|
249 if (m_withSonification) {
|
Chris@404
|
250
|
Chris@414
|
251 m_pitchLPW = new LevelPanToolButton(frame);
|
Chris@404
|
252 m_pitchLPW->setObjectName(tr("Pitch Track Level and Pan"));
|
Chris@404
|
253 connect(m_pitchLPW, SIGNAL(levelChanged(float)), this, SLOT(pitchGainChanged(float)));
|
Chris@404
|
254 connect(m_pitchLPW, SIGNAL(panChanged(float)), this, SLOT(pitchPanChanged(float)));
|
Chris@404
|
255
|
Chris@414
|
256 m_notesLPW = new LevelPanToolButton(frame);
|
Chris@404
|
257 m_notesLPW->setObjectName(tr("Note Track Level and Pan"));
|
Chris@404
|
258 connect(m_notesLPW, SIGNAL(levelChanged(float)), this, SLOT(notesGainChanged(float)));
|
Chris@404
|
259 connect(m_notesLPW, SIGNAL(panChanged(float)), this, SLOT(notesPanChanged(float)));
|
matthiasm@366
|
260 }
|
justin@160
|
261
|
Chris@0
|
262 layout->setSpacing(4);
|
Chris@6
|
263 layout->addWidget(m_overview, 0, 1);
|
Chris@6
|
264 layout->addWidget(scroll, 1, 1);
|
Chris@0
|
265
|
Chris@0
|
266 layout->setColumnStretch(1, 10);
|
Chris@0
|
267
|
Chris@0
|
268 frame->setLayout(layout);
|
Chris@0
|
269
|
gyorgyf@21
|
270 m_analyser = new Analyser();
|
Chris@128
|
271 connect(m_analyser, SIGNAL(layersChanged()),
|
Chris@128
|
272 this, SLOT(updateLayerStatuses()));
|
Chris@187
|
273 connect(m_analyser, SIGNAL(layersChanged()),
|
Chris@187
|
274 this, SLOT(updateMenuStates()));
|
gyorgyf@21
|
275
|
Chris@0
|
276 setupMenus();
|
Chris@0
|
277 setupToolbars();
|
Chris@0
|
278 setupHelpMenu();
|
Chris@0
|
279
|
Chris@0
|
280 statusBar();
|
Chris@0
|
281
|
Chris@288
|
282 finaliseMenus();
|
Chris@288
|
283
|
Chris@244
|
284 connect(m_viewManager, SIGNAL(activity(QString)),
|
Chris@244
|
285 m_activityLog, SLOT(activityHappened(QString)));
|
Chris@244
|
286 connect(m_playSource, SIGNAL(activity(QString)),
|
Chris@244
|
287 m_activityLog, SLOT(activityHappened(QString)));
|
Chris@244
|
288 connect(CommandHistory::getInstance(), SIGNAL(activity(QString)),
|
Chris@244
|
289 m_activityLog, SLOT(activityHappened(QString)));
|
Chris@244
|
290 connect(this, SIGNAL(activity(QString)),
|
Chris@244
|
291 m_activityLog, SLOT(activityHappened(QString)));
|
Chris@244
|
292 connect(this, SIGNAL(replacedDocument()), this, SLOT(documentReplaced()));
|
Chris@260
|
293 connect(this, SIGNAL(sessionLoaded()), this, SLOT(analyseNewMainModel()));
|
Chris@260
|
294 connect(this, SIGNAL(audioFileLoaded()), this, SLOT(analyseNewMainModel()));
|
Chris@244
|
295 m_activityLog->hide();
|
Chris@244
|
296
|
Chris@95
|
297 newSession();
|
Chris@6
|
298
|
Chris@95
|
299 settings.beginGroup("MainWindow");
|
Chris@95
|
300 settings.setValue("zoom-default", 512);
|
Chris@95
|
301 settings.endGroup();
|
Chris@95
|
302 zoomDefault();
|
Chris@95
|
303
|
Chris@95
|
304 NetworkPermissionTester tester;
|
Chris@95
|
305 bool networkPermission = tester.havePermission();
|
Chris@95
|
306 if (networkPermission) {
|
Chris@95
|
307 m_versionTester = new VersionTester
|
Chris@95
|
308 ("sonicvisualiser.org", "latest-tony-version.txt", TONY_VERSION);
|
Chris@95
|
309 connect(m_versionTester, SIGNAL(newerVersionAvailable(QString)),
|
Chris@95
|
310 this, SLOT(newerVersionAvailable(QString)));
|
Chris@95
|
311 } else {
|
Chris@95
|
312 m_versionTester = 0;
|
Chris@95
|
313 }
|
Chris@0
|
314 }
|
Chris@0
|
315
|
Chris@0
|
316 MainWindow::~MainWindow()
|
Chris@0
|
317 {
|
Chris@6
|
318 delete m_analyser;
|
Chris@0
|
319 delete m_keyReference;
|
Chris@0
|
320 Profiles::getInstance()->dump();
|
Chris@0
|
321 }
|
Chris@0
|
322
|
Chris@0
|
323 void
|
Chris@0
|
324 MainWindow::setupMenus()
|
Chris@0
|
325 {
|
Chris@0
|
326 if (!m_mainMenusCreated) {
|
Chris@385
|
327
|
Chris@385
|
328 #ifdef Q_OS_LINUX
|
Chris@385
|
329 // In Ubuntu 14.04 the window's menu bar goes missing entirely
|
Chris@385
|
330 // if the user is running any desktop environment other than Unity
|
Chris@385
|
331 // (in which the faux single-menubar appears). The user has a
|
Chris@385
|
332 // workaround, to remove the appmenu-qt5 package, but that is
|
Chris@385
|
333 // awkward and the problem is so severe that it merits disabling
|
Chris@385
|
334 // the system menubar integration altogether. Like this:
|
Chris@385
|
335 menuBar()->setNativeMenuBar(false);
|
Chris@385
|
336 #endif
|
Chris@385
|
337
|
Chris@0
|
338 m_rightButtonMenu = new QMenu();
|
Chris@0
|
339 }
|
Chris@0
|
340
|
Chris@0
|
341 if (!m_mainMenusCreated) {
|
Chris@0
|
342 CommandHistory::getInstance()->registerMenu(m_rightButtonMenu);
|
Chris@0
|
343 m_rightButtonMenu->addSeparator();
|
Chris@0
|
344 }
|
Chris@0
|
345
|
Chris@0
|
346 setupFileMenu();
|
Chris@0
|
347 setupEditMenu();
|
Chris@0
|
348 setupViewMenu();
|
matthiasm@317
|
349 setupAnalysisMenu();
|
Chris@0
|
350
|
Chris@0
|
351 m_mainMenusCreated = true;
|
Chris@0
|
352 }
|
Chris@0
|
353
|
Chris@0
|
354 void
|
Chris@0
|
355 MainWindow::setupFileMenu()
|
Chris@0
|
356 {
|
Chris@0
|
357 if (m_mainMenusCreated) return;
|
Chris@0
|
358
|
Chris@0
|
359 QMenu *menu = menuBar()->addMenu(tr("&File"));
|
Chris@0
|
360 menu->setTearOffEnabled(true);
|
Chris@0
|
361 QToolBar *toolbar = addToolBar(tr("File Toolbar"));
|
Chris@0
|
362
|
Chris@0
|
363 m_keyReference->setCategory(tr("File and Session Management"));
|
Chris@0
|
364
|
Chris@0
|
365 IconLoader il;
|
Chris@1
|
366 QIcon icon;
|
Chris@1
|
367 QAction *action;
|
Chris@0
|
368
|
Chris@0
|
369 icon = il.load("fileopen");
|
Chris@0
|
370 icon.addPixmap(il.loadPixmap("fileopen-22"));
|
Chris@1
|
371 action = new QAction(icon, tr("&Open..."), this);
|
Chris@0
|
372 action->setShortcut(tr("Ctrl+O"));
|
Chris@257
|
373 action->setStatusTip(tr("Open a session or audio file"));
|
Chris@0
|
374 connect(action, SIGNAL(triggered()), this, SLOT(openFile()));
|
Chris@0
|
375 m_keyReference->registerShortcut(action);
|
Chris@0
|
376 menu->addAction(action);
|
Chris@0
|
377 toolbar->addAction(action);
|
Chris@0
|
378
|
Chris@1
|
379 action = new QAction(tr("Open Lo&cation..."), this);
|
Chris@0
|
380 action->setShortcut(tr("Ctrl+Shift+O"));
|
Chris@1
|
381 action->setStatusTip(tr("Open a file from a remote URL"));
|
Chris@0
|
382 connect(action, SIGNAL(triggered()), this, SLOT(openLocation()));
|
Chris@0
|
383 m_keyReference->registerShortcut(action);
|
Chris@0
|
384 menu->addAction(action);
|
Chris@0
|
385
|
Chris@1
|
386 m_recentFilesMenu = menu->addMenu(tr("Open &Recent"));
|
Chris@0
|
387 m_recentFilesMenu->setTearOffEnabled(true);
|
Chris@0
|
388 setupRecentFilesMenu();
|
Chris@0
|
389 connect(&m_recentFiles, SIGNAL(recentChanged()),
|
Chris@0
|
390 this, SLOT(setupRecentFilesMenu()));
|
Chris@0
|
391
|
Chris@0
|
392 menu->addSeparator();
|
Chris@257
|
393
|
Chris@257
|
394 icon = il.load("filesave");
|
Chris@257
|
395 icon.addPixmap(il.loadPixmap("filesave-22"));
|
Chris@257
|
396 action = new QAction(icon, tr("&Save Session"), this);
|
Chris@257
|
397 action->setShortcut(tr("Ctrl+S"));
|
Chris@257
|
398 action->setStatusTip(tr("Save the current session into a %1 session file").arg(QApplication::applicationName()));
|
Chris@257
|
399 connect(action, SIGNAL(triggered()), this, SLOT(saveSession()));
|
Chris@257
|
400 connect(this, SIGNAL(canSave(bool)), action, SLOT(setEnabled(bool)));
|
Chris@257
|
401 m_keyReference->registerShortcut(action);
|
Chris@257
|
402 menu->addAction(action);
|
Chris@257
|
403 toolbar->addAction(action);
|
Chris@257
|
404
|
Chris@257
|
405 icon = il.load("filesaveas");
|
Chris@257
|
406 icon.addPixmap(il.loadPixmap("filesaveas-22"));
|
Chris@257
|
407 action = new QAction(icon, tr("Save Session &As..."), this);
|
Chris@257
|
408 action->setShortcut(tr("Ctrl+Shift+S"));
|
Chris@257
|
409 action->setStatusTip(tr("Save the current session into a new %1 session file").arg(QApplication::applicationName()));
|
Chris@257
|
410 connect(action, SIGNAL(triggered()), this, SLOT(saveSessionAs()));
|
Chris@313
|
411 connect(this, SIGNAL(canSaveAs(bool)), action, SLOT(setEnabled(bool)));
|
Chris@257
|
412 menu->addAction(action);
|
Chris@257
|
413 toolbar->addAction(action);
|
Chris@257
|
414
|
matthiasm@319
|
415 action = new QAction(tr("Save Session to Audio &Path"), this);
|
matthiasm@310
|
416 action->setShortcut(tr("Ctrl+Alt+S"));
|
Chris@313
|
417 action->setStatusTip(tr("Save the current session into a %1 session file with the same filename as the audio but a .ton extension.").arg(QApplication::applicationName()));
|
matthiasm@310
|
418 connect(action, SIGNAL(triggered()), this, SLOT(saveSessionInAudioPath()));
|
Chris@313
|
419 connect(this, SIGNAL(canSaveAs(bool)), action, SLOT(setEnabled(bool)));
|
matthiasm@310
|
420 menu->addAction(action);
|
matthiasm@310
|
421
|
Chris@257
|
422 menu->addSeparator();
|
Chris@257
|
423
|
Chris@253
|
424 action = new QAction(tr("I&mport Pitch Track Data..."), this);
|
Chris@253
|
425 action->setStatusTip(tr("Import pitch-track data from a CSV, RDF, or layer XML file"));
|
Chris@174
|
426 connect(action, SIGNAL(triggered()), this, SLOT(importPitchLayer()));
|
Chris@174
|
427 connect(this, SIGNAL(canImportLayer(bool)), action, SLOT(setEnabled(bool)));
|
Chris@174
|
428 menu->addAction(action);
|
Chris@174
|
429
|
Chris@253
|
430 action = new QAction(tr("E&xport Pitch Track Data..."), this);
|
Chris@253
|
431 action->setStatusTip(tr("Export pitch-track data to a CSV, RDF, or layer XML file"));
|
Chris@85
|
432 connect(action, SIGNAL(triggered()), this, SLOT(exportPitchLayer()));
|
Chris@224
|
433 connect(this, SIGNAL(canExportPitchTrack(bool)), action, SLOT(setEnabled(bool)));
|
Chris@85
|
434 menu->addAction(action);
|
Chris@85
|
435
|
Chris@253
|
436 action = new QAction(tr("&Export Note Data..."), this);
|
Chris@253
|
437 action->setStatusTip(tr("Export note data to a CSV, RDF, layer XML, or MIDI file"));
|
Chris@85
|
438 connect(action, SIGNAL(triggered()), this, SLOT(exportNoteLayer()));
|
Chris@224
|
439 connect(this, SIGNAL(canExportNotes(bool)), action, SLOT(setEnabled(bool)));
|
matthiasm@26
|
440 menu->addAction(action);
|
matthiasm@26
|
441
|
matthiasm@26
|
442 menu->addSeparator();
|
Chris@0
|
443 action = new QAction(il.load("exit"), tr("&Quit"), this);
|
Chris@0
|
444 action->setShortcut(tr("Ctrl+Q"));
|
Chris@0
|
445 action->setStatusTip(tr("Exit %1").arg(QApplication::applicationName()));
|
Chris@0
|
446 connect(action, SIGNAL(triggered()), this, SLOT(close()));
|
Chris@0
|
447 m_keyReference->registerShortcut(action);
|
Chris@0
|
448 menu->addAction(action);
|
Chris@0
|
449 }
|
Chris@0
|
450
|
Chris@0
|
451 void
|
Chris@0
|
452 MainWindow::setupEditMenu()
|
Chris@0
|
453 {
|
Chris@0
|
454 if (m_mainMenusCreated) return;
|
Chris@0
|
455
|
Chris@0
|
456 QMenu *menu = menuBar()->addMenu(tr("&Edit"));
|
Chris@0
|
457 menu->setTearOffEnabled(true);
|
Chris@0
|
458 CommandHistory::getInstance()->registerMenu(menu);
|
Chris@126
|
459 menu->addSeparator();
|
Chris@126
|
460
|
Chris@254
|
461 m_keyReference->setCategory
|
Chris@254
|
462 (tr("Selection Strip Mouse Actions"));
|
Chris@254
|
463 m_keyReference->registerShortcut
|
Chris@254
|
464 (tr("Jump"), tr("Left"),
|
Chris@254
|
465 tr("Click left button to move the playback position to a time"));
|
Chris@254
|
466 m_keyReference->registerShortcut
|
Chris@254
|
467 (tr("Select"), tr("Left"),
|
Chris@254
|
468 tr("Click left button and drag to select a region of time"));
|
Chris@254
|
469 m_keyReference->registerShortcut
|
Chris@254
|
470 (tr("Select Note Duration"), tr("Double-Click Left"),
|
Chris@254
|
471 tr("Double-click left button to select the region of time corresponding to a note"));
|
Chris@254
|
472
|
Chris@126
|
473 QToolBar *toolbar = addToolBar(tr("Tools Toolbar"));
|
Chris@126
|
474
|
Chris@126
|
475 CommandHistory::getInstance()->registerToolbar(toolbar);
|
Chris@126
|
476
|
Chris@250
|
477 QActionGroup *group = new QActionGroup(this);
|
Chris@250
|
478
|
Chris@250
|
479 IconLoader il;
|
Chris@250
|
480
|
Chris@126
|
481 m_keyReference->setCategory(tr("Tool Selection"));
|
Chris@126
|
482 QAction *action = toolbar->addAction(il.load("navigate"),
|
Chris@126
|
483 tr("Navigate"));
|
Chris@126
|
484 action->setCheckable(true);
|
Chris@126
|
485 action->setChecked(true);
|
Chris@126
|
486 action->setShortcut(tr("1"));
|
Chris@126
|
487 action->setStatusTip(tr("Navigate"));
|
Chris@126
|
488 connect(action, SIGNAL(triggered()), this, SLOT(toolNavigateSelected()));
|
Chris@126
|
489 connect(this, SIGNAL(replacedDocument()), action, SLOT(trigger()));
|
Chris@126
|
490 group->addAction(action);
|
Chris@126
|
491 menu->addAction(action);
|
Chris@126
|
492 m_keyReference->registerShortcut(action);
|
Chris@126
|
493
|
Chris@250
|
494 m_keyReference->setCategory
|
Chris@250
|
495 (tr("Navigate Tool Mouse Actions"));
|
Chris@250
|
496 m_keyReference->registerShortcut
|
Chris@250
|
497 (tr("Navigate"), tr("Left"),
|
Chris@250
|
498 tr("Click left button and drag to move around"));
|
Chris@250
|
499 m_keyReference->registerShortcut
|
Chris@250
|
500 (tr("Re-Analyse Area"), tr("Shift+Left"),
|
Chris@250
|
501 tr("Shift-click left button and drag to define a specific pitch and time range to re-analyse"));
|
Chris@250
|
502 m_keyReference->registerShortcut
|
Chris@250
|
503 (tr("Edit"), tr("Double-Click Left"),
|
Chris@250
|
504 tr("Double-click left button on an item to edit it"));
|
Chris@392
|
505
|
Chris@250
|
506 m_keyReference->setCategory(tr("Tool Selection"));
|
Chris@126
|
507 action = toolbar->addAction(il.load("move"),
|
Chris@126
|
508 tr("Edit"));
|
Chris@126
|
509 action->setCheckable(true);
|
Chris@126
|
510 action->setShortcut(tr("2"));
|
Chris@126
|
511 action->setStatusTip(tr("Edit with Note Intelligence"));
|
Chris@126
|
512 connect(action, SIGNAL(triggered()), this, SLOT(toolEditSelected()));
|
Chris@126
|
513 group->addAction(action);
|
Chris@126
|
514 menu->addAction(action);
|
Chris@126
|
515 m_keyReference->registerShortcut(action);
|
Chris@126
|
516
|
Chris@250
|
517 m_keyReference->setCategory
|
Chris@250
|
518 (tr("Note Edit Tool Mouse Actions"));
|
Chris@250
|
519 m_keyReference->registerShortcut
|
Chris@250
|
520 (tr("Adjust Pitch"), tr("Left"),
|
Chris@250
|
521 tr("Click left button on the main part of a note and drag to move it up or down"));
|
Chris@250
|
522 m_keyReference->registerShortcut
|
Chris@250
|
523 (tr("Split"), tr("Left"),
|
Chris@250
|
524 tr("Click left button on the bottom edge of a note to split it at the click point"));
|
Chris@250
|
525 m_keyReference->registerShortcut
|
Chris@250
|
526 (tr("Resize"), tr("Left"),
|
Chris@250
|
527 tr("Click left button on the left or right edge of a note and drag to change the time or duration of the note"));
|
Chris@250
|
528 m_keyReference->registerShortcut
|
Chris@250
|
529 (tr("Erase"), tr("Shift+Left"),
|
Chris@250
|
530 tr("Shift-click left button on a note to remove it"));
|
Chris@250
|
531
|
Chris@250
|
532
|
Chris@126
|
533 /* Remove for now...
|
Chris@126
|
534
|
Chris@250
|
535 m_keyReference->setCategory(tr("Tool Selection"));
|
Chris@126
|
536 action = toolbar->addAction(il.load("notes"),
|
Chris@126
|
537 tr("Free Edit"));
|
Chris@126
|
538 action->setCheckable(true);
|
Chris@126
|
539 action->setShortcut(tr("3"));
|
Chris@126
|
540 action->setStatusTip(tr("Free Edit"));
|
Chris@126
|
541 connect(action, SIGNAL(triggered()), this, SLOT(toolFreeEditSelected()));
|
Chris@126
|
542 group->addAction(action);
|
Chris@126
|
543 m_keyReference->registerShortcut(action);
|
Chris@126
|
544 */
|
Chris@142
|
545
|
Chris@142
|
546 menu->addSeparator();
|
Chris@142
|
547
|
Chris@143
|
548 m_keyReference->setCategory(tr("Selection"));
|
Chris@143
|
549
|
Chris@143
|
550 action = new QAction(tr("Select &All"), this);
|
Chris@143
|
551 action->setShortcut(tr("Ctrl+A"));
|
Chris@143
|
552 action->setStatusTip(tr("Select the whole duration of the current session"));
|
Chris@143
|
553 connect(action, SIGNAL(triggered()), this, SLOT(selectAll()));
|
Chris@143
|
554 connect(this, SIGNAL(canSelect(bool)), action, SLOT(setEnabled(bool)));
|
Chris@143
|
555 m_keyReference->registerShortcut(action);
|
Chris@143
|
556 menu->addAction(action);
|
Chris@143
|
557 m_rightButtonMenu->addAction(action);
|
Chris@143
|
558
|
Chris@287
|
559 action = new QAction(tr("C&lear Selection"), this);
|
Chris@211
|
560 action->setShortcuts(QList<QKeySequence>()
|
Chris@211
|
561 << QKeySequence(tr("Esc"))
|
Chris@211
|
562 << QKeySequence(tr("Ctrl+Esc")));
|
Chris@211
|
563 action->setStatusTip(tr("Clear the selection and abandon any pending pitch choices in it"));
|
Chris@194
|
564 connect(action, SIGNAL(triggered()), this, SLOT(abandonSelection()));
|
Chris@143
|
565 connect(this, SIGNAL(canClearSelection(bool)), action, SLOT(setEnabled(bool)));
|
Chris@143
|
566 m_keyReference->registerShortcut(action);
|
Chris@211
|
567 m_keyReference->registerAlternativeShortcut(action, QKeySequence(tr("Ctrl+Esc")));
|
Chris@143
|
568 menu->addAction(action);
|
Chris@143
|
569 m_rightButtonMenu->addAction(action);
|
Chris@143
|
570
|
Chris@143
|
571 menu->addSeparator();
|
Chris@189
|
572 m_rightButtonMenu->addSeparator();
|
Chris@143
|
573
|
Chris@189
|
574 m_keyReference->setCategory(tr("Pitch Track"));
|
Chris@211
|
575
|
Chris@211
|
576 action = new QAction(tr("Choose Higher Pitch"), this);
|
Chris@211
|
577 action->setShortcut(tr("Ctrl+Up"));
|
Chris@211
|
578 action->setStatusTip(tr("Move pitches up an octave, or to the next higher pitch candidate"));
|
Chris@211
|
579 m_keyReference->registerShortcut(action);
|
Chris@211
|
580 connect(action, SIGNAL(triggered()), this, SLOT(switchPitchUp()));
|
Chris@211
|
581 connect(this, SIGNAL(canClearSelection(bool)), action, SLOT(setEnabled(bool)));
|
Chris@211
|
582 menu->addAction(action);
|
Chris@211
|
583 m_rightButtonMenu->addAction(action);
|
Chris@211
|
584
|
Chris@211
|
585 action = new QAction(tr("Choose Lower Pitch"), this);
|
Chris@211
|
586 action->setShortcut(tr("Ctrl+Down"));
|
Chris@211
|
587 action->setStatusTip(tr("Move pitches down an octave, or to the next lower pitch candidate"));
|
Chris@211
|
588 m_keyReference->registerShortcut(action);
|
Chris@211
|
589 connect(action, SIGNAL(triggered()), this, SLOT(switchPitchDown()));
|
Chris@211
|
590 connect(this, SIGNAL(canClearSelection(bool)), action, SLOT(setEnabled(bool)));
|
Chris@211
|
591 menu->addAction(action);
|
Chris@211
|
592 m_rightButtonMenu->addAction(action);
|
Chris@189
|
593
|
Chris@187
|
594 m_showCandidatesAction = new QAction(tr("Show Pitch Candidates"), this);
|
Chris@187
|
595 m_showCandidatesAction->setShortcut(tr("Ctrl+Return"));
|
Chris@189
|
596 m_showCandidatesAction->setStatusTip(tr("Toggle the display of alternative pitch candidates for the selected region"));
|
Chris@189
|
597 m_keyReference->registerShortcut(m_showCandidatesAction);
|
Chris@187
|
598 connect(m_showCandidatesAction, SIGNAL(triggered()), this, SLOT(togglePitchCandidates()));
|
Chris@187
|
599 connect(this, SIGNAL(canClearSelection(bool)), m_showCandidatesAction, SLOT(setEnabled(bool)));
|
Chris@187
|
600 menu->addAction(m_showCandidatesAction);
|
Chris@189
|
601 m_rightButtonMenu->addAction(m_showCandidatesAction);
|
Chris@187
|
602
|
Chris@287
|
603 action = new QAction(tr("Remove Pitches"), this);
|
matthiasm@327
|
604 action->setShortcut(tr("Ctrl+Backspace"));
|
Chris@211
|
605 action->setStatusTip(tr("Remove all pitch estimates within the selected region, making it unvoiced"));
|
Chris@189
|
606 m_keyReference->registerShortcut(action);
|
Chris@187
|
607 connect(action, SIGNAL(triggered()), this, SLOT(clearPitches()));
|
Chris@167
|
608 connect(this, SIGNAL(canClearSelection(bool)), action, SLOT(setEnabled(bool)));
|
Chris@167
|
609 menu->addAction(action);
|
Chris@189
|
610 m_rightButtonMenu->addAction(action);
|
Chris@237
|
611
|
Chris@237
|
612 menu->addSeparator();
|
Chris@237
|
613 m_rightButtonMenu->addSeparator();
|
Chris@237
|
614
|
matthiasm@327
|
615 m_keyReference->setCategory(tr("Note Track"));
|
matthiasm@327
|
616
|
Chris@287
|
617 action = new QAction(tr("Split Note"), this);
|
matthiasm@327
|
618 action->setShortcut(tr("/"));
|
Chris@240
|
619 action->setStatusTip(tr("Split the note at the current playback position into two"));
|
Chris@237
|
620 m_keyReference->registerShortcut(action);
|
Chris@240
|
621 connect(action, SIGNAL(triggered()), this, SLOT(splitNote()));
|
Chris@240
|
622 connect(this, SIGNAL(canExportNotes(bool)), action, SLOT(setEnabled(bool)));
|
Chris@237
|
623 menu->addAction(action);
|
Chris@237
|
624 m_rightButtonMenu->addAction(action);
|
Chris@238
|
625
|
Chris@287
|
626 action = new QAction(tr("Merge Notes"), this);
|
matthiasm@327
|
627 action->setShortcut(tr("\\"));
|
Chris@238
|
628 action->setStatusTip(tr("Merge all notes within the selected region into a single note"));
|
Chris@238
|
629 m_keyReference->registerShortcut(action);
|
Chris@238
|
630 connect(action, SIGNAL(triggered()), this, SLOT(mergeNotes()));
|
Chris@238
|
631 connect(this, SIGNAL(canSnapNotes(bool)), action, SLOT(setEnabled(bool)));
|
Chris@238
|
632 menu->addAction(action);
|
Chris@238
|
633 m_rightButtonMenu->addAction(action);
|
matthiasm@292
|
634
|
matthiasm@292
|
635 action = new QAction(tr("Delete Notes"), this);
|
matthiasm@327
|
636 action->setShortcut(tr("Backspace"));
|
matthiasm@327
|
637 action->setStatusTip(tr("Delete all notes within the selected region"));
|
matthiasm@292
|
638 m_keyReference->registerShortcut(action);
|
matthiasm@292
|
639 connect(action, SIGNAL(triggered()), this, SLOT(deleteNotes()));
|
matthiasm@292
|
640 connect(this, SIGNAL(canSnapNotes(bool)), action, SLOT(setEnabled(bool)));
|
matthiasm@292
|
641 menu->addAction(action);
|
matthiasm@292
|
642 m_rightButtonMenu->addAction(action);
|
Chris@238
|
643
|
Chris@240
|
644 action = new QAction(tr("Form Note from Selection"), this);
|
matthiasm@327
|
645 action->setShortcut(tr("="));
|
Chris@240
|
646 action->setStatusTip(tr("Form a note spanning the selected region, splitting any existing notes at its boundaries"));
|
Chris@240
|
647 m_keyReference->registerShortcut(action);
|
Chris@240
|
648 connect(action, SIGNAL(triggered()), this, SLOT(formNoteFromSelection()));
|
Chris@240
|
649 connect(this, SIGNAL(canSnapNotes(bool)), action, SLOT(setEnabled(bool)));
|
Chris@240
|
650 menu->addAction(action);
|
Chris@240
|
651 m_rightButtonMenu->addAction(action);
|
Chris@247
|
652
|
Chris@238
|
653 action = new QAction(tr("Snap Notes to Pitch Track"), this);
|
Chris@238
|
654 action->setStatusTip(tr("Set notes within the selected region to the median frequency of their underlying pitches, or remove them if there are no underlying pitches"));
|
matthiasm@327
|
655 // m_keyReference->registerShortcut(action);
|
Chris@238
|
656 connect(action, SIGNAL(triggered()), this, SLOT(snapNotesToPitches()));
|
Chris@238
|
657 connect(this, SIGNAL(canSnapNotes(bool)), action, SLOT(setEnabled(bool)));
|
Chris@238
|
658 menu->addAction(action);
|
Chris@238
|
659 m_rightButtonMenu->addAction(action);
|
Chris@0
|
660 }
|
Chris@0
|
661
|
Chris@0
|
662 void
|
Chris@0
|
663 MainWindow::setupViewMenu()
|
Chris@0
|
664 {
|
Chris@0
|
665 if (m_mainMenusCreated) return;
|
Chris@0
|
666
|
Chris@0
|
667 IconLoader il;
|
Chris@0
|
668
|
Chris@0
|
669 QAction *action = 0;
|
Chris@0
|
670
|
Chris@0
|
671 m_keyReference->setCategory(tr("Panning and Navigation"));
|
Chris@0
|
672
|
Chris@0
|
673 QMenu *menu = menuBar()->addMenu(tr("&View"));
|
Chris@0
|
674 menu->setTearOffEnabled(true);
|
Chris@300
|
675 action = new QAction(tr("Peek &Left"), this);
|
Chris@300
|
676 action->setShortcut(tr("Alt+Left"));
|
Chris@300
|
677 action->setStatusTip(tr("Scroll the current pane to the left without changing the play position"));
|
Chris@0
|
678 connect(action, SIGNAL(triggered()), this, SLOT(scrollLeft()));
|
Chris@0
|
679 connect(this, SIGNAL(canScroll(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
680 m_keyReference->registerShortcut(action);
|
Chris@0
|
681 menu->addAction(action);
|
gyorgyf@27
|
682
|
Chris@300
|
683 action = new QAction(tr("Peek &Right"), this);
|
Chris@300
|
684 action->setShortcut(tr("Alt+Right"));
|
Chris@300
|
685 action->setStatusTip(tr("Scroll the current pane to the right without changing the play position"));
|
Chris@0
|
686 connect(action, SIGNAL(triggered()), this, SLOT(scrollRight()));
|
Chris@0
|
687 connect(this, SIGNAL(canScroll(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
688 m_keyReference->registerShortcut(action);
|
Chris@0
|
689 menu->addAction(action);
|
matthiasm@283
|
690
|
Chris@0
|
691 menu->addSeparator();
|
Chris@0
|
692
|
Chris@0
|
693 m_keyReference->setCategory(tr("Zoom"));
|
Chris@0
|
694
|
Chris@0
|
695 action = new QAction(il.load("zoom-in"),
|
Chris@0
|
696 tr("Zoom &In"), this);
|
Chris@0
|
697 action->setShortcut(tr("Up"));
|
Chris@0
|
698 action->setStatusTip(tr("Increase the zoom level"));
|
Chris@0
|
699 connect(action, SIGNAL(triggered()), this, SLOT(zoomIn()));
|
Chris@0
|
700 connect(this, SIGNAL(canZoom(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
701 m_keyReference->registerShortcut(action);
|
Chris@0
|
702 menu->addAction(action);
|
gyorgyf@27
|
703
|
Chris@0
|
704 action = new QAction(il.load("zoom-out"),
|
Chris@0
|
705 tr("Zoom &Out"), this);
|
Chris@0
|
706 action->setShortcut(tr("Down"));
|
Chris@0
|
707 action->setStatusTip(tr("Decrease the zoom level"));
|
Chris@0
|
708 connect(action, SIGNAL(triggered()), this, SLOT(zoomOut()));
|
Chris@0
|
709 connect(this, SIGNAL(canZoom(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
710 m_keyReference->registerShortcut(action);
|
Chris@0
|
711 menu->addAction(action);
|
gyorgyf@27
|
712
|
Chris@0
|
713 action = new QAction(tr("Restore &Default Zoom"), this);
|
Chris@0
|
714 action->setStatusTip(tr("Restore the zoom level to the default"));
|
Chris@0
|
715 connect(action, SIGNAL(triggered()), this, SLOT(zoomDefault()));
|
Chris@0
|
716 connect(this, SIGNAL(canZoom(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
717 menu->addAction(action);
|
Chris@0
|
718
|
Chris@0
|
719 action = new QAction(il.load("zoom-fit"),
|
Chris@0
|
720 tr("Zoom to &Fit"), this);
|
Chris@0
|
721 action->setShortcut(tr("F"));
|
Chris@0
|
722 action->setStatusTip(tr("Zoom to show the whole file"));
|
Chris@0
|
723 connect(action, SIGNAL(triggered()), this, SLOT(zoomToFit()));
|
Chris@0
|
724 connect(this, SIGNAL(canZoom(bool)), action, SLOT(setEnabled(bool)));
|
Chris@0
|
725 m_keyReference->registerShortcut(action);
|
Chris@0
|
726 menu->addAction(action);
|
Chris@227
|
727
|
Chris@227
|
728 menu->addSeparator();
|
Chris@227
|
729
|
Chris@227
|
730 action = new QAction(tr("Set Displayed Fre&quency Range..."), this);
|
Chris@227
|
731 action->setStatusTip(tr("Set the minimum and maximum frequencies in the visible display"));
|
Chris@227
|
732 connect(action, SIGNAL(triggered()), this, SLOT(editDisplayExtents()));
|
Chris@227
|
733 menu->addAction(action);
|
Chris@0
|
734 }
|
Chris@0
|
735
|
Chris@0
|
736 void
|
matthiasm@317
|
737 MainWindow::setupAnalysisMenu()
|
matthiasm@317
|
738 {
|
matthiasm@317
|
739 if (m_mainMenusCreated) return;
|
matthiasm@317
|
740
|
matthiasm@317
|
741 IconLoader il;
|
matthiasm@317
|
742
|
matthiasm@317
|
743 QAction *action = 0;
|
matthiasm@317
|
744
|
matthiasm@317
|
745 QMenu *menu = menuBar()->addMenu(tr("&Analysis"));
|
matthiasm@317
|
746 menu->setTearOffEnabled(true);
|
matthiasm@317
|
747
|
Chris@323
|
748 QSettings settings;
|
Chris@323
|
749 settings.beginGroup("Analyser");
|
Chris@323
|
750 bool autoAnalyse = settings.value("auto-analysis", true).toBool();
|
Chris@323
|
751 bool precise = settings.value("precision-analysis", false).toBool();
|
matthiasm@345
|
752 bool lowamp = settings.value("lowamp-analysis", true).toBool();
|
matthiasm@423
|
753 bool onset = settings.value("onset-analysis", true).toBool();
|
matthiasm@423
|
754 bool prune = settings.value("prune-analysis", true).toBool();
|
Chris@323
|
755 settings.endGroup();
|
Chris@323
|
756
|
matthiasm@333
|
757 action = new QAction(tr("Auto-Analyse &New Audio"), this);
|
matthiasm@333
|
758 action->setStatusTip(tr("Automatically trigger analysis upon opening of a new audio file."));
|
matthiasm@317
|
759 action->setCheckable(true);
|
Chris@323
|
760 action->setChecked(autoAnalyse);
|
Chris@323
|
761 connect(action, SIGNAL(triggered()), this, SLOT(autoAnalysisToggled()));
|
matthiasm@317
|
762 menu->addAction(action);
|
matthiasm@317
|
763
|
Chris@421
|
764 action = new QAction(tr("&Analyse Now!"), this);
|
Chris@421
|
765 action->setStatusTip(tr("Trigger analysis of pitches and notes. (This will delete all existing pitches and notes.)"));
|
Chris@421
|
766 connect(action, SIGNAL(triggered()), this, SLOT(analyseNow()));
|
Chris@421
|
767 menu->addAction(action);
|
Chris@421
|
768 m_keyReference->registerShortcut(action);
|
Chris@421
|
769
|
Chris@421
|
770 menu->addSeparator();
|
Chris@421
|
771
|
matthiasm@333
|
772 action = new QAction(tr("&Unbiased Timing (slow)"), this);
|
matthiasm@333
|
773 action->setStatusTip(tr("Use a symmetric window in YIN to remove frequency-dependent timing bias. (This is slow!)"));
|
matthiasm@317
|
774 action->setCheckable(true);
|
Chris@323
|
775 action->setChecked(precise);
|
Chris@323
|
776 connect(action, SIGNAL(triggered()), this, SLOT(precisionAnalysisToggled()));
|
matthiasm@317
|
777 menu->addAction(action);
|
matthiasm@345
|
778
|
matthiasm@348
|
779 action = new QAction(tr("&Penalise Soft Pitches"), this);
|
matthiasm@345
|
780 action->setStatusTip(tr("Reduce the likelihood of detecting a pitch when the signal has low amplitude."));
|
matthiasm@345
|
781 action->setCheckable(true);
|
matthiasm@345
|
782 action->setChecked(lowamp);
|
matthiasm@345
|
783 connect(action, SIGNAL(triggered()), this, SLOT(lowampAnalysisToggled()));
|
matthiasm@345
|
784 menu->addAction(action);
|
matthiasm@345
|
785
|
matthiasm@423
|
786 action = new QAction(tr("&High Onset Sensitivity"), this);
|
matthiasm@422
|
787 action->setStatusTip(tr("Increase likelihood of separating notes, especially consecutive notes at the same pitch."));
|
matthiasm@422
|
788 action->setCheckable(true);
|
matthiasm@423
|
789 action->setChecked(onset);
|
matthiasm@423
|
790 connect(action, SIGNAL(triggered()), this, SLOT(onsetAnalysisToggled()));
|
matthiasm@422
|
791 menu->addAction(action);
|
matthiasm@422
|
792
|
matthiasm@422
|
793 action = new QAction(tr("&Drop Short Notes"), this);
|
matthiasm@422
|
794 action->setStatusTip(tr("Duration-based pruning: automatic note estimator will not output notes of less than 100ms duration."));
|
matthiasm@422
|
795 action->setCheckable(true);
|
matthiasm@423
|
796 action->setChecked(prune);
|
matthiasm@423
|
797 connect(action, SIGNAL(triggered()), this, SLOT(pruneAnalysisToggled()));
|
matthiasm@422
|
798 menu->addAction(action);
|
matthiasm@422
|
799
|
Chris@421
|
800 menu->addSeparator();
|
Chris@421
|
801
|
Chris@421
|
802 action = new QAction(tr("Reset Options to Defaults"), this);
|
Chris@421
|
803 action->setStatusTip(tr("Reset all of the Analyse menu options to their default settings."));
|
Chris@421
|
804 connect(action, SIGNAL(triggered()), this, SLOT(resetAnalyseOptions()));
|
Chris@421
|
805 menu->addAction(action);
|
Chris@323
|
806 }
|
Chris@323
|
807
|
Chris@323
|
808 void
|
Chris@323
|
809 MainWindow::autoAnalysisToggled()
|
Chris@323
|
810 {
|
Chris@323
|
811 QAction *a = qobject_cast<QAction *>(sender());
|
Chris@323
|
812 if (!a) return;
|
Chris@323
|
813
|
Chris@323
|
814 bool set = a->isChecked();
|
Chris@323
|
815
|
Chris@323
|
816 QSettings settings;
|
Chris@323
|
817 settings.beginGroup("Analyser");
|
Chris@323
|
818 settings.setValue("auto-analysis", set);
|
Chris@323
|
819 settings.endGroup();
|
Chris@323
|
820 }
|
Chris@323
|
821
|
Chris@323
|
822 void
|
Chris@323
|
823 MainWindow::precisionAnalysisToggled()
|
Chris@323
|
824 {
|
Chris@323
|
825 QAction *a = qobject_cast<QAction *>(sender());
|
Chris@323
|
826 if (!a) return;
|
Chris@323
|
827
|
Chris@323
|
828 bool set = a->isChecked();
|
Chris@323
|
829
|
Chris@323
|
830 QSettings settings;
|
Chris@323
|
831 settings.beginGroup("Analyser");
|
Chris@323
|
832 settings.setValue("precision-analysis", set);
|
Chris@323
|
833 settings.endGroup();
|
Chris@323
|
834
|
Chris@326
|
835 // don't run analyseNow() automatically -- it's a destructive operation
|
matthiasm@317
|
836 }
|
matthiasm@317
|
837
|
matthiasm@317
|
838 void
|
matthiasm@345
|
839 MainWindow::lowampAnalysisToggled()
|
matthiasm@345
|
840 {
|
matthiasm@345
|
841 QAction *a = qobject_cast<QAction *>(sender());
|
matthiasm@345
|
842 if (!a) return;
|
matthiasm@345
|
843
|
matthiasm@345
|
844 bool set = a->isChecked();
|
matthiasm@345
|
845
|
matthiasm@345
|
846 QSettings settings;
|
matthiasm@345
|
847 settings.beginGroup("Analyser");
|
matthiasm@345
|
848 settings.setValue("lowamp-analysis", set);
|
matthiasm@345
|
849 settings.endGroup();
|
matthiasm@345
|
850
|
matthiasm@345
|
851 // don't run analyseNow() automatically -- it's a destructive operation
|
matthiasm@345
|
852 }
|
matthiasm@345
|
853
|
matthiasm@345
|
854 void
|
matthiasm@423
|
855 MainWindow::onsetAnalysisToggled()
|
matthiasm@423
|
856 {
|
matthiasm@423
|
857 QAction *a = qobject_cast<QAction *>(sender());
|
matthiasm@423
|
858 if (!a) return;
|
matthiasm@423
|
859
|
matthiasm@423
|
860 bool set = a->isChecked();
|
matthiasm@423
|
861
|
matthiasm@423
|
862 QSettings settings;
|
matthiasm@423
|
863 settings.beginGroup("Analyser");
|
matthiasm@423
|
864 settings.setValue("onset-analysis", set);
|
matthiasm@423
|
865 settings.endGroup();
|
matthiasm@423
|
866
|
matthiasm@423
|
867 // don't run analyseNow() automatically -- it's a destructive operation
|
matthiasm@423
|
868 }
|
matthiasm@423
|
869
|
matthiasm@423
|
870 void
|
matthiasm@423
|
871 MainWindow::pruneAnalysisToggled()
|
matthiasm@423
|
872 {
|
matthiasm@423
|
873 QAction *a = qobject_cast<QAction *>(sender());
|
matthiasm@423
|
874 if (!a) return;
|
matthiasm@423
|
875
|
matthiasm@423
|
876 bool set = a->isChecked();
|
matthiasm@423
|
877
|
matthiasm@423
|
878 QSettings settings;
|
matthiasm@423
|
879 settings.beginGroup("Analyser");
|
matthiasm@423
|
880 settings.setValue("prune-analysis", set);
|
matthiasm@423
|
881 settings.endGroup();
|
matthiasm@423
|
882
|
matthiasm@423
|
883 // don't run analyseNow() automatically -- it's a destructive operation
|
matthiasm@423
|
884 }
|
matthiasm@423
|
885
|
matthiasm@423
|
886 void
|
Chris@0
|
887 MainWindow::setupHelpMenu()
|
Chris@0
|
888 {
|
Chris@0
|
889 QMenu *menu = menuBar()->addMenu(tr("&Help"));
|
Chris@0
|
890 menu->setTearOffEnabled(true);
|
Chris@0
|
891
|
Chris@0
|
892 m_keyReference->setCategory(tr("Help"));
|
Chris@0
|
893
|
Chris@0
|
894 IconLoader il;
|
Chris@0
|
895
|
Chris@1
|
896 QString name = QApplication::applicationName();
|
matthiasm@367
|
897 QAction *action;
|
matthiasm@367
|
898
|
Chris@0
|
899 action = new QAction(tr("&Key and Mouse Reference"), this);
|
Chris@0
|
900 action->setShortcut(tr("F2"));
|
Chris@1
|
901 action->setStatusTip(tr("Open a window showing the keystrokes you can use in %1").arg(name));
|
Chris@0
|
902 connect(action, SIGNAL(triggered()), this, SLOT(keyReference()));
|
Chris@0
|
903 m_keyReference->registerShortcut(action);
|
Chris@0
|
904 menu->addAction(action);
|
matthiasm@369
|
905
|
matthiasm@369
|
906 action = new QAction(il.load("help"),
|
matthiasm@369
|
907 tr("&Help Reference"), this);
|
matthiasm@369
|
908 action->setShortcut(tr("F1"));
|
matthiasm@369
|
909 action->setStatusTip(tr("Open the %1 reference manual").arg(name));
|
matthiasm@369
|
910 connect(action, SIGNAL(triggered()), this, SLOT(help()));
|
matthiasm@369
|
911 m_keyReference->registerShortcut(action);
|
matthiasm@369
|
912 menu->addAction(action);
|
matthiasm@369
|
913
|
Chris@0
|
914
|
Chris@1
|
915 action = new QAction(tr("%1 on the &Web").arg(name), this);
|
Chris@1
|
916 action->setStatusTip(tr("Open the %1 website").arg(name));
|
Chris@0
|
917 connect(action, SIGNAL(triggered()), this, SLOT(website()));
|
Chris@0
|
918 menu->addAction(action);
|
Chris@0
|
919
|
Chris@1
|
920 action = new QAction(tr("&About %1").arg(name), this);
|
Chris@1
|
921 action->setStatusTip(tr("Show information about %1").arg(name));
|
Chris@0
|
922 connect(action, SIGNAL(triggered()), this, SLOT(about()));
|
Chris@0
|
923 menu->addAction(action);
|
Chris@0
|
924 }
|
Chris@0
|
925
|
Chris@0
|
926 void
|
Chris@0
|
927 MainWindow::setupRecentFilesMenu()
|
Chris@0
|
928 {
|
Chris@0
|
929 m_recentFilesMenu->clear();
|
Chris@0
|
930 vector<QString> files = m_recentFiles.getRecent();
|
Chris@0
|
931 for (size_t i = 0; i < files.size(); ++i) {
|
Chris@50
|
932 QAction *action = new QAction(files[i], this);
|
Chris@50
|
933 connect(action, SIGNAL(triggered()), this, SLOT(openRecentFile()));
|
Chris@0
|
934 if (i == 0) {
|
Chris@0
|
935 action->setShortcut(tr("Ctrl+R"));
|
Chris@0
|
936 m_keyReference->registerShortcut
|
Chris@0
|
937 (tr("Re-open"),
|
Chris@50
|
938 action->shortcut().toString(),
|
Chris@0
|
939 tr("Re-open the current or most recently opened file"));
|
Chris@0
|
940 }
|
Chris@50
|
941 m_recentFilesMenu->addAction(action);
|
Chris@0
|
942 }
|
Chris@0
|
943 }
|
Chris@0
|
944
|
Chris@0
|
945 void
|
Chris@0
|
946 MainWindow::setupToolbars()
|
Chris@0
|
947 {
|
Chris@0
|
948 m_keyReference->setCategory(tr("Playback and Transport Controls"));
|
Chris@0
|
949
|
Chris@0
|
950 IconLoader il;
|
Chris@0
|
951
|
Chris@0
|
952 QMenu *menu = m_playbackMenu = menuBar()->addMenu(tr("Play&back"));
|
Chris@0
|
953 menu->setTearOffEnabled(true);
|
Chris@0
|
954 m_rightButtonMenu->addSeparator();
|
Chris@0
|
955 m_rightButtonPlaybackMenu = m_rightButtonMenu->addMenu(tr("Playback"));
|
Chris@0
|
956
|
Chris@0
|
957 QToolBar *toolbar = addToolBar(tr("Playback Toolbar"));
|
Chris@0
|
958
|
Chris@0
|
959 QAction *rwdStartAction = toolbar->addAction(il.load("rewind-start"),
|
Chris@0
|
960 tr("Rewind to Start"));
|
Chris@0
|
961 rwdStartAction->setShortcut(tr("Home"));
|
Chris@0
|
962 rwdStartAction->setStatusTip(tr("Rewind to the start"));
|
Chris@0
|
963 connect(rwdStartAction, SIGNAL(triggered()), this, SLOT(rewindStart()));
|
Chris@0
|
964 connect(this, SIGNAL(canPlay(bool)), rwdStartAction, SLOT(setEnabled(bool)));
|
Chris@0
|
965
|
Chris@0
|
966 QAction *m_rwdAction = toolbar->addAction(il.load("rewind"),
|
Chris@0
|
967 tr("Rewind"));
|
Chris@300
|
968 m_rwdAction->setShortcut(tr("Left"));
|
Chris@300
|
969 m_rwdAction->setStatusTip(tr("Rewind to the previous one-second boundary"));
|
Chris@0
|
970 connect(m_rwdAction, SIGNAL(triggered()), this, SLOT(rewind()));
|
Chris@0
|
971 connect(this, SIGNAL(canRewind(bool)), m_rwdAction, SLOT(setEnabled(bool)));
|
Chris@0
|
972
|
Chris@300
|
973 setDefaultFfwdRwdStep(RealTime(1, 0));
|
Chris@300
|
974
|
Chris@0
|
975 QAction *playAction = toolbar->addAction(il.load("playpause"),
|
Chris@0
|
976 tr("Play / Pause"));
|
Chris@0
|
977 playAction->setCheckable(true);
|
Chris@0
|
978 playAction->setShortcut(tr("Space"));
|
Chris@0
|
979 playAction->setStatusTip(tr("Start or stop playback from the current position"));
|
Chris@0
|
980 connect(playAction, SIGNAL(triggered()), this, SLOT(play()));
|
Chris@0
|
981 connect(m_playSource, SIGNAL(playStatusChanged(bool)),
|
gyorgyf@27
|
982 playAction, SLOT(setChecked(bool)));
|
Chris@0
|
983 connect(this, SIGNAL(canPlay(bool)), playAction, SLOT(setEnabled(bool)));
|
Chris@0
|
984
|
Chris@0
|
985 m_ffwdAction = toolbar->addAction(il.load("ffwd"),
|
Chris@0
|
986 tr("Fast Forward"));
|
Chris@300
|
987 m_ffwdAction->setShortcut(tr("Right"));
|
Chris@300
|
988 m_ffwdAction->setStatusTip(tr("Fast-forward to the next one-second boundary"));
|
Chris@0
|
989 connect(m_ffwdAction, SIGNAL(triggered()), this, SLOT(ffwd()));
|
Chris@0
|
990 connect(this, SIGNAL(canFfwd(bool)), m_ffwdAction, SLOT(setEnabled(bool)));
|
Chris@0
|
991
|
Chris@0
|
992 QAction *ffwdEndAction = toolbar->addAction(il.load("ffwd-end"),
|
Chris@0
|
993 tr("Fast Forward to End"));
|
Chris@0
|
994 ffwdEndAction->setShortcut(tr("End"));
|
Chris@0
|
995 ffwdEndAction->setStatusTip(tr("Fast-forward to the end"));
|
Chris@0
|
996 connect(ffwdEndAction, SIGNAL(triggered()), this, SLOT(ffwdEnd()));
|
Chris@0
|
997 connect(this, SIGNAL(canPlay(bool)), ffwdEndAction, SLOT(setEnabled(bool)));
|
Chris@6
|
998
|
Chris@0
|
999 toolbar = addToolBar(tr("Play Mode Toolbar"));
|
Chris@0
|
1000
|
Chris@0
|
1001 QAction *psAction = toolbar->addAction(il.load("playselection"),
|
Chris@0
|
1002 tr("Constrain Playback to Selection"));
|
Chris@0
|
1003 psAction->setCheckable(true);
|
Chris@0
|
1004 psAction->setChecked(m_viewManager->getPlaySelectionMode());
|
Chris@0
|
1005 psAction->setShortcut(tr("s"));
|
Chris@0
|
1006 psAction->setStatusTip(tr("Constrain playback to the selected regions"));
|
Chris@0
|
1007 connect(m_viewManager, SIGNAL(playSelectionModeChanged(bool)),
|
Chris@0
|
1008 psAction, SLOT(setChecked(bool)));
|
Chris@0
|
1009 connect(psAction, SIGNAL(triggered()), this, SLOT(playSelectionToggled()));
|
Chris@0
|
1010 connect(this, SIGNAL(canPlaySelection(bool)), psAction, SLOT(setEnabled(bool)));
|
Chris@0
|
1011
|
Chris@0
|
1012 QAction *plAction = toolbar->addAction(il.load("playloop"),
|
Chris@0
|
1013 tr("Loop Playback"));
|
Chris@0
|
1014 plAction->setCheckable(true);
|
Chris@0
|
1015 plAction->setChecked(m_viewManager->getPlayLoopMode());
|
Chris@0
|
1016 plAction->setShortcut(tr("l"));
|
Chris@0
|
1017 plAction->setStatusTip(tr("Loop playback"));
|
Chris@0
|
1018 connect(m_viewManager, SIGNAL(playLoopModeChanged(bool)),
|
Chris@0
|
1019 plAction, SLOT(setChecked(bool)));
|
Chris@0
|
1020 connect(plAction, SIGNAL(triggered()), this, SLOT(playLoopToggled()));
|
Chris@0
|
1021 connect(this, SIGNAL(canPlay(bool)), plAction, SLOT(setEnabled(bool)));
|
Chris@0
|
1022
|
Chris@300
|
1023 QAction *oneLeftAction = new QAction(tr("&One Note Left"), this);
|
Chris@300
|
1024 oneLeftAction->setShortcut(tr("Ctrl+Left"));
|
Chris@300
|
1025 oneLeftAction->setStatusTip(tr("Move cursor to the preceding note (or silence) onset."));
|
Chris@300
|
1026 connect(oneLeftAction, SIGNAL(triggered()), this, SLOT(moveOneNoteLeft()));
|
Chris@300
|
1027 connect(this, SIGNAL(canScroll(bool)), oneLeftAction, SLOT(setEnabled(bool)));
|
Chris@300
|
1028
|
Chris@300
|
1029 QAction *oneRightAction = new QAction(tr("O&ne Note Right"), this);
|
Chris@300
|
1030 oneRightAction->setShortcut(tr("Ctrl+Right"));
|
Chris@300
|
1031 oneRightAction->setStatusTip(tr("Move cursor to the succeeding note (or silence)."));
|
Chris@300
|
1032 connect(oneRightAction, SIGNAL(triggered()), this, SLOT(moveOneNoteRight()));
|
Chris@300
|
1033 connect(this, SIGNAL(canScroll(bool)), oneRightAction, SLOT(setEnabled(bool)));
|
Chris@300
|
1034
|
Chris@300
|
1035 QAction *selectOneLeftAction = new QAction(tr("&Select One Note Left"), this);
|
Chris@300
|
1036 selectOneLeftAction->setShortcut(tr("Ctrl+Shift+Left"));
|
Chris@300
|
1037 selectOneLeftAction->setStatusTip(tr("Select to the preceding note (or silence) onset."));
|
Chris@300
|
1038 connect(selectOneLeftAction, SIGNAL(triggered()), this, SLOT(selectOneNoteLeft()));
|
Chris@300
|
1039 connect(this, SIGNAL(canScroll(bool)), selectOneLeftAction, SLOT(setEnabled(bool)));
|
Chris@300
|
1040
|
Chris@300
|
1041 QAction *selectOneRightAction = new QAction(tr("S&elect One Note Right"), this);
|
Chris@300
|
1042 selectOneRightAction->setShortcut(tr("Ctrl+Shift+Right"));
|
Chris@300
|
1043 selectOneRightAction->setStatusTip(tr("Select to the succeeding note (or silence)."));
|
Chris@300
|
1044 connect(selectOneRightAction, SIGNAL(triggered()), this, SLOT(selectOneNoteRight()));
|
Chris@300
|
1045 connect(this, SIGNAL(canScroll(bool)), selectOneRightAction, SLOT(setEnabled(bool)));
|
Chris@300
|
1046
|
Chris@0
|
1047 m_keyReference->registerShortcut(psAction);
|
Chris@0
|
1048 m_keyReference->registerShortcut(plAction);
|
Chris@0
|
1049 m_keyReference->registerShortcut(playAction);
|
Chris@0
|
1050 m_keyReference->registerShortcut(m_rwdAction);
|
Chris@0
|
1051 m_keyReference->registerShortcut(m_ffwdAction);
|
Chris@0
|
1052 m_keyReference->registerShortcut(rwdStartAction);
|
Chris@0
|
1053 m_keyReference->registerShortcut(ffwdEndAction);
|
Chris@300
|
1054 m_keyReference->registerShortcut(oneLeftAction);
|
Chris@300
|
1055 m_keyReference->registerShortcut(oneRightAction);
|
Chris@300
|
1056 m_keyReference->registerShortcut(selectOneLeftAction);
|
Chris@300
|
1057 m_keyReference->registerShortcut(selectOneRightAction);
|
Chris@0
|
1058
|
Chris@6
|
1059 menu->addAction(playAction);
|
Chris@0
|
1060 menu->addAction(psAction);
|
Chris@0
|
1061 menu->addAction(plAction);
|
Chris@0
|
1062 menu->addSeparator();
|
Chris@0
|
1063 menu->addAction(m_rwdAction);
|
Chris@0
|
1064 menu->addAction(m_ffwdAction);
|
Chris@0
|
1065 menu->addSeparator();
|
Chris@0
|
1066 menu->addAction(rwdStartAction);
|
Chris@0
|
1067 menu->addAction(ffwdEndAction);
|
Chris@0
|
1068 menu->addSeparator();
|
Chris@300
|
1069 menu->addAction(oneLeftAction);
|
Chris@300
|
1070 menu->addAction(oneRightAction);
|
Chris@300
|
1071 menu->addAction(selectOneLeftAction);
|
Chris@300
|
1072 menu->addAction(selectOneRightAction);
|
Chris@300
|
1073 menu->addSeparator();
|
Chris@0
|
1074
|
Chris@0
|
1075 m_rightButtonPlaybackMenu->addAction(playAction);
|
Chris@0
|
1076 m_rightButtonPlaybackMenu->addAction(psAction);
|
Chris@0
|
1077 m_rightButtonPlaybackMenu->addAction(plAction);
|
Chris@0
|
1078 m_rightButtonPlaybackMenu->addSeparator();
|
Chris@0
|
1079 m_rightButtonPlaybackMenu->addAction(m_rwdAction);
|
Chris@0
|
1080 m_rightButtonPlaybackMenu->addAction(m_ffwdAction);
|
Chris@0
|
1081 m_rightButtonPlaybackMenu->addSeparator();
|
Chris@0
|
1082 m_rightButtonPlaybackMenu->addAction(rwdStartAction);
|
Chris@0
|
1083 m_rightButtonPlaybackMenu->addAction(ffwdEndAction);
|
Chris@0
|
1084 m_rightButtonPlaybackMenu->addSeparator();
|
Chris@300
|
1085 m_rightButtonPlaybackMenu->addAction(oneLeftAction);
|
Chris@300
|
1086 m_rightButtonPlaybackMenu->addAction(oneRightAction);
|
Chris@300
|
1087 m_rightButtonPlaybackMenu->addAction(selectOneLeftAction);
|
Chris@300
|
1088 m_rightButtonPlaybackMenu->addAction(selectOneRightAction);
|
Chris@300
|
1089 m_rightButtonPlaybackMenu->addSeparator();
|
Chris@0
|
1090
|
Chris@0
|
1091 QAction *fastAction = menu->addAction(tr("Speed Up"));
|
Chris@0
|
1092 fastAction->setShortcut(tr("Ctrl+PgUp"));
|
Chris@0
|
1093 fastAction->setStatusTip(tr("Time-stretch playback to speed it up without changing pitch"));
|
Chris@0
|
1094 connect(fastAction, SIGNAL(triggered()), this, SLOT(speedUpPlayback()));
|
Chris@0
|
1095 connect(this, SIGNAL(canSpeedUpPlayback(bool)), fastAction, SLOT(setEnabled(bool)));
|
Chris@0
|
1096
|
Chris@0
|
1097 QAction *slowAction = menu->addAction(tr("Slow Down"));
|
Chris@0
|
1098 slowAction->setShortcut(tr("Ctrl+PgDown"));
|
Chris@0
|
1099 slowAction->setStatusTip(tr("Time-stretch playback to slow it down without changing pitch"));
|
Chris@0
|
1100 connect(slowAction, SIGNAL(triggered()), this, SLOT(slowDownPlayback()));
|
Chris@0
|
1101 connect(this, SIGNAL(canSlowDownPlayback(bool)), slowAction, SLOT(setEnabled(bool)));
|
Chris@0
|
1102
|
Chris@0
|
1103 QAction *normalAction = menu->addAction(tr("Restore Normal Speed"));
|
Chris@0
|
1104 normalAction->setShortcut(tr("Ctrl+Home"));
|
Chris@0
|
1105 normalAction->setStatusTip(tr("Restore non-time-stretched playback"));
|
Chris@0
|
1106 connect(normalAction, SIGNAL(triggered()), this, SLOT(restoreNormalPlayback()));
|
Chris@0
|
1107 connect(this, SIGNAL(canChangePlaybackSpeed(bool)), normalAction, SLOT(setEnabled(bool)));
|
Chris@0
|
1108
|
Chris@0
|
1109 m_keyReference->registerShortcut(fastAction);
|
Chris@0
|
1110 m_keyReference->registerShortcut(slowAction);
|
Chris@0
|
1111 m_keyReference->registerShortcut(normalAction);
|
Chris@0
|
1112
|
Chris@0
|
1113 m_rightButtonPlaybackMenu->addAction(fastAction);
|
Chris@0
|
1114 m_rightButtonPlaybackMenu->addAction(slowAction);
|
Chris@0
|
1115 m_rightButtonPlaybackMenu->addAction(normalAction);
|
Chris@6
|
1116
|
Chris@195
|
1117 toolbar = new QToolBar(tr("Playback Controls"));
|
Chris@195
|
1118 addToolBar(Qt::BottomToolBarArea, toolbar);
|
Chris@195
|
1119
|
Chris@6
|
1120 toolbar->addWidget(m_playSpeed);
|
Chris@6
|
1121 toolbar->addWidget(m_fader);
|
Chris@0
|
1122
|
Chris@128
|
1123 toolbar = addToolBar(tr("Show and Play"));
|
matthiasm@258
|
1124 addToolBar(Qt::BottomToolBarArea, toolbar);
|
Chris@144
|
1125
|
Chris@144
|
1126 m_showAudio = toolbar->addAction(il.load("waveform"), tr("Show Audio"));
|
Chris@144
|
1127 m_showAudio->setCheckable(true);
|
Chris@144
|
1128 connect(m_showAudio, SIGNAL(triggered()), this, SLOT(showAudioToggled()));
|
Chris@144
|
1129 connect(this, SIGNAL(canPlay(bool)), m_showAudio, SLOT(setEnabled(bool)));
|
Chris@144
|
1130
|
Chris@419
|
1131 m_audioLPW->setImageSize(m_viewManager->scalePixelSize(26));
|
Chris@414
|
1132 toolbar->addWidget(m_audioLPW);
|
Chris@414
|
1133
|
Chris@290
|
1134 // Pitch (f0)
|
Chris@290
|
1135 QLabel *spacer = new QLabel; // blank
|
Chris@419
|
1136 spacer->setFixedWidth(m_viewManager->scalePixelSize(30));
|
Chris@290
|
1137 toolbar->addWidget(spacer);
|
Chris@145
|
1138
|
Chris@144
|
1139 m_showPitch = toolbar->addAction(il.load("values"), tr("Show Pitch Track"));
|
Chris@144
|
1140 m_showPitch->setCheckable(true);
|
Chris@144
|
1141 connect(m_showPitch, SIGNAL(triggered()), this, SLOT(showPitchToggled()));
|
Chris@144
|
1142 connect(this, SIGNAL(canPlay(bool)), m_showPitch, SLOT(setEnabled(bool)));
|
Chris@144
|
1143
|
Chris@405
|
1144 if (m_withSonification) {
|
Chris@419
|
1145 m_pitchLPW->setImageSize(m_viewManager->scalePixelSize(26));
|
Chris@404
|
1146 toolbar->addWidget(m_pitchLPW);
|
matthiasm@366
|
1147 }
|
Chris@404
|
1148
|
Chris@290
|
1149 // Notes
|
Chris@290
|
1150 spacer = new QLabel;
|
Chris@419
|
1151 spacer->setFixedWidth(m_viewManager->scalePixelSize(30));
|
Chris@290
|
1152 toolbar->addWidget(spacer);
|
Chris@290
|
1153
|
Chris@144
|
1154 m_showNotes = toolbar->addAction(il.load("notes"), tr("Show Notes"));
|
Chris@144
|
1155 m_showNotes->setCheckable(true);
|
Chris@144
|
1156 connect(m_showNotes, SIGNAL(triggered()), this, SLOT(showNotesToggled()));
|
Chris@144
|
1157 connect(this, SIGNAL(canPlay(bool)), m_showNotes, SLOT(setEnabled(bool)));
|
justin@156
|
1158
|
Chris@405
|
1159 if (m_withSonification) {
|
Chris@419
|
1160 m_notesLPW->setImageSize(m_viewManager->scalePixelSize(26));
|
Chris@404
|
1161 toolbar->addWidget(m_notesLPW);
|
matthiasm@366
|
1162 }
|
justin@156
|
1163
|
justin@156
|
1164 // Spectrogram
|
Chris@290
|
1165 spacer = new QLabel;
|
Chris@419
|
1166 spacer->setFixedWidth(m_viewManager->scalePixelSize(30));
|
Chris@290
|
1167 toolbar->addWidget(spacer);
|
Chris@290
|
1168
|
matthiasm@366
|
1169 if (!m_withSpectrogram)
|
matthiasm@366
|
1170 {
|
matthiasm@366
|
1171 m_showSpect = new QAction(tr("Show Spectrogram"), this);
|
matthiasm@366
|
1172 } else {
|
matthiasm@366
|
1173 m_showSpect = toolbar->addAction(il.load("spectrogram"), tr("Show Spectrogram"));
|
matthiasm@366
|
1174 }
|
justin@156
|
1175 m_showSpect->setCheckable(true);
|
justin@156
|
1176 connect(m_showSpect, SIGNAL(triggered()), this, SLOT(showSpectToggled()));
|
justin@156
|
1177 connect(this, SIGNAL(canPlay(bool)), m_showSpect, SLOT(setEnabled(bool)));
|
Chris@128
|
1178
|
Chris@0
|
1179 Pane::registerShortcuts(*m_keyReference);
|
matthiasm@366
|
1180
|
Chris@405
|
1181 updateLayerStatuses();
|
Chris@0
|
1182 }
|
Chris@0
|
1183
|
matthiasm@281
|
1184
|
matthiasm@281
|
1185 void
|
matthiasm@281
|
1186 MainWindow::moveOneNoteRight()
|
matthiasm@281
|
1187 {
|
matthiasm@281
|
1188 // cerr << "MainWindow::moveOneNoteRight" << endl;
|
matthiasm@296
|
1189 moveByOneNote(true, false);
|
matthiasm@281
|
1190 }
|
matthiasm@281
|
1191
|
matthiasm@281
|
1192 void
|
matthiasm@281
|
1193 MainWindow::moveOneNoteLeft()
|
matthiasm@281
|
1194 {
|
matthiasm@281
|
1195 // cerr << "MainWindow::moveOneNoteLeft" << endl;
|
matthiasm@296
|
1196 moveByOneNote(false, false);
|
matthiasm@281
|
1197 }
|
matthiasm@281
|
1198
|
matthiasm@281
|
1199 void
|
matthiasm@283
|
1200 MainWindow::selectOneNoteRight()
|
matthiasm@283
|
1201 {
|
matthiasm@296
|
1202 moveByOneNote(true, true);
|
matthiasm@283
|
1203 }
|
matthiasm@283
|
1204
|
matthiasm@283
|
1205 void
|
matthiasm@283
|
1206 MainWindow::selectOneNoteLeft()
|
matthiasm@283
|
1207 {
|
matthiasm@296
|
1208 moveByOneNote(false, true);
|
matthiasm@283
|
1209 }
|
matthiasm@283
|
1210
|
matthiasm@283
|
1211
|
matthiasm@283
|
1212 void
|
matthiasm@296
|
1213 MainWindow::moveByOneNote(bool right, bool doSelect)
|
matthiasm@281
|
1214 {
|
Chris@399
|
1215 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
matthiasm@301
|
1216 cerr << "MainWindow::moveByOneNote startframe: " << frame << endl;
|
matthiasm@281
|
1217
|
matthiasm@304
|
1218 bool isAtSelectionBoundary = false;
|
matthiasm@304
|
1219 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
matthiasm@304
|
1220 if (!selections.empty()) {
|
matthiasm@304
|
1221 Selection sel = *selections.begin();
|
matthiasm@342
|
1222 isAtSelectionBoundary = (frame == sel.getStartFrame()) || (frame == sel.getEndFrame());
|
matthiasm@304
|
1223 }
|
matthiasm@304
|
1224 if (!doSelect || !isAtSelectionBoundary) {
|
matthiasm@296
|
1225 m_selectionAnchor = frame;
|
matthiasm@296
|
1226 }
|
matthiasm@296
|
1227
|
matthiasm@281
|
1228 Layer *layer = m_analyser->getLayer(Analyser::Notes);
|
matthiasm@281
|
1229 if (!layer) return;
|
matthiasm@281
|
1230
|
matthiasm@281
|
1231 FlexiNoteModel *model = qobject_cast<FlexiNoteModel *>(layer->getModel());
|
matthiasm@281
|
1232 if (!model) return;
|
matthiasm@281
|
1233
|
matthiasm@281
|
1234 FlexiNoteModel::PointList points = model->getPoints();
|
matthiasm@281
|
1235 if (points.empty()) return;
|
matthiasm@281
|
1236
|
matthiasm@281
|
1237 FlexiNoteModel::PointList::iterator i = points.begin();
|
Chris@399
|
1238 std::set<sv_frame_t> snapFrames;
|
matthiasm@281
|
1239 snapFrames.insert(0);
|
matthiasm@281
|
1240 while (i != points.end()) {
|
matthiasm@281
|
1241 snapFrames.insert(i->frame);
|
matthiasm@281
|
1242 snapFrames.insert(i->frame + i->duration + 1);
|
matthiasm@281
|
1243 ++i;
|
matthiasm@281
|
1244 }
|
Chris@399
|
1245 std::set<sv_frame_t>::iterator i2;
|
Chris@399
|
1246 if (snapFrames.find(frame) == snapFrames.end()) {
|
matthiasm@281
|
1247 // we're not on an existing snap point, so go to previous
|
matthiasm@281
|
1248 snapFrames.insert(frame);
|
matthiasm@281
|
1249 }
|
matthiasm@281
|
1250 i2 = snapFrames.find(frame);
|
Chris@399
|
1251 if (right) {
|
matthiasm@281
|
1252 i2++;
|
matthiasm@281
|
1253 if (i2 == snapFrames.end()) i2--;
|
matthiasm@281
|
1254 } else {
|
matthiasm@281
|
1255 if (i2 != snapFrames.begin()) i2--;
|
matthiasm@281
|
1256 }
|
matthiasm@281
|
1257 frame = *i2;
|
matthiasm@281
|
1258 m_viewManager->setPlaybackFrame(frame);
|
matthiasm@296
|
1259 if (doSelect) {
|
matthiasm@296
|
1260 Selection sel;
|
matthiasm@296
|
1261 if (frame > m_selectionAnchor) {
|
matthiasm@342
|
1262 sel = Selection(m_selectionAnchor, frame);
|
matthiasm@296
|
1263 } else {
|
matthiasm@342
|
1264 sel = Selection(frame, m_selectionAnchor);
|
matthiasm@296
|
1265 }
|
matthiasm@296
|
1266 m_viewManager->setSelection(sel);
|
matthiasm@296
|
1267 }
|
matthiasm@301
|
1268 cerr << "MainWindow::moveByOneNote endframe: " << frame << endl;
|
matthiasm@281
|
1269 }
|
matthiasm@281
|
1270
|
Chris@0
|
1271 void
|
Chris@70
|
1272 MainWindow::toolNavigateSelected()
|
Chris@70
|
1273 {
|
Chris@70
|
1274 m_viewManager->setToolMode(ViewManager::NavigateMode);
|
Chris@70
|
1275 m_intelligentActionOn = true;
|
Chris@70
|
1276 }
|
Chris@70
|
1277
|
Chris@70
|
1278 void
|
Chris@70
|
1279 MainWindow::toolEditSelected()
|
Chris@70
|
1280 {
|
matthiasm@294
|
1281 cerr << "MainWindow::toolEditSelected" << endl;
|
Chris@77
|
1282 m_viewManager->setToolMode(ViewManager::NoteEditMode);
|
Chris@70
|
1283 m_intelligentActionOn = true;
|
Chris@70
|
1284 m_analyser->setIntelligentActions(m_intelligentActionOn);
|
Chris@70
|
1285 }
|
Chris@70
|
1286
|
Chris@70
|
1287 void
|
Chris@70
|
1288 MainWindow::toolFreeEditSelected()
|
Chris@70
|
1289 {
|
Chris@77
|
1290 m_viewManager->setToolMode(ViewManager::NoteEditMode);
|
Chris@70
|
1291 m_intelligentActionOn = false;
|
Chris@70
|
1292 m_analyser->setIntelligentActions(m_intelligentActionOn);
|
Chris@70
|
1293 }
|
Chris@70
|
1294
|
gyorgyf@21
|
1295 void
|
Chris@0
|
1296 MainWindow::updateMenuStates()
|
Chris@0
|
1297 {
|
Chris@0
|
1298 MainWindowBase::updateMenuStates();
|
Chris@0
|
1299
|
Chris@0
|
1300 Pane *currentPane = 0;
|
Chris@0
|
1301 Layer *currentLayer = 0;
|
Chris@0
|
1302
|
Chris@0
|
1303 if (m_paneStack) currentPane = m_paneStack->getCurrentPane();
|
Chris@0
|
1304 if (currentPane) currentLayer = currentPane->getSelectedLayer();
|
Chris@0
|
1305
|
Chris@291
|
1306 bool haveMainModel =
|
Chris@291
|
1307 (getMainModel() != 0);
|
Chris@291
|
1308 bool havePlayTarget =
|
Chris@291
|
1309 (m_playTarget != 0);
|
Chris@0
|
1310 bool haveCurrentPane =
|
Chris@0
|
1311 (currentPane != 0);
|
Chris@0
|
1312 bool haveCurrentLayer =
|
Chris@0
|
1313 (haveCurrentPane &&
|
Chris@0
|
1314 (currentLayer != 0));
|
Chris@0
|
1315 bool haveSelection =
|
Chris@187
|
1316 (m_viewManager &&
|
Chris@187
|
1317 !m_viewManager->getSelections().empty());
|
Chris@0
|
1318 bool haveCurrentTimeInstantsLayer =
|
Chris@187
|
1319 (haveCurrentLayer &&
|
Chris@187
|
1320 qobject_cast<TimeInstantLayer *>(currentLayer));
|
Chris@0
|
1321 bool haveCurrentTimeValueLayer =
|
Chris@187
|
1322 (haveCurrentLayer &&
|
Chris@187
|
1323 qobject_cast<TimeValueLayer *>(currentLayer));
|
Chris@187
|
1324 bool pitchCandidatesVisible =
|
Chris@187
|
1325 m_analyser->arePitchCandidatesShown();
|
Chris@0
|
1326
|
Chris@0
|
1327 emit canChangePlaybackSpeed(true);
|
Chris@0
|
1328 int v = m_playSpeed->value();
|
Chris@0
|
1329 emit canSpeedUpPlayback(v < m_playSpeed->maximum());
|
Chris@0
|
1330 emit canSlowDownPlayback(v > m_playSpeed->minimum());
|
Chris@0
|
1331
|
Chris@291
|
1332 bool haveWaveform =
|
Chris@291
|
1333 m_analyser->isVisible(Analyser::Audio) &&
|
Chris@291
|
1334 m_analyser->getLayer(Analyser::Audio);
|
Chris@291
|
1335
|
Chris@237
|
1336 bool havePitchTrack =
|
Chris@237
|
1337 m_analyser->isVisible(Analyser::PitchTrack) &&
|
Chris@237
|
1338 m_analyser->getLayer(Analyser::PitchTrack);
|
Chris@237
|
1339
|
Chris@237
|
1340 bool haveNotes =
|
Chris@237
|
1341 m_analyser->isVisible(Analyser::Notes) &&
|
Chris@237
|
1342 m_analyser->getLayer(Analyser::Notes);
|
Chris@237
|
1343
|
Chris@237
|
1344 emit canExportPitchTrack(havePitchTrack);
|
Chris@237
|
1345 emit canExportNotes(haveNotes);
|
Chris@237
|
1346 emit canSnapNotes(haveSelection && haveNotes);
|
Chris@224
|
1347
|
Chris@291
|
1348 emit canPlayWaveform(haveWaveform && haveMainModel && havePlayTarget);
|
Chris@291
|
1349 emit canPlayPitch(havePitchTrack && haveMainModel && havePlayTarget);
|
Chris@291
|
1350 emit canPlayNotes(haveNotes && haveMainModel && havePlayTarget);
|
Chris@291
|
1351
|
Chris@187
|
1352 if (pitchCandidatesVisible) {
|
Chris@187
|
1353 m_showCandidatesAction->setText(tr("Hide Pitch Candidates"));
|
Chris@187
|
1354 m_showCandidatesAction->setStatusTip(tr("Remove the display of alternate pitch candidates for the selected region"));
|
Chris@187
|
1355 } else {
|
Chris@187
|
1356 m_showCandidatesAction->setText(tr("Show Pitch Candidates"));
|
Chris@187
|
1357 m_showCandidatesAction->setStatusTip(tr("Show alternate pitch candidates for the selected region"));
|
Chris@187
|
1358 }
|
Chris@187
|
1359
|
Chris@0
|
1360 if (m_ffwdAction && m_rwdAction) {
|
Chris@0
|
1361 if (haveCurrentTimeInstantsLayer) {
|
Chris@0
|
1362 m_ffwdAction->setText(tr("Fast Forward to Next Instant"));
|
Chris@0
|
1363 m_ffwdAction->setStatusTip(tr("Fast forward to the next time instant in the current layer"));
|
Chris@0
|
1364 m_rwdAction->setText(tr("Rewind to Previous Instant"));
|
Chris@0
|
1365 m_rwdAction->setStatusTip(tr("Rewind to the previous time instant in the current layer"));
|
Chris@0
|
1366 } else if (haveCurrentTimeValueLayer) {
|
Chris@0
|
1367 m_ffwdAction->setText(tr("Fast Forward to Next Point"));
|
Chris@0
|
1368 m_ffwdAction->setStatusTip(tr("Fast forward to the next point in the current layer"));
|
Chris@0
|
1369 m_rwdAction->setText(tr("Rewind to Previous Point"));
|
Chris@0
|
1370 m_rwdAction->setStatusTip(tr("Rewind to the previous point in the current layer"));
|
Chris@0
|
1371 } else {
|
Chris@0
|
1372 m_ffwdAction->setText(tr("Fast Forward"));
|
Chris@0
|
1373 m_ffwdAction->setStatusTip(tr("Fast forward"));
|
Chris@0
|
1374 m_rwdAction->setText(tr("Rewind"));
|
Chris@0
|
1375 m_rwdAction->setStatusTip(tr("Rewind"));
|
Chris@0
|
1376 }
|
Chris@0
|
1377 }
|
Chris@0
|
1378 }
|
Chris@0
|
1379
|
Chris@0
|
1380 void
|
Chris@144
|
1381 MainWindow::showAudioToggled()
|
Chris@128
|
1382 {
|
Chris@144
|
1383 m_analyser->toggleVisible(Analyser::Audio);
|
justin@220
|
1384
|
Chris@405
|
1385 bool playOn = (m_analyser->isVisible(Analyser::Audio));
|
Chris@291
|
1386 m_analyser->setAudible(Analyser::Audio, playOn);
|
Chris@405
|
1387 m_audioLPW->setEnabled(playOn);
|
Chris@291
|
1388
|
Chris@291
|
1389 updateMenuStates();
|
Chris@128
|
1390 }
|
Chris@128
|
1391
|
Chris@128
|
1392 void
|
Chris@144
|
1393 MainWindow::showPitchToggled()
|
Chris@128
|
1394 {
|
Chris@144
|
1395 m_analyser->toggleVisible(Analyser::PitchTrack);
|
justin@185
|
1396
|
Chris@405
|
1397 bool playOn = (m_analyser->isVisible(Analyser::PitchTrack));
|
matthiasm@384
|
1398 m_analyser->setAudible(Analyser::PitchTrack, playOn && m_withSonification);
|
Chris@405
|
1399 m_pitchLPW->setEnabled(playOn);
|
Chris@291
|
1400
|
Chris@291
|
1401 updateMenuStates();
|
Chris@128
|
1402 }
|
Chris@128
|
1403
|
Chris@128
|
1404 void
|
Chris@145
|
1405 MainWindow::showSpectToggled()
|
Chris@145
|
1406 {
|
Chris@145
|
1407 m_analyser->toggleVisible(Analyser::Spectrogram);
|
Chris@145
|
1408 }
|
Chris@145
|
1409
|
Chris@145
|
1410 void
|
Chris@144
|
1411 MainWindow::showNotesToggled()
|
Chris@128
|
1412 {
|
Chris@144
|
1413 m_analyser->toggleVisible(Analyser::Notes);
|
justin@220
|
1414
|
Chris@405
|
1415 bool playOn = (m_analyser->isVisible(Analyser::Notes));
|
matthiasm@384
|
1416 m_analyser->setAudible(Analyser::Notes, playOn && m_withSonification);
|
Chris@405
|
1417 m_notesLPW->setEnabled(playOn);
|
Chris@291
|
1418
|
Chris@291
|
1419 updateMenuStates();
|
Chris@144
|
1420 }
|
Chris@144
|
1421
|
Chris@144
|
1422 void
|
Chris@144
|
1423 MainWindow::playAudioToggled()
|
Chris@144
|
1424 {
|
Chris@144
|
1425 m_analyser->toggleAudible(Analyser::Audio);
|
Chris@144
|
1426 }
|
Chris@144
|
1427
|
Chris@144
|
1428 void
|
Chris@144
|
1429 MainWindow::playPitchToggled()
|
Chris@144
|
1430 {
|
Chris@144
|
1431 m_analyser->toggleAudible(Analyser::PitchTrack);
|
Chris@144
|
1432 }
|
Chris@144
|
1433
|
Chris@144
|
1434 void
|
Chris@144
|
1435 MainWindow::playNotesToggled()
|
Chris@144
|
1436 {
|
Chris@144
|
1437 m_analyser->toggleAudible(Analyser::Notes);
|
Chris@144
|
1438 }
|
Chris@144
|
1439
|
Chris@144
|
1440 void
|
Chris@144
|
1441 MainWindow::updateLayerStatuses()
|
Chris@144
|
1442 {
|
Chris@144
|
1443 m_showAudio->setChecked(m_analyser->isVisible(Analyser::Audio));
|
Chris@405
|
1444 m_audioLPW->setEnabled(m_analyser->isVisible(Analyser::Audio));
|
Chris@405
|
1445 m_audioLPW->setLevel(m_analyser->getGain(Analyser::Audio));
|
Chris@405
|
1446 m_audioLPW->setPan(m_analyser->getPan(Analyser::Audio));
|
Chris@405
|
1447
|
Chris@405
|
1448 m_showPitch->setChecked(m_analyser->isVisible(Analyser::PitchTrack));
|
Chris@405
|
1449 m_pitchLPW->setEnabled(m_analyser->isVisible(Analyser::PitchTrack));
|
Chris@405
|
1450 m_pitchLPW->setLevel(m_analyser->getGain(Analyser::PitchTrack));
|
Chris@405
|
1451 m_pitchLPW->setPan(m_analyser->getPan(Analyser::PitchTrack));
|
Chris@405
|
1452
|
Chris@405
|
1453 m_showNotes->setChecked(m_analyser->isVisible(Analyser::Notes));
|
Chris@405
|
1454 m_notesLPW->setEnabled(m_analyser->isVisible(Analyser::Notes));
|
Chris@405
|
1455 m_notesLPW->setLevel(m_analyser->getGain(Analyser::Notes));
|
Chris@405
|
1456 m_notesLPW->setPan(m_analyser->getPan(Analyser::Notes));
|
Chris@405
|
1457
|
Chris@145
|
1458 m_showSpect->setChecked(m_analyser->isVisible(Analyser::Spectrogram));
|
Chris@128
|
1459 }
|
Chris@128
|
1460
|
Chris@128
|
1461 void
|
Chris@227
|
1462 MainWindow::editDisplayExtents()
|
Chris@227
|
1463 {
|
Chris@399
|
1464 double min, max;
|
Chris@399
|
1465 double vmin = 0;
|
Chris@399
|
1466 double vmax = getMainModel()->getSampleRate() /2;
|
Chris@227
|
1467
|
Chris@227
|
1468 if (!m_analyser->getDisplayFrequencyExtents(min, max)) {
|
Chris@227
|
1469 //!!!
|
Chris@227
|
1470 return;
|
Chris@227
|
1471 }
|
Chris@227
|
1472
|
Chris@227
|
1473 RangeInputDialog dialog(tr("Set frequency range"),
|
Chris@227
|
1474 tr("Enter new frequency range, from %1 to %2 Hz.\nThese values will be rounded to the nearest spectrogram bin.")
|
Chris@227
|
1475 .arg(vmin).arg(vmax),
|
Chris@399
|
1476 "Hz", float(vmin), float(vmax), this);
|
Chris@399
|
1477 dialog.setRange(float(min), float(max));
|
Chris@227
|
1478
|
Chris@227
|
1479 if (dialog.exec() == QDialog::Accepted) {
|
Chris@399
|
1480 float fmin, fmax;
|
Chris@399
|
1481 dialog.getRange(fmin, fmax);
|
Chris@399
|
1482 min = fmin;
|
Chris@399
|
1483 max = fmax;
|
Chris@227
|
1484 if (min > max) {
|
Chris@399
|
1485 double tmp = max;
|
Chris@227
|
1486 max = min;
|
Chris@227
|
1487 min = tmp;
|
Chris@227
|
1488 }
|
Chris@227
|
1489 m_analyser->setDisplayFrequencyExtents(min, max);
|
Chris@227
|
1490 }
|
Chris@227
|
1491 }
|
Chris@227
|
1492
|
Chris@227
|
1493 void
|
Chris@0
|
1494 MainWindow::updateDescriptionLabel()
|
Chris@0
|
1495 {
|
Chris@6
|
1496 // Nothing, we don't have one
|
Chris@0
|
1497 }
|
Chris@0
|
1498
|
Chris@0
|
1499 void
|
Chris@0
|
1500 MainWindow::documentModified()
|
Chris@0
|
1501 {
|
Chris@0
|
1502 MainWindowBase::documentModified();
|
Chris@0
|
1503 }
|
Chris@0
|
1504
|
Chris@0
|
1505 void
|
Chris@0
|
1506 MainWindow::documentRestored()
|
Chris@0
|
1507 {
|
Chris@0
|
1508 MainWindowBase::documentRestored();
|
Chris@0
|
1509 }
|
Chris@0
|
1510
|
Chris@0
|
1511 void
|
Chris@0
|
1512 MainWindow::newSession()
|
Chris@0
|
1513 {
|
Chris@0
|
1514 if (!checkSaveModified()) return;
|
Chris@0
|
1515
|
Chris@0
|
1516 closeSession();
|
Chris@0
|
1517 createDocument();
|
Chris@0
|
1518 m_document->setAutoAlignment(true);
|
Chris@0
|
1519
|
Chris@0
|
1520 Pane *pane = m_paneStack->addPane();
|
Chris@362
|
1521 pane->setPlaybackFollow(PlaybackScrollPage);
|
Chris@0
|
1522
|
Chris@391
|
1523 m_viewManager->setGlobalCentreFrame
|
Chris@391
|
1524 (pane->getFrameForX(width() / 2));
|
Chris@391
|
1525
|
Chris@0
|
1526 connect(pane, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@0
|
1527 this, SLOT(contextHelpChanged(const QString &)));
|
Chris@0
|
1528
|
Chris@6
|
1529 // Layer *waveform = m_document->createMainModelLayer(LayerFactory::Waveform);
|
Chris@6
|
1530 // m_document->addLayerToView(pane, waveform);
|
Chris@0
|
1531
|
Chris@0
|
1532 m_overview->registerView(pane);
|
Chris@0
|
1533
|
Chris@0
|
1534 CommandHistory::getInstance()->clear();
|
Chris@0
|
1535 CommandHistory::getInstance()->documentSaved();
|
Chris@0
|
1536 documentRestored();
|
Chris@0
|
1537 updateMenuStates();
|
Chris@0
|
1538 }
|
Chris@0
|
1539
|
Chris@0
|
1540 void
|
Chris@244
|
1541 MainWindow::documentReplaced()
|
Chris@244
|
1542 {
|
Chris@244
|
1543 if (m_document) {
|
Chris@244
|
1544 connect(m_document, SIGNAL(activity(QString)),
|
Chris@244
|
1545 m_activityLog, SLOT(activityHappened(QString)));
|
Chris@244
|
1546 }
|
Chris@244
|
1547 }
|
Chris@244
|
1548
|
Chris@244
|
1549 void
|
Chris@0
|
1550 MainWindow::closeSession()
|
Chris@0
|
1551 {
|
Chris@0
|
1552 if (!checkSaveModified()) return;
|
Chris@0
|
1553
|
Chris@226
|
1554 m_analyser->fileClosed();
|
Chris@226
|
1555
|
Chris@0
|
1556 while (m_paneStack->getPaneCount() > 0) {
|
Chris@0
|
1557
|
Chris@167
|
1558 Pane *pane = m_paneStack->getPane(m_paneStack->getPaneCount() - 1);
|
Chris@0
|
1559
|
Chris@167
|
1560 while (pane->getLayerCount() > 0) {
|
Chris@167
|
1561 m_document->removeLayerFromView
|
Chris@167
|
1562 (pane, pane->getLayer(pane->getLayerCount() - 1));
|
Chris@167
|
1563 }
|
Chris@167
|
1564
|
Chris@167
|
1565 m_overview->unregisterView(pane);
|
Chris@167
|
1566 m_paneStack->deletePane(pane);
|
Chris@0
|
1567 }
|
Chris@0
|
1568
|
Chris@0
|
1569 while (m_paneStack->getHiddenPaneCount() > 0) {
|
Chris@0
|
1570
|
Chris@167
|
1571 Pane *pane = m_paneStack->getHiddenPane
|
Chris@167
|
1572 (m_paneStack->getHiddenPaneCount() - 1);
|
Chris@167
|
1573
|
Chris@167
|
1574 while (pane->getLayerCount() > 0) {
|
Chris@167
|
1575 m_document->removeLayerFromView
|
Chris@167
|
1576 (pane, pane->getLayer(pane->getLayerCount() - 1));
|
Chris@167
|
1577 }
|
Chris@167
|
1578
|
Chris@167
|
1579 m_overview->unregisterView(pane);
|
Chris@167
|
1580 m_paneStack->deletePane(pane);
|
Chris@0
|
1581 }
|
Chris@0
|
1582
|
Chris@0
|
1583 delete m_document;
|
Chris@0
|
1584 m_document = 0;
|
Chris@0
|
1585 m_viewManager->clearSelections();
|
Chris@0
|
1586 m_timeRulerLayer = 0; // document owned this
|
Chris@0
|
1587
|
Chris@0
|
1588 m_sessionFile = "";
|
Chris@0
|
1589
|
Chris@0
|
1590 CommandHistory::getInstance()->clear();
|
Chris@0
|
1591 CommandHistory::getInstance()->documentSaved();
|
Chris@0
|
1592 documentRestored();
|
Chris@0
|
1593 }
|
Chris@0
|
1594
|
Chris@0
|
1595 void
|
Chris@0
|
1596 MainWindow::openFile()
|
Chris@0
|
1597 {
|
Chris@0
|
1598 QString orig = m_audioFile;
|
Chris@0
|
1599 if (orig == "") orig = ".";
|
Chris@0
|
1600 else orig = QFileInfo(orig).absoluteDir().canonicalPath();
|
Chris@0
|
1601
|
Chris@0
|
1602 QString path = getOpenFileName(FileFinder::AnyFile);
|
Chris@0
|
1603
|
Chris@0
|
1604 if (path.isEmpty()) return;
|
Chris@0
|
1605
|
Chris@387
|
1606 FileOpenStatus status = openPath(path, ReplaceSession);
|
Chris@0
|
1607
|
Chris@0
|
1608 if (status == FileOpenFailed) {
|
Chris@0
|
1609 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
1610 tr("<b>File open failed</b><p>File \"%1\" could not be opened").arg(path));
|
Chris@0
|
1611 } else if (status == FileOpenWrongMode) {
|
Chris@0
|
1612 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@0
|
1613 tr("<b>Audio required</b><p>Please load at least one audio file before importing annotation data"));
|
Chris@0
|
1614 }
|
Chris@0
|
1615 }
|
Chris@0
|
1616
|
Chris@0
|
1617 void
|
Chris@0
|
1618 MainWindow::openLocation()
|
Chris@0
|
1619 {
|
Chris@0
|
1620 QSettings settings;
|
Chris@0
|
1621 settings.beginGroup("MainWindow");
|
Chris@0
|
1622 QString lastLocation = settings.value("lastremote", "").toString();
|
Chris@0
|
1623
|
Chris@0
|
1624 bool ok = false;
|
Chris@0
|
1625 QString text = QInputDialog::getText
|
Chris@0
|
1626 (this, tr("Open Location"),
|
Chris@0
|
1627 tr("Please enter the URL of the location to open:"),
|
Chris@0
|
1628 QLineEdit::Normal, lastLocation, &ok);
|
Chris@0
|
1629
|
Chris@0
|
1630 if (!ok) return;
|
Chris@0
|
1631
|
Chris@0
|
1632 settings.setValue("lastremote", text);
|
Chris@0
|
1633
|
Chris@0
|
1634 if (text.isEmpty()) return;
|
Chris@0
|
1635
|
Chris@387
|
1636 FileOpenStatus status = openPath(text, ReplaceSession);
|
Chris@0
|
1637
|
Chris@0
|
1638 if (status == FileOpenFailed) {
|
Chris@0
|
1639 QMessageBox::critical(this, tr("Failed to open location"),
|
Chris@0
|
1640 tr("<b>Open failed</b><p>URL \"%1\" could not be opened").arg(text));
|
Chris@0
|
1641 } else if (status == FileOpenWrongMode) {
|
Chris@0
|
1642 QMessageBox::critical(this, tr("Failed to open location"),
|
Chris@0
|
1643 tr("<b>Audio required</b><p>Please load at least one audio file before importing annotation data"));
|
Chris@0
|
1644 }
|
Chris@0
|
1645 }
|
Chris@0
|
1646
|
Chris@0
|
1647 void
|
Chris@0
|
1648 MainWindow::openRecentFile()
|
Chris@0
|
1649 {
|
Chris@0
|
1650 QObject *obj = sender();
|
Chris@3
|
1651 QAction *action = qobject_cast<QAction *>(obj);
|
Chris@0
|
1652
|
Chris@0
|
1653 if (!action) {
|
Chris@188
|
1654 cerr << "WARNING: MainWindow::openRecentFile: sender is not an action"
|
Chris@188
|
1655 << endl;
|
Chris@188
|
1656 return;
|
Chris@0
|
1657 }
|
Chris@0
|
1658
|
Chris@0
|
1659 QString path = action->text();
|
Chris@0
|
1660 if (path == "") return;
|
Chris@0
|
1661
|
Chris@387
|
1662 FileOpenStatus status = openPath(path, ReplaceSession);
|
Chris@0
|
1663
|
Chris@0
|
1664 if (status == FileOpenFailed) {
|
Chris@0
|
1665 QMessageBox::critical(this, tr("Failed to open location"),
|
Chris@0
|
1666 tr("<b>Open failed</b><p>File or URL \"%1\" could not be opened").arg(path));
|
Chris@0
|
1667 } else if (status == FileOpenWrongMode) {
|
Chris@0
|
1668 QMessageBox::critical(this, tr("Failed to open location"),
|
Chris@0
|
1669 tr("<b>Audio required</b><p>Please load at least one audio file before importing annotation data"));
|
Chris@0
|
1670 }
|
Chris@0
|
1671 }
|
Chris@0
|
1672
|
Chris@0
|
1673 void
|
Chris@0
|
1674 MainWindow::paneAdded(Pane *pane)
|
Chris@0
|
1675 {
|
Chris@6
|
1676 pane->setPlaybackFollow(PlaybackScrollPage);
|
Chris@0
|
1677 m_paneStack->sizePanesEqually();
|
Chris@0
|
1678 if (m_overview) m_overview->registerView(pane);
|
Chris@0
|
1679 }
|
Chris@0
|
1680
|
Chris@0
|
1681 void
|
Chris@0
|
1682 MainWindow::paneHidden(Pane *pane)
|
Chris@0
|
1683 {
|
Chris@0
|
1684 if (m_overview) m_overview->unregisterView(pane);
|
Chris@0
|
1685 }
|
Chris@0
|
1686
|
Chris@0
|
1687 void
|
Chris@0
|
1688 MainWindow::paneAboutToBeDeleted(Pane *pane)
|
Chris@0
|
1689 {
|
Chris@0
|
1690 if (m_overview) m_overview->unregisterView(pane);
|
Chris@0
|
1691 }
|
Chris@0
|
1692
|
Chris@0
|
1693 void
|
Chris@0
|
1694 MainWindow::paneDropAccepted(Pane *pane, QStringList uriList)
|
Chris@0
|
1695 {
|
Chris@4
|
1696 if (pane) m_paneStack->setCurrentPane(pane);
|
Chris@0
|
1697
|
Chris@0
|
1698 for (QStringList::iterator i = uriList.begin(); i != uriList.end(); ++i) {
|
Chris@0
|
1699
|
Chris@387
|
1700 FileOpenStatus status = openPath(*i, ReplaceSession);
|
Chris@0
|
1701
|
Chris@0
|
1702 if (status == FileOpenFailed) {
|
Chris@0
|
1703 QMessageBox::critical(this, tr("Failed to open dropped URL"),
|
Chris@0
|
1704 tr("<b>Open failed</b><p>Dropped URL \"%1\" could not be opened").arg(*i));
|
Chris@0
|
1705 } else if (status == FileOpenWrongMode) {
|
Chris@0
|
1706 QMessageBox::critical(this, tr("Failed to open dropped URL"),
|
Chris@0
|
1707 tr("<b>Audio required</b><p>Please load at least one audio file before importing annotation data"));
|
Chris@0
|
1708 }
|
Chris@0
|
1709 }
|
Chris@0
|
1710 }
|
Chris@0
|
1711
|
Chris@0
|
1712 void
|
Chris@0
|
1713 MainWindow::paneDropAccepted(Pane *pane, QString text)
|
Chris@0
|
1714 {
|
Chris@0
|
1715 if (pane) m_paneStack->setCurrentPane(pane);
|
Chris@0
|
1716
|
Chris@0
|
1717 QUrl testUrl(text);
|
Chris@0
|
1718 if (testUrl.scheme() == "file" ||
|
Chris@0
|
1719 testUrl.scheme() == "http" ||
|
Chris@0
|
1720 testUrl.scheme() == "ftp") {
|
Chris@0
|
1721 QStringList list;
|
Chris@0
|
1722 list.push_back(text);
|
Chris@0
|
1723 paneDropAccepted(pane, list);
|
Chris@0
|
1724 return;
|
Chris@0
|
1725 }
|
Chris@0
|
1726
|
Chris@0
|
1727 //!!! open as text -- but by importing as if a CSV, or just adding
|
Chris@0
|
1728 //to a text layer?
|
Chris@0
|
1729 }
|
Chris@0
|
1730
|
Chris@0
|
1731 void
|
Chris@0
|
1732 MainWindow::closeEvent(QCloseEvent *e)
|
Chris@0
|
1733 {
|
Chris@70
|
1734 // cerr << "MainWindow::closeEvent" << endl;
|
Chris@0
|
1735
|
Chris@0
|
1736 if (m_openingAudioFile) {
|
Chris@70
|
1737 // cerr << "Busy - ignoring close event" << endl;
|
Chris@257
|
1738 e->ignore();
|
Chris@257
|
1739 return;
|
Chris@0
|
1740 }
|
Chris@0
|
1741
|
Chris@0
|
1742 if (!m_abandoning && !checkSaveModified()) {
|
Chris@70
|
1743 // cerr << "Ignoring close event" << endl;
|
Chris@257
|
1744 e->ignore();
|
Chris@257
|
1745 return;
|
Chris@0
|
1746 }
|
Chris@0
|
1747
|
Chris@0
|
1748 QSettings settings;
|
Chris@0
|
1749 settings.beginGroup("MainWindow");
|
Chris@0
|
1750 settings.setValue("size", size());
|
Chris@0
|
1751 settings.setValue("position", pos());
|
Chris@0
|
1752 settings.endGroup();
|
Chris@0
|
1753
|
Chris@0
|
1754 delete m_keyReference;
|
Chris@0
|
1755 m_keyReference = 0;
|
Chris@0
|
1756
|
Chris@0
|
1757 closeSession();
|
Chris@0
|
1758
|
Chris@0
|
1759 e->accept();
|
Chris@0
|
1760 return;
|
Chris@0
|
1761 }
|
Chris@0
|
1762
|
Chris@0
|
1763 bool
|
Chris@0
|
1764 MainWindow::commitData(bool mayAskUser)
|
Chris@0
|
1765 {
|
Chris@0
|
1766 if (mayAskUser) {
|
Chris@0
|
1767 bool rv = checkSaveModified();
|
Chris@0
|
1768 return rv;
|
Chris@0
|
1769 } else {
|
Chris@0
|
1770 if (!m_documentModified) return true;
|
Chris@0
|
1771
|
Chris@0
|
1772 // If we can't check with the user first, then we can't save
|
Chris@0
|
1773 // to the original session file (even if we have it) -- have
|
Chris@0
|
1774 // to use a temporary file
|
Chris@0
|
1775
|
Chris@0
|
1776 QString svDirBase = ".sv1";
|
Chris@0
|
1777 QString svDir = QDir::home().filePath(svDirBase);
|
Chris@0
|
1778
|
Chris@0
|
1779 if (!QFileInfo(svDir).exists()) {
|
Chris@0
|
1780 if (!QDir::home().mkdir(svDirBase)) return false;
|
Chris@0
|
1781 } else {
|
Chris@0
|
1782 if (!QFileInfo(svDir).isDir()) return false;
|
Chris@0
|
1783 }
|
Chris@0
|
1784
|
Chris@0
|
1785 // This name doesn't have to be unguessable
|
Chris@0
|
1786 #ifndef _WIN32
|
Chris@0
|
1787 QString fname = QString("tmp-%1-%2.sv")
|
Chris@0
|
1788 .arg(QDateTime::currentDateTime().toString("yyyyMMddhhmmsszzz"))
|
Chris@0
|
1789 .arg(QProcess().pid());
|
Chris@0
|
1790 #else
|
Chris@0
|
1791 QString fname = QString("tmp-%1.sv")
|
Chris@0
|
1792 .arg(QDateTime::currentDateTime().toString("yyyyMMddhhmmsszzz"));
|
Chris@0
|
1793 #endif
|
Chris@0
|
1794 QString fpath = QDir(svDir).filePath(fname);
|
Chris@0
|
1795 if (saveSessionFile(fpath)) {
|
Chris@0
|
1796 m_recentFiles.addFile(fpath);
|
Chris@0
|
1797 return true;
|
Chris@0
|
1798 } else {
|
Chris@0
|
1799 return false;
|
Chris@0
|
1800 }
|
Chris@0
|
1801 }
|
Chris@0
|
1802 }
|
Chris@0
|
1803
|
Chris@0
|
1804 bool
|
Chris@0
|
1805 MainWindow::checkSaveModified()
|
Chris@0
|
1806 {
|
Chris@0
|
1807 // Called before some destructive operation (e.g. new session,
|
Chris@0
|
1808 // exit program). Return true if we can safely proceed, false to
|
Chris@0
|
1809 // cancel.
|
Chris@0
|
1810
|
Chris@0
|
1811 if (!m_documentModified) return true;
|
Chris@0
|
1812
|
Chris@0
|
1813 int button =
|
Chris@257
|
1814 QMessageBox::warning(this,
|
Chris@257
|
1815 tr("Session modified"),
|
Chris@257
|
1816 tr("The current session has been modified.\nDo you want to save it?"),
|
Chris@257
|
1817 QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel,
|
Chris@0
|
1818 QMessageBox::Yes);
|
Chris@0
|
1819
|
Chris@0
|
1820 if (button == QMessageBox::Yes) {
|
Chris@257
|
1821 saveSession();
|
Chris@257
|
1822 if (m_documentModified) { // save failed -- don't proceed!
|
Chris@257
|
1823 return false;
|
Chris@257
|
1824 } else {
|
Chris@0
|
1825 return true; // saved, so it's safe to continue now
|
Chris@0
|
1826 }
|
Chris@0
|
1827 } else if (button == QMessageBox::No) {
|
Chris@257
|
1828 m_documentModified = false; // so we know to abandon it
|
Chris@257
|
1829 return true;
|
Chris@0
|
1830 }
|
Chris@0
|
1831
|
Chris@0
|
1832 // else cancel
|
Chris@0
|
1833 return false;
|
Chris@0
|
1834 }
|
Chris@0
|
1835
|
Chris@314
|
1836 bool
|
Chris@314
|
1837 MainWindow::waitForInitialAnalysis()
|
Chris@314
|
1838 {
|
Chris@314
|
1839 // Called before saving a session. We can't safely save while the
|
Chris@314
|
1840 // initial analysis is happening, because then we end up with an
|
Chris@314
|
1841 // incomplete session on reload. There are certainly theoretically
|
Chris@314
|
1842 // better ways to handle this...
|
Chris@314
|
1843
|
Chris@330
|
1844 QSettings settings;
|
Chris@330
|
1845 settings.beginGroup("Analyser");
|
Chris@330
|
1846 bool autoAnalyse = settings.value("auto-analysis", true).toBool();
|
Chris@330
|
1847 settings.endGroup();
|
Chris@330
|
1848
|
Chris@330
|
1849 if (!autoAnalyse) {
|
Chris@330
|
1850 return true;
|
Chris@330
|
1851 }
|
Chris@330
|
1852
|
Chris@314
|
1853 if (!m_analyser || m_analyser->getInitialAnalysisCompletion() >= 100) {
|
Chris@314
|
1854 return true;
|
Chris@314
|
1855 }
|
Chris@314
|
1856
|
Chris@314
|
1857 QMessageBox mb(QMessageBox::Information,
|
Chris@314
|
1858 tr("Waiting for analysis"),
|
Chris@314
|
1859 tr("Waiting for initial analysis to complete before saving..."),
|
Chris@314
|
1860 QMessageBox::Cancel,
|
Chris@314
|
1861 this);
|
Chris@314
|
1862
|
Chris@314
|
1863 connect(m_analyser, SIGNAL(initialAnalysisCompleted()),
|
Chris@314
|
1864 &mb, SLOT(accept()));
|
Chris@314
|
1865
|
Chris@314
|
1866 if (mb.exec() == QDialog::Accepted) {
|
Chris@314
|
1867 return true;
|
Chris@314
|
1868 } else {
|
Chris@314
|
1869 return false;
|
Chris@314
|
1870 }
|
Chris@314
|
1871 }
|
Chris@314
|
1872
|
Chris@0
|
1873 void
|
Chris@0
|
1874 MainWindow::saveSession()
|
Chris@0
|
1875 {
|
Chris@269
|
1876 // We do not want to save mid-analysis regions -- that would cause
|
Chris@269
|
1877 // confusion on reloading
|
Chris@269
|
1878 m_analyser->clearReAnalysis();
|
Chris@269
|
1879 clearSelection();
|
Chris@269
|
1880
|
Chris@0
|
1881 if (m_sessionFile != "") {
|
Chris@257
|
1882 if (!saveSessionFile(m_sessionFile)) {
|
Chris@257
|
1883 QMessageBox::critical
|
Chris@257
|
1884 (this, tr("Failed to save file"),
|
Chris@257
|
1885 tr("Session file \"%1\" could not be saved.").arg(m_sessionFile));
|
Chris@257
|
1886 } else {
|
Chris@257
|
1887 CommandHistory::getInstance()->documentSaved();
|
Chris@257
|
1888 documentRestored();
|
Chris@257
|
1889 }
|
Chris@0
|
1890 } else {
|
Chris@257
|
1891 saveSessionAs();
|
Chris@0
|
1892 }
|
Chris@0
|
1893 }
|
Chris@0
|
1894
|
Chris@0
|
1895 void
|
matthiasm@310
|
1896 MainWindow::saveSessionInAudioPath()
|
matthiasm@310
|
1897 {
|
matthiasm@311
|
1898 if (m_audioFile == "") return;
|
matthiasm@311
|
1899
|
Chris@314
|
1900 if (!waitForInitialAnalysis()) return;
|
Chris@314
|
1901
|
matthiasm@310
|
1902 // We do not want to save mid-analysis regions -- that would cause
|
matthiasm@310
|
1903 // confusion on reloading
|
matthiasm@310
|
1904 m_analyser->clearReAnalysis();
|
matthiasm@310
|
1905 clearSelection();
|
matthiasm@310
|
1906
|
matthiasm@310
|
1907 QString filepath = QFileInfo(m_audioFile).absoluteDir().canonicalPath();
|
matthiasm@310
|
1908 QString basename = QFileInfo(m_audioFile).completeBaseName();
|
matthiasm@310
|
1909
|
matthiasm@310
|
1910 QString path = QDir(filepath).filePath(basename + ".ton");
|
matthiasm@310
|
1911
|
matthiasm@310
|
1912 cerr << path << endl;
|
matthiasm@310
|
1913
|
Chris@313
|
1914 // We don't want to overwrite an existing .ton file unless we put
|
Chris@313
|
1915 // it there in the first place
|
Chris@313
|
1916 bool shouldVerify = true;
|
Chris@313
|
1917 if (m_sessionFile == path) {
|
Chris@313
|
1918 shouldVerify = false;
|
Chris@313
|
1919 }
|
Chris@313
|
1920
|
Chris@313
|
1921 if (shouldVerify && QFileInfo(path).exists()) {
|
Chris@313
|
1922 if (QMessageBox::question(0, tr("File exists"),
|
Chris@313
|
1923 tr("<b>File exists</b><p>The file \"%1\" already exists.\nDo you want to overwrite it?").arg(path),
|
Chris@313
|
1924 QMessageBox::Ok,
|
Chris@313
|
1925 QMessageBox::Cancel) != QMessageBox::Ok) {
|
Chris@313
|
1926 return;
|
Chris@313
|
1927 }
|
Chris@313
|
1928 }
|
Chris@313
|
1929
|
Chris@314
|
1930 if (!waitForInitialAnalysis()) {
|
Chris@314
|
1931 QMessageBox::warning(this, tr("File not saved"),
|
Chris@314
|
1932 tr("Wait cancelled: the session has not been saved."));
|
Chris@314
|
1933 }
|
Chris@314
|
1934
|
matthiasm@310
|
1935 if (!saveSessionFile(path)) {
|
matthiasm@310
|
1936 QMessageBox::critical(this, tr("Failed to save file"),
|
matthiasm@310
|
1937 tr("Session file \"%1\" could not be saved.").arg(path));
|
matthiasm@310
|
1938 } else {
|
matthiasm@310
|
1939 setWindowTitle(tr("%1: %2")
|
matthiasm@310
|
1940 .arg(QApplication::applicationName())
|
matthiasm@310
|
1941 .arg(QFileInfo(path).fileName()));
|
matthiasm@310
|
1942 m_sessionFile = path;
|
matthiasm@310
|
1943 CommandHistory::getInstance()->documentSaved();
|
matthiasm@310
|
1944 documentRestored();
|
matthiasm@310
|
1945 m_recentFiles.addFile(path);
|
matthiasm@310
|
1946 }
|
matthiasm@310
|
1947 }
|
matthiasm@310
|
1948
|
matthiasm@310
|
1949 void
|
Chris@0
|
1950 MainWindow::saveSessionAs()
|
Chris@0
|
1951 {
|
Chris@270
|
1952 // We do not want to save mid-analysis regions -- that would cause
|
Chris@270
|
1953 // confusion on reloading
|
Chris@270
|
1954 m_analyser->clearReAnalysis();
|
Chris@270
|
1955 clearSelection();
|
Chris@270
|
1956
|
Chris@0
|
1957 QString path = getSaveFileName(FileFinder::SessionFile);
|
Chris@0
|
1958
|
Chris@309
|
1959 if (path == "") {
|
Chris@309
|
1960 return;
|
Chris@309
|
1961 }
|
Chris@0
|
1962
|
Chris@314
|
1963 if (!waitForInitialAnalysis()) {
|
Chris@314
|
1964 QMessageBox::warning(this, tr("File not saved"),
|
Chris@314
|
1965 tr("Wait cancelled: the session has not been saved."));
|
Chris@314
|
1966 return;
|
Chris@314
|
1967 }
|
Chris@314
|
1968
|
Chris@0
|
1969 if (!saveSessionFile(path)) {
|
Chris@85
|
1970 QMessageBox::critical(this, tr("Failed to save file"),
|
Chris@85
|
1971 tr("Session file \"%1\" could not be saved.").arg(path));
|
Chris@0
|
1972 } else {
|
Chris@85
|
1973 setWindowTitle(tr("%1: %2")
|
Chris@0
|
1974 .arg(QApplication::applicationName())
|
Chris@85
|
1975 .arg(QFileInfo(path).fileName()));
|
Chris@85
|
1976 m_sessionFile = path;
|
Chris@85
|
1977 CommandHistory::getInstance()->documentSaved();
|
Chris@85
|
1978 documentRestored();
|
Chris@0
|
1979 m_recentFiles.addFile(path);
|
Chris@0
|
1980 }
|
Chris@0
|
1981 }
|
Chris@0
|
1982
|
Chris@85
|
1983 QString
|
Chris@85
|
1984 MainWindow::exportToSVL(QString path, Layer *layer)
|
Chris@85
|
1985 {
|
Chris@85
|
1986 Model *model = layer->getModel();
|
Chris@85
|
1987
|
Chris@85
|
1988 QFile file(path);
|
Chris@85
|
1989 if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
|
Chris@85
|
1990 return tr("Failed to open file %1 for writing").arg(path);
|
Chris@85
|
1991 } else {
|
Chris@85
|
1992 QTextStream out(&file);
|
Chris@85
|
1993 out << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
Chris@85
|
1994 << "<!DOCTYPE sonic-visualiser>\n"
|
Chris@85
|
1995 << "<sv>\n"
|
Chris@85
|
1996 << " <data>\n";
|
Chris@85
|
1997
|
Chris@85
|
1998 model->toXml(out, " ");
|
Chris@85
|
1999
|
Chris@85
|
2000 out << " </data>\n"
|
Chris@85
|
2001 << " <display>\n";
|
Chris@85
|
2002
|
Chris@85
|
2003 layer->toXml(out, " ");
|
Chris@85
|
2004
|
Chris@85
|
2005 out << " </display>\n"
|
Chris@85
|
2006 << "</sv>\n";
|
Chris@85
|
2007
|
Chris@85
|
2008 return "";
|
Chris@85
|
2009 }
|
Chris@85
|
2010 }
|
Chris@85
|
2011
|
Chris@0
|
2012 void
|
Chris@174
|
2013 MainWindow::importPitchLayer()
|
Chris@174
|
2014 {
|
Chris@174
|
2015 QString path = getOpenFileName(FileFinder::LayerFileNoMidiNonSV);
|
Chris@174
|
2016 if (path == "") return;
|
Chris@174
|
2017
|
Chris@174
|
2018 FileOpenStatus status = importPitchLayer(path);
|
Chris@174
|
2019
|
Chris@174
|
2020 if (status == FileOpenFailed) {
|
Chris@174
|
2021 emit hideSplash();
|
Chris@174
|
2022 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@174
|
2023 tr("<b>File open failed</b><p>Layer file %1 could not be opened.").arg(path));
|
Chris@174
|
2024 return;
|
Chris@174
|
2025 } else if (status == FileOpenWrongMode) {
|
Chris@174
|
2026 emit hideSplash();
|
Chris@174
|
2027 QMessageBox::critical(this, tr("Failed to open file"),
|
Chris@174
|
2028 tr("<b>Audio required</b><p>Unable to load layer data from \"%1\" without an audio file.<br>Please load at least one audio file before importing annotations.").arg(path));
|
Chris@174
|
2029 }
|
Chris@174
|
2030 }
|
Chris@174
|
2031
|
Chris@174
|
2032 MainWindow::FileOpenStatus
|
Chris@174
|
2033 MainWindow::importPitchLayer(FileSource source)
|
Chris@174
|
2034 {
|
Chris@174
|
2035 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@174
|
2036 source.waitForData();
|
Chris@174
|
2037
|
Chris@174
|
2038 QString path = source.getLocalFilename();
|
Chris@174
|
2039
|
Chris@174
|
2040 RDFImporter::RDFDocumentType rdfType =
|
Chris@174
|
2041 RDFImporter::identifyDocumentType(QUrl::fromLocalFile(path).toString());
|
Chris@174
|
2042
|
Chris@174
|
2043 if (rdfType != RDFImporter::NotRDF) {
|
Chris@174
|
2044
|
Chris@174
|
2045 //!!!
|
Chris@174
|
2046 return FileOpenFailed;
|
Chris@174
|
2047
|
Chris@174
|
2048 } else if (source.getExtension().toLower() == "svl" ||
|
Chris@174
|
2049 (source.getExtension().toLower() == "xml" &&
|
Chris@174
|
2050 (SVFileReader::identifyXmlFile(source.getLocalFilename())
|
Chris@174
|
2051 == SVFileReader::SVLayerFile))) {
|
Chris@174
|
2052
|
Chris@174
|
2053 //!!!
|
Chris@174
|
2054 return FileOpenFailed;
|
Chris@174
|
2055
|
Chris@174
|
2056 } else {
|
Chris@174
|
2057
|
Chris@174
|
2058 try {
|
Chris@174
|
2059
|
Chris@174
|
2060 CSVFormat format(path);
|
Chris@174
|
2061 format.setSampleRate(getMainModel()->getSampleRate());
|
Chris@174
|
2062
|
Chris@174
|
2063 if (format.getModelType() != CSVFormat::TwoDimensionalModel) {
|
Chris@174
|
2064 //!!! error report
|
Chris@174
|
2065 return FileOpenFailed;
|
Chris@174
|
2066 }
|
Chris@174
|
2067
|
Chris@174
|
2068 Model *model = DataFileReaderFactory::loadCSV
|
Chris@174
|
2069 (path, format, getMainModel()->getSampleRate());
|
Chris@174
|
2070
|
Chris@174
|
2071 if (model) {
|
Chris@174
|
2072
|
Chris@174
|
2073 SVDEBUG << "MainWindow::importPitchLayer: Have model" << endl;
|
Chris@174
|
2074
|
Chris@174
|
2075 CommandHistory::getInstance()->startCompoundOperation
|
Chris@174
|
2076 (tr("Import Pitch Track"), true);
|
Chris@174
|
2077
|
Chris@174
|
2078 Layer *newLayer = m_document->createImportedLayer(model);
|
Chris@174
|
2079
|
Chris@174
|
2080 m_analyser->takePitchTrackFrom(newLayer);
|
Chris@174
|
2081
|
Chris@174
|
2082 m_document->deleteLayer(newLayer);
|
Chris@174
|
2083
|
Chris@174
|
2084 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@174
|
2085
|
Chris@174
|
2086 //!!! swap all data in to existing layer instead of this
|
Chris@174
|
2087
|
Chris@174
|
2088 if (!source.isRemote()) {
|
Chris@174
|
2089 registerLastOpenedFilePath
|
Chris@174
|
2090 (FileFinder::LayerFile,
|
Chris@174
|
2091 path); // for file dialog
|
Chris@174
|
2092 }
|
Chris@174
|
2093
|
Chris@174
|
2094 return FileOpenSucceeded;
|
Chris@174
|
2095 }
|
Chris@174
|
2096 } catch (DataFileReaderFactory::Exception e) {
|
Chris@174
|
2097 if (e == DataFileReaderFactory::ImportCancelled) {
|
Chris@174
|
2098 return FileOpenCancelled;
|
Chris@174
|
2099 }
|
Chris@174
|
2100 }
|
Chris@174
|
2101 }
|
Chris@174
|
2102
|
Chris@174
|
2103 return FileOpenFailed;
|
Chris@174
|
2104 }
|
Chris@174
|
2105
|
Chris@174
|
2106 void
|
Chris@85
|
2107 MainWindow::exportPitchLayer()
|
matthiasm@26
|
2108 {
|
Chris@174
|
2109 Layer *layer = m_analyser->getLayer(Analyser::PitchTrack);
|
matthiasm@26
|
2110 if (!layer) return;
|
matthiasm@26
|
2111
|
Chris@85
|
2112 SparseTimeValueModel *model =
|
Chris@85
|
2113 qobject_cast<SparseTimeValueModel *>(layer->getModel());
|
matthiasm@26
|
2114 if (!model) return;
|
matthiasm@26
|
2115
|
Chris@96
|
2116 FileFinder::FileType type = FileFinder::LayerFileNoMidiNonSV;
|
matthiasm@26
|
2117
|
matthiasm@26
|
2118 QString path = getSaveFileName(type);
|
matthiasm@26
|
2119
|
matthiasm@26
|
2120 if (path == "") return;
|
matthiasm@26
|
2121
|
matthiasm@26
|
2122 if (QFileInfo(path).suffix() == "") path += ".svl";
|
matthiasm@26
|
2123
|
matthiasm@26
|
2124 QString suffix = QFileInfo(path).suffix().toLower();
|
matthiasm@26
|
2125
|
matthiasm@26
|
2126 QString error;
|
matthiasm@26
|
2127
|
matthiasm@26
|
2128 if (suffix == "xml" || suffix == "svl") {
|
matthiasm@26
|
2129
|
Chris@85
|
2130 error = exportToSVL(path, layer);
|
matthiasm@26
|
2131
|
matthiasm@26
|
2132 } else if (suffix == "ttl" || suffix == "n3") {
|
matthiasm@26
|
2133
|
Chris@85
|
2134 RDFExporter exporter(path, model);
|
Chris@85
|
2135 exporter.write();
|
Chris@85
|
2136 if (!exporter.isOK()) {
|
Chris@85
|
2137 error = exporter.getError();
|
Chris@85
|
2138 }
|
Chris@85
|
2139
|
Chris@85
|
2140 } else {
|
Chris@85
|
2141
|
Chris@85
|
2142 CSVFileWriter writer(path, model,
|
Chris@85
|
2143 ((suffix == "csv") ? "," : "\t"));
|
Chris@85
|
2144 writer.write();
|
Chris@85
|
2145
|
Chris@85
|
2146 if (!writer.isOK()) {
|
Chris@85
|
2147 error = writer.getError();
|
Chris@85
|
2148 }
|
Chris@85
|
2149 }
|
Chris@85
|
2150
|
Chris@85
|
2151 if (error != "") {
|
Chris@85
|
2152 QMessageBox::critical(this, tr("Failed to write file"), error);
|
Chris@85
|
2153 } else {
|
Chris@85
|
2154 emit activity(tr("Export layer to \"%1\"").arg(path));
|
Chris@85
|
2155 }
|
Chris@85
|
2156 }
|
Chris@85
|
2157
|
Chris@85
|
2158 void
|
Chris@85
|
2159 MainWindow::exportNoteLayer()
|
Chris@85
|
2160 {
|
Chris@174
|
2161 Layer *layer = m_analyser->getLayer(Analyser::Notes);
|
Chris@85
|
2162 if (!layer) return;
|
Chris@85
|
2163
|
Chris@85
|
2164 FlexiNoteModel *model = qobject_cast<FlexiNoteModel *>(layer->getModel());
|
Chris@85
|
2165 if (!model) return;
|
Chris@85
|
2166
|
Chris@96
|
2167 FileFinder::FileType type = FileFinder::LayerFileNonSV;
|
Chris@85
|
2168
|
Chris@85
|
2169 QString path = getSaveFileName(type);
|
Chris@85
|
2170
|
Chris@85
|
2171 if (path == "") return;
|
Chris@85
|
2172
|
Chris@85
|
2173 if (QFileInfo(path).suffix() == "") path += ".svl";
|
Chris@85
|
2174
|
Chris@85
|
2175 QString suffix = QFileInfo(path).suffix().toLower();
|
Chris@85
|
2176
|
Chris@85
|
2177 QString error;
|
Chris@85
|
2178
|
Chris@85
|
2179 if (suffix == "xml" || suffix == "svl") {
|
Chris@85
|
2180
|
Chris@85
|
2181 error = exportToSVL(path, layer);
|
Chris@85
|
2182
|
Chris@85
|
2183 } else if (suffix == "mid" || suffix == "midi") {
|
Chris@85
|
2184
|
Chris@85
|
2185 MIDIFileWriter writer(path, model, model->getSampleRate());
|
Chris@85
|
2186 writer.write();
|
Chris@85
|
2187 if (!writer.isOK()) {
|
Chris@85
|
2188 error = writer.getError();
|
Chris@85
|
2189 }
|
Chris@85
|
2190
|
Chris@85
|
2191 } else if (suffix == "ttl" || suffix == "n3") {
|
Chris@85
|
2192
|
Chris@85
|
2193 RDFExporter exporter(path, model);
|
Chris@85
|
2194 exporter.write();
|
Chris@85
|
2195 if (!exporter.isOK()) {
|
Chris@85
|
2196 error = exporter.getError();
|
matthiasm@26
|
2197 }
|
matthiasm@26
|
2198
|
matthiasm@26
|
2199 } else {
|
matthiasm@26
|
2200
|
matthiasm@26
|
2201 CSVFileWriter writer(path, model,
|
matthiasm@26
|
2202 ((suffix == "csv") ? "," : "\t"));
|
matthiasm@26
|
2203 writer.write();
|
matthiasm@26
|
2204
|
matthiasm@26
|
2205 if (!writer.isOK()) {
|
matthiasm@26
|
2206 error = writer.getError();
|
matthiasm@26
|
2207 }
|
matthiasm@26
|
2208 }
|
matthiasm@26
|
2209
|
matthiasm@26
|
2210 if (error != "") {
|
matthiasm@26
|
2211 QMessageBox::critical(this, tr("Failed to write file"), error);
|
matthiasm@26
|
2212 } else {
|
matthiasm@26
|
2213 emit activity(tr("Export layer to \"%1\"").arg(path));
|
matthiasm@26
|
2214 }
|
matthiasm@26
|
2215 }
|
matthiasm@26
|
2216
|
Chris@139
|
2217 void
|
Chris@399
|
2218 MainWindow::doubleClickSelectInvoked(sv_frame_t frame)
|
Chris@139
|
2219 {
|
Chris@399
|
2220 sv_frame_t f0, f1;
|
Chris@139
|
2221 m_analyser->getEnclosingSelectionScope(frame, f0, f1);
|
Chris@139
|
2222
|
Chris@139
|
2223 cerr << "MainWindow::doubleClickSelectInvoked(" << frame << "): [" << f0 << "," << f1 << "]" << endl;
|
Chris@139
|
2224
|
Chris@164
|
2225 Selection sel(f0, f1);
|
Chris@164
|
2226 m_viewManager->setSelection(sel);
|
Chris@164
|
2227 }
|
Chris@164
|
2228
|
Chris@164
|
2229 void
|
Chris@194
|
2230 MainWindow::abandonSelection()
|
Chris@167
|
2231 {
|
Chris@194
|
2232 // Named abandonSelection rather than clearSelection to indicate
|
Chris@194
|
2233 // that this is an active operation -- it restores the original
|
Chris@194
|
2234 // content of the pitch track in the selected region rather than
|
Chris@194
|
2235 // simply un-selecting.
|
Chris@194
|
2236
|
Chris@194
|
2237 cerr << "MainWindow::abandonSelection()" << endl;
|
Chris@167
|
2238
|
Chris@199
|
2239 CommandHistory::getInstance()->startCompoundOperation(tr("Abandon Selection"), true);
|
Chris@168
|
2240
|
Chris@194
|
2241 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@194
|
2242 if (!selections.empty()) {
|
Chris@194
|
2243 Selection sel = *selections.begin();
|
Chris@199
|
2244 m_analyser->abandonReAnalysis(sel);
|
Chris@252
|
2245 auxSnapNotes(sel);
|
Chris@194
|
2246 }
|
Chris@194
|
2247
|
Chris@167
|
2248 MainWindowBase::clearSelection();
|
Chris@168
|
2249
|
Chris@168
|
2250 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@167
|
2251 }
|
Chris@167
|
2252
|
Chris@167
|
2253 void
|
Chris@192
|
2254 MainWindow::selectionChangedByUser()
|
Chris@164
|
2255 {
|
Chris@221
|
2256 if (!m_document) {
|
Chris@221
|
2257 // we're exiting, most likely
|
Chris@221
|
2258 return;
|
Chris@221
|
2259 }
|
Chris@221
|
2260
|
Chris@164
|
2261 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@164
|
2262
|
Chris@192
|
2263 cerr << "MainWindow::selectionChangedByUser" << endl;
|
Chris@192
|
2264
|
Chris@192
|
2265 m_analyser->showPitchCandidates(m_pendingConstraint.isConstrained());
|
Chris@190
|
2266
|
Chris@164
|
2267 if (!selections.empty()) {
|
Chris@164
|
2268 Selection sel = *selections.begin();
|
Chris@192
|
2269 cerr << "MainWindow::selectionChangedByUser: have selection" << endl;
|
Chris@192
|
2270 QString error = m_analyser->reAnalyseSelection
|
Chris@192
|
2271 (sel, m_pendingConstraint);
|
Chris@164
|
2272 if (error != "") {
|
Chris@164
|
2273 QMessageBox::critical
|
Chris@164
|
2274 (this, tr("Failed to analyse selection"),
|
Chris@164
|
2275 tr("<b>Analysis failed</b><p>%2</p>").arg(error));
|
Chris@164
|
2276 }
|
Chris@164
|
2277 }
|
Chris@192
|
2278
|
Chris@192
|
2279 m_pendingConstraint = Analyser::FrequencyRange();
|
Chris@192
|
2280 }
|
Chris@192
|
2281
|
Chris@192
|
2282 void
|
Chris@192
|
2283 MainWindow::regionOutlined(QRect r)
|
Chris@192
|
2284 {
|
Chris@192
|
2285 cerr << "MainWindow::regionOutlined(" << r.x() << "," << r.y() << "," << r.width() << "," << r.height() << ")" << endl;
|
Chris@192
|
2286
|
Chris@192
|
2287 Pane *pane = qobject_cast<Pane *>(sender());
|
Chris@192
|
2288 if (!pane) {
|
Chris@192
|
2289 cerr << "MainWindow::regionOutlined: not sent by pane, ignoring" << endl;
|
Chris@192
|
2290 return;
|
Chris@192
|
2291 }
|
Chris@192
|
2292
|
Chris@192
|
2293 if (!m_analyser) {
|
Chris@192
|
2294 cerr << "MainWindow::regionOutlined: no analyser, ignoring" << endl;
|
Chris@192
|
2295 return;
|
Chris@192
|
2296 }
|
Chris@192
|
2297
|
Chris@192
|
2298 SpectrogramLayer *spectrogram = qobject_cast<SpectrogramLayer *>
|
Chris@192
|
2299 (m_analyser->getLayer(Analyser::Spectrogram));
|
Chris@192
|
2300 if (!spectrogram) {
|
Chris@192
|
2301 cerr << "MainWindow::regionOutlined: no spectrogram layer, ignoring" << endl;
|
Chris@192
|
2302 return;
|
Chris@192
|
2303 }
|
Chris@192
|
2304
|
Chris@399
|
2305 sv_frame_t f0 = pane->getFrameForX(r.x());
|
Chris@399
|
2306 sv_frame_t f1 = pane->getFrameForX(r.x() + r.width());
|
Chris@192
|
2307
|
Chris@399
|
2308 double v0 = spectrogram->getFrequencyForY(pane, r.y() + r.height());
|
Chris@399
|
2309 double v1 = spectrogram->getFrequencyForY(pane, r.y());
|
Chris@192
|
2310
|
Chris@192
|
2311 cerr << "MainWindow::regionOutlined: frame " << f0 << " -> " << f1
|
Chris@192
|
2312 << ", frequency " << v0 << " -> " << v1 << endl;
|
Chris@192
|
2313
|
Chris@192
|
2314 m_pendingConstraint = Analyser::FrequencyRange(v0, v1);
|
Chris@192
|
2315
|
Chris@192
|
2316 Selection sel(f0, f1);
|
Chris@192
|
2317 m_viewManager->setSelection(sel);
|
Chris@0
|
2318 }
|
Chris@0
|
2319
|
Chris@0
|
2320 void
|
Chris@168
|
2321 MainWindow::clearPitches()
|
Chris@168
|
2322 {
|
Chris@168
|
2323 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@168
|
2324
|
Chris@168
|
2325 CommandHistory::getInstance()->startCompoundOperation(tr("Clear Pitches"), true);
|
Chris@168
|
2326
|
Chris@168
|
2327 for (MultiSelection::SelectionList::iterator k = selections.begin();
|
Chris@168
|
2328 k != selections.end(); ++k) {
|
Chris@184
|
2329 m_analyser->deletePitches(*k);
|
Chris@252
|
2330 auxSnapNotes(*k);
|
Chris@168
|
2331 }
|
Chris@168
|
2332
|
Chris@168
|
2333 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@168
|
2334 }
|
Chris@168
|
2335
|
Chris@168
|
2336 void
|
Chris@142
|
2337 MainWindow::octaveShift(bool up)
|
Chris@142
|
2338 {
|
Chris@142
|
2339 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@142
|
2340
|
Chris@211
|
2341 CommandHistory::getInstance()->startCompoundOperation
|
Chris@211
|
2342 (up ? tr("Choose Higher Octave") : tr("Choose Lower Octave"), true);
|
Chris@142
|
2343
|
Chris@168
|
2344 for (MultiSelection::SelectionList::iterator k = selections.begin();
|
Chris@168
|
2345 k != selections.end(); ++k) {
|
Chris@142
|
2346
|
Chris@168
|
2347 m_analyser->shiftOctave(*k, up);
|
Chris@252
|
2348 auxSnapNotes(*k);
|
Chris@142
|
2349 }
|
Chris@142
|
2350
|
Chris@142
|
2351 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@142
|
2352 }
|
Chris@142
|
2353
|
Chris@142
|
2354 void
|
Chris@184
|
2355 MainWindow::togglePitchCandidates()
|
Chris@184
|
2356 {
|
Chris@199
|
2357 CommandHistory::getInstance()->startCompoundOperation(tr("Toggle Pitch Candidates"), true);
|
Chris@199
|
2358
|
Chris@184
|
2359 m_analyser->showPitchCandidates(!m_analyser->arePitchCandidatesShown());
|
Chris@199
|
2360
|
Chris@199
|
2361 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@199
|
2362
|
Chris@187
|
2363 updateMenuStates();
|
Chris@184
|
2364 }
|
Chris@184
|
2365
|
Chris@184
|
2366 void
|
Chris@184
|
2367 MainWindow::switchPitchUp()
|
Chris@167
|
2368 {
|
Chris@211
|
2369 if (m_analyser->arePitchCandidatesShown()) {
|
Chris@211
|
2370 if (m_analyser->haveHigherPitchCandidate()) {
|
Chris@211
|
2371
|
Chris@211
|
2372 CommandHistory::getInstance()->startCompoundOperation
|
Chris@211
|
2373 (tr("Choose Higher Pitch Candidate"), true);
|
Chris@211
|
2374
|
Chris@211
|
2375 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@211
|
2376
|
Chris@211
|
2377 for (MultiSelection::SelectionList::iterator k = selections.begin();
|
Chris@211
|
2378 k != selections.end(); ++k) {
|
Chris@211
|
2379 m_analyser->switchPitchCandidate(*k, true);
|
Chris@252
|
2380 auxSnapNotes(*k);
|
Chris@211
|
2381 }
|
Chris@211
|
2382
|
Chris@211
|
2383 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@211
|
2384 }
|
Chris@211
|
2385 } else {
|
Chris@211
|
2386 octaveShift(true);
|
Chris@167
|
2387 }
|
Chris@167
|
2388 }
|
Chris@167
|
2389
|
Chris@167
|
2390 void
|
Chris@184
|
2391 MainWindow::switchPitchDown()
|
Chris@184
|
2392 {
|
Chris@211
|
2393 if (m_analyser->arePitchCandidatesShown()) {
|
Chris@211
|
2394 if (m_analyser->haveLowerPitchCandidate()) {
|
Chris@211
|
2395
|
Chris@211
|
2396 CommandHistory::getInstance()->startCompoundOperation
|
Chris@211
|
2397 (tr("Choose Lower Pitch Candidate"), true);
|
Chris@211
|
2398
|
Chris@211
|
2399 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@211
|
2400
|
Chris@211
|
2401 for (MultiSelection::SelectionList::iterator k = selections.begin();
|
Chris@211
|
2402 k != selections.end(); ++k) {
|
Chris@211
|
2403 m_analyser->switchPitchCandidate(*k, false);
|
Chris@252
|
2404 auxSnapNotes(*k);
|
Chris@211
|
2405 }
|
Chris@211
|
2406
|
Chris@211
|
2407 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@211
|
2408 }
|
Chris@211
|
2409 } else {
|
Chris@211
|
2410 octaveShift(false);
|
Chris@184
|
2411 }
|
Chris@184
|
2412 }
|
Chris@184
|
2413
|
Chris@184
|
2414 void
|
Chris@237
|
2415 MainWindow::snapNotesToPitches()
|
Chris@237
|
2416 {
|
matthiasm@274
|
2417 cerr << "in snapNotesToPitches" << endl;
|
Chris@237
|
2418 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@237
|
2419
|
Chris@237
|
2420 if (!selections.empty()) {
|
Chris@237
|
2421
|
Chris@237
|
2422 CommandHistory::getInstance()->startCompoundOperation
|
Chris@237
|
2423 (tr("Snap Notes to Pitches"), true);
|
Chris@237
|
2424
|
Chris@237
|
2425 for (MultiSelection::SelectionList::iterator k = selections.begin();
|
Chris@237
|
2426 k != selections.end(); ++k) {
|
Chris@239
|
2427 auxSnapNotes(*k);
|
Chris@237
|
2428 }
|
Chris@237
|
2429
|
Chris@237
|
2430 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@237
|
2431 }
|
Chris@237
|
2432 }
|
Chris@237
|
2433
|
Chris@237
|
2434 void
|
Chris@239
|
2435 MainWindow::auxSnapNotes(Selection s)
|
Chris@239
|
2436 {
|
matthiasm@274
|
2437 cerr << "in auxSnapNotes" << endl;
|
Chris@239
|
2438 FlexiNoteLayer *layer =
|
Chris@239
|
2439 qobject_cast<FlexiNoteLayer *>(m_analyser->getLayer(Analyser::Notes));
|
Chris@239
|
2440 if (!layer) return;
|
Chris@239
|
2441
|
Chris@239
|
2442 layer->snapSelectedNotesToPitchTrack(m_analyser->getPane(), s);
|
Chris@239
|
2443 }
|
Chris@239
|
2444
|
Chris@239
|
2445 void
|
Chris@240
|
2446 MainWindow::splitNote()
|
Chris@237
|
2447 {
|
Chris@237
|
2448 FlexiNoteLayer *layer =
|
Chris@237
|
2449 qobject_cast<FlexiNoteLayer *>(m_analyser->getLayer(Analyser::Notes));
|
Chris@237
|
2450 if (!layer) return;
|
Chris@237
|
2451
|
Chris@240
|
2452 layer->splitNotesAt(m_analyser->getPane(), m_viewManager->getPlaybackFrame());
|
Chris@237
|
2453 }
|
Chris@237
|
2454
|
Chris@237
|
2455 void
|
Chris@238
|
2456 MainWindow::mergeNotes()
|
Chris@238
|
2457 {
|
Chris@238
|
2458 FlexiNoteLayer *layer =
|
Chris@238
|
2459 qobject_cast<FlexiNoteLayer *>(m_analyser->getLayer(Analyser::Notes));
|
Chris@238
|
2460 if (!layer) return;
|
Chris@238
|
2461
|
Chris@238
|
2462 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@238
|
2463
|
Chris@238
|
2464 if (!selections.empty()) {
|
Chris@238
|
2465
|
Chris@238
|
2466 CommandHistory::getInstance()->startCompoundOperation
|
Chris@238
|
2467 (tr("Merge Notes"), true);
|
Chris@238
|
2468
|
Chris@238
|
2469 for (MultiSelection::SelectionList::iterator k = selections.begin();
|
Chris@238
|
2470 k != selections.end(); ++k) {
|
Chris@240
|
2471 layer->mergeNotes(m_analyser->getPane(), *k, true);
|
Chris@238
|
2472 }
|
Chris@238
|
2473
|
Chris@238
|
2474 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@238
|
2475 }
|
Chris@238
|
2476 }
|
Chris@238
|
2477
|
Chris@238
|
2478 void
|
matthiasm@292
|
2479 MainWindow::deleteNotes()
|
matthiasm@292
|
2480 {
|
matthiasm@292
|
2481 FlexiNoteLayer *layer =
|
matthiasm@292
|
2482 qobject_cast<FlexiNoteLayer *>(m_analyser->getLayer(Analyser::Notes));
|
matthiasm@292
|
2483 if (!layer) return;
|
matthiasm@292
|
2484
|
matthiasm@292
|
2485 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
matthiasm@292
|
2486
|
matthiasm@292
|
2487 if (!selections.empty()) {
|
matthiasm@292
|
2488
|
matthiasm@292
|
2489 CommandHistory::getInstance()->startCompoundOperation
|
matthiasm@292
|
2490 (tr("Delete Notes"), true);
|
matthiasm@292
|
2491
|
matthiasm@292
|
2492 for (MultiSelection::SelectionList::iterator k = selections.begin();
|
matthiasm@292
|
2493 k != selections.end(); ++k) {
|
matthiasm@294
|
2494 layer->deleteSelectionInclusive(*k);
|
matthiasm@292
|
2495 }
|
matthiasm@292
|
2496
|
matthiasm@292
|
2497 CommandHistory::getInstance()->endCompoundOperation();
|
matthiasm@292
|
2498 }
|
matthiasm@292
|
2499 }
|
matthiasm@292
|
2500
|
matthiasm@292
|
2501
|
matthiasm@292
|
2502 void
|
Chris@240
|
2503 MainWindow::formNoteFromSelection()
|
Chris@240
|
2504 {
|
matthiasm@293
|
2505 Layer *layer0 = m_analyser->getLayer(Analyser::Notes);
|
matthiasm@293
|
2506 FlexiNoteModel *model = qobject_cast<FlexiNoteModel *>(layer0->getModel());
|
matthiasm@293
|
2507
|
Chris@240
|
2508 FlexiNoteLayer *layer =
|
Chris@240
|
2509 qobject_cast<FlexiNoteLayer *>(m_analyser->getLayer(Analyser::Notes));
|
Chris@240
|
2510 if (!layer) return;
|
Chris@240
|
2511
|
Chris@240
|
2512 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@240
|
2513
|
Chris@240
|
2514 if (!selections.empty()) {
|
Chris@240
|
2515
|
Chris@240
|
2516 CommandHistory::getInstance()->startCompoundOperation
|
Chris@240
|
2517 (tr("Form Note from Selection"), true);
|
Chris@240
|
2518 for (MultiSelection::SelectionList::iterator k = selections.begin();
|
Chris@240
|
2519 k != selections.end(); ++k) {
|
Chris@355
|
2520 if (!model->getNotesWithin(k->getStartFrame(), k->getEndFrame()).empty()) {
|
matthiasm@293
|
2521 layer->splitNotesAt(m_analyser->getPane(), k->getStartFrame());
|
matthiasm@293
|
2522 layer->splitNotesAt(m_analyser->getPane(), k->getEndFrame());
|
matthiasm@293
|
2523 layer->mergeNotes(m_analyser->getPane(), *k, false);
|
matthiasm@293
|
2524 } else {
|
matthiasm@293
|
2525 layer->addNoteOn(k->getStartFrame(), 100, 100);
|
matthiasm@293
|
2526 layer->addNoteOff(k->getEndFrame(), 100);
|
matthiasm@293
|
2527 layer->mergeNotes(m_analyser->getPane(), *k, false); // only so the note adapts in case of exisitng pitch track
|
matthiasm@293
|
2528 }
|
Chris@240
|
2529 }
|
Chris@240
|
2530
|
matthiasm@293
|
2531 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@240
|
2532 }
|
Chris@240
|
2533 }
|
Chris@240
|
2534
|
Chris@240
|
2535 void
|
Chris@0
|
2536 MainWindow::playSpeedChanged(int position)
|
Chris@0
|
2537 {
|
Chris@0
|
2538 PlaySpeedRangeMapper mapper(0, 200);
|
Chris@0
|
2539
|
Chris@399
|
2540 double percent = m_playSpeed->mappedValue();
|
Chris@399
|
2541 double factor = mapper.getFactorForValue(percent);
|
Chris@0
|
2542
|
Chris@70
|
2543 cerr << "speed = " << position << " percent = " << percent << " factor = " << factor << endl;
|
Chris@0
|
2544
|
Chris@0
|
2545 bool something = (position != 100);
|
Chris@0
|
2546
|
Chris@399
|
2547 int pc = int(lrint(percent));
|
Chris@0
|
2548
|
Chris@0
|
2549 if (!something) {
|
Chris@0
|
2550 contextHelpChanged(tr("Playback speed: Normal"));
|
Chris@0
|
2551 } else {
|
Chris@0
|
2552 contextHelpChanged(tr("Playback speed: %1%2%")
|
Chris@0
|
2553 .arg(position > 100 ? "+" : "")
|
Chris@0
|
2554 .arg(pc));
|
Chris@0
|
2555 }
|
Chris@0
|
2556
|
Chris@0
|
2557 m_playSource->setTimeStretch(factor);
|
Chris@0
|
2558
|
Chris@0
|
2559 updateMenuStates();
|
Chris@0
|
2560 }
|
Chris@0
|
2561
|
Chris@0
|
2562 void
|
Chris@0
|
2563 MainWindow::playSharpenToggled()
|
Chris@0
|
2564 {
|
Chris@0
|
2565 QSettings settings;
|
Chris@0
|
2566 settings.beginGroup("MainWindow");
|
Chris@0
|
2567 settings.setValue("playsharpen", m_playSharpen->isChecked());
|
Chris@0
|
2568 settings.endGroup();
|
Chris@0
|
2569
|
Chris@0
|
2570 playSpeedChanged(m_playSpeed->value());
|
justin@157
|
2571 // TODO: pitch gain?
|
Chris@0
|
2572 }
|
Chris@0
|
2573
|
Chris@0
|
2574 void
|
Chris@0
|
2575 MainWindow::playMonoToggled()
|
Chris@0
|
2576 {
|
Chris@0
|
2577 QSettings settings;
|
Chris@0
|
2578 settings.beginGroup("MainWindow");
|
Chris@0
|
2579 settings.setValue("playmono", m_playMono->isChecked());
|
Chris@0
|
2580 settings.endGroup();
|
Chris@0
|
2581
|
Chris@0
|
2582 playSpeedChanged(m_playSpeed->value());
|
justin@157
|
2583 // TODO: pitch gain?
|
Chris@0
|
2584 }
|
Chris@0
|
2585
|
Chris@0
|
2586 void
|
Chris@0
|
2587 MainWindow::speedUpPlayback()
|
Chris@0
|
2588 {
|
Chris@0
|
2589 int value = m_playSpeed->value();
|
Chris@0
|
2590 value = value + m_playSpeed->pageStep();
|
Chris@0
|
2591 if (value > m_playSpeed->maximum()) value = m_playSpeed->maximum();
|
Chris@0
|
2592 m_playSpeed->setValue(value);
|
Chris@0
|
2593 }
|
Chris@0
|
2594
|
Chris@0
|
2595 void
|
Chris@0
|
2596 MainWindow::slowDownPlayback()
|
Chris@0
|
2597 {
|
Chris@0
|
2598 int value = m_playSpeed->value();
|
Chris@0
|
2599 value = value - m_playSpeed->pageStep();
|
Chris@0
|
2600 if (value < m_playSpeed->minimum()) value = m_playSpeed->minimum();
|
Chris@0
|
2601 m_playSpeed->setValue(value);
|
Chris@0
|
2602 }
|
Chris@0
|
2603
|
Chris@0
|
2604 void
|
Chris@0
|
2605 MainWindow::restoreNormalPlayback()
|
Chris@0
|
2606 {
|
Chris@0
|
2607 m_playSpeed->setValue(m_playSpeed->defaultValue());
|
Chris@0
|
2608 }
|
Chris@0
|
2609
|
justin@157
|
2610 void
|
Chris@404
|
2611 MainWindow::audioGainChanged(float gain)
|
justin@159
|
2612 {
|
Chris@404
|
2613 double db = AudioLevel::multiplier_to_dB(gain);
|
Chris@404
|
2614 cerr << "gain = " << gain << " (" << db << " dB)" << endl;
|
Chris@404
|
2615 contextHelpChanged(tr("Audio Gain: %1 dB").arg(db));
|
Chris@417
|
2616 if (gain == 0.f) {
|
Chris@417
|
2617 m_analyser->setAudible(Analyser::Audio, false);
|
Chris@417
|
2618 } else {
|
Chris@417
|
2619 m_analyser->setAudible(Analyser::Audio, true);
|
Chris@417
|
2620 m_analyser->setGain(Analyser::Audio, gain);
|
Chris@417
|
2621 }
|
justin@159
|
2622 updateMenuStates();
|
justin@159
|
2623 }
|
justin@159
|
2624
|
justin@159
|
2625 void
|
Chris@404
|
2626 MainWindow::pitchGainChanged(float gain)
|
justin@159
|
2627 {
|
Chris@404
|
2628 double db = AudioLevel::multiplier_to_dB(gain);
|
Chris@404
|
2629 cerr << "gain = " << gain << " (" << db << " dB)" << endl;
|
Chris@404
|
2630 contextHelpChanged(tr("Pitch Gain: %1 dB").arg(db));
|
Chris@417
|
2631 if (gain == 0.f) {
|
Chris@417
|
2632 m_analyser->setAudible(Analyser::PitchTrack, false);
|
Chris@417
|
2633 } else {
|
Chris@417
|
2634 m_analyser->setAudible(Analyser::PitchTrack, true);
|
Chris@417
|
2635 m_analyser->setGain(Analyser::PitchTrack, gain);
|
Chris@417
|
2636 }
|
justin@157
|
2637 updateMenuStates();
|
justin@157
|
2638 }
|
justin@157
|
2639
|
justin@157
|
2640 void
|
Chris@404
|
2641 MainWindow::notesGainChanged(float gain)
|
justin@157
|
2642 {
|
Chris@404
|
2643 double db = AudioLevel::multiplier_to_dB(gain);
|
Chris@404
|
2644 cerr << "gain = " << gain << " (" << db << " dB)" << endl;
|
Chris@404
|
2645 contextHelpChanged(tr("Notes Gain: %1 dB").arg(db));
|
Chris@417
|
2646 if (gain == 0.f) {
|
Chris@417
|
2647 m_analyser->setAudible(Analyser::Notes, false);
|
Chris@417
|
2648 } else {
|
Chris@417
|
2649 m_analyser->setAudible(Analyser::Notes, true);
|
Chris@417
|
2650 m_analyser->setGain(Analyser::Notes, gain);
|
Chris@417
|
2651 }
|
justin@159
|
2652 updateMenuStates();
|
justin@159
|
2653 }
|
justin@159
|
2654
|
justin@159
|
2655 void
|
Chris@404
|
2656 MainWindow::audioPanChanged(float pan)
|
justin@159
|
2657 {
|
Chris@404
|
2658 contextHelpChanged(tr("Audio Pan: %1").arg(pan));
|
Chris@404
|
2659 m_analyser->setPan(Analyser::Audio, pan);
|
justin@160
|
2660 updateMenuStates();
|
justin@160
|
2661 }
|
justin@160
|
2662
|
justin@160
|
2663 void
|
Chris@404
|
2664 MainWindow::pitchPanChanged(float pan)
|
justin@160
|
2665 {
|
Chris@404
|
2666 contextHelpChanged(tr("Pitch Pan: %1").arg(pan));
|
Chris@404
|
2667 m_analyser->setPan(Analyser::PitchTrack, pan);
|
justin@160
|
2668 updateMenuStates();
|
justin@160
|
2669 }
|
justin@160
|
2670
|
justin@160
|
2671 void
|
Chris@404
|
2672 MainWindow::notesPanChanged(float pan)
|
justin@160
|
2673 {
|
Chris@404
|
2674 contextHelpChanged(tr("Notes Pan: %1").arg(pan));
|
Chris@404
|
2675 m_analyser->setPan(Analyser::Notes, pan);
|
justin@160
|
2676 updateMenuStates();
|
justin@160
|
2677 }
|
justin@160
|
2678
|
justin@160
|
2679 void
|
Chris@0
|
2680 MainWindow::updateVisibleRangeDisplay(Pane *p) const
|
Chris@0
|
2681 {
|
Chris@0
|
2682 if (!getMainModel() || !p) {
|
Chris@0
|
2683 return;
|
Chris@0
|
2684 }
|
Chris@0
|
2685
|
Chris@0
|
2686 bool haveSelection = false;
|
Chris@403
|
2687 sv_frame_t startFrame = 0, endFrame = 0;
|
Chris@0
|
2688
|
Chris@0
|
2689 if (m_viewManager && m_viewManager->haveInProgressSelection()) {
|
Chris@0
|
2690
|
Chris@0
|
2691 bool exclusive = false;
|
Chris@0
|
2692 Selection s = m_viewManager->getInProgressSelection(exclusive);
|
Chris@0
|
2693
|
Chris@0
|
2694 if (!s.isEmpty()) {
|
Chris@0
|
2695 haveSelection = true;
|
Chris@0
|
2696 startFrame = s.getStartFrame();
|
Chris@0
|
2697 endFrame = s.getEndFrame();
|
Chris@0
|
2698 }
|
Chris@0
|
2699 }
|
Chris@0
|
2700
|
Chris@0
|
2701 if (!haveSelection) {
|
Chris@0
|
2702 startFrame = p->getFirstVisibleFrame();
|
Chris@0
|
2703 endFrame = p->getLastVisibleFrame();
|
Chris@0
|
2704 }
|
Chris@0
|
2705
|
Chris@0
|
2706 RealTime start = RealTime::frame2RealTime
|
Chris@0
|
2707 (startFrame, getMainModel()->getSampleRate());
|
Chris@0
|
2708
|
Chris@0
|
2709 RealTime end = RealTime::frame2RealTime
|
Chris@0
|
2710 (endFrame, getMainModel()->getSampleRate());
|
Chris@0
|
2711
|
Chris@0
|
2712 RealTime duration = end - start;
|
Chris@0
|
2713
|
Chris@0
|
2714 QString startStr, endStr, durationStr;
|
Chris@0
|
2715 startStr = start.toText(true).c_str();
|
Chris@0
|
2716 endStr = end.toText(true).c_str();
|
Chris@0
|
2717 durationStr = duration.toText(true).c_str();
|
Chris@0
|
2718
|
Chris@0
|
2719 if (haveSelection) {
|
Chris@0
|
2720 m_myStatusMessage = tr("Selection: %1 to %2 (duration %3)")
|
Chris@0
|
2721 .arg(startStr).arg(endStr).arg(durationStr);
|
Chris@0
|
2722 } else {
|
Chris@0
|
2723 m_myStatusMessage = tr("Visible: %1 to %2 (duration %3)")
|
Chris@0
|
2724 .arg(startStr).arg(endStr).arg(durationStr);
|
Chris@0
|
2725 }
|
matthiasm@42
|
2726
|
Chris@362
|
2727 getStatusLabel()->setText(m_myStatusMessage);
|
Chris@0
|
2728 }
|
Chris@0
|
2729
|
Chris@0
|
2730 void
|
Chris@0
|
2731 MainWindow::updatePositionStatusDisplays() const
|
Chris@0
|
2732 {
|
Chris@0
|
2733 if (!statusBar()->isVisible()) return;
|
Chris@0
|
2734
|
Chris@0
|
2735 }
|
Chris@0
|
2736
|
Chris@0
|
2737 void
|
Chris@0
|
2738 MainWindow::outputLevelsChanged(float left, float right)
|
Chris@0
|
2739 {
|
Chris@0
|
2740 m_fader->setPeakLeft(left);
|
Chris@0
|
2741 m_fader->setPeakRight(right);
|
Chris@0
|
2742 }
|
Chris@0
|
2743
|
Chris@0
|
2744 void
|
Chris@399
|
2745 MainWindow::sampleRateMismatch(sv_samplerate_t ,
|
Chris@399
|
2746 sv_samplerate_t ,
|
Chris@399
|
2747 bool )
|
Chris@0
|
2748 {
|
Chris@0
|
2749 updateDescriptionLabel();
|
Chris@0
|
2750 }
|
Chris@0
|
2751
|
Chris@0
|
2752 void
|
Chris@0
|
2753 MainWindow::audioOverloadPluginDisabled()
|
Chris@0
|
2754 {
|
Chris@0
|
2755 QMessageBox::information
|
Chris@0
|
2756 (this, tr("Audio processing overload"),
|
Chris@0
|
2757 tr("<b>Overloaded</b><p>Audio effects plugin auditioning has been disabled due to a processing overload."));
|
Chris@0
|
2758 }
|
Chris@0
|
2759
|
Chris@0
|
2760 void
|
Chris@0
|
2761 MainWindow::audioTimeStretchMultiChannelDisabled()
|
Chris@0
|
2762 {
|
Chris@0
|
2763 static bool shownOnce = false;
|
Chris@0
|
2764 if (shownOnce) return;
|
Chris@0
|
2765 QMessageBox::information
|
Chris@0
|
2766 (this, tr("Audio processing overload"),
|
Chris@0
|
2767 tr("<b>Overloaded</b><p>Audio playback speed processing has been reduced to a single channel, due to a processing overload."));
|
Chris@0
|
2768 shownOnce = true;
|
Chris@0
|
2769 }
|
Chris@0
|
2770
|
Chris@0
|
2771 void
|
Chris@0
|
2772 MainWindow::layerRemoved(Layer *layer)
|
Chris@0
|
2773 {
|
Chris@0
|
2774 MainWindowBase::layerRemoved(layer);
|
Chris@0
|
2775 }
|
Chris@0
|
2776
|
Chris@0
|
2777 void
|
Chris@0
|
2778 MainWindow::layerInAView(Layer *layer, bool inAView)
|
Chris@0
|
2779 {
|
Chris@0
|
2780 MainWindowBase::layerInAView(layer, inAView);
|
Chris@0
|
2781 }
|
Chris@0
|
2782
|
Chris@0
|
2783 void
|
Chris@0
|
2784 MainWindow::modelAdded(Model *model)
|
Chris@0
|
2785 {
|
Chris@0
|
2786 MainWindowBase::modelAdded(model);
|
Chris@3
|
2787 DenseTimeValueModel *dtvm = qobject_cast<DenseTimeValueModel *>(model);
|
Chris@0
|
2788 if (dtvm) {
|
Chris@70
|
2789 cerr << "A dense time-value model (such as an audio file) has been loaded" << endl;
|
Chris@0
|
2790 }
|
Chris@0
|
2791 }
|
Chris@0
|
2792
|
Chris@0
|
2793 void
|
Chris@0
|
2794 MainWindow::modelAboutToBeDeleted(Model *model)
|
Chris@0
|
2795 {
|
Chris@0
|
2796 MainWindowBase::modelAboutToBeDeleted(model);
|
Chris@0
|
2797 }
|
Chris@0
|
2798
|
Chris@0
|
2799 void
|
Chris@0
|
2800 MainWindow::mainModelChanged(WaveFileModel *model)
|
Chris@0
|
2801 {
|
Chris@0
|
2802 m_panLayer->setModel(model);
|
Chris@0
|
2803
|
Chris@0
|
2804 MainWindowBase::mainModelChanged(model);
|
Chris@0
|
2805
|
Chris@0
|
2806 if (m_playTarget) {
|
Chris@0
|
2807 connect(m_fader, SIGNAL(valueChanged(float)),
|
Chris@0
|
2808 m_playTarget, SLOT(setOutputGain(float)));
|
Chris@0
|
2809 }
|
Chris@259
|
2810 }
|
Chris@259
|
2811
|
Chris@259
|
2812 void
|
Chris@323
|
2813 MainWindow::analyseNow()
|
Chris@323
|
2814 {
|
Chris@323
|
2815 cerr << "analyseNow called" << endl;
|
Chris@325
|
2816 if (!m_analyser) return;
|
Chris@325
|
2817
|
Chris@325
|
2818 CommandHistory::getInstance()->startCompoundOperation
|
Chris@325
|
2819 (tr("Analyse Audio"), true);
|
Chris@325
|
2820
|
Chris@325
|
2821 QString error = m_analyser->analyseExistingFile();
|
Chris@325
|
2822
|
Chris@325
|
2823 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@325
|
2824
|
Chris@325
|
2825 if (error != "") {
|
Chris@325
|
2826 QMessageBox::warning
|
Chris@325
|
2827 (this,
|
Chris@325
|
2828 tr("Failed to analyse audio"),
|
Chris@325
|
2829 tr("<b>Analysis failed</b><p>%1</p>").arg(error),
|
Chris@325
|
2830 QMessageBox::Ok);
|
Chris@325
|
2831 }
|
Chris@323
|
2832 }
|
Chris@323
|
2833
|
Chris@323
|
2834 void
|
Chris@259
|
2835 MainWindow::analyseNewMainModel()
|
Chris@259
|
2836 {
|
Chris@259
|
2837 WaveFileModel *model = getMainModel();
|
Chris@260
|
2838
|
Chris@260
|
2839 cerr << "MainWindow::analyseNewMainModel: main model is " << model << endl;
|
Chris@260
|
2840
|
Chris@260
|
2841 cerr << "(document is " << m_document << ", it says main model is " << m_document->getMainModel() << ")" << endl;
|
Chris@259
|
2842
|
Chris@324
|
2843 if (!model) {
|
Chris@324
|
2844 cerr << "no main model!" << endl;
|
Chris@324
|
2845 return;
|
Chris@324
|
2846 }
|
Chris@324
|
2847
|
Chris@324
|
2848 if (!m_paneStack) {
|
Chris@324
|
2849 cerr << "no pane stack!" << endl;
|
Chris@324
|
2850 return;
|
Chris@324
|
2851 }
|
Chris@324
|
2852
|
Chris@324
|
2853 int pc = m_paneStack->getPaneCount();
|
Chris@324
|
2854 Pane *pane = 0;
|
Chris@324
|
2855 Pane *selectionStrip = 0;
|
Chris@324
|
2856
|
Chris@324
|
2857 if (pc < 2) {
|
Chris@324
|
2858 pane = m_paneStack->addPane();
|
Chris@324
|
2859 selectionStrip = m_paneStack->addPane();
|
Chris@324
|
2860 m_document->addLayerToView
|
Chris@324
|
2861 (selectionStrip,
|
Chris@324
|
2862 m_document->createMainModelLayer(LayerFactory::TimeRuler));
|
Chris@324
|
2863 } else {
|
Chris@324
|
2864 pane = m_paneStack->getPane(0);
|
Chris@324
|
2865 selectionStrip = m_paneStack->getPane(1);
|
Chris@324
|
2866 }
|
Chris@324
|
2867
|
Chris@362
|
2868 pane->setPlaybackFollow(PlaybackScrollPage);
|
Chris@362
|
2869
|
Chris@324
|
2870 if (selectionStrip) {
|
Chris@362
|
2871 selectionStrip->setPlaybackFollow(PlaybackScrollPage);
|
Chris@324
|
2872 selectionStrip->setFixedHeight(26);
|
Chris@324
|
2873 m_paneStack->sizePanesEqually();
|
Chris@324
|
2874 m_viewManager->clearToolModeOverrides();
|
Chris@324
|
2875 m_viewManager->setToolModeFor(selectionStrip,
|
Chris@324
|
2876 ViewManager::SelectMode);
|
Chris@324
|
2877 }
|
Chris@324
|
2878
|
Chris@324
|
2879 if (pane) {
|
Chris@324
|
2880
|
Chris@324
|
2881 disconnect(pane, SIGNAL(regionOutlined(QRect)),
|
Chris@324
|
2882 pane, SLOT(zoomToRegion(QRect)));
|
Chris@324
|
2883 connect(pane, SIGNAL(regionOutlined(QRect)),
|
Chris@324
|
2884 this, SLOT(regionOutlined(QRect)));
|
Chris@324
|
2885
|
Chris@324
|
2886 QString error = m_analyser->newFileLoaded
|
Chris@324
|
2887 (m_document, getMainModel(), m_paneStack, pane);
|
Chris@324
|
2888 if (error != "") {
|
Chris@324
|
2889 QMessageBox::warning
|
Chris@324
|
2890 (this,
|
Chris@324
|
2891 tr("Failed to analyse audio"),
|
Chris@324
|
2892 tr("<b>Analysis failed</b><p>%1</p>").arg(error),
|
Chris@324
|
2893 QMessageBox::Ok);
|
Chris@72
|
2894 }
|
Chris@72
|
2895 }
|
matthiasm@366
|
2896
|
matthiasm@366
|
2897 if (!m_withSpectrogram)
|
matthiasm@366
|
2898 {
|
matthiasm@366
|
2899 m_analyser->setVisible(Analyser::Spectrogram, false);
|
matthiasm@366
|
2900 }
|
matthiasm@366
|
2901
|
matthiasm@366
|
2902 if (!m_withSonification)
|
matthiasm@366
|
2903 {
|
matthiasm@366
|
2904 m_analyser->setAudible(Analyser::PitchTrack, false);
|
matthiasm@366
|
2905 m_analyser->setAudible(Analyser::Notes, false);
|
matthiasm@366
|
2906 }
|
Chris@419
|
2907
|
Chris@419
|
2908 updateLayerStatuses();
|
Chris@0
|
2909 }
|
Chris@0
|
2910
|
Chris@0
|
2911 void
|
Chris@0
|
2912 MainWindow::modelGenerationFailed(QString transformName, QString message)
|
Chris@0
|
2913 {
|
Chris@0
|
2914 if (message != "") {
|
Chris@0
|
2915
|
Chris@0
|
2916 QMessageBox::warning
|
Chris@0
|
2917 (this,
|
Chris@0
|
2918 tr("Failed to generate layer"),
|
Chris@0
|
2919 tr("<b>Layer generation failed</b><p>Failed to generate derived layer.<p>The layer transform \"%1\" failed:<p>%2")
|
Chris@0
|
2920 .arg(transformName).arg(message),
|
Chris@0
|
2921 QMessageBox::Ok);
|
Chris@0
|
2922 } else {
|
Chris@0
|
2923 QMessageBox::warning
|
Chris@0
|
2924 (this,
|
Chris@0
|
2925 tr("Failed to generate layer"),
|
Chris@0
|
2926 tr("<b>Layer generation failed</b><p>Failed to generate a derived layer.<p>The layer transform \"%1\" failed.<p>No error information is available.")
|
Chris@0
|
2927 .arg(transformName),
|
Chris@0
|
2928 QMessageBox::Ok);
|
Chris@0
|
2929 }
|
Chris@0
|
2930 }
|
Chris@0
|
2931
|
Chris@0
|
2932 void
|
Chris@355
|
2933 MainWindow::modelGenerationWarning(QString /* transformName */, QString message)
|
Chris@0
|
2934 {
|
Chris@0
|
2935 QMessageBox::warning
|
Chris@0
|
2936 (this, tr("Warning"), message, QMessageBox::Ok);
|
Chris@0
|
2937 }
|
Chris@0
|
2938
|
Chris@0
|
2939 void
|
Chris@0
|
2940 MainWindow::modelRegenerationFailed(QString layerName,
|
Chris@399
|
2941 QString transformName,
|
Chris@399
|
2942 QString message)
|
Chris@0
|
2943 {
|
Chris@0
|
2944 if (message != "") {
|
Chris@0
|
2945
|
Chris@0
|
2946 QMessageBox::warning
|
Chris@0
|
2947 (this,
|
Chris@0
|
2948 tr("Failed to regenerate layer"),
|
Chris@0
|
2949 tr("<b>Layer generation failed</b><p>Failed to regenerate derived layer \"%1\" using new data model as input.<p>The layer transform \"%2\" failed:<p>%3")
|
Chris@0
|
2950 .arg(layerName).arg(transformName).arg(message),
|
Chris@0
|
2951 QMessageBox::Ok);
|
Chris@0
|
2952 } else {
|
Chris@0
|
2953 QMessageBox::warning
|
Chris@0
|
2954 (this,
|
Chris@0
|
2955 tr("Failed to regenerate layer"),
|
Chris@0
|
2956 tr("<b>Layer generation failed</b><p>Failed to regenerate derived layer \"%1\" using new data model as input.<p>The layer transform \"%2\" failed.<p>No error information is available.")
|
Chris@0
|
2957 .arg(layerName).arg(transformName),
|
Chris@0
|
2958 QMessageBox::Ok);
|
Chris@0
|
2959 }
|
Chris@0
|
2960 }
|
Chris@0
|
2961
|
Chris@0
|
2962 void
|
Chris@0
|
2963 MainWindow::modelRegenerationWarning(QString layerName,
|
Chris@355
|
2964 QString /* transformName */,
|
Chris@355
|
2965 QString message)
|
Chris@0
|
2966 {
|
Chris@0
|
2967 QMessageBox::warning
|
Chris@0
|
2968 (this, tr("Warning"), tr("<b>Warning when regenerating layer</b><p>When regenerating the derived layer \"%1\" using new data model as input:<p>%2").arg(layerName).arg(message), QMessageBox::Ok);
|
Chris@0
|
2969 }
|
Chris@0
|
2970
|
Chris@0
|
2971 void
|
Chris@0
|
2972 MainWindow::alignmentFailed(QString transformName, QString message)
|
Chris@0
|
2973 {
|
Chris@0
|
2974 QMessageBox::warning
|
Chris@0
|
2975 (this,
|
Chris@0
|
2976 tr("Failed to calculate alignment"),
|
Chris@0
|
2977 tr("<b>Alignment calculation failed</b><p>Failed to calculate an audio alignment using transform \"%1\":<p>%2")
|
Chris@0
|
2978 .arg(transformName).arg(message),
|
Chris@0
|
2979 QMessageBox::Ok);
|
Chris@0
|
2980 }
|
Chris@0
|
2981
|
Chris@0
|
2982 void
|
Chris@0
|
2983 MainWindow::rightButtonMenuRequested(Pane *pane, QPoint position)
|
Chris@0
|
2984 {
|
Chris@70
|
2985 // cerr << "MainWindow::rightButtonMenuRequested(" << pane << ", " << position.x() << ", " << position.y() << ")" << endl;
|
Chris@0
|
2986 m_paneStack->setCurrentPane(pane);
|
Chris@0
|
2987 m_rightButtonMenu->popup(position);
|
Chris@0
|
2988 }
|
Chris@0
|
2989
|
Chris@0
|
2990 void
|
Chris@355
|
2991 MainWindow::handleOSCMessage(const OSCMessage &)
|
Chris@0
|
2992 {
|
Chris@70
|
2993 cerr << "MainWindow::handleOSCMessage: Not implemented" << endl;
|
Chris@0
|
2994 }
|
Chris@0
|
2995
|
Chris@0
|
2996 void
|
Chris@0
|
2997 MainWindow::mouseEnteredWidget()
|
Chris@0
|
2998 {
|
Chris@3
|
2999 QWidget *w = qobject_cast<QWidget *>(sender());
|
Chris@0
|
3000 if (!w) return;
|
Chris@0
|
3001
|
Chris@0
|
3002 if (w == m_fader) {
|
Chris@0
|
3003 contextHelpChanged(tr("Adjust the master playback level"));
|
Chris@0
|
3004 } else if (w == m_playSpeed) {
|
Chris@0
|
3005 contextHelpChanged(tr("Adjust the master playback speed"));
|
Chris@0
|
3006 } else if (w == m_playSharpen && w->isEnabled()) {
|
Chris@0
|
3007 contextHelpChanged(tr("Toggle transient sharpening for playback time scaling"));
|
Chris@0
|
3008 } else if (w == m_playMono && w->isEnabled()) {
|
Chris@0
|
3009 contextHelpChanged(tr("Toggle mono mode for playback time scaling"));
|
Chris@0
|
3010 }
|
Chris@0
|
3011 }
|
Chris@0
|
3012
|
Chris@0
|
3013 void
|
Chris@0
|
3014 MainWindow::mouseLeftWidget()
|
Chris@0
|
3015 {
|
Chris@0
|
3016 contextHelpChanged("");
|
Chris@0
|
3017 }
|
Chris@0
|
3018
|
Chris@0
|
3019 void
|
Chris@0
|
3020 MainWindow::website()
|
Chris@0
|
3021 {
|
Chris@4
|
3022 //!!! todo: URL!
|
Chris@4
|
3023 openHelpUrl(tr("http://code.soundsoftware.ac.uk/projects/tony/"));
|
Chris@0
|
3024 }
|
Chris@0
|
3025
|
Chris@0
|
3026 void
|
Chris@0
|
3027 MainWindow::help()
|
Chris@0
|
3028 {
|
Chris@4
|
3029 //!!! todo: help URL!
|
matthiasm@369
|
3030 openHelpUrl(tr("http://code.soundsoftware.ac.uk/projects/tony/wiki/Reference"));
|
Chris@0
|
3031 }
|
Chris@0
|
3032
|
Chris@0
|
3033 void
|
Chris@0
|
3034 MainWindow::about()
|
Chris@0
|
3035 {
|
Chris@0
|
3036 bool debug = false;
|
Chris@0
|
3037 QString version = "(unknown version)";
|
Chris@0
|
3038
|
Chris@0
|
3039 #ifdef BUILD_DEBUG
|
Chris@0
|
3040 debug = true;
|
Chris@0
|
3041 #endif
|
Chris@0
|
3042 version = tr("Release %1").arg(TONY_VERSION);
|
Chris@0
|
3043
|
Chris@0
|
3044 QString aboutText;
|
Chris@0
|
3045
|
Chris@0
|
3046 aboutText += tr("<h3>About Tony</h3>");
|
Chris@0
|
3047 aboutText += tr("<p>Tony is a program for interactive note and pitch analysis and annotation.</p>");
|
Chris@0
|
3048 aboutText += tr("<p>%1 : %2 configuration</p>")
|
Chris@0
|
3049 .arg(version)
|
Chris@0
|
3050 .arg(debug ? tr("Debug") : tr("Release"));
|
Chris@212
|
3051 aboutText += tr("<p>Using Qt framework version %1.</p>")
|
Chris@206
|
3052 .arg(QT_VERSION_STR);
|
Chris@0
|
3053
|
Chris@0
|
3054 aboutText +=
|
Chris@266
|
3055 "<p>Copyright © 2005–2014 Chris Cannam, Queen Mary University of London, and the Tony project authors: Matthias Mauch, George Fazekas, Justin Salamon, and Rachel Bittner.</p>"
|
Chris@212
|
3056 "<p>pYIN analysis plugin written by Matthias Mauch.</p>"
|
Chris@90
|
3057 "<p>This program is free software; you can redistribute it and/or "
|
Chris@90
|
3058 "modify it under the terms of the GNU General Public License as "
|
Chris@90
|
3059 "published by the Free Software Foundation; either version 2 of the "
|
Chris@0
|
3060 "License, or (at your option) any later version.<br>See the file "
|
Chris@0
|
3061 "COPYING included with this distribution for more information.</p>";
|
Chris@0
|
3062
|
Chris@0
|
3063 QMessageBox::about(this, tr("About %1").arg(QApplication::applicationName()), aboutText);
|
Chris@0
|
3064 }
|
Chris@0
|
3065
|
Chris@0
|
3066 void
|
Chris@0
|
3067 MainWindow::keyReference()
|
Chris@0
|
3068 {
|
Chris@0
|
3069 m_keyReference->show();
|
Chris@0
|
3070 }
|
Chris@0
|
3071
|
Chris@231
|
3072 void
|
Chris@231
|
3073 MainWindow::newerVersionAvailable(QString version)
|
Chris@231
|
3074 {
|
Chris@231
|
3075 //!!! nicer URL would be nicer
|
Chris@231
|
3076 QSettings settings;
|
Chris@231
|
3077 settings.beginGroup("NewerVersionWarning");
|
Chris@231
|
3078 QString tag = QString("version-%1-available-show").arg(version);
|
Chris@231
|
3079 if (settings.value(tag, true).toBool()) {
|
Chris@231
|
3080 QString title(tr("Newer version available"));
|
Chris@231
|
3081 QString text(tr("<h3>Newer version available</h3><p>You are using version %1 of Tony, but version %2 is now available.</p><p>Please see the <a href=\"http://code.soundsoftware.ac.uk/projects/tony/\">Tony website</a> for more information.</p>").arg(TONY_VERSION).arg(version));
|
Chris@231
|
3082 QMessageBox::information(this, title, text);
|
Chris@231
|
3083 settings.setValue(tag, false);
|
Chris@231
|
3084 }
|
Chris@231
|
3085 settings.endGroup();
|
Chris@231
|
3086 }
|
Chris@231
|
3087
|
matthiasm@356
|
3088 void
|
matthiasm@356
|
3089 MainWindow::ffwd()
|
matthiasm@356
|
3090 {
|
matthiasm@356
|
3091 if (!getMainModel()) return;
|
matthiasm@356
|
3092
|
Chris@403
|
3093 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
matthiasm@356
|
3094 ++frame;
|
matthiasm@356
|
3095
|
Chris@403
|
3096 sv_samplerate_t sr = getMainModel()->getSampleRate();
|
matthiasm@356
|
3097
|
matthiasm@356
|
3098 // The step is supposed to scale and be as wide as a step of
|
matthiasm@357
|
3099 // m_defaultFfwdRwdStep seconds at zoom level 720 and sr = 44100
|
Chris@403
|
3100 int framesPerPixel = m_viewManager->getGlobalZoom();
|
Chris@403
|
3101
|
Chris@403
|
3102 double defaultZoom = (720 * 44100) / sr;
|
Chris@403
|
3103 double scaler = framesPerPixel / defaultZoom;
|
Chris@403
|
3104 RealTime step = m_defaultFfwdRwdStep * scaler;
|
Chris@403
|
3105
|
matthiasm@356
|
3106 frame = RealTime::realTime2Frame
|
Chris@403
|
3107 (RealTime::frame2RealTime(frame, sr) + step, sr);
|
Chris@403
|
3108
|
Chris@403
|
3109 if (frame > getMainModel()->getEndFrame()) {
|
matthiasm@356
|
3110 frame = getMainModel()->getEndFrame();
|
matthiasm@356
|
3111 }
|
Chris@403
|
3112
|
matthiasm@356
|
3113 if (frame < 0) frame = 0;
|
matthiasm@356
|
3114
|
matthiasm@356
|
3115 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@403
|
3116 frame = m_viewManager->constrainFrameToSelection(frame);
|
matthiasm@356
|
3117 }
|
matthiasm@356
|
3118
|
matthiasm@356
|
3119 m_viewManager->setPlaybackFrame(frame);
|
matthiasm@356
|
3120
|
Chris@403
|
3121 if (frame == getMainModel()->getEndFrame() &&
|
matthiasm@356
|
3122 m_playSource &&
|
matthiasm@356
|
3123 m_playSource->isPlaying() &&
|
matthiasm@356
|
3124 !m_viewManager->getPlayLoopMode()) {
|
matthiasm@356
|
3125 stop();
|
matthiasm@356
|
3126 }
|
matthiasm@356
|
3127 }
|
matthiasm@356
|
3128
|
matthiasm@356
|
3129 void
|
matthiasm@356
|
3130 MainWindow::rewind()
|
matthiasm@356
|
3131 {
|
matthiasm@356
|
3132 if (!getMainModel()) return;
|
matthiasm@356
|
3133
|
Chris@403
|
3134 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
matthiasm@356
|
3135 if (frame > 0) --frame;
|
matthiasm@356
|
3136
|
Chris@403
|
3137 sv_samplerate_t sr = getMainModel()->getSampleRate();
|
matthiasm@356
|
3138
|
matthiasm@356
|
3139 // The step is supposed to scale and be as wide as a step of
|
matthiasm@357
|
3140 // m_defaultFfwdRwdStep seconds at zoom level 720 and sr = 44100
|
Chris@403
|
3141 int framesPerPixel = m_viewManager->getGlobalZoom();
|
Chris@403
|
3142
|
Chris@403
|
3143 double defaultZoom = (720 * 44100) / sr;
|
Chris@403
|
3144 double scaler = framesPerPixel / defaultZoom;
|
Chris@403
|
3145 RealTime step = m_defaultFfwdRwdStep * scaler;
|
Chris@403
|
3146
|
matthiasm@356
|
3147 frame = RealTime::realTime2Frame
|
Chris@403
|
3148 (RealTime::frame2RealTime(frame, sr) - step, sr);
|
Chris@403
|
3149
|
Chris@403
|
3150 if (frame < getMainModel()->getStartFrame()) {
|
matthiasm@356
|
3151 frame = getMainModel()->getStartFrame();
|
matthiasm@356
|
3152 }
|
matthiasm@356
|
3153
|
matthiasm@356
|
3154 if (frame < 0) frame = 0;
|
matthiasm@356
|
3155
|
matthiasm@356
|
3156 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@403
|
3157 frame = m_viewManager->constrainFrameToSelection(frame);
|
matthiasm@356
|
3158 }
|
matthiasm@356
|
3159
|
matthiasm@356
|
3160 m_viewManager->setPlaybackFrame(frame);
|
matthiasm@356
|
3161 }
|