Chris@45
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@45
|
2
|
Chris@45
|
3 /*
|
Chris@45
|
4 Sonic Visualiser
|
Chris@45
|
5 An audio file viewer and annotation editor.
|
Chris@45
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@45
|
7 This file copyright 2006-2007 Chris Cannam and QMUL.
|
Chris@45
|
8
|
Chris@45
|
9 This program is free software; you can redistribute it and/or
|
Chris@45
|
10 modify it under the terms of the GNU General Public License as
|
Chris@45
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@45
|
12 License, or (at your option) any later version. See the file
|
Chris@45
|
13 COPYING included with this distribution for more information.
|
Chris@45
|
14 */
|
Chris@45
|
15
|
Chris@45
|
16 #include "MainWindowBase.h"
|
Chris@46
|
17 #include "Document.h"
|
Chris@45
|
18
|
Chris@45
|
19
|
Chris@45
|
20 #include "view/Pane.h"
|
Chris@45
|
21 #include "view/PaneStack.h"
|
Chris@45
|
22 #include "data/model/WaveFileModel.h"
|
Chris@45
|
23 #include "data/model/SparseOneDimensionalModel.h"
|
Chris@45
|
24 #include "data/model/NoteModel.h"
|
matthiasm@267
|
25 #include "data/model/FlexiNoteModel.h"
|
Chris@45
|
26 #include "data/model/Labeller.h"
|
Chris@124
|
27 #include "data/model/TabularModel.h"
|
Chris@45
|
28 #include "view/ViewManager.h"
|
Chris@45
|
29
|
Chris@45
|
30 #include "layer/WaveformLayer.h"
|
Chris@45
|
31 #include "layer/TimeRulerLayer.h"
|
Chris@45
|
32 #include "layer/TimeInstantLayer.h"
|
Chris@45
|
33 #include "layer/TimeValueLayer.h"
|
Chris@45
|
34 #include "layer/Colour3DPlotLayer.h"
|
Chris@45
|
35 #include "layer/SliceLayer.h"
|
Chris@45
|
36 #include "layer/SliceableLayer.h"
|
Chris@45
|
37 #include "layer/ImageLayer.h"
|
Chris@184
|
38 #include "layer/NoteLayer.h"
|
matthiasm@267
|
39 #include "layer/FlexiNoteLayer.h"
|
Chris@184
|
40 #include "layer/RegionLayer.h"
|
Chris@45
|
41
|
Chris@45
|
42 #include "widgets/ListInputDialog.h"
|
Chris@105
|
43 #include "widgets/CommandHistory.h"
|
Chris@109
|
44 #include "widgets/ProgressDialog.h"
|
Chris@109
|
45 #include "widgets/MIDIFileImportDialog.h"
|
Chris@109
|
46 #include "widgets/CSVFormatDialog.h"
|
Chris@123
|
47 #include "widgets/ModelDataTableDialog.h"
|
Chris@341
|
48 #include "widgets/InteractiveFileFinder.h"
|
Chris@45
|
49
|
Chris@45
|
50 #include "audioio/AudioCallbackPlaySource.h"
|
Chris@45
|
51 #include "audioio/AudioCallbackPlayTarget.h"
|
Chris@45
|
52 #include "audioio/AudioTargetFactory.h"
|
Chris@45
|
53 #include "audioio/PlaySpeedRangeMapper.h"
|
Chris@45
|
54 #include "data/fileio/DataFileReaderFactory.h"
|
Chris@45
|
55 #include "data/fileio/PlaylistFileReader.h"
|
Chris@45
|
56 #include "data/fileio/WavFileWriter.h"
|
Chris@45
|
57 #include "data/fileio/CSVFileWriter.h"
|
Chris@45
|
58 #include "data/fileio/MIDIFileWriter.h"
|
Chris@45
|
59 #include "data/fileio/BZipFileDevice.h"
|
Chris@45
|
60 #include "data/fileio/FileSource.h"
|
Chris@152
|
61 #include "data/fileio/AudioFileReaderFactory.h"
|
Chris@134
|
62 #include "rdf/RDFImporter.h"
|
Chris@45
|
63
|
Chris@45
|
64 #include "data/fft/FFTDataServer.h"
|
Chris@45
|
65
|
Chris@45
|
66 #include "base/RecentFiles.h"
|
Chris@45
|
67
|
Chris@45
|
68 #include "base/PlayParameterRepository.h"
|
Chris@45
|
69 #include "base/XmlExportable.h"
|
Chris@45
|
70 #include "base/Profiler.h"
|
Chris@45
|
71 #include "base/Preferences.h"
|
Chris@217
|
72 #include "base/TempWriteFile.h"
|
Chris@217
|
73 #include "base/Exceptions.h"
|
Chris@223
|
74 #include "base/ResourceFinder.h"
|
Chris@45
|
75
|
Chris@45
|
76 #include "data/osc/OSCQueue.h"
|
Chris@157
|
77 #include "data/midi/MIDIInput.h"
|
Chris@45
|
78
|
Chris@45
|
79 #include <QApplication>
|
Chris@45
|
80 #include <QMessageBox>
|
Chris@45
|
81 #include <QGridLayout>
|
Chris@45
|
82 #include <QLabel>
|
Chris@45
|
83 #include <QAction>
|
Chris@45
|
84 #include <QMenuBar>
|
Chris@45
|
85 #include <QToolBar>
|
Chris@45
|
86 #include <QInputDialog>
|
Chris@45
|
87 #include <QStatusBar>
|
Chris@45
|
88 #include <QTreeView>
|
Chris@45
|
89 #include <QFile>
|
Chris@45
|
90 #include <QFileInfo>
|
Chris@45
|
91 #include <QDir>
|
Chris@45
|
92 #include <QTextStream>
|
Chris@45
|
93 #include <QProcess>
|
Chris@45
|
94 #include <QShortcut>
|
Chris@45
|
95 #include <QSettings>
|
Chris@45
|
96 #include <QDateTime>
|
Chris@45
|
97 #include <QProcess>
|
Chris@45
|
98 #include <QCheckBox>
|
Chris@45
|
99 #include <QRegExp>
|
Chris@45
|
100 #include <QScrollArea>
|
Chris@168
|
101 #include <QDesktopWidget>
|
Chris@354
|
102 #include <QSignalMapper>
|
Chris@45
|
103
|
Chris@45
|
104 #include <iostream>
|
Chris@45
|
105 #include <cstdio>
|
Chris@45
|
106 #include <errno.h>
|
Chris@45
|
107
|
Chris@293
|
108
|
Chris@293
|
109
|
Chris@45
|
110
|
Chris@45
|
111 using std::vector;
|
Chris@45
|
112 using std::map;
|
Chris@45
|
113 using std::set;
|
Chris@45
|
114
|
Chris@255
|
115 #ifdef Q_WS_X11
|
Chris@255
|
116 #define Window X11Window
|
Chris@255
|
117 #include <X11/Xlib.h>
|
Chris@255
|
118 #include <X11/Xutil.h>
|
Chris@255
|
119 #include <X11/Xatom.h>
|
Chris@255
|
120 #include <X11/SM/SMlib.h>
|
Chris@255
|
121
|
Chris@255
|
122 static int handle_x11_error(Display *dpy, XErrorEvent *err)
|
Chris@255
|
123 {
|
Chris@255
|
124 char errstr[256];
|
Chris@255
|
125 XGetErrorText(dpy, err->error_code, errstr, 256);
|
Chris@255
|
126 if (err->error_code != BadWindow) {
|
Chris@293
|
127 cerr << "Sonic Visualiser: X Error: "
|
Chris@255
|
128 << errstr << " " << int(err->error_code)
|
Chris@255
|
129 << "\nin major opcode: "
|
Chris@293
|
130 << int(err->request_code) << endl;
|
Chris@255
|
131 }
|
Chris@255
|
132 return 0;
|
Chris@255
|
133 }
|
Chris@255
|
134 #undef Window
|
Chris@255
|
135 #endif
|
Chris@45
|
136
|
Chris@161
|
137 MainWindowBase::MainWindowBase(bool withAudioOutput,
|
Chris@161
|
138 bool withMIDIInput) :
|
Chris@45
|
139 m_document(0),
|
Chris@45
|
140 m_paneStack(0),
|
Chris@45
|
141 m_viewManager(0),
|
Chris@45
|
142 m_timeRulerLayer(0),
|
Chris@45
|
143 m_audioOutput(withAudioOutput),
|
Chris@45
|
144 m_playSource(0),
|
Chris@45
|
145 m_playTarget(0),
|
Chris@113
|
146 m_oscQueue(0),
|
Chris@113
|
147 m_oscQueueStarter(0),
|
Chris@157
|
148 m_midiInput(0),
|
Chris@45
|
149 m_recentFiles("RecentFiles", 20),
|
Chris@54
|
150 m_recentTransforms("RecentTransforms", 20),
|
Chris@45
|
151 m_documentModified(false),
|
Chris@45
|
152 m_openingAudioFile(false),
|
Chris@45
|
153 m_abandoning(false),
|
Chris@121
|
154 m_labeller(0),
|
Chris@357
|
155 m_lastPlayStatusSec(0),
|
Chris@357
|
156 m_initialDarkBackground(false),
|
Chris@357
|
157 m_defaultFfwdRwdStep(2, 0)
|
Chris@45
|
158 {
|
Chris@113
|
159 Profiler profiler("MainWindowBase::MainWindowBase");
|
Chris@113
|
160
|
Chris@255
|
161 #ifdef Q_WS_X11
|
Chris@255
|
162 XSetErrorHandler(handle_x11_error);
|
Chris@255
|
163 #endif
|
Chris@255
|
164
|
Chris@45
|
165 connect(CommandHistory::getInstance(), SIGNAL(commandExecuted()),
|
Chris@45
|
166 this, SLOT(documentModified()));
|
Chris@45
|
167 connect(CommandHistory::getInstance(), SIGNAL(documentRestored()),
|
Chris@45
|
168 this, SLOT(documentRestored()));
|
Chris@45
|
169
|
Chris@45
|
170 m_viewManager = new ViewManager();
|
Chris@45
|
171 connect(m_viewManager, SIGNAL(selectionChanged()),
|
Chris@45
|
172 this, SLOT(updateMenuStates()));
|
Chris@45
|
173 connect(m_viewManager, SIGNAL(inProgressSelectionChanged()),
|
Chris@45
|
174 this, SLOT(inProgressSelectionChanged()));
|
Chris@45
|
175
|
Chris@105
|
176 // set a sensible default font size for views -- cannot do this
|
Chris@105
|
177 // in Preferences, which is in base and not supposed to use QtGui
|
Chris@105
|
178 int viewFontSize = QApplication::font().pointSize() * 0.9;
|
Chris@105
|
179 QSettings settings;
|
Chris@105
|
180 settings.beginGroup("Preferences");
|
Chris@105
|
181 viewFontSize = settings.value("view-font-size", viewFontSize).toInt();
|
Chris@105
|
182 settings.setValue("view-font-size", viewFontSize);
|
Chris@105
|
183 settings.endGroup();
|
Chris@105
|
184
|
Chris@45
|
185 Preferences::BackgroundMode mode =
|
Chris@45
|
186 Preferences::getInstance()->getBackgroundMode();
|
Chris@45
|
187 m_initialDarkBackground = m_viewManager->getGlobalDarkBackground();
|
Chris@45
|
188 if (mode != Preferences::BackgroundFromTheme) {
|
Chris@45
|
189 m_viewManager->setGlobalDarkBackground
|
Chris@45
|
190 (mode == Preferences::DarkBackground);
|
Chris@45
|
191 }
|
Chris@45
|
192
|
Chris@45
|
193 m_paneStack = new PaneStack(0, m_viewManager);
|
Chris@45
|
194 connect(m_paneStack, SIGNAL(currentPaneChanged(Pane *)),
|
Chris@45
|
195 this, SLOT(currentPaneChanged(Pane *)));
|
Chris@45
|
196 connect(m_paneStack, SIGNAL(currentLayerChanged(Pane *, Layer *)),
|
Chris@45
|
197 this, SLOT(currentLayerChanged(Pane *, Layer *)));
|
Chris@45
|
198 connect(m_paneStack, SIGNAL(rightButtonMenuRequested(Pane *, QPoint)),
|
Chris@45
|
199 this, SLOT(rightButtonMenuRequested(Pane *, QPoint)));
|
Chris@45
|
200 connect(m_paneStack, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@45
|
201 this, SLOT(contextHelpChanged(const QString &)));
|
Chris@45
|
202 connect(m_paneStack, SIGNAL(paneAdded(Pane *)),
|
Chris@45
|
203 this, SLOT(paneAdded(Pane *)));
|
Chris@45
|
204 connect(m_paneStack, SIGNAL(paneHidden(Pane *)),
|
Chris@45
|
205 this, SLOT(paneHidden(Pane *)));
|
Chris@45
|
206 connect(m_paneStack, SIGNAL(paneAboutToBeDeleted(Pane *)),
|
Chris@45
|
207 this, SLOT(paneAboutToBeDeleted(Pane *)));
|
Chris@45
|
208 connect(m_paneStack, SIGNAL(dropAccepted(Pane *, QStringList)),
|
Chris@45
|
209 this, SLOT(paneDropAccepted(Pane *, QStringList)));
|
Chris@45
|
210 connect(m_paneStack, SIGNAL(dropAccepted(Pane *, QString)),
|
Chris@45
|
211 this, SLOT(paneDropAccepted(Pane *, QString)));
|
Chris@55
|
212 connect(m_paneStack, SIGNAL(paneDeleteButtonClicked(Pane *)),
|
Chris@55
|
213 this, SLOT(paneDeleteButtonClicked(Pane *)));
|
Chris@45
|
214
|
Chris@57
|
215 m_playSource = new AudioCallbackPlaySource(m_viewManager,
|
Chris@57
|
216 QApplication::applicationName());
|
Chris@45
|
217
|
Chris@366
|
218 connect(m_playSource, SIGNAL(sampleRateMismatch(int, int, bool)),
|
Chris@366
|
219 this, SLOT(sampleRateMismatch(int, int, bool)));
|
Chris@45
|
220 connect(m_playSource, SIGNAL(audioOverloadPluginDisabled()),
|
Chris@45
|
221 this, SLOT(audioOverloadPluginDisabled()));
|
Chris@130
|
222 connect(m_playSource, SIGNAL(audioTimeStretchMultiChannelDisabled()),
|
Chris@130
|
223 this, SLOT(audioTimeStretchMultiChannelDisabled()));
|
Chris@45
|
224
|
Chris@45
|
225 connect(m_viewManager, SIGNAL(outputLevelsChanged(float, float)),
|
Chris@45
|
226 this, SLOT(outputLevelsChanged(float, float)));
|
Chris@45
|
227
|
Chris@366
|
228 connect(m_viewManager, SIGNAL(playbackFrameChanged(int)),
|
Chris@366
|
229 this, SLOT(playbackFrameChanged(int)));
|
Chris@366
|
230
|
Chris@366
|
231 connect(m_viewManager, SIGNAL(globalCentreFrameChanged(int)),
|
Chris@366
|
232 this, SLOT(globalCentreFrameChanged(int)));
|
Chris@366
|
233
|
Chris@366
|
234 connect(m_viewManager, SIGNAL(viewCentreFrameChanged(View *, int)),
|
Chris@366
|
235 this, SLOT(viewCentreFrameChanged(View *, int)));
|
Chris@366
|
236
|
Chris@366
|
237 connect(m_viewManager, SIGNAL(viewZoomLevelChanged(View *, int, bool)),
|
Chris@366
|
238 this, SLOT(viewZoomLevelChanged(View *, int, bool)));
|
Chris@45
|
239
|
Chris@45
|
240 connect(Preferences::getInstance(),
|
Chris@45
|
241 SIGNAL(propertyChanged(PropertyContainer::PropertyName)),
|
Chris@45
|
242 this,
|
Chris@45
|
243 SLOT(preferenceChanged(PropertyContainer::PropertyName)));
|
Chris@45
|
244
|
Chris@45
|
245 Labeller::ValueType labellerType = Labeller::ValueFromTwoLevelCounter;
|
Chris@45
|
246 settings.beginGroup("MainWindow");
|
Chris@230
|
247
|
Chris@45
|
248 labellerType = (Labeller::ValueType)
|
Chris@45
|
249 settings.value("labellertype", (int)labellerType).toInt();
|
Chris@45
|
250 int cycle = settings.value("labellercycle", 4).toInt();
|
Chris@230
|
251
|
Chris@45
|
252 settings.endGroup();
|
Chris@45
|
253
|
Chris@45
|
254 m_labeller = new Labeller(labellerType);
|
Chris@45
|
255 m_labeller->setCounterCycleSize(cycle);
|
Chris@113
|
256
|
Chris@161
|
257 if (withMIDIInput) {
|
Chris@161
|
258 m_midiInput = new MIDIInput(QApplication::applicationName(), this);
|
Chris@161
|
259 }
|
Chris@45
|
260 }
|
Chris@45
|
261
|
Chris@45
|
262 MainWindowBase::~MainWindowBase()
|
Chris@45
|
263 {
|
Chris@233
|
264 SVDEBUG << "MainWindowBase::~MainWindowBase" << endl;
|
Chris@70
|
265 if (m_playTarget) m_playTarget->shutdown();
|
Chris@70
|
266 // delete m_playTarget;
|
Chris@45
|
267 delete m_playSource;
|
Chris@45
|
268 delete m_viewManager;
|
Chris@45
|
269 delete m_oscQueue;
|
Chris@304
|
270 delete m_oscQueueStarter;
|
Chris@157
|
271 delete m_midiInput;
|
Chris@45
|
272 Profiles::getInstance()->dump();
|
Chris@45
|
273 }
|
Chris@45
|
274
|
Chris@113
|
275 void
|
Chris@354
|
276 MainWindowBase::finaliseMenus()
|
Chris@354
|
277 {
|
Chris@354
|
278 QMenuBar *mb = menuBar();
|
Chris@354
|
279 QList<QMenu *> menus = mb->findChildren<QMenu *>();
|
Chris@354
|
280 foreach (QMenu *menu, menus) {
|
Chris@354
|
281 if (menu) finaliseMenu(menu);
|
Chris@354
|
282 }
|
Chris@354
|
283 }
|
Chris@354
|
284
|
Chris@354
|
285 void
|
Chris@358
|
286 MainWindowBase::finaliseMenu(QMenu *
|
Chris@358
|
287 #ifdef Q_OS_MAC
|
Chris@358
|
288 menu
|
Chris@358
|
289 #endif
|
Chris@358
|
290 )
|
Chris@354
|
291 {
|
Chris@354
|
292 #ifdef Q_OS_MAC
|
Chris@354
|
293 // See https://bugreports.qt-project.org/browse/QTBUG-38256 and
|
Chris@354
|
294 // our issue #890 http://code.soundsoftware.ac.uk/issues/890 --
|
Chris@354
|
295 // single-key shortcuts that are associated only with a menu
|
Chris@354
|
296 // action do not work with Qt 5.x under OS/X.
|
Chris@354
|
297 //
|
Chris@354
|
298 // Apparently Cocoa never handled them as a matter of course, but
|
Chris@354
|
299 // earlier versions of Qt picked them up as widget shortcuts and
|
Chris@354
|
300 // handled them anyway. That behaviour was removed to fix a crash
|
Chris@354
|
301 // when invoking a menu while its window was overridden by a modal
|
Chris@354
|
302 // dialog (https://bugreports.qt-project.org/browse/QTBUG-30657).
|
Chris@354
|
303 //
|
Chris@354
|
304 // This workaround restores the single-key shortcut behaviour by
|
Chris@354
|
305 // searching for single-key shortcuts in menus and replacing them
|
Chris@354
|
306 // with global application shortcuts that invoke the relevant
|
Chris@354
|
307 // actions, testing whether the actions are enabled on invocation.
|
Chris@354
|
308 // As it happens, it also replaces some shortcuts that were
|
Chris@354
|
309 // working fine (because they were also associated with toolbar
|
Chris@354
|
310 // buttons) but that seems to be OK so long as we remove the
|
Chris@354
|
311 // shortcuts from the actions as well as adding the new global
|
Chris@354
|
312 // shortcuts, to avoid an ambiguous shortcut error.
|
Chris@354
|
313 //
|
Chris@354
|
314 // If the Qt developers ever fix this in Qt (I couldn't think of
|
Chris@354
|
315 // an obvious fix myself) then presumably we can remove this.
|
Chris@354
|
316
|
Chris@354
|
317 QSignalMapper *mapper = new QSignalMapper(this);
|
Chris@354
|
318
|
Chris@354
|
319 connect(mapper, SIGNAL(mapped(QObject *)),
|
Chris@354
|
320 this, SLOT(menuActionMapperInvoked(QObject *)));
|
Chris@354
|
321
|
Chris@354
|
322 foreach (QAction *a, menu->actions()) {
|
Chris@354
|
323 QKeySequence sc = a->shortcut();
|
Chris@354
|
324 if (sc.count() == 1 && !(sc[0] & Qt::KeyboardModifierMask)) {
|
Chris@354
|
325 QShortcut *newSc = new QShortcut(sc, a->parentWidget());
|
Chris@354
|
326 QObject::connect(newSc, SIGNAL(activated()), mapper, SLOT(map()));
|
Chris@354
|
327 mapper->setMapping(newSc, a);
|
Chris@354
|
328 a->setShortcut(QKeySequence()); // avoid ambiguous shortcut error
|
Chris@354
|
329 }
|
Chris@354
|
330 }
|
Chris@354
|
331 #endif
|
Chris@354
|
332 }
|
Chris@354
|
333
|
Chris@354
|
334 void
|
Chris@354
|
335 MainWindowBase::menuActionMapperInvoked(QObject *o)
|
Chris@354
|
336 {
|
Chris@354
|
337 QAction *a = qobject_cast<QAction *>(o);
|
Chris@354
|
338 if (a && a->isEnabled()) {
|
Chris@354
|
339 a->trigger();
|
Chris@354
|
340 }
|
Chris@354
|
341 }
|
Chris@354
|
342
|
Chris@354
|
343 void
|
Chris@168
|
344 MainWindowBase::resizeConstrained(QSize size)
|
Chris@168
|
345 {
|
Chris@168
|
346 QDesktopWidget *desktop = QApplication::desktop();
|
Chris@168
|
347 QRect available = desktop->availableGeometry();
|
Chris@168
|
348 QSize actual(std::min(size.width(), available.width()),
|
Chris@168
|
349 std::min(size.height(), available.height()));
|
Chris@168
|
350 resize(actual);
|
Chris@168
|
351 }
|
Chris@168
|
352
|
Chris@168
|
353 void
|
Chris@304
|
354 MainWindowBase::startOSCQueue()
|
Chris@304
|
355 {
|
Chris@304
|
356 m_oscQueueStarter = new OSCQueueStarter(this);
|
Chris@304
|
357 connect(m_oscQueueStarter, SIGNAL(finished()), this, SLOT(oscReady()));
|
Chris@304
|
358 m_oscQueueStarter->start();
|
Chris@304
|
359 }
|
Chris@304
|
360
|
Chris@304
|
361 void
|
Chris@113
|
362 MainWindowBase::oscReady()
|
Chris@113
|
363 {
|
Chris@113
|
364 if (m_oscQueue && m_oscQueue->isOK()) {
|
Chris@113
|
365 connect(m_oscQueue, SIGNAL(messagesAvailable()), this, SLOT(pollOSC()));
|
Chris@113
|
366 QTimer *oscTimer = new QTimer(this);
|
Chris@113
|
367 connect(oscTimer, SIGNAL(timeout()), this, SLOT(pollOSC()));
|
Chris@113
|
368 oscTimer->start(1000);
|
Chris@293
|
369 cerr << "Finished setting up OSC interface" << endl;
|
Chris@113
|
370 }
|
Chris@113
|
371 }
|
Chris@113
|
372
|
Chris@45
|
373 QString
|
Chris@45
|
374 MainWindowBase::getOpenFileName(FileFinder::FileType type)
|
Chris@45
|
375 {
|
Chris@45
|
376 FileFinder *ff = FileFinder::getInstance();
|
Chris@358
|
377
|
Chris@358
|
378 if (type == FileFinder::AnyFile) {
|
Chris@45
|
379 if (getMainModel() != 0 &&
|
Chris@45
|
380 m_paneStack != 0 &&
|
Chris@45
|
381 m_paneStack->getCurrentPane() != 0) { // can import a layer
|
Chris@45
|
382 return ff->getOpenFileName(FileFinder::AnyFile, m_sessionFile);
|
Chris@45
|
383 } else {
|
Chris@45
|
384 return ff->getOpenFileName(FileFinder::SessionOrAudioFile,
|
Chris@45
|
385 m_sessionFile);
|
Chris@45
|
386 }
|
Chris@358
|
387 }
|
Chris@358
|
388
|
Chris@358
|
389 QString lastPath = m_sessionFile;
|
Chris@358
|
390
|
Chris@358
|
391 if (type == FileFinder::AudioFile) {
|
Chris@358
|
392 lastPath = m_audioFile;
|
Chris@45
|
393 }
|
Chris@358
|
394
|
Chris@358
|
395 return ff->getOpenFileName(type, lastPath);
|
Chris@45
|
396 }
|
Chris@45
|
397
|
Chris@45
|
398 QString
|
Chris@45
|
399 MainWindowBase::getSaveFileName(FileFinder::FileType type)
|
Chris@45
|
400 {
|
Chris@358
|
401 QString lastPath = m_sessionFile;
|
Chris@358
|
402
|
Chris@358
|
403 if (type == FileFinder::AudioFile) {
|
Chris@358
|
404 lastPath = m_audioFile;
|
Chris@358
|
405 }
|
Chris@358
|
406
|
Chris@45
|
407 FileFinder *ff = FileFinder::getInstance();
|
Chris@358
|
408 return ff->getSaveFileName(type, lastPath);
|
Chris@45
|
409 }
|
Chris@45
|
410
|
Chris@45
|
411 void
|
Chris@45
|
412 MainWindowBase::registerLastOpenedFilePath(FileFinder::FileType type, QString path)
|
Chris@45
|
413 {
|
Chris@45
|
414 FileFinder *ff = FileFinder::getInstance();
|
Chris@45
|
415 ff->registerLastOpenedFilePath(type, path);
|
Chris@45
|
416 }
|
Chris@45
|
417
|
Chris@222
|
418 QString
|
Chris@222
|
419 MainWindowBase::getDefaultSessionTemplate() const
|
Chris@222
|
420 {
|
Chris@231
|
421 QSettings settings;
|
Chris@231
|
422 settings.beginGroup("MainWindow");
|
Chris@231
|
423 QString templateName = settings.value("sessiontemplate", "").toString();
|
Chris@231
|
424 if (templateName == "") templateName = "default";
|
Chris@231
|
425 return templateName;
|
Chris@222
|
426 }
|
Chris@222
|
427
|
Chris@222
|
428 void
|
Chris@251
|
429 MainWindowBase::setDefaultSessionTemplate(QString n)
|
Chris@251
|
430 {
|
Chris@251
|
431 QSettings settings;
|
Chris@251
|
432 settings.beginGroup("MainWindow");
|
Chris@251
|
433 settings.setValue("sessiontemplate", n);
|
Chris@251
|
434 }
|
Chris@251
|
435
|
Chris@251
|
436 void
|
Chris@45
|
437 MainWindowBase::updateMenuStates()
|
Chris@45
|
438 {
|
Chris@45
|
439 Pane *currentPane = 0;
|
Chris@45
|
440 Layer *currentLayer = 0;
|
Chris@45
|
441
|
Chris@45
|
442 if (m_paneStack) currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
443 if (currentPane) currentLayer = currentPane->getSelectedLayer();
|
Chris@45
|
444
|
Chris@73
|
445 bool havePrevPane = false, haveNextPane = false;
|
Chris@73
|
446 bool havePrevLayer = false, haveNextLayer = false;
|
Chris@73
|
447
|
Chris@73
|
448 if (currentPane) {
|
Chris@73
|
449 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@73
|
450 if (m_paneStack->getPane(i) == currentPane) {
|
Chris@73
|
451 if (i > 0) havePrevPane = true;
|
Chris@73
|
452 if (i < m_paneStack->getPaneCount()-1) haveNextPane = true;
|
Chris@73
|
453 break;
|
Chris@73
|
454 }
|
Chris@73
|
455 }
|
Chris@73
|
456 if (currentLayer) {
|
Chris@73
|
457 for (int i = 0; i < currentPane->getLayerCount(); ++i) {
|
Chris@73
|
458 if (currentPane->getLayer(i) == currentLayer) {
|
Chris@73
|
459 if (i > 0) havePrevLayer = true;
|
Chris@73
|
460 if (i < currentPane->getLayerCount()-1) haveNextLayer = true;
|
Chris@73
|
461 break;
|
Chris@73
|
462 }
|
Chris@73
|
463 }
|
Chris@73
|
464 }
|
Chris@73
|
465 }
|
Chris@73
|
466
|
Chris@45
|
467 bool haveCurrentPane =
|
Chris@45
|
468 (currentPane != 0);
|
Chris@45
|
469 bool haveCurrentLayer =
|
Chris@45
|
470 (haveCurrentPane &&
|
Chris@45
|
471 (currentLayer != 0));
|
Chris@45
|
472 bool haveMainModel =
|
Chris@45
|
473 (getMainModel() != 0);
|
Chris@45
|
474 bool havePlayTarget =
|
Chris@45
|
475 (m_playTarget != 0);
|
Chris@45
|
476 bool haveSelection =
|
Chris@45
|
477 (m_viewManager &&
|
Chris@45
|
478 !m_viewManager->getSelections().empty());
|
Chris@45
|
479 bool haveCurrentEditableLayer =
|
Chris@45
|
480 (haveCurrentLayer &&
|
Chris@45
|
481 currentLayer->isLayerEditable());
|
Chris@45
|
482 bool haveCurrentTimeInstantsLayer =
|
Chris@45
|
483 (haveCurrentLayer &&
|
Chris@45
|
484 dynamic_cast<TimeInstantLayer *>(currentLayer));
|
Chris@184
|
485 bool haveCurrentDurationLayer =
|
Chris@184
|
486 (haveCurrentLayer &&
|
Chris@184
|
487 (dynamic_cast<NoteLayer *>(currentLayer) ||
|
matthiasm@267
|
488 dynamic_cast<FlexiNoteLayer *>(currentLayer) ||
|
Chris@184
|
489 dynamic_cast<RegionLayer *>(currentLayer)));
|
Chris@45
|
490 bool haveCurrentColour3DPlot =
|
Chris@45
|
491 (haveCurrentLayer &&
|
Chris@45
|
492 dynamic_cast<Colour3DPlotLayer *>(currentLayer));
|
Chris@45
|
493 bool haveClipboardContents =
|
Chris@45
|
494 (m_viewManager &&
|
Chris@45
|
495 !m_viewManager->getClipboard().empty());
|
Chris@146
|
496 bool haveTabularLayer =
|
Chris@146
|
497 (haveCurrentLayer &&
|
Chris@146
|
498 dynamic_cast<TabularModel *>(currentLayer->getModel()));
|
Chris@45
|
499
|
Chris@45
|
500 emit canAddPane(haveMainModel);
|
Chris@45
|
501 emit canDeleteCurrentPane(haveCurrentPane);
|
Chris@45
|
502 emit canZoom(haveMainModel && haveCurrentPane);
|
Chris@45
|
503 emit canScroll(haveMainModel && haveCurrentPane);
|
Chris@45
|
504 emit canAddLayer(haveMainModel && haveCurrentPane);
|
Chris@45
|
505 emit canImportMoreAudio(haveMainModel);
|
Chris@259
|
506 emit canReplaceMainAudio(haveMainModel);
|
Chris@45
|
507 emit canImportLayer(haveMainModel && haveCurrentPane);
|
Chris@45
|
508 emit canExportAudio(haveMainModel);
|
Chris@289
|
509 emit canChangeSessionTemplate(haveMainModel);
|
Chris@45
|
510 emit canExportLayer(haveMainModel &&
|
Chris@45
|
511 (haveCurrentEditableLayer || haveCurrentColour3DPlot));
|
Chris@45
|
512 emit canExportImage(haveMainModel && haveCurrentPane);
|
Chris@45
|
513 emit canDeleteCurrentLayer(haveCurrentLayer);
|
Chris@45
|
514 emit canRenameLayer(haveCurrentLayer);
|
Chris@45
|
515 emit canEditLayer(haveCurrentEditableLayer);
|
Chris@146
|
516 emit canEditLayerTabular(haveCurrentEditableLayer || haveTabularLayer);
|
Chris@45
|
517 emit canMeasureLayer(haveCurrentLayer);
|
Chris@45
|
518 emit canSelect(haveMainModel && haveCurrentPane);
|
Chris@188
|
519 emit canPlay(haveMainModel && havePlayTarget);
|
Chris@45
|
520 emit canFfwd(true);
|
Chris@45
|
521 emit canRewind(true);
|
Chris@87
|
522 emit canPaste(haveClipboardContents);
|
Chris@45
|
523 emit canInsertInstant(haveCurrentPane);
|
Chris@45
|
524 emit canInsertInstantsAtBoundaries(haveCurrentPane && haveSelection);
|
Chris@184
|
525 emit canInsertItemAtSelection(haveCurrentPane && haveSelection && haveCurrentDurationLayer);
|
Chris@45
|
526 emit canRenumberInstants(haveCurrentTimeInstantsLayer && haveSelection);
|
Chris@45
|
527 emit canPlaySelection(haveMainModel && havePlayTarget && haveSelection);
|
Chris@45
|
528 emit canClearSelection(haveSelection);
|
Chris@45
|
529 emit canEditSelection(haveSelection && haveCurrentEditableLayer);
|
Chris@45
|
530 emit canSave(m_sessionFile != "" && m_documentModified);
|
Chris@359
|
531 emit canSaveAs(haveMainModel);
|
Chris@73
|
532 emit canSelectPreviousPane(havePrevPane);
|
Chris@73
|
533 emit canSelectNextPane(haveNextPane);
|
Chris@73
|
534 emit canSelectPreviousLayer(havePrevLayer);
|
Chris@73
|
535 emit canSelectNextLayer(haveNextLayer);
|
Chris@45
|
536 }
|
Chris@45
|
537
|
Chris@45
|
538 void
|
Chris@45
|
539 MainWindowBase::documentModified()
|
Chris@45
|
540 {
|
Chris@233
|
541 // SVDEBUG << "MainWindowBase::documentModified" << endl;
|
Chris@45
|
542
|
Chris@45
|
543 if (!m_documentModified) {
|
Chris@45
|
544 //!!! this in subclass implementation?
|
Chris@45
|
545 setWindowTitle(tr("%1 (modified)").arg(windowTitle()));
|
Chris@45
|
546 }
|
Chris@45
|
547
|
Chris@45
|
548 m_documentModified = true;
|
Chris@45
|
549 updateMenuStates();
|
Chris@45
|
550 }
|
Chris@45
|
551
|
Chris@45
|
552 void
|
Chris@45
|
553 MainWindowBase::documentRestored()
|
Chris@45
|
554 {
|
Chris@233
|
555 // SVDEBUG << "MainWindowBase::documentRestored" << endl;
|
Chris@45
|
556
|
Chris@45
|
557 if (m_documentModified) {
|
Chris@45
|
558 //!!! this in subclass implementation?
|
Chris@45
|
559 QString wt(windowTitle());
|
Chris@45
|
560 wt.replace(tr(" (modified)"), "");
|
Chris@45
|
561 setWindowTitle(wt);
|
Chris@45
|
562 }
|
Chris@45
|
563
|
Chris@45
|
564 m_documentModified = false;
|
Chris@45
|
565 updateMenuStates();
|
Chris@45
|
566 }
|
Chris@45
|
567
|
Chris@45
|
568 void
|
Chris@45
|
569 MainWindowBase::playLoopToggled()
|
Chris@45
|
570 {
|
Chris@45
|
571 QAction *action = dynamic_cast<QAction *>(sender());
|
Chris@45
|
572
|
Chris@45
|
573 if (action) {
|
Chris@45
|
574 m_viewManager->setPlayLoopMode(action->isChecked());
|
Chris@45
|
575 } else {
|
Chris@45
|
576 m_viewManager->setPlayLoopMode(!m_viewManager->getPlayLoopMode());
|
Chris@45
|
577 }
|
Chris@45
|
578 }
|
Chris@45
|
579
|
Chris@45
|
580 void
|
Chris@45
|
581 MainWindowBase::playSelectionToggled()
|
Chris@45
|
582 {
|
Chris@45
|
583 QAction *action = dynamic_cast<QAction *>(sender());
|
Chris@45
|
584
|
Chris@45
|
585 if (action) {
|
Chris@45
|
586 m_viewManager->setPlaySelectionMode(action->isChecked());
|
Chris@45
|
587 } else {
|
Chris@45
|
588 m_viewManager->setPlaySelectionMode(!m_viewManager->getPlaySelectionMode());
|
Chris@45
|
589 }
|
Chris@45
|
590 }
|
Chris@45
|
591
|
Chris@45
|
592 void
|
Chris@45
|
593 MainWindowBase::playSoloToggled()
|
Chris@45
|
594 {
|
Chris@45
|
595 QAction *action = dynamic_cast<QAction *>(sender());
|
Chris@45
|
596
|
Chris@45
|
597 if (action) {
|
Chris@45
|
598 m_viewManager->setPlaySoloMode(action->isChecked());
|
Chris@45
|
599 } else {
|
Chris@45
|
600 m_viewManager->setPlaySoloMode(!m_viewManager->getPlaySoloMode());
|
Chris@45
|
601 }
|
Chris@45
|
602
|
Chris@45
|
603 if (m_viewManager->getPlaySoloMode()) {
|
Chris@45
|
604 currentPaneChanged(m_paneStack->getCurrentPane());
|
Chris@45
|
605 } else {
|
Chris@45
|
606 m_viewManager->setPlaybackModel(0);
|
Chris@45
|
607 if (m_playSource) {
|
Chris@45
|
608 m_playSource->clearSoloModelSet();
|
Chris@45
|
609 }
|
Chris@45
|
610 }
|
Chris@45
|
611 }
|
Chris@45
|
612
|
Chris@45
|
613 void
|
Chris@45
|
614 MainWindowBase::currentPaneChanged(Pane *p)
|
Chris@45
|
615 {
|
Chris@45
|
616 updateMenuStates();
|
Chris@45
|
617 updateVisibleRangeDisplay(p);
|
Chris@45
|
618
|
Chris@45
|
619 if (!p) return;
|
Chris@45
|
620
|
Chris@45
|
621 if (!(m_viewManager &&
|
Chris@45
|
622 m_playSource &&
|
Chris@45
|
623 m_viewManager->getPlaySoloMode())) {
|
Chris@45
|
624 if (m_viewManager) m_viewManager->setPlaybackModel(0);
|
Chris@45
|
625 return;
|
Chris@45
|
626 }
|
Chris@45
|
627
|
Chris@45
|
628 Model *prevPlaybackModel = m_viewManager->getPlaybackModel();
|
Chris@60
|
629
|
Chris@93
|
630 // What we want here is not the currently playing frame (unless we
|
Chris@93
|
631 // are about to clear out the audio playback buffers -- which may
|
Chris@93
|
632 // or may not be possible, depending on the audio driver). What
|
Chris@93
|
633 // we want is the frame that was last committed to the soundcard
|
Chris@93
|
634 // buffers, as the audio driver will continue playing up to that
|
Chris@93
|
635 // frame before switching to whichever one we decide we want to
|
Chris@93
|
636 // switch to, regardless of our efforts.
|
Chris@93
|
637
|
Chris@93
|
638 int frame = m_playSource->getCurrentBufferedFrame();
|
Chris@93
|
639
|
Chris@293
|
640 // cerr << "currentPaneChanged: current frame (in ref model) = " << frame << endl;
|
Chris@45
|
641
|
Chris@45
|
642 View::ModelSet soloModels = p->getModels();
|
Chris@45
|
643
|
Chris@57
|
644 View::ModelSet sources;
|
Chris@57
|
645 for (View::ModelSet::iterator mi = soloModels.begin();
|
Chris@57
|
646 mi != soloModels.end(); ++mi) {
|
Chris@190
|
647 // If a model in this pane is derived from something else,
|
Chris@190
|
648 // then we want to play that model as well -- if the model
|
Chris@190
|
649 // that's derived from it is not something that is itself
|
Chris@190
|
650 // individually playable (e.g. a waveform)
|
Chris@190
|
651 if (*mi &&
|
Chris@190
|
652 !dynamic_cast<RangeSummarisableTimeValueModel *>(*mi) &&
|
Chris@190
|
653 (*mi)->getSourceModel()) {
|
Chris@57
|
654 sources.insert((*mi)->getSourceModel());
|
Chris@57
|
655 }
|
Chris@57
|
656 }
|
Chris@57
|
657 for (View::ModelSet::iterator mi = sources.begin();
|
Chris@57
|
658 mi != sources.end(); ++mi) {
|
Chris@57
|
659 soloModels.insert(*mi);
|
Chris@57
|
660 }
|
Chris@57
|
661
|
Chris@60
|
662 //!!! Need an "atomic" way of telling the play source that the
|
Chris@60
|
663 //playback model has changed, and changing it on ViewManager --
|
Chris@60
|
664 //the play source should be making the setPlaybackModel call to
|
Chris@60
|
665 //ViewManager
|
Chris@60
|
666
|
Chris@45
|
667 for (View::ModelSet::iterator mi = soloModels.begin();
|
Chris@45
|
668 mi != soloModels.end(); ++mi) {
|
Chris@45
|
669 if (dynamic_cast<RangeSummarisableTimeValueModel *>(*mi)) {
|
Chris@45
|
670 m_viewManager->setPlaybackModel(*mi);
|
Chris@45
|
671 }
|
Chris@45
|
672 }
|
Chris@45
|
673
|
Chris@45
|
674 RangeSummarisableTimeValueModel *a =
|
Chris@45
|
675 dynamic_cast<RangeSummarisableTimeValueModel *>(prevPlaybackModel);
|
Chris@45
|
676 RangeSummarisableTimeValueModel *b =
|
Chris@45
|
677 dynamic_cast<RangeSummarisableTimeValueModel *>(m_viewManager->
|
Chris@45
|
678 getPlaybackModel());
|
Chris@45
|
679
|
Chris@45
|
680 m_playSource->setSoloModelSet(soloModels);
|
Chris@45
|
681
|
Chris@45
|
682 if (a && b && (a != b)) {
|
Chris@60
|
683 if (m_playSource->isPlaying()) m_playSource->play(frame);
|
Chris@45
|
684 }
|
Chris@45
|
685 }
|
Chris@45
|
686
|
Chris@45
|
687 void
|
Chris@45
|
688 MainWindowBase::currentLayerChanged(Pane *p, Layer *)
|
Chris@45
|
689 {
|
Chris@45
|
690 updateMenuStates();
|
Chris@45
|
691 updateVisibleRangeDisplay(p);
|
Chris@45
|
692 }
|
Chris@45
|
693
|
Chris@45
|
694 void
|
Chris@45
|
695 MainWindowBase::selectAll()
|
Chris@45
|
696 {
|
Chris@45
|
697 if (!getMainModel()) return;
|
Chris@45
|
698 m_viewManager->setSelection(Selection(getMainModel()->getStartFrame(),
|
Chris@45
|
699 getMainModel()->getEndFrame()));
|
Chris@45
|
700 }
|
Chris@45
|
701
|
Chris@45
|
702 void
|
Chris@45
|
703 MainWindowBase::selectToStart()
|
Chris@45
|
704 {
|
Chris@45
|
705 if (!getMainModel()) return;
|
Chris@45
|
706 m_viewManager->setSelection(Selection(getMainModel()->getStartFrame(),
|
Chris@45
|
707 m_viewManager->getGlobalCentreFrame()));
|
Chris@45
|
708 }
|
Chris@45
|
709
|
Chris@45
|
710 void
|
Chris@45
|
711 MainWindowBase::selectToEnd()
|
Chris@45
|
712 {
|
Chris@45
|
713 if (!getMainModel()) return;
|
Chris@45
|
714 m_viewManager->setSelection(Selection(m_viewManager->getGlobalCentreFrame(),
|
Chris@45
|
715 getMainModel()->getEndFrame()));
|
Chris@45
|
716 }
|
Chris@45
|
717
|
Chris@45
|
718 void
|
Chris@45
|
719 MainWindowBase::selectVisible()
|
Chris@45
|
720 {
|
Chris@45
|
721 Model *model = getMainModel();
|
Chris@45
|
722 if (!model) return;
|
Chris@45
|
723
|
Chris@45
|
724 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
725 if (!currentPane) return;
|
Chris@45
|
726
|
Chris@366
|
727 int startFrame, endFrame;
|
Chris@45
|
728
|
Chris@45
|
729 if (currentPane->getStartFrame() < 0) startFrame = 0;
|
Chris@45
|
730 else startFrame = currentPane->getStartFrame();
|
Chris@45
|
731
|
Chris@45
|
732 if (currentPane->getEndFrame() > model->getEndFrame()) endFrame = model->getEndFrame();
|
Chris@45
|
733 else endFrame = currentPane->getEndFrame();
|
Chris@45
|
734
|
Chris@45
|
735 m_viewManager->setSelection(Selection(startFrame, endFrame));
|
Chris@45
|
736 }
|
Chris@45
|
737
|
Chris@45
|
738 void
|
Chris@45
|
739 MainWindowBase::clearSelection()
|
Chris@45
|
740 {
|
Chris@45
|
741 m_viewManager->clearSelections();
|
Chris@45
|
742 }
|
Chris@45
|
743
|
Chris@45
|
744 void
|
Chris@45
|
745 MainWindowBase::cut()
|
Chris@45
|
746 {
|
Chris@45
|
747 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
748 if (!currentPane) return;
|
Chris@45
|
749
|
Chris@45
|
750 Layer *layer = currentPane->getSelectedLayer();
|
Chris@45
|
751 if (!layer) return;
|
Chris@45
|
752
|
Chris@45
|
753 Clipboard &clipboard = m_viewManager->getClipboard();
|
Chris@45
|
754 clipboard.clear();
|
Chris@45
|
755
|
Chris@45
|
756 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@45
|
757
|
Chris@45
|
758 CommandHistory::getInstance()->startCompoundOperation(tr("Cut"), true);
|
Chris@45
|
759
|
Chris@45
|
760 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@45
|
761 i != selections.end(); ++i) {
|
Chris@86
|
762 layer->copy(currentPane, *i, clipboard);
|
Chris@45
|
763 layer->deleteSelection(*i);
|
Chris@45
|
764 }
|
Chris@45
|
765
|
Chris@45
|
766 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@45
|
767 }
|
Chris@45
|
768
|
Chris@45
|
769 void
|
Chris@45
|
770 MainWindowBase::copy()
|
Chris@45
|
771 {
|
Chris@45
|
772 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
773 if (!currentPane) return;
|
Chris@45
|
774
|
Chris@45
|
775 Layer *layer = currentPane->getSelectedLayer();
|
Chris@45
|
776 if (!layer) return;
|
Chris@45
|
777
|
Chris@45
|
778 Clipboard &clipboard = m_viewManager->getClipboard();
|
Chris@45
|
779 clipboard.clear();
|
Chris@45
|
780
|
Chris@45
|
781 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@45
|
782
|
Chris@45
|
783 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@45
|
784 i != selections.end(); ++i) {
|
Chris@86
|
785 layer->copy(currentPane, *i, clipboard);
|
Chris@45
|
786 }
|
Chris@45
|
787 }
|
Chris@45
|
788
|
Chris@45
|
789 void
|
Chris@45
|
790 MainWindowBase::paste()
|
Chris@45
|
791 {
|
Chris@215
|
792 pasteRelative(0);
|
Chris@215
|
793 }
|
Chris@215
|
794
|
Chris@215
|
795 void
|
Chris@215
|
796 MainWindowBase::pasteAtPlaybackPosition()
|
Chris@215
|
797 {
|
Chris@366
|
798 int pos = getFrame();
|
Chris@215
|
799 Clipboard &clipboard = m_viewManager->getClipboard();
|
Chris@215
|
800 if (!clipboard.empty()) {
|
Chris@366
|
801 int firstEventFrame = clipboard.getPoints()[0].getFrame();
|
Chris@366
|
802 int offset = 0;
|
Chris@215
|
803 if (firstEventFrame < 0) {
|
Chris@366
|
804 offset = pos - firstEventFrame;
|
Chris@354
|
805 } else if (firstEventFrame < pos) {
|
Chris@366
|
806 offset = pos - firstEventFrame;
|
Chris@215
|
807 } else {
|
Chris@366
|
808 offset = -(firstEventFrame - pos);
|
Chris@215
|
809 }
|
Chris@215
|
810 pasteRelative(offset);
|
Chris@215
|
811 }
|
Chris@215
|
812 }
|
Chris@215
|
813
|
Chris@215
|
814 void
|
Chris@215
|
815 MainWindowBase::pasteRelative(int offset)
|
Chris@215
|
816 {
|
Chris@45
|
817 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
818 if (!currentPane) return;
|
Chris@45
|
819
|
Chris@45
|
820 Layer *layer = currentPane->getSelectedLayer();
|
Chris@45
|
821
|
Chris@45
|
822 Clipboard &clipboard = m_viewManager->getClipboard();
|
Chris@87
|
823
|
Chris@98
|
824 bool inCompound = false;
|
Chris@87
|
825
|
Chris@87
|
826 if (!layer || !layer->isLayerEditable()) {
|
Chris@87
|
827
|
Chris@87
|
828 CommandHistory::getInstance()->startCompoundOperation
|
Chris@87
|
829 (tr("Paste"), true);
|
Chris@87
|
830
|
Chris@87
|
831 // no suitable current layer: create one of the most
|
Chris@87
|
832 // appropriate sort
|
Chris@87
|
833 LayerFactory::LayerType type =
|
Chris@87
|
834 LayerFactory::getInstance()->getLayerTypeForClipboardContents(clipboard);
|
Chris@87
|
835 layer = m_document->createEmptyLayer(type);
|
Chris@87
|
836
|
Chris@87
|
837 if (!layer) {
|
Chris@87
|
838 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@87
|
839 return;
|
Chris@45
|
840 }
|
Chris@87
|
841
|
Chris@87
|
842 m_document->addLayerToView(currentPane, layer);
|
Chris@87
|
843 m_paneStack->setCurrentLayer(currentPane, layer);
|
Chris@87
|
844
|
Chris@87
|
845 inCompound = true;
|
Chris@45
|
846 }
|
Chris@45
|
847
|
Chris@215
|
848 layer->paste(currentPane, clipboard, offset, true);
|
Chris@45
|
849
|
Chris@87
|
850 if (inCompound) CommandHistory::getInstance()->endCompoundOperation();
|
Chris@45
|
851 }
|
Chris@45
|
852
|
Chris@45
|
853 void
|
Chris@45
|
854 MainWindowBase::deleteSelected()
|
Chris@45
|
855 {
|
Chris@45
|
856 if (m_paneStack->getCurrentPane() &&
|
Chris@45
|
857 m_paneStack->getCurrentPane()->getSelectedLayer()) {
|
Chris@45
|
858
|
Chris@45
|
859 Layer *layer = m_paneStack->getCurrentPane()->getSelectedLayer();
|
Chris@45
|
860
|
Chris@45
|
861 if (m_viewManager &&
|
Chris@45
|
862 (m_viewManager->getToolMode() == ViewManager::MeasureMode)) {
|
Chris@45
|
863
|
Chris@45
|
864 layer->deleteCurrentMeasureRect();
|
Chris@45
|
865
|
Chris@45
|
866 } else {
|
Chris@45
|
867
|
Chris@45
|
868 MultiSelection::SelectionList selections =
|
Chris@45
|
869 m_viewManager->getSelections();
|
Chris@45
|
870
|
Chris@45
|
871 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@45
|
872 i != selections.end(); ++i) {
|
Chris@45
|
873 layer->deleteSelection(*i);
|
Chris@45
|
874 }
|
Chris@45
|
875 }
|
Chris@45
|
876 }
|
Chris@45
|
877 }
|
Chris@45
|
878
|
Chris@161
|
879 // FrameTimer method
|
Chris@161
|
880
|
Chris@366
|
881 int
|
Chris@161
|
882 MainWindowBase::getFrame() const
|
Chris@161
|
883 {
|
Chris@161
|
884 if (m_playSource && m_playSource->isPlaying()) {
|
Chris@161
|
885 return m_playSource->getCurrentPlayingFrame();
|
Chris@161
|
886 } else {
|
Chris@161
|
887 return m_viewManager->getPlaybackFrame();
|
Chris@161
|
888 }
|
Chris@161
|
889 }
|
Chris@161
|
890
|
Chris@45
|
891 void
|
Chris@45
|
892 MainWindowBase::insertInstant()
|
Chris@45
|
893 {
|
Chris@161
|
894 insertInstantAt(getFrame());
|
Chris@45
|
895 }
|
Chris@45
|
896
|
Chris@45
|
897 void
|
Chris@45
|
898 MainWindowBase::insertInstantsAtBoundaries()
|
Chris@45
|
899 {
|
Chris@45
|
900 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@45
|
901 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@45
|
902 i != selections.end(); ++i) {
|
Chris@366
|
903 int start = i->getStartFrame();
|
Chris@366
|
904 int end = i->getEndFrame();
|
Chris@45
|
905 if (start != end) {
|
Chris@184
|
906 insertInstantAt(start);
|
Chris@184
|
907 insertInstantAt(end);
|
Chris@45
|
908 }
|
Chris@45
|
909 }
|
Chris@45
|
910 }
|
Chris@45
|
911
|
Chris@45
|
912 void
|
Chris@366
|
913 MainWindowBase::insertInstantAt(int frame)
|
Chris@45
|
914 {
|
Chris@45
|
915 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
916 if (!pane) {
|
Chris@45
|
917 return;
|
Chris@45
|
918 }
|
Chris@45
|
919
|
Chris@74
|
920 frame = pane->alignFromReference(frame);
|
Chris@74
|
921
|
Chris@45
|
922 Layer *layer = dynamic_cast<TimeInstantLayer *>
|
Chris@45
|
923 (pane->getSelectedLayer());
|
Chris@45
|
924
|
Chris@45
|
925 if (!layer) {
|
Chris@45
|
926 for (int i = pane->getLayerCount(); i > 0; --i) {
|
Chris@45
|
927 layer = dynamic_cast<TimeInstantLayer *>(pane->getLayer(i - 1));
|
Chris@45
|
928 if (layer) break;
|
Chris@45
|
929 }
|
Chris@45
|
930
|
Chris@45
|
931 if (!layer) {
|
Chris@45
|
932 CommandHistory::getInstance()->startCompoundOperation
|
Chris@45
|
933 (tr("Add Point"), true);
|
Chris@45
|
934 layer = m_document->createEmptyLayer(LayerFactory::TimeInstants);
|
Chris@45
|
935 if (layer) {
|
Chris@45
|
936 m_document->addLayerToView(pane, layer);
|
Chris@45
|
937 m_paneStack->setCurrentLayer(pane, layer);
|
Chris@45
|
938 }
|
Chris@45
|
939 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@45
|
940 }
|
Chris@45
|
941 }
|
Chris@45
|
942
|
Chris@45
|
943 if (layer) {
|
Chris@45
|
944
|
Chris@45
|
945 Model *model = layer->getModel();
|
Chris@45
|
946 SparseOneDimensionalModel *sodm = dynamic_cast<SparseOneDimensionalModel *>
|
Chris@45
|
947 (model);
|
Chris@45
|
948
|
Chris@45
|
949 if (sodm) {
|
Chris@45
|
950 SparseOneDimensionalModel::Point point(frame, "");
|
Chris@45
|
951
|
Chris@45
|
952 SparseOneDimensionalModel::Point prevPoint(0);
|
Chris@45
|
953 bool havePrevPoint = false;
|
Chris@45
|
954
|
Chris@45
|
955 SparseOneDimensionalModel::EditCommand *command =
|
Chris@45
|
956 new SparseOneDimensionalModel::EditCommand(sodm, tr("Add Point"));
|
Chris@45
|
957
|
Chris@74
|
958 if (m_labeller->requiresPrevPoint()) {
|
Chris@45
|
959
|
Chris@45
|
960 SparseOneDimensionalModel::PointList prevPoints =
|
Chris@45
|
961 sodm->getPreviousPoints(frame);
|
Chris@45
|
962
|
Chris@45
|
963 if (!prevPoints.empty()) {
|
Chris@45
|
964 prevPoint = *prevPoints.begin();
|
Chris@45
|
965 havePrevPoint = true;
|
Chris@45
|
966 }
|
Chris@45
|
967 }
|
Chris@45
|
968
|
Chris@45
|
969 if (m_labeller) {
|
Chris@45
|
970
|
Chris@45
|
971 m_labeller->setSampleRate(sodm->getSampleRate());
|
Chris@45
|
972
|
Chris@352
|
973 if (m_labeller->actingOnPrevPoint() && havePrevPoint) {
|
Chris@45
|
974 command->deletePoint(prevPoint);
|
Chris@45
|
975 }
|
Chris@45
|
976
|
Chris@45
|
977 m_labeller->label<SparseOneDimensionalModel::Point>
|
Chris@45
|
978 (point, havePrevPoint ? &prevPoint : 0);
|
Chris@45
|
979
|
Chris@352
|
980 if (m_labeller->actingOnPrevPoint() && havePrevPoint) {
|
Chris@45
|
981 command->addPoint(prevPoint);
|
Chris@45
|
982 }
|
Chris@45
|
983 }
|
Chris@45
|
984
|
Chris@45
|
985 command->addPoint(point);
|
Chris@45
|
986
|
Chris@45
|
987 command->setName(tr("Add Point at %1 s")
|
Chris@45
|
988 .arg(RealTime::frame2RealTime
|
Chris@45
|
989 (frame,
|
Chris@45
|
990 sodm->getSampleRate())
|
Chris@45
|
991 .toText(false).c_str()));
|
Chris@45
|
992
|
Chris@108
|
993 Command *c = command->finish();
|
Chris@108
|
994 if (c) CommandHistory::getInstance()->addCommand(c, false);
|
Chris@45
|
995 }
|
Chris@45
|
996 }
|
Chris@45
|
997 }
|
Chris@45
|
998
|
Chris@45
|
999 void
|
Chris@184
|
1000 MainWindowBase::insertItemAtSelection()
|
Chris@184
|
1001 {
|
Chris@184
|
1002 MultiSelection::SelectionList selections = m_viewManager->getSelections();
|
Chris@184
|
1003 for (MultiSelection::SelectionList::iterator i = selections.begin();
|
Chris@184
|
1004 i != selections.end(); ++i) {
|
Chris@366
|
1005 int start = i->getStartFrame();
|
Chris@366
|
1006 int end = i->getEndFrame();
|
Chris@184
|
1007 if (start < end) {
|
Chris@184
|
1008 insertItemAt(start, end - start);
|
Chris@184
|
1009 }
|
Chris@184
|
1010 }
|
Chris@184
|
1011 }
|
Chris@184
|
1012
|
Chris@184
|
1013 void
|
Chris@366
|
1014 MainWindowBase::insertItemAt(int frame, int duration)
|
Chris@184
|
1015 {
|
Chris@184
|
1016 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@184
|
1017 if (!pane) {
|
Chris@184
|
1018 return;
|
Chris@184
|
1019 }
|
Chris@184
|
1020
|
Chris@184
|
1021 // ugh!
|
Chris@184
|
1022
|
Chris@366
|
1023 int alignedStart = pane->alignFromReference(frame);
|
Chris@366
|
1024 int alignedEnd = pane->alignFromReference(frame + duration);
|
Chris@184
|
1025 if (alignedStart >= alignedEnd) return;
|
Chris@366
|
1026 int alignedDuration = alignedEnd - alignedStart;
|
Chris@184
|
1027
|
Chris@184
|
1028 Command *c = 0;
|
Chris@184
|
1029
|
Chris@184
|
1030 QString name = tr("Add Item at %1 s")
|
Chris@184
|
1031 .arg(RealTime::frame2RealTime
|
Chris@184
|
1032 (alignedStart,
|
Chris@184
|
1033 getMainModel()->getSampleRate())
|
Chris@184
|
1034 .toText(false).c_str());
|
Chris@184
|
1035
|
Chris@184
|
1036 Layer *layer = pane->getSelectedLayer();
|
Chris@184
|
1037 if (!layer) return;
|
Chris@184
|
1038
|
Chris@184
|
1039 RegionModel *rm = dynamic_cast<RegionModel *>(layer->getModel());
|
Chris@184
|
1040 if (rm) {
|
Chris@184
|
1041 RegionModel::Point point(alignedStart,
|
Chris@185
|
1042 rm->getValueMaximum() + 1,
|
Chris@184
|
1043 alignedDuration,
|
Chris@184
|
1044 "");
|
Chris@184
|
1045 RegionModel::EditCommand *command =
|
Chris@184
|
1046 new RegionModel::EditCommand(rm, tr("Add Point"));
|
Chris@184
|
1047 command->addPoint(point);
|
Chris@184
|
1048 command->setName(name);
|
Chris@184
|
1049 c = command->finish();
|
Chris@184
|
1050 }
|
Chris@184
|
1051
|
Chris@184
|
1052 if (c) {
|
Chris@184
|
1053 CommandHistory::getInstance()->addCommand(c, false);
|
Chris@184
|
1054 return;
|
Chris@184
|
1055 }
|
Chris@184
|
1056
|
Chris@184
|
1057 NoteModel *nm = dynamic_cast<NoteModel *>(layer->getModel());
|
Chris@184
|
1058 if (nm) {
|
Chris@184
|
1059 NoteModel::Point point(alignedStart,
|
Chris@184
|
1060 rm->getValueMinimum(),
|
Chris@184
|
1061 alignedDuration,
|
Chris@184
|
1062 1.f,
|
Chris@184
|
1063 "");
|
Chris@184
|
1064 NoteModel::EditCommand *command =
|
Chris@184
|
1065 new NoteModel::EditCommand(nm, tr("Add Point"));
|
Chris@184
|
1066 command->addPoint(point);
|
Chris@184
|
1067 command->setName(name);
|
Chris@184
|
1068 c = command->finish();
|
Chris@184
|
1069 }
|
Chris@184
|
1070
|
Chris@184
|
1071 if (c) {
|
Chris@184
|
1072 CommandHistory::getInstance()->addCommand(c, false);
|
Chris@184
|
1073 return;
|
Chris@184
|
1074 }
|
matthiasm@267
|
1075
|
matthiasm@268
|
1076 FlexiNoteModel *fnm = dynamic_cast<FlexiNoteModel *>(layer->getModel());
|
matthiasm@268
|
1077 if (fnm) {
|
matthiasm@267
|
1078 FlexiNoteModel::Point point(alignedStart,
|
matthiasm@267
|
1079 rm->getValueMinimum(),
|
matthiasm@267
|
1080 alignedDuration,
|
matthiasm@267
|
1081 1.f,
|
matthiasm@267
|
1082 "");
|
matthiasm@267
|
1083 FlexiNoteModel::EditCommand *command =
|
matthiasm@268
|
1084 new FlexiNoteModel::EditCommand(fnm, tr("Add Point"));
|
matthiasm@267
|
1085 command->addPoint(point);
|
matthiasm@267
|
1086 command->setName(name);
|
matthiasm@267
|
1087 c = command->finish();
|
matthiasm@267
|
1088 }
|
matthiasm@267
|
1089
|
matthiasm@267
|
1090 if (c) {
|
matthiasm@267
|
1091 CommandHistory::getInstance()->addCommand(c, false);
|
matthiasm@267
|
1092 return;
|
matthiasm@267
|
1093 }
|
Chris@184
|
1094 }
|
Chris@184
|
1095
|
Chris@184
|
1096 void
|
Chris@45
|
1097 MainWindowBase::renumberInstants()
|
Chris@45
|
1098 {
|
Chris@45
|
1099 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
1100 if (!pane) return;
|
Chris@45
|
1101
|
Chris@45
|
1102 Layer *layer = dynamic_cast<TimeInstantLayer *>(pane->getSelectedLayer());
|
Chris@45
|
1103 if (!layer) return;
|
Chris@45
|
1104
|
Chris@45
|
1105 MultiSelection ms(m_viewManager->getSelection());
|
Chris@45
|
1106
|
Chris@45
|
1107 Model *model = layer->getModel();
|
Chris@45
|
1108 SparseOneDimensionalModel *sodm = dynamic_cast<SparseOneDimensionalModel *>
|
Chris@45
|
1109 (model);
|
Chris@45
|
1110 if (!sodm) return;
|
Chris@45
|
1111
|
Chris@45
|
1112 if (!m_labeller) return;
|
Chris@45
|
1113
|
Chris@45
|
1114 Labeller labeller(*m_labeller);
|
Chris@45
|
1115 labeller.setSampleRate(sodm->getSampleRate());
|
Chris@45
|
1116
|
Chris@45
|
1117 // This uses a command
|
Chris@45
|
1118
|
Chris@45
|
1119 labeller.labelAll<SparseOneDimensionalModel::Point>(*sodm, &ms);
|
Chris@45
|
1120 }
|
Chris@45
|
1121
|
Chris@45
|
1122 MainWindowBase::FileOpenStatus
|
Chris@373
|
1123 MainWindowBase::openPath(QString fileOrUrl, AudioFileOpenMode mode)
|
Chris@45
|
1124 {
|
Chris@373
|
1125 cerr << "MainWindowBase::openPath(" << fileOrUrl << ")" << endl;
|
Chris@134
|
1126 ProgressDialog dialog(tr("Opening file or URL..."), true, 2000, this);
|
Chris@134
|
1127 connect(&dialog, SIGNAL(showing()), this, SIGNAL(hideSplash()));
|
Chris@109
|
1128 return open(FileSource(fileOrUrl, &dialog), mode);
|
Chris@45
|
1129 }
|
Chris@45
|
1130
|
Chris@45
|
1131 MainWindowBase::FileOpenStatus
|
Chris@45
|
1132 MainWindowBase::open(FileSource source, AudioFileOpenMode mode)
|
Chris@45
|
1133 {
|
Chris@45
|
1134 FileOpenStatus status;
|
Chris@45
|
1135
|
Chris@45
|
1136 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@45
|
1137 source.waitForData();
|
Chris@45
|
1138
|
Chris@45
|
1139 bool canImportLayer = (getMainModel() != 0 &&
|
Chris@45
|
1140 m_paneStack != 0 &&
|
Chris@45
|
1141 m_paneStack->getCurrentPane() != 0);
|
Chris@45
|
1142
|
Chris@152
|
1143 bool rdf = (source.getExtension().toLower() == "rdf" ||
|
Chris@152
|
1144 source.getExtension().toLower() == "n3" ||
|
Chris@152
|
1145 source.getExtension().toLower() == "ttl");
|
Chris@152
|
1146
|
Chris@152
|
1147 bool audio = AudioFileReaderFactory::getKnownExtensions().contains
|
Chris@152
|
1148 (source.getExtension().toLower());
|
Chris@145
|
1149
|
Chris@373
|
1150 cerr << "MainWindowBase::open(" << source.getLocalFilename() << ": audio = " << audio << endl;
|
Chris@373
|
1151
|
Chris@145
|
1152 bool rdfSession = false;
|
Chris@145
|
1153 if (rdf) {
|
Chris@145
|
1154 RDFImporter::RDFDocumentType rdfType =
|
Chris@145
|
1155 RDFImporter::identifyDocumentType
|
Chris@145
|
1156 (QUrl::fromLocalFile(source.getLocalFilename()).toString());
|
Chris@293
|
1157 // cerr << "RDF type: " << (int)rdfType << endl;
|
Chris@145
|
1158 if (rdfType == RDFImporter::AudioRefAndAnnotations ||
|
Chris@145
|
1159 rdfType == RDFImporter::AudioRef) {
|
Chris@145
|
1160 rdfSession = true;
|
Chris@145
|
1161 } else if (rdfType == RDFImporter::NotRDF) {
|
Chris@145
|
1162 rdf = false;
|
Chris@145
|
1163 }
|
Chris@145
|
1164 }
|
Chris@145
|
1165
|
Chris@145
|
1166 if (rdf) {
|
Chris@145
|
1167 if (rdfSession) {
|
Chris@147
|
1168 bool cancel = false;
|
Chris@147
|
1169 if (!canImportLayer || shouldCreateNewSessionForRDFAudio(&cancel)) {
|
Chris@145
|
1170 return openSession(source);
|
Chris@147
|
1171 } else if (cancel) {
|
Chris@147
|
1172 return FileOpenCancelled;
|
Chris@145
|
1173 } else {
|
Chris@145
|
1174 return openLayer(source);
|
Chris@145
|
1175 }
|
Chris@145
|
1176 } else {
|
Chris@145
|
1177 if ((status = openSession(source)) != FileOpenFailed) {
|
Chris@145
|
1178 return status;
|
Chris@145
|
1179 } else if (!canImportLayer) {
|
Chris@145
|
1180 return FileOpenWrongMode;
|
Chris@145
|
1181 } else if ((status = openLayer(source)) != FileOpenFailed) {
|
Chris@145
|
1182 return status;
|
Chris@145
|
1183 } else {
|
Chris@145
|
1184 return FileOpenFailed;
|
Chris@145
|
1185 }
|
Chris@145
|
1186 }
|
Chris@145
|
1187 }
|
Chris@145
|
1188
|
Chris@152
|
1189 if (audio && (status = openAudio(source, mode)) != FileOpenFailed) {
|
Chris@45
|
1190 return status;
|
Chris@45
|
1191 } else if ((status = openSession(source)) != FileOpenFailed) {
|
Chris@45
|
1192 return status;
|
Chris@45
|
1193 } else if ((status = openPlaylist(source, mode)) != FileOpenFailed) {
|
Chris@45
|
1194 return status;
|
Chris@45
|
1195 } else if (!canImportLayer) {
|
Chris@45
|
1196 return FileOpenWrongMode;
|
Chris@45
|
1197 } else if ((status = openImage(source)) != FileOpenFailed) {
|
Chris@45
|
1198 return status;
|
Chris@45
|
1199 } else if ((status = openLayer(source)) != FileOpenFailed) {
|
Chris@45
|
1200 return status;
|
Chris@45
|
1201 } else {
|
Chris@45
|
1202 return FileOpenFailed;
|
Chris@45
|
1203 }
|
Chris@45
|
1204 }
|
Chris@45
|
1205
|
Chris@45
|
1206 MainWindowBase::FileOpenStatus
|
Chris@227
|
1207 MainWindowBase::openAudio(FileSource source, AudioFileOpenMode mode,
|
Chris@227
|
1208 QString templateName)
|
Chris@45
|
1209 {
|
Chris@373
|
1210 cerr << "MainWindowBase::openAudio(" << source.getLocation() << ")" << endl;
|
Chris@45
|
1211
|
Chris@222
|
1212 if (templateName == "") {
|
Chris@231
|
1213 templateName = getDefaultSessionTemplate();
|
Chris@222
|
1214 }
|
Chris@220
|
1215
|
Chris@294
|
1216 cerr << "template is: \"" << templateName << "\"" << endl;
|
Chris@223
|
1217
|
Chris@45
|
1218 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@45
|
1219 source.waitForData();
|
Chris@45
|
1220
|
Chris@45
|
1221 m_openingAudioFile = true;
|
Chris@45
|
1222
|
Chris@366
|
1223 int rate = 0;
|
Chris@45
|
1224
|
Chris@360
|
1225 if (Preferences::getInstance()->getFixedSampleRate() != 0) {
|
Chris@360
|
1226 rate = Preferences::getInstance()->getFixedSampleRate();
|
Chris@360
|
1227 } else if (Preferences::getInstance()->getResampleOnLoad()) {
|
Chris@45
|
1228 rate = m_playSource->getSourceSampleRate();
|
Chris@45
|
1229 }
|
Chris@45
|
1230
|
Chris@45
|
1231 WaveFileModel *newModel = new WaveFileModel(source, rate);
|
Chris@45
|
1232
|
Chris@45
|
1233 if (!newModel->isOK()) {
|
Chris@45
|
1234 delete newModel;
|
Chris@45
|
1235 m_openingAudioFile = false;
|
Chris@45
|
1236 return FileOpenFailed;
|
Chris@45
|
1237 }
|
Chris@45
|
1238
|
Chris@293
|
1239 // cerr << "mode = " << mode << endl;
|
Chris@45
|
1240
|
Chris@45
|
1241 if (mode == AskUser) {
|
Chris@45
|
1242 if (getMainModel()) {
|
Chris@45
|
1243
|
Chris@147
|
1244 QSettings settings;
|
Chris@147
|
1245 settings.beginGroup("MainWindow");
|
Chris@221
|
1246 int lastMode = settings.value("lastaudioopenmode", 0).toBool();
|
Chris@147
|
1247 settings.endGroup();
|
Chris@221
|
1248 int imode = 0;
|
Chris@45
|
1249
|
Chris@45
|
1250 QStringList items;
|
Chris@221
|
1251 items << tr("Close the current session and start a new one")
|
Chris@221
|
1252 << tr("Replace the main audio file in this session")
|
Chris@221
|
1253 << tr("Add the audio file to this session");
|
Chris@45
|
1254
|
Chris@45
|
1255 bool ok = false;
|
Chris@45
|
1256 QString item = ListInputDialog::getItem
|
Chris@45
|
1257 (this, tr("Select target for import"),
|
Chris@221
|
1258 tr("<b>Select a target for import</b><p>You already have an audio file loaded.<br>What would you like to do with the new audio file?"),
|
Chris@221
|
1259 items, lastMode, &ok);
|
Chris@45
|
1260
|
Chris@45
|
1261 if (!ok || item.isEmpty()) {
|
Chris@45
|
1262 delete newModel;
|
Chris@45
|
1263 m_openingAudioFile = false;
|
Chris@45
|
1264 return FileOpenCancelled;
|
Chris@45
|
1265 }
|
Chris@45
|
1266
|
Chris@221
|
1267 for (int i = 0; i < items.size(); ++i) {
|
Chris@221
|
1268 if (item == items[i]) imode = i;
|
Chris@221
|
1269 }
|
Chris@221
|
1270
|
Chris@147
|
1271 settings.beginGroup("MainWindow");
|
Chris@221
|
1272 settings.setValue("lastaudioopenmode", imode);
|
Chris@147
|
1273 settings.endGroup();
|
Chris@45
|
1274
|
Chris@221
|
1275 mode = (AudioFileOpenMode)imode;
|
Chris@45
|
1276
|
Chris@45
|
1277 } else {
|
Chris@221
|
1278 // no main model: make a new session
|
Chris@221
|
1279 mode = ReplaceSession;
|
Chris@45
|
1280 }
|
Chris@45
|
1281 }
|
Chris@45
|
1282
|
Chris@45
|
1283 if (mode == ReplaceCurrentPane) {
|
Chris@45
|
1284
|
Chris@45
|
1285 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
1286 if (pane) {
|
Chris@45
|
1287 if (getMainModel()) {
|
Chris@45
|
1288 View::ModelSet models(pane->getModels());
|
Chris@45
|
1289 if (models.find(getMainModel()) != models.end()) {
|
Chris@221
|
1290 // Current pane contains main model: replace that
|
Chris@45
|
1291 mode = ReplaceMainModel;
|
Chris@45
|
1292 }
|
Chris@221
|
1293 // Otherwise the current pane has a non-default model,
|
Chris@221
|
1294 // which we will deal with later
|
Chris@45
|
1295 } else {
|
Chris@221
|
1296 // We have no main model, so start a new session with
|
Chris@221
|
1297 // optional template
|
Chris@221
|
1298 mode = ReplaceSession;
|
Chris@45
|
1299 }
|
Chris@45
|
1300 } else {
|
Chris@221
|
1301 // We seem to have no current pane! Oh well
|
Chris@45
|
1302 mode = CreateAdditionalModel;
|
Chris@45
|
1303 }
|
Chris@45
|
1304 }
|
Chris@45
|
1305
|
Chris@45
|
1306 if (mode == CreateAdditionalModel && !getMainModel()) {
|
Chris@221
|
1307 mode = ReplaceSession;
|
Chris@221
|
1308 }
|
Chris@221
|
1309
|
Chris@221
|
1310 bool loadedTemplate = false;
|
Chris@221
|
1311
|
Chris@221
|
1312 if (mode == ReplaceSession) {
|
Chris@258
|
1313
|
Chris@258
|
1314 if (!checkSaveModified()) return FileOpenCancelled;
|
Chris@258
|
1315
|
Chris@293
|
1316 cerr << "SV looking for template " << templateName << endl;
|
Chris@230
|
1317 if (templateName != "") {
|
Chris@230
|
1318 FileOpenStatus tplStatus = openSessionTemplate(templateName);
|
Chris@258
|
1319 if (tplStatus == FileOpenCancelled) {
|
Chris@293
|
1320 cerr << "Template load cancelled" << endl;
|
Chris@258
|
1321 return FileOpenCancelled;
|
Chris@258
|
1322 }
|
Chris@230
|
1323 if (tplStatus != FileOpenFailed) {
|
Chris@293
|
1324 cerr << "Template load succeeded" << endl;
|
Chris@230
|
1325 loadedTemplate = true;
|
Chris@221
|
1326 }
|
Chris@221
|
1327 }
|
Chris@221
|
1328
|
Chris@221
|
1329 if (!loadedTemplate) {
|
Chris@221
|
1330 closeSession();
|
Chris@221
|
1331 createDocument();
|
Chris@221
|
1332 }
|
Chris@221
|
1333
|
Chris@45
|
1334 mode = ReplaceMainModel;
|
Chris@45
|
1335 }
|
Chris@45
|
1336
|
Chris@164
|
1337 emit activity(tr("Import audio file \"%1\"").arg(source.getLocation()));
|
Chris@164
|
1338
|
Chris@45
|
1339 if (mode == ReplaceMainModel) {
|
Chris@45
|
1340
|
Chris@45
|
1341 Model *prevMain = getMainModel();
|
Chris@45
|
1342 if (prevMain) {
|
Chris@45
|
1343 m_playSource->removeModel(prevMain);
|
Chris@108
|
1344 PlayParameterRepository::getInstance()->removePlayable(prevMain);
|
Chris@45
|
1345 }
|
Chris@108
|
1346 PlayParameterRepository::getInstance()->addPlayable(newModel);
|
Chris@45
|
1347
|
Chris@248
|
1348 SVDEBUG << "SV about to call setMainModel(" << newModel << "): prevMain is " << prevMain << endl;
|
Chris@248
|
1349
|
Chris@45
|
1350 m_document->setMainModel(newModel);
|
Chris@45
|
1351
|
Chris@45
|
1352 setupMenus();
|
Chris@45
|
1353
|
dan@210
|
1354 if (loadedTemplate || (m_sessionFile == "")) {
|
Chris@45
|
1355 //!!! shouldn't be dealing directly with title from here -- call a method
|
Chris@57
|
1356 setWindowTitle(tr("%1: %2")
|
Chris@57
|
1357 .arg(QApplication::applicationName())
|
Chris@45
|
1358 .arg(source.getLocation()));
|
Chris@45
|
1359 CommandHistory::getInstance()->clear();
|
Chris@45
|
1360 CommandHistory::getInstance()->documentSaved();
|
Chris@45
|
1361 m_documentModified = false;
|
Chris@45
|
1362 } else {
|
Chris@57
|
1363 setWindowTitle(tr("%1: %2 [%3]")
|
Chris@57
|
1364 .arg(QApplication::applicationName())
|
Chris@45
|
1365 .arg(QFileInfo(m_sessionFile).fileName())
|
Chris@45
|
1366 .arg(source.getLocation()));
|
Chris@45
|
1367 if (m_documentModified) {
|
Chris@45
|
1368 m_documentModified = false;
|
Chris@45
|
1369 documentModified(); // so as to restore "(modified)" window title
|
Chris@45
|
1370 }
|
Chris@45
|
1371 }
|
Chris@45
|
1372
|
Chris@45
|
1373 if (!source.isRemote()) m_audioFile = source.getLocalFilename();
|
Chris@45
|
1374
|
Chris@45
|
1375 } else if (mode == CreateAdditionalModel) {
|
Chris@45
|
1376
|
Chris@45
|
1377 CommandHistory::getInstance()->startCompoundOperation
|
Chris@219
|
1378 (tr("Import \"%1\"").arg(source.getBasename()), true);
|
Chris@45
|
1379
|
Chris@45
|
1380 m_document->addImportedModel(newModel);
|
Chris@45
|
1381
|
Chris@45
|
1382 AddPaneCommand *command = new AddPaneCommand(this);
|
Chris@45
|
1383 CommandHistory::getInstance()->addCommand(command);
|
Chris@45
|
1384
|
Chris@45
|
1385 Pane *pane = command->getPane();
|
Chris@45
|
1386
|
Chris@47
|
1387 if (m_timeRulerLayer) {
|
Chris@47
|
1388 m_document->addLayerToView(pane, m_timeRulerLayer);
|
Chris@47
|
1389 }
|
Chris@45
|
1390
|
Chris@45
|
1391 Layer *newLayer = m_document->createImportedLayer(newModel);
|
Chris@45
|
1392
|
Chris@45
|
1393 if (newLayer) {
|
Chris@45
|
1394 m_document->addLayerToView(pane, newLayer);
|
Chris@45
|
1395 }
|
Chris@45
|
1396
|
Chris@45
|
1397 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@45
|
1398
|
Chris@45
|
1399 } else if (mode == ReplaceCurrentPane) {
|
Chris@45
|
1400
|
Chris@45
|
1401 // We know there is a current pane, otherwise we would have
|
Chris@45
|
1402 // reset the mode to CreateAdditionalModel above; and we know
|
Chris@45
|
1403 // the current pane does not contain the main model, otherwise
|
Chris@45
|
1404 // we would have reset it to ReplaceMainModel. But we don't
|
Chris@45
|
1405 // know whether the pane contains a waveform model at all.
|
Chris@45
|
1406
|
Chris@45
|
1407 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
1408 Layer *replace = 0;
|
Chris@45
|
1409
|
Chris@45
|
1410 for (int i = 0; i < pane->getLayerCount(); ++i) {
|
Chris@45
|
1411 Layer *layer = pane->getLayer(i);
|
Chris@45
|
1412 if (dynamic_cast<WaveformLayer *>(layer)) {
|
Chris@45
|
1413 replace = layer;
|
Chris@45
|
1414 break;
|
Chris@45
|
1415 }
|
Chris@45
|
1416 }
|
Chris@45
|
1417
|
Chris@45
|
1418 CommandHistory::getInstance()->startCompoundOperation
|
Chris@219
|
1419 (tr("Import \"%1\"").arg(source.getBasename()), true);
|
Chris@45
|
1420
|
Chris@45
|
1421 m_document->addImportedModel(newModel);
|
Chris@45
|
1422
|
Chris@45
|
1423 if (replace) {
|
Chris@45
|
1424 m_document->removeLayerFromView(pane, replace);
|
Chris@45
|
1425 }
|
Chris@45
|
1426
|
Chris@45
|
1427 Layer *newLayer = m_document->createImportedLayer(newModel);
|
Chris@45
|
1428
|
Chris@45
|
1429 if (newLayer) {
|
Chris@45
|
1430 m_document->addLayerToView(pane, newLayer);
|
Chris@45
|
1431 }
|
Chris@45
|
1432
|
Chris@45
|
1433 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@45
|
1434 }
|
Chris@45
|
1435
|
Chris@45
|
1436 updateMenuStates();
|
Chris@45
|
1437 m_recentFiles.addFile(source.getLocation());
|
Chris@45
|
1438 if (!source.isRemote()) {
|
Chris@45
|
1439 // for file dialog
|
Chris@45
|
1440 registerLastOpenedFilePath(FileFinder::AudioFile,
|
Chris@45
|
1441 source.getLocalFilename());
|
Chris@45
|
1442 }
|
Chris@45
|
1443 m_openingAudioFile = false;
|
Chris@45
|
1444
|
Chris@45
|
1445 currentPaneChanged(m_paneStack->getCurrentPane());
|
Chris@45
|
1446
|
Chris@342
|
1447 emit audioFileLoaded();
|
Chris@342
|
1448
|
Chris@45
|
1449 return FileOpenSucceeded;
|
Chris@45
|
1450 }
|
Chris@45
|
1451
|
Chris@45
|
1452 MainWindowBase::FileOpenStatus
|
Chris@45
|
1453 MainWindowBase::openPlaylist(FileSource source, AudioFileOpenMode mode)
|
Chris@45
|
1454 {
|
Chris@233
|
1455 SVDEBUG << "MainWindowBase::openPlaylist(" << source.getLocation() << ")" << endl;
|
Chris@135
|
1456
|
Chris@45
|
1457 std::set<QString> extensions;
|
Chris@45
|
1458 PlaylistFileReader::getSupportedExtensions(extensions);
|
Chris@152
|
1459 QString extension = source.getExtension().toLower();
|
Chris@45
|
1460 if (extensions.find(extension) == extensions.end()) return FileOpenFailed;
|
Chris@45
|
1461
|
Chris@45
|
1462 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@45
|
1463 source.waitForData();
|
Chris@45
|
1464
|
Chris@45
|
1465 PlaylistFileReader reader(source.getLocalFilename());
|
Chris@45
|
1466 if (!reader.isOK()) return FileOpenFailed;
|
Chris@45
|
1467
|
Chris@45
|
1468 PlaylistFileReader::Playlist playlist = reader.load();
|
Chris@45
|
1469
|
Chris@45
|
1470 bool someSuccess = false;
|
Chris@45
|
1471
|
Chris@45
|
1472 for (PlaylistFileReader::Playlist::const_iterator i = playlist.begin();
|
Chris@45
|
1473 i != playlist.end(); ++i) {
|
Chris@45
|
1474
|
Chris@134
|
1475 ProgressDialog dialog(tr("Opening playlist..."), true, 2000, this);
|
Chris@134
|
1476 connect(&dialog, SIGNAL(showing()), this, SIGNAL(hideSplash()));
|
Chris@109
|
1477 FileOpenStatus status = openAudio(FileSource(*i, &dialog), mode);
|
Chris@45
|
1478
|
Chris@45
|
1479 if (status == FileOpenCancelled) {
|
Chris@45
|
1480 return FileOpenCancelled;
|
Chris@45
|
1481 }
|
Chris@45
|
1482
|
Chris@45
|
1483 if (status == FileOpenSucceeded) {
|
Chris@45
|
1484 someSuccess = true;
|
Chris@45
|
1485 mode = CreateAdditionalModel;
|
Chris@45
|
1486 }
|
Chris@45
|
1487 }
|
Chris@45
|
1488
|
Chris@45
|
1489 if (someSuccess) return FileOpenSucceeded;
|
Chris@45
|
1490 else return FileOpenFailed;
|
Chris@45
|
1491 }
|
Chris@45
|
1492
|
Chris@45
|
1493 MainWindowBase::FileOpenStatus
|
Chris@45
|
1494 MainWindowBase::openLayer(FileSource source)
|
Chris@45
|
1495 {
|
Chris@233
|
1496 SVDEBUG << "MainWindowBase::openLayer(" << source.getLocation() << ")" << endl;
|
Chris@135
|
1497
|
Chris@45
|
1498 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
1499
|
Chris@45
|
1500 if (!pane) {
|
Chris@45
|
1501 // shouldn't happen, as the menu action should have been disabled
|
Chris@293
|
1502 cerr << "WARNING: MainWindowBase::openLayer: no current pane" << endl;
|
Chris@45
|
1503 return FileOpenWrongMode;
|
Chris@45
|
1504 }
|
Chris@45
|
1505
|
Chris@45
|
1506 if (!getMainModel()) {
|
Chris@45
|
1507 // shouldn't happen, as the menu action should have been disabled
|
Chris@293
|
1508 cerr << "WARNING: MainWindowBase::openLayer: No main model -- hence no default sample rate available" << endl;
|
Chris@45
|
1509 return FileOpenWrongMode;
|
Chris@45
|
1510 }
|
Chris@45
|
1511
|
Chris@45
|
1512 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@45
|
1513 source.waitForData();
|
Chris@45
|
1514
|
Chris@45
|
1515 QString path = source.getLocalFilename();
|
Chris@45
|
1516
|
Chris@145
|
1517 RDFImporter::RDFDocumentType rdfType =
|
Chris@145
|
1518 RDFImporter::identifyDocumentType(QUrl::fromLocalFile(path).toString());
|
Chris@145
|
1519
|
Chris@293
|
1520 // cerr << "RDF type: (in layer) " << (int) rdfType << endl;
|
Chris@148
|
1521
|
Chris@145
|
1522 if (rdfType != RDFImporter::NotRDF) {
|
Chris@145
|
1523
|
Chris@145
|
1524 return openLayersFromRDF(source);
|
Chris@134
|
1525
|
Chris@152
|
1526 } else if (source.getExtension().toLower() == "svl" ||
|
Chris@152
|
1527 (source.getExtension().toLower() == "xml" &&
|
Chris@140
|
1528 (SVFileReader::identifyXmlFile(source.getLocalFilename())
|
Chris@140
|
1529 == SVFileReader::SVLayerFile))) {
|
Chris@45
|
1530
|
Chris@45
|
1531 PaneCallback callback(this);
|
Chris@45
|
1532 QFile file(path);
|
Chris@45
|
1533
|
Chris@45
|
1534 if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
Chris@293
|
1535 cerr << "ERROR: MainWindowBase::openLayer("
|
Chris@294
|
1536 << source.getLocation()
|
Chris@293
|
1537 << "): Failed to open file for reading" << endl;
|
Chris@45
|
1538 return FileOpenFailed;
|
Chris@45
|
1539 }
|
Chris@45
|
1540
|
Chris@45
|
1541 SVFileReader reader(m_document, callback, source.getLocation());
|
Chris@79
|
1542 connect
|
Chris@79
|
1543 (&reader, SIGNAL(modelRegenerationFailed(QString, QString, QString)),
|
Chris@79
|
1544 this, SLOT(modelRegenerationFailed(QString, QString, QString)));
|
Chris@79
|
1545 connect
|
Chris@79
|
1546 (&reader, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@79
|
1547 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@45
|
1548 reader.setCurrentPane(pane);
|
Chris@45
|
1549
|
Chris@45
|
1550 QXmlInputSource inputSource(&file);
|
Chris@45
|
1551 reader.parse(inputSource);
|
Chris@45
|
1552
|
Chris@45
|
1553 if (!reader.isOK()) {
|
Chris@293
|
1554 cerr << "ERROR: MainWindowBase::openLayer("
|
Chris@294
|
1555 << source.getLocation()
|
Chris@45
|
1556 << "): Failed to read XML file: "
|
Chris@293
|
1557 << reader.getErrorString() << endl;
|
Chris@45
|
1558 return FileOpenFailed;
|
Chris@45
|
1559 }
|
Chris@45
|
1560
|
Chris@164
|
1561 emit activity(tr("Import layer XML file \"%1\"").arg(source.getLocation()));
|
Chris@164
|
1562
|
Chris@45
|
1563 m_recentFiles.addFile(source.getLocation());
|
Chris@45
|
1564
|
Chris@45
|
1565 if (!source.isRemote()) {
|
Chris@45
|
1566 registerLastOpenedFilePath(FileFinder::LayerFile, path); // for file dialog
|
Chris@45
|
1567 }
|
Chris@45
|
1568
|
Chris@75
|
1569 return FileOpenSucceeded;
|
Chris@75
|
1570
|
Chris@45
|
1571 } else {
|
Chris@45
|
1572
|
Chris@45
|
1573 try {
|
Chris@45
|
1574
|
Chris@109
|
1575 MIDIFileImportDialog midiDlg(this);
|
Chris@109
|
1576
|
Chris@109
|
1577 Model *model = DataFileReaderFactory::loadNonCSV
|
Chris@109
|
1578 (path, &midiDlg, getMainModel()->getSampleRate());
|
Chris@45
|
1579
|
Chris@109
|
1580 if (!model) {
|
Chris@196
|
1581 CSVFormat format(path);
|
Chris@196
|
1582 format.setSampleRate(getMainModel()->getSampleRate());
|
Chris@196
|
1583 CSVFormatDialog *dialog = new CSVFormatDialog(this, format);
|
Chris@109
|
1584 if (dialog->exec() == QDialog::Accepted) {
|
Chris@109
|
1585 model = DataFileReaderFactory::loadCSV
|
Chris@109
|
1586 (path, dialog->getFormat(),
|
Chris@109
|
1587 getMainModel()->getSampleRate());
|
Chris@109
|
1588 }
|
Chris@109
|
1589 }
|
Chris@109
|
1590
|
Chris@45
|
1591 if (model) {
|
Chris@45
|
1592
|
Chris@233
|
1593 SVDEBUG << "MainWindowBase::openLayer: Have model" << endl;
|
Chris@45
|
1594
|
Chris@164
|
1595 emit activity(tr("Import MIDI file \"%1\"").arg(source.getLocation()));
|
Chris@164
|
1596
|
Chris@45
|
1597 Layer *newLayer = m_document->createImportedLayer(model);
|
Chris@45
|
1598
|
Chris@45
|
1599 if (newLayer) {
|
Chris@45
|
1600
|
Chris@45
|
1601 m_document->addLayerToView(pane, newLayer);
|
Chris@88
|
1602 m_paneStack->setCurrentLayer(pane, newLayer);
|
Chris@88
|
1603
|
Chris@45
|
1604 m_recentFiles.addFile(source.getLocation());
|
Chris@45
|
1605
|
Chris@45
|
1606 if (!source.isRemote()) {
|
Chris@45
|
1607 registerLastOpenedFilePath
|
Chris@45
|
1608 (FileFinder::LayerFile,
|
Chris@45
|
1609 path); // for file dialog
|
Chris@45
|
1610 }
|
Chris@88
|
1611
|
Chris@45
|
1612 return FileOpenSucceeded;
|
Chris@45
|
1613 }
|
Chris@45
|
1614 }
|
Chris@45
|
1615 } catch (DataFileReaderFactory::Exception e) {
|
Chris@45
|
1616 if (e == DataFileReaderFactory::ImportCancelled) {
|
Chris@45
|
1617 return FileOpenCancelled;
|
Chris@45
|
1618 }
|
Chris@45
|
1619 }
|
Chris@45
|
1620 }
|
Chris@45
|
1621
|
Chris@45
|
1622 return FileOpenFailed;
|
Chris@45
|
1623 }
|
Chris@45
|
1624
|
Chris@45
|
1625 MainWindowBase::FileOpenStatus
|
Chris@45
|
1626 MainWindowBase::openImage(FileSource source)
|
Chris@45
|
1627 {
|
Chris@233
|
1628 SVDEBUG << "MainWindowBase::openImage(" << source.getLocation() << ")" << endl;
|
Chris@135
|
1629
|
Chris@45
|
1630 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
1631
|
Chris@45
|
1632 if (!pane) {
|
Chris@45
|
1633 // shouldn't happen, as the menu action should have been disabled
|
Chris@293
|
1634 cerr << "WARNING: MainWindowBase::openImage: no current pane" << endl;
|
Chris@45
|
1635 return FileOpenWrongMode;
|
Chris@45
|
1636 }
|
Chris@45
|
1637
|
Chris@45
|
1638 if (!m_document->getMainModel()) {
|
Chris@45
|
1639 return FileOpenWrongMode;
|
Chris@45
|
1640 }
|
Chris@45
|
1641
|
Chris@45
|
1642 bool newLayer = false;
|
Chris@45
|
1643
|
Chris@45
|
1644 ImageLayer *il = dynamic_cast<ImageLayer *>(pane->getSelectedLayer());
|
Chris@45
|
1645 if (!il) {
|
Chris@45
|
1646 for (int i = pane->getLayerCount()-1; i >= 0; --i) {
|
Chris@45
|
1647 il = dynamic_cast<ImageLayer *>(pane->getLayer(i));
|
Chris@45
|
1648 if (il) break;
|
Chris@45
|
1649 }
|
Chris@45
|
1650 }
|
Chris@45
|
1651 if (!il) {
|
Chris@45
|
1652 il = dynamic_cast<ImageLayer *>
|
Chris@45
|
1653 (m_document->createEmptyLayer(LayerFactory::Image));
|
Chris@45
|
1654 if (!il) return FileOpenFailed;
|
Chris@45
|
1655 newLayer = true;
|
Chris@45
|
1656 }
|
Chris@45
|
1657
|
Chris@45
|
1658 // We don't put the image file in Recent Files
|
Chris@45
|
1659
|
Chris@293
|
1660 cerr << "openImage: trying location \"" << source.getLocation() << "\" in image layer" << endl;
|
Chris@45
|
1661
|
Chris@45
|
1662 if (!il->addImage(m_viewManager->getGlobalCentreFrame(), source.getLocation())) {
|
Chris@45
|
1663 if (newLayer) {
|
Chris@52
|
1664 m_document->deleteLayer(il); // also releases its model
|
Chris@45
|
1665 }
|
Chris@45
|
1666 return FileOpenFailed;
|
Chris@45
|
1667 } else {
|
Chris@45
|
1668 if (newLayer) {
|
Chris@45
|
1669 m_document->addLayerToView(pane, il);
|
Chris@45
|
1670 }
|
Chris@45
|
1671 m_paneStack->setCurrentLayer(pane, il);
|
Chris@45
|
1672 }
|
Chris@45
|
1673
|
Chris@45
|
1674 return FileOpenSucceeded;
|
Chris@45
|
1675 }
|
Chris@45
|
1676
|
Chris@45
|
1677 MainWindowBase::FileOpenStatus
|
Chris@373
|
1678 MainWindowBase::openSessionPath(QString fileOrUrl)
|
Chris@45
|
1679 {
|
Chris@134
|
1680 ProgressDialog dialog(tr("Opening session..."), true, 2000, this);
|
Chris@134
|
1681 connect(&dialog, SIGNAL(showing()), this, SIGNAL(hideSplash()));
|
Chris@109
|
1682 return openSession(FileSource(fileOrUrl, &dialog));
|
Chris@45
|
1683 }
|
Chris@45
|
1684
|
Chris@45
|
1685 MainWindowBase::FileOpenStatus
|
Chris@45
|
1686 MainWindowBase::openSession(FileSource source)
|
Chris@45
|
1687 {
|
Chris@233
|
1688 SVDEBUG << "MainWindowBase::openSession(" << source.getLocation() << ")" << endl;
|
Chris@135
|
1689
|
Chris@45
|
1690 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@145
|
1691 source.waitForData();
|
Chris@141
|
1692
|
Chris@341
|
1693 QString sessionExt =
|
Chris@341
|
1694 InteractiveFileFinder::getInstance()->getApplicationSessionExtension();
|
Chris@341
|
1695
|
Chris@341
|
1696 if (source.getExtension().toLower() != sessionExt) {
|
Chris@145
|
1697
|
Chris@145
|
1698 RDFImporter::RDFDocumentType rdfType =
|
Chris@145
|
1699 RDFImporter::identifyDocumentType
|
Chris@145
|
1700 (QUrl::fromLocalFile(source.getLocalFilename()).toString());
|
Chris@145
|
1701
|
Chris@293
|
1702 // cerr << "RDF type: " << (int)rdfType << endl;
|
Chris@148
|
1703
|
Chris@145
|
1704 if (rdfType == RDFImporter::AudioRefAndAnnotations ||
|
Chris@145
|
1705 rdfType == RDFImporter::AudioRef) {
|
Chris@145
|
1706 return openSessionFromRDF(source);
|
Chris@145
|
1707 } else if (rdfType != RDFImporter::NotRDF) {
|
Chris@145
|
1708 return FileOpenFailed;
|
Chris@145
|
1709 }
|
Chris@145
|
1710
|
Chris@152
|
1711 if (source.getExtension().toLower() == "xml") {
|
Chris@140
|
1712 if (SVFileReader::identifyXmlFile(source.getLocalFilename()) ==
|
Chris@140
|
1713 SVFileReader::SVSessionFile) {
|
Chris@293
|
1714 cerr << "This XML file looks like a session file, attempting to open it as a session" << endl;
|
Chris@140
|
1715 } else {
|
Chris@140
|
1716 return FileOpenFailed;
|
Chris@140
|
1717 }
|
Chris@140
|
1718 } else {
|
Chris@140
|
1719 return FileOpenFailed;
|
Chris@140
|
1720 }
|
Chris@140
|
1721 }
|
Chris@45
|
1722
|
Chris@140
|
1723 QXmlInputSource *inputSource = 0;
|
Chris@140
|
1724 BZipFileDevice *bzFile = 0;
|
Chris@140
|
1725 QFile *rawFile = 0;
|
Chris@140
|
1726
|
Chris@341
|
1727 if (source.getExtension().toLower() == sessionExt) {
|
Chris@140
|
1728 bzFile = new BZipFileDevice(source.getLocalFilename());
|
Chris@140
|
1729 if (!bzFile->open(QIODevice::ReadOnly)) {
|
Chris@140
|
1730 delete bzFile;
|
Chris@140
|
1731 return FileOpenFailed;
|
Chris@140
|
1732 }
|
Chris@140
|
1733 inputSource = new QXmlInputSource(bzFile);
|
Chris@140
|
1734 } else {
|
Chris@140
|
1735 rawFile = new QFile(source.getLocalFilename());
|
Chris@140
|
1736 inputSource = new QXmlInputSource(rawFile);
|
Chris@140
|
1737 }
|
Chris@140
|
1738
|
Chris@140
|
1739 if (!checkSaveModified()) {
|
Chris@140
|
1740 if (bzFile) bzFile->close();
|
Chris@140
|
1741 delete inputSource;
|
Chris@140
|
1742 delete bzFile;
|
Chris@140
|
1743 delete rawFile;
|
Chris@140
|
1744 return FileOpenCancelled;
|
Chris@140
|
1745 }
|
Chris@45
|
1746
|
Chris@45
|
1747 QString error;
|
Chris@45
|
1748 closeSession();
|
Chris@45
|
1749 createDocument();
|
Chris@45
|
1750
|
Chris@45
|
1751 PaneCallback callback(this);
|
Chris@45
|
1752 m_viewManager->clearSelections();
|
Chris@45
|
1753
|
Chris@45
|
1754 SVFileReader reader(m_document, callback, source.getLocation());
|
Chris@79
|
1755 connect
|
Chris@79
|
1756 (&reader, SIGNAL(modelRegenerationFailed(QString, QString, QString)),
|
Chris@79
|
1757 this, SLOT(modelRegenerationFailed(QString, QString, QString)));
|
Chris@79
|
1758 connect
|
Chris@79
|
1759 (&reader, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@79
|
1760 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@140
|
1761
|
Chris@140
|
1762 reader.parse(*inputSource);
|
Chris@45
|
1763
|
Chris@45
|
1764 if (!reader.isOK()) {
|
Chris@45
|
1765 error = tr("SV XML file read error:\n%1").arg(reader.getErrorString());
|
Chris@45
|
1766 }
|
Chris@45
|
1767
|
Chris@140
|
1768 if (bzFile) bzFile->close();
|
Chris@140
|
1769
|
Chris@140
|
1770 delete inputSource;
|
Chris@140
|
1771 delete bzFile;
|
Chris@140
|
1772 delete rawFile;
|
Chris@45
|
1773
|
Chris@45
|
1774 bool ok = (error == "");
|
Chris@45
|
1775
|
Chris@45
|
1776 if (ok) {
|
Chris@45
|
1777
|
Chris@164
|
1778 emit activity(tr("Import session file \"%1\"").arg(source.getLocation()));
|
Chris@164
|
1779
|
Chris@57
|
1780 setWindowTitle(tr("%1: %2")
|
Chris@57
|
1781 .arg(QApplication::applicationName())
|
Chris@45
|
1782 .arg(source.getLocation()));
|
Chris@45
|
1783
|
Chris@45
|
1784 if (!source.isRemote()) m_sessionFile = source.getLocalFilename();
|
Chris@45
|
1785
|
Chris@45
|
1786 setupMenus();
|
Chris@45
|
1787
|
Chris@45
|
1788 CommandHistory::getInstance()->clear();
|
Chris@45
|
1789 CommandHistory::getInstance()->documentSaved();
|
Chris@45
|
1790 m_documentModified = false;
|
Chris@45
|
1791 updateMenuStates();
|
Chris@45
|
1792
|
Chris@227
|
1793 m_recentFiles.addFile(source.getLocation());
|
Chris@45
|
1794
|
Chris@45
|
1795 if (!source.isRemote()) {
|
Chris@45
|
1796 // for file dialog
|
Chris@45
|
1797 registerLastOpenedFilePath(FileFinder::SessionFile,
|
Chris@227
|
1798 source.getLocalFilename());
|
Chris@45
|
1799 }
|
Chris@45
|
1800
|
Chris@342
|
1801 emit sessionLoaded();
|
Chris@342
|
1802
|
Chris@45
|
1803 } else {
|
Chris@57
|
1804 setWindowTitle(QApplication::applicationName());
|
Chris@45
|
1805 }
|
Chris@45
|
1806
|
Chris@45
|
1807 return ok ? FileOpenSucceeded : FileOpenFailed;
|
Chris@45
|
1808 }
|
Chris@45
|
1809
|
Chris@141
|
1810 MainWindowBase::FileOpenStatus
|
Chris@230
|
1811 MainWindowBase::openSessionTemplate(QString templateName)
|
Chris@230
|
1812 {
|
Chris@230
|
1813 // Template in the user's template directory takes
|
Chris@230
|
1814 // priority over a bundled one; we don't unbundle, but
|
Chris@230
|
1815 // open directly from the bundled file (where applicable)
|
Chris@230
|
1816 ResourceFinder rf;
|
Chris@230
|
1817 QString tfile = rf.getResourcePath("templates", templateName + ".svt");
|
Chris@230
|
1818 if (tfile != "") {
|
Chris@294
|
1819 cerr << "SV loading template file " << tfile << endl;
|
Chris@230
|
1820 return openSessionTemplate(FileSource("file:" + tfile));
|
Chris@230
|
1821 } else {
|
Chris@230
|
1822 return FileOpenFailed;
|
Chris@230
|
1823 }
|
Chris@230
|
1824 }
|
Chris@230
|
1825
|
Chris@230
|
1826 MainWindowBase::FileOpenStatus
|
Chris@227
|
1827 MainWindowBase::openSessionTemplate(FileSource source)
|
Chris@227
|
1828 {
|
Chris@294
|
1829 cerr << "MainWindowBase::openSessionTemplate(" << source.getLocation() << ")" << endl;
|
Chris@227
|
1830
|
Chris@227
|
1831 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@227
|
1832 source.waitForData();
|
Chris@227
|
1833
|
Chris@227
|
1834 QXmlInputSource *inputSource = 0;
|
Chris@227
|
1835 QFile *file = 0;
|
Chris@227
|
1836
|
Chris@227
|
1837 file = new QFile(source.getLocalFilename());
|
Chris@227
|
1838 inputSource = new QXmlInputSource(file);
|
Chris@227
|
1839
|
Chris@227
|
1840 if (!checkSaveModified()) {
|
Chris@227
|
1841 delete inputSource;
|
Chris@227
|
1842 delete file;
|
Chris@227
|
1843 return FileOpenCancelled;
|
Chris@227
|
1844 }
|
Chris@227
|
1845
|
Chris@227
|
1846 QString error;
|
Chris@227
|
1847 closeSession();
|
Chris@227
|
1848 createDocument();
|
Chris@227
|
1849
|
Chris@227
|
1850 PaneCallback callback(this);
|
Chris@227
|
1851 m_viewManager->clearSelections();
|
Chris@227
|
1852
|
Chris@227
|
1853 SVFileReader reader(m_document, callback, source.getLocation());
|
Chris@227
|
1854 connect
|
Chris@227
|
1855 (&reader, SIGNAL(modelRegenerationFailed(QString, QString, QString)),
|
Chris@227
|
1856 this, SLOT(modelRegenerationFailed(QString, QString, QString)));
|
Chris@227
|
1857 connect
|
Chris@227
|
1858 (&reader, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@227
|
1859 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@227
|
1860
|
Chris@227
|
1861 reader.parse(*inputSource);
|
Chris@227
|
1862
|
Chris@227
|
1863 if (!reader.isOK()) {
|
Chris@227
|
1864 error = tr("SV XML file read error:\n%1").arg(reader.getErrorString());
|
Chris@227
|
1865 }
|
Chris@227
|
1866
|
Chris@227
|
1867 delete inputSource;
|
Chris@227
|
1868 delete file;
|
Chris@227
|
1869
|
Chris@227
|
1870 bool ok = (error == "");
|
Chris@227
|
1871
|
Chris@227
|
1872 setWindowTitle(QApplication::applicationName());
|
Chris@227
|
1873
|
Chris@227
|
1874 if (ok) {
|
Chris@227
|
1875
|
Chris@227
|
1876 emit activity(tr("Open session template \"%1\"").arg(source.getLocation()));
|
Chris@227
|
1877
|
Chris@227
|
1878 setupMenus();
|
Chris@227
|
1879
|
Chris@227
|
1880 CommandHistory::getInstance()->clear();
|
Chris@227
|
1881 CommandHistory::getInstance()->documentSaved();
|
Chris@227
|
1882 m_documentModified = false;
|
Chris@227
|
1883 updateMenuStates();
|
Chris@342
|
1884
|
Chris@342
|
1885 emit sessionLoaded();
|
Chris@227
|
1886 }
|
Chris@227
|
1887
|
Chris@227
|
1888 return ok ? FileOpenSucceeded : FileOpenFailed;
|
Chris@227
|
1889 }
|
Chris@227
|
1890
|
Chris@227
|
1891 MainWindowBase::FileOpenStatus
|
Chris@141
|
1892 MainWindowBase::openSessionFromRDF(FileSource source)
|
Chris@141
|
1893 {
|
Chris@233
|
1894 SVDEBUG << "MainWindowBase::openSessionFromRDF(" << source.getLocation() << ")" << endl;
|
Chris@141
|
1895
|
Chris@141
|
1896 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@141
|
1897 source.waitForData();
|
Chris@141
|
1898
|
Chris@145
|
1899 if (!checkSaveModified()) {
|
Chris@145
|
1900 return FileOpenCancelled;
|
Chris@141
|
1901 }
|
Chris@143
|
1902
|
Chris@145
|
1903 closeSession();
|
Chris@145
|
1904 createDocument();
|
Chris@145
|
1905
|
Chris@145
|
1906 FileOpenStatus status = openLayersFromRDF(source);
|
Chris@141
|
1907
|
Chris@141
|
1908 setupMenus();
|
Chris@141
|
1909
|
Chris@141
|
1910 setWindowTitle(tr("%1: %2")
|
Chris@141
|
1911 .arg(QApplication::applicationName())
|
Chris@141
|
1912 .arg(source.getLocation()));
|
Chris@141
|
1913 CommandHistory::getInstance()->clear();
|
Chris@141
|
1914 CommandHistory::getInstance()->documentSaved();
|
Chris@141
|
1915 m_documentModified = false;
|
Chris@145
|
1916
|
Chris@342
|
1917 emit sessionLoaded();
|
Chris@342
|
1918
|
Chris@145
|
1919 return status;
|
Chris@145
|
1920 }
|
Chris@145
|
1921
|
Chris@145
|
1922 MainWindowBase::FileOpenStatus
|
Chris@145
|
1923 MainWindowBase::openLayersFromRDF(FileSource source)
|
Chris@145
|
1924 {
|
Chris@366
|
1925 int rate = 0;
|
Chris@145
|
1926
|
Chris@233
|
1927 SVDEBUG << "MainWindowBase::openLayersFromRDF" << endl;
|
Chris@186
|
1928
|
Chris@145
|
1929 ProgressDialog dialog(tr("Importing from RDF..."), true, 2000, this);
|
Chris@145
|
1930 connect(&dialog, SIGNAL(showing()), this, SIGNAL(hideSplash()));
|
Chris@145
|
1931
|
Chris@145
|
1932 if (getMainModel()) {
|
Chris@145
|
1933 rate = getMainModel()->getSampleRate();
|
Chris@145
|
1934 } else if (Preferences::getInstance()->getResampleOnLoad()) {
|
Chris@145
|
1935 rate = m_playSource->getSourceSampleRate();
|
Chris@145
|
1936 }
|
Chris@145
|
1937
|
Chris@145
|
1938 RDFImporter importer
|
Chris@145
|
1939 (QUrl::fromLocalFile(source.getLocalFilename()).toString(), rate);
|
Chris@145
|
1940
|
Chris@145
|
1941 if (!importer.isOK()) {
|
Chris@147
|
1942 if (importer.getErrorString() != "") {
|
Chris@147
|
1943 QMessageBox::critical
|
Chris@147
|
1944 (this, tr("Failed to import RDF"),
|
Chris@147
|
1945 tr("<b>Failed to import RDF</b><p>Importing data from RDF document at \"%1\" failed: %2</p>")
|
Chris@147
|
1946 .arg(source.getLocation()).arg(importer.getErrorString()));
|
Chris@147
|
1947 }
|
Chris@145
|
1948 return FileOpenFailed;
|
Chris@145
|
1949 }
|
Chris@145
|
1950
|
Chris@145
|
1951 std::vector<Model *> models = importer.getDataModels(&dialog);
|
Chris@145
|
1952
|
Chris@145
|
1953 dialog.setMessage(tr("Importing from RDF..."));
|
Chris@145
|
1954
|
Chris@145
|
1955 if (models.empty()) {
|
Chris@186
|
1956 QMessageBox::critical
|
Chris@186
|
1957 (this, tr("Failed to import RDF"),
|
Chris@186
|
1958 tr("<b>Failed to import RDF</b><p>No suitable data models found for import from RDF document at \"%1\"</p>").arg(source.getLocation()));
|
Chris@145
|
1959 return FileOpenFailed;
|
Chris@145
|
1960 }
|
Chris@145
|
1961
|
Chris@164
|
1962 emit activity(tr("Import RDF document \"%1\"").arg(source.getLocation()));
|
Chris@164
|
1963
|
Chris@145
|
1964 std::set<Model *> added;
|
Chris@145
|
1965
|
Chris@221
|
1966 for (int i = 0; i < (int)models.size(); ++i) {
|
Chris@145
|
1967
|
Chris@145
|
1968 Model *m = models[i];
|
Chris@145
|
1969 WaveFileModel *w = dynamic_cast<WaveFileModel *>(m);
|
Chris@145
|
1970
|
Chris@145
|
1971 if (w) {
|
Chris@145
|
1972
|
Chris@145
|
1973 Pane *pane = addPaneToStack();
|
Chris@145
|
1974 Layer *layer = 0;
|
Chris@145
|
1975
|
Chris@145
|
1976 if (m_timeRulerLayer) {
|
Chris@145
|
1977 m_document->addLayerToView(pane, m_timeRulerLayer);
|
Chris@145
|
1978 }
|
Chris@145
|
1979
|
Chris@145
|
1980 if (!getMainModel()) {
|
Chris@145
|
1981 m_document->setMainModel(w);
|
Chris@145
|
1982 layer = m_document->createMainModelLayer(LayerFactory::Waveform);
|
Chris@145
|
1983 } else {
|
Chris@145
|
1984 layer = m_document->createImportedLayer(w);
|
Chris@145
|
1985 }
|
Chris@145
|
1986
|
Chris@145
|
1987 m_document->addLayerToView(pane, layer);
|
Chris@145
|
1988
|
Chris@145
|
1989 added.insert(w);
|
Chris@145
|
1990
|
Chris@221
|
1991 for (int j = 0; j < (int)models.size(); ++j) {
|
Chris@145
|
1992
|
Chris@145
|
1993 Model *dm = models[j];
|
Chris@145
|
1994
|
Chris@145
|
1995 if (dm == m) continue;
|
Chris@145
|
1996 if (dm->getSourceModel() != m) continue;
|
Chris@145
|
1997
|
Chris@145
|
1998 layer = m_document->createImportedLayer(dm);
|
Chris@145
|
1999
|
Chris@145
|
2000 if (layer->isLayerOpaque() ||
|
Chris@145
|
2001 dynamic_cast<Colour3DPlotLayer *>(layer)) {
|
Chris@145
|
2002
|
Chris@156
|
2003 // these always go in a new pane, with nothing
|
Chris@156
|
2004 // else going in the same pane
|
Chris@156
|
2005
|
Chris@145
|
2006 Pane *singleLayerPane = addPaneToStack();
|
Chris@145
|
2007 if (m_timeRulerLayer) {
|
Chris@145
|
2008 m_document->addLayerToView(singleLayerPane, m_timeRulerLayer);
|
Chris@145
|
2009 }
|
Chris@145
|
2010 m_document->addLayerToView(singleLayerPane, layer);
|
Chris@145
|
2011
|
Chris@156
|
2012 } else if (layer->getLayerColourSignificance() ==
|
Chris@156
|
2013 Layer::ColourHasMeaningfulValue) {
|
Chris@156
|
2014
|
Chris@156
|
2015 // these can go in a pane with something else, but
|
Chris@156
|
2016 // only if none of the something elses also have
|
Chris@156
|
2017 // this quality
|
Chris@156
|
2018
|
Chris@156
|
2019 bool needNewPane = false;
|
Chris@156
|
2020 for (int i = 0; i < pane->getLayerCount(); ++i) {
|
Chris@156
|
2021 Layer *otherLayer = pane->getLayer(i);
|
Chris@156
|
2022 if (otherLayer &&
|
Chris@156
|
2023 (otherLayer->getLayerColourSignificance() ==
|
Chris@156
|
2024 Layer::ColourHasMeaningfulValue)) {
|
Chris@156
|
2025 needNewPane = true;
|
Chris@156
|
2026 break;
|
Chris@156
|
2027 }
|
Chris@156
|
2028 }
|
Chris@156
|
2029 if (needNewPane) {
|
Chris@156
|
2030 pane = addPaneToStack();
|
Chris@156
|
2031 }
|
Chris@156
|
2032
|
Chris@156
|
2033 m_document->addLayerToView(pane, layer);
|
Chris@156
|
2034
|
Chris@145
|
2035 } else {
|
Chris@145
|
2036
|
Chris@145
|
2037 if (pane->getLayerCount() > 4) {
|
Chris@145
|
2038 pane = addPaneToStack();
|
Chris@145
|
2039 }
|
Chris@145
|
2040
|
Chris@145
|
2041 m_document->addLayerToView(pane, layer);
|
Chris@145
|
2042 }
|
Chris@145
|
2043
|
Chris@145
|
2044 added.insert(dm);
|
Chris@145
|
2045 }
|
Chris@145
|
2046 }
|
Chris@145
|
2047 }
|
Chris@145
|
2048
|
Chris@221
|
2049 for (int i = 0; i < (int)models.size(); ++i) {
|
Chris@145
|
2050
|
Chris@145
|
2051 Model *m = models[i];
|
Chris@145
|
2052
|
Chris@145
|
2053 if (added.find(m) == added.end()) {
|
Chris@145
|
2054
|
Chris@145
|
2055 Layer *layer = m_document->createImportedLayer(m);
|
Chris@145
|
2056 if (!layer) return FileOpenFailed;
|
Chris@145
|
2057
|
Chris@145
|
2058 Pane *singleLayerPane = addPaneToStack();
|
Chris@145
|
2059 if (m_timeRulerLayer) {
|
Chris@145
|
2060 m_document->addLayerToView(singleLayerPane, m_timeRulerLayer);
|
Chris@145
|
2061 }
|
Chris@145
|
2062 m_document->addLayerToView(singleLayerPane, layer);
|
Chris@145
|
2063 }
|
Chris@145
|
2064 }
|
Chris@145
|
2065
|
Chris@145
|
2066 m_recentFiles.addFile(source.getLocation());
|
Chris@145
|
2067 return FileOpenSucceeded;
|
Chris@141
|
2068 }
|
Chris@141
|
2069
|
Chris@45
|
2070 void
|
Chris@45
|
2071 MainWindowBase::createPlayTarget()
|
Chris@45
|
2072 {
|
Chris@45
|
2073 if (m_playTarget) return;
|
Chris@45
|
2074
|
Chris@126
|
2075 QSettings settings;
|
Chris@126
|
2076 settings.beginGroup("Preferences");
|
Chris@126
|
2077 QString targetName = settings.value("audio-target", "").toString();
|
Chris@126
|
2078 settings.endGroup();
|
Chris@126
|
2079
|
Chris@126
|
2080 AudioTargetFactory *factory = AudioTargetFactory::getInstance();
|
Chris@126
|
2081
|
Chris@126
|
2082 factory->setDefaultCallbackTarget(targetName);
|
Chris@126
|
2083 m_playTarget = factory->createCallbackTarget(m_playSource);
|
Chris@126
|
2084
|
Chris@45
|
2085 if (!m_playTarget) {
|
Chris@104
|
2086 emit hideSplash();
|
Chris@126
|
2087
|
Chris@126
|
2088 if (factory->isAutoCallbackTarget(targetName)) {
|
Chris@128
|
2089 QMessageBox::warning
|
Chris@45
|
2090 (this, tr("Couldn't open audio device"),
|
Chris@126
|
2091 tr("<b>No audio available</b><p>Could not open an audio device for playback.<p>Automatic audio device detection failed. Audio playback will not be available during this session.</p>"),
|
Chris@45
|
2092 QMessageBox::Ok);
|
Chris@126
|
2093 } else {
|
Chris@126
|
2094 QMessageBox::warning
|
Chris@126
|
2095 (this, tr("Couldn't open audio device"),
|
Chris@126
|
2096 tr("<b>No audio available</b><p>Failed to open your preferred audio device (\"%1\").<p>Audio playback will not be available during this session.</p>")
|
Chris@126
|
2097 .arg(factory->getCallbackTargetDescription(targetName)),
|
Chris@126
|
2098 QMessageBox::Ok);
|
Chris@126
|
2099 }
|
Chris@45
|
2100 }
|
Chris@45
|
2101 }
|
Chris@45
|
2102
|
Chris@45
|
2103 WaveFileModel *
|
Chris@45
|
2104 MainWindowBase::getMainModel()
|
Chris@45
|
2105 {
|
Chris@45
|
2106 if (!m_document) return 0;
|
Chris@45
|
2107 return m_document->getMainModel();
|
Chris@45
|
2108 }
|
Chris@45
|
2109
|
Chris@45
|
2110 const WaveFileModel *
|
Chris@45
|
2111 MainWindowBase::getMainModel() const
|
Chris@45
|
2112 {
|
Chris@45
|
2113 if (!m_document) return 0;
|
Chris@45
|
2114 return m_document->getMainModel();
|
Chris@45
|
2115 }
|
Chris@45
|
2116
|
Chris@45
|
2117 void
|
Chris@45
|
2118 MainWindowBase::createDocument()
|
Chris@45
|
2119 {
|
Chris@45
|
2120 m_document = new Document;
|
Chris@45
|
2121
|
Chris@45
|
2122 connect(m_document, SIGNAL(layerAdded(Layer *)),
|
Chris@45
|
2123 this, SLOT(layerAdded(Layer *)));
|
Chris@45
|
2124 connect(m_document, SIGNAL(layerRemoved(Layer *)),
|
Chris@45
|
2125 this, SLOT(layerRemoved(Layer *)));
|
Chris@45
|
2126 connect(m_document, SIGNAL(layerAboutToBeDeleted(Layer *)),
|
Chris@45
|
2127 this, SLOT(layerAboutToBeDeleted(Layer *)));
|
Chris@45
|
2128 connect(m_document, SIGNAL(layerInAView(Layer *, bool)),
|
Chris@45
|
2129 this, SLOT(layerInAView(Layer *, bool)));
|
Chris@45
|
2130
|
Chris@45
|
2131 connect(m_document, SIGNAL(modelAdded(Model *)),
|
Chris@45
|
2132 this, SLOT(modelAdded(Model *)));
|
Chris@45
|
2133 connect(m_document, SIGNAL(mainModelChanged(WaveFileModel *)),
|
Chris@45
|
2134 this, SLOT(mainModelChanged(WaveFileModel *)));
|
Chris@45
|
2135 connect(m_document, SIGNAL(modelAboutToBeDeleted(Model *)),
|
Chris@45
|
2136 this, SLOT(modelAboutToBeDeleted(Model *)));
|
Chris@45
|
2137
|
Chris@78
|
2138 connect(m_document, SIGNAL(modelGenerationFailed(QString, QString)),
|
Chris@78
|
2139 this, SLOT(modelGenerationFailed(QString, QString)));
|
Chris@78
|
2140 connect(m_document, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@78
|
2141 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@78
|
2142 connect(m_document, SIGNAL(modelGenerationFailed(QString, QString)),
|
Chris@78
|
2143 this, SLOT(modelGenerationFailed(QString, QString)));
|
Chris@78
|
2144 connect(m_document, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@78
|
2145 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@78
|
2146 connect(m_document, SIGNAL(alignmentFailed(QString, QString)),
|
Chris@78
|
2147 this, SLOT(alignmentFailed(QString, QString)));
|
Chris@160
|
2148
|
Chris@160
|
2149 emit replacedDocument();
|
Chris@45
|
2150 }
|
Chris@45
|
2151
|
Chris@45
|
2152 bool
|
Chris@45
|
2153 MainWindowBase::saveSessionFile(QString path)
|
Chris@45
|
2154 {
|
Chris@217
|
2155 try {
|
Chris@217
|
2156
|
Chris@217
|
2157 TempWriteFile temp(path);
|
Chris@217
|
2158
|
Chris@217
|
2159 BZipFileDevice bzFile(temp.getTemporaryFilename());
|
Chris@217
|
2160 if (!bzFile.open(QIODevice::WriteOnly)) {
|
Chris@293
|
2161 cerr << "Failed to open session file \""
|
Chris@294
|
2162 << temp.getTemporaryFilename()
|
Chris@217
|
2163 << "\" for writing: "
|
Chris@293
|
2164 << bzFile.errorString() << endl;
|
Chris@217
|
2165 return false;
|
Chris@217
|
2166 }
|
Chris@217
|
2167
|
Chris@217
|
2168 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
Chris@217
|
2169
|
Chris@217
|
2170 QTextStream out(&bzFile);
|
Chris@226
|
2171 toXml(out, false);
|
Chris@217
|
2172 out.flush();
|
Chris@217
|
2173
|
Chris@217
|
2174 QApplication::restoreOverrideCursor();
|
Chris@217
|
2175
|
Chris@217
|
2176 if (!bzFile.isOK()) {
|
Chris@217
|
2177 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@217
|
2178 tr("<b>Save failed</b><p>Failed to write to file \"%1\": %2")
|
Chris@217
|
2179 .arg(path).arg(bzFile.errorString()));
|
Chris@217
|
2180 bzFile.close();
|
Chris@217
|
2181 return false;
|
Chris@217
|
2182 }
|
Chris@217
|
2183
|
Chris@217
|
2184 bzFile.close();
|
Chris@217
|
2185 temp.moveToTarget();
|
Chris@217
|
2186 return true;
|
Chris@217
|
2187
|
Chris@217
|
2188 } catch (FileOperationFailed &f) {
|
Chris@217
|
2189
|
Chris@217
|
2190 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@217
|
2191 tr("<b>Save failed</b><p>Failed to write to file \"%1\": %2")
|
Chris@217
|
2192 .arg(path).arg(f.what()));
|
Chris@45
|
2193 return false;
|
Chris@45
|
2194 }
|
Chris@45
|
2195 }
|
Chris@45
|
2196
|
Chris@224
|
2197 bool
|
Chris@224
|
2198 MainWindowBase::saveSessionTemplate(QString path)
|
Chris@224
|
2199 {
|
Chris@224
|
2200 try {
|
Chris@224
|
2201
|
Chris@224
|
2202 TempWriteFile temp(path);
|
Chris@224
|
2203
|
Chris@224
|
2204 QFile file(temp.getTemporaryFilename());
|
Chris@224
|
2205 if (!file.open(QIODevice::WriteOnly)) {
|
Chris@293
|
2206 cerr << "Failed to open session template file \""
|
Chris@294
|
2207 << temp.getTemporaryFilename()
|
Chris@224
|
2208 << "\" for writing: "
|
Chris@294
|
2209 << file.errorString() << endl;
|
Chris@224
|
2210 return false;
|
Chris@224
|
2211 }
|
Chris@224
|
2212
|
Chris@224
|
2213 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
Chris@224
|
2214
|
Chris@224
|
2215 QTextStream out(&file);
|
Chris@226
|
2216 toXml(out, true);
|
Chris@224
|
2217 out.flush();
|
Chris@224
|
2218
|
Chris@224
|
2219 QApplication::restoreOverrideCursor();
|
Chris@224
|
2220
|
Chris@224
|
2221 file.close();
|
Chris@224
|
2222 temp.moveToTarget();
|
Chris@224
|
2223 return true;
|
Chris@224
|
2224
|
Chris@224
|
2225 } catch (FileOperationFailed &f) {
|
Chris@224
|
2226
|
Chris@224
|
2227 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@224
|
2228 tr("<b>Save failed</b><p>Failed to write to file \"%1\": %2")
|
Chris@224
|
2229 .arg(path).arg(f.what()));
|
Chris@224
|
2230 return false;
|
Chris@224
|
2231 }
|
Chris@224
|
2232 }
|
Chris@224
|
2233
|
Chris@45
|
2234 void
|
Chris@226
|
2235 MainWindowBase::toXml(QTextStream &out, bool asTemplate)
|
Chris@45
|
2236 {
|
Chris@45
|
2237 QString indent(" ");
|
Chris@45
|
2238
|
Chris@45
|
2239 out << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
|
Chris@45
|
2240 out << "<!DOCTYPE sonic-visualiser>\n";
|
Chris@45
|
2241 out << "<sv>\n";
|
Chris@45
|
2242
|
Chris@226
|
2243 if (asTemplate) {
|
Chris@226
|
2244 m_document->toXmlAsTemplate(out, "", "");
|
Chris@226
|
2245 } else {
|
Chris@226
|
2246 m_document->toXml(out, "", "");
|
Chris@226
|
2247 }
|
Chris@45
|
2248
|
Chris@45
|
2249 out << "<display>\n";
|
Chris@45
|
2250
|
Chris@45
|
2251 out << QString(" <window width=\"%1\" height=\"%2\"/>\n")
|
Chris@45
|
2252 .arg(width()).arg(height());
|
Chris@45
|
2253
|
Chris@45
|
2254 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@45
|
2255
|
Chris@45
|
2256 Pane *pane = m_paneStack->getPane(i);
|
Chris@45
|
2257
|
Chris@45
|
2258 if (pane) {
|
Chris@45
|
2259 pane->toXml(out, indent);
|
Chris@45
|
2260 }
|
Chris@45
|
2261 }
|
Chris@45
|
2262
|
Chris@45
|
2263 out << "</display>\n";
|
Chris@45
|
2264
|
Chris@45
|
2265 m_viewManager->getSelection().toXml(out);
|
Chris@45
|
2266
|
Chris@45
|
2267 out << "</sv>\n";
|
Chris@45
|
2268 }
|
Chris@45
|
2269
|
Chris@45
|
2270 Pane *
|
Chris@45
|
2271 MainWindowBase::addPaneToStack()
|
Chris@45
|
2272 {
|
Chris@342
|
2273 cerr << "MainWindowBase::addPaneToStack()" << endl;
|
Chris@45
|
2274 AddPaneCommand *command = new AddPaneCommand(this);
|
Chris@45
|
2275 CommandHistory::getInstance()->addCommand(command);
|
Chris@57
|
2276 Pane *pane = command->getPane();
|
Chris@57
|
2277 return pane;
|
Chris@45
|
2278 }
|
Chris@45
|
2279
|
Chris@45
|
2280 void
|
Chris@45
|
2281 MainWindowBase::zoomIn()
|
Chris@45
|
2282 {
|
Chris@45
|
2283 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2284 if (currentPane) currentPane->zoom(true);
|
Chris@45
|
2285 }
|
Chris@45
|
2286
|
Chris@45
|
2287 void
|
Chris@45
|
2288 MainWindowBase::zoomOut()
|
Chris@45
|
2289 {
|
Chris@45
|
2290 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2291 if (currentPane) currentPane->zoom(false);
|
Chris@45
|
2292 }
|
Chris@45
|
2293
|
Chris@45
|
2294 void
|
Chris@45
|
2295 MainWindowBase::zoomToFit()
|
Chris@45
|
2296 {
|
Chris@45
|
2297 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2298 if (!currentPane) return;
|
Chris@45
|
2299
|
Chris@45
|
2300 Model *model = getMainModel();
|
Chris@45
|
2301 if (!model) return;
|
Chris@45
|
2302
|
Chris@366
|
2303 int start = model->getStartFrame();
|
Chris@366
|
2304 int end = model->getEndFrame();
|
Chris@60
|
2305 if (m_playSource) end = std::max(end, m_playSource->getPlayEndFrame());
|
Chris@366
|
2306 int pixels = currentPane->width();
|
Chris@366
|
2307
|
Chris@366
|
2308 int sw = currentPane->getVerticalScaleWidth();
|
Chris@45
|
2309 if (pixels > sw * 2) pixels -= sw * 2;
|
Chris@45
|
2310 else pixels = 1;
|
Chris@45
|
2311 if (pixels > 4) pixels -= 4;
|
Chris@45
|
2312
|
Chris@366
|
2313 int zoomLevel = (end - start) / pixels;
|
Chris@150
|
2314 if (zoomLevel < 1) zoomLevel = 1;
|
Chris@45
|
2315
|
Chris@45
|
2316 currentPane->setZoomLevel(zoomLevel);
|
Chris@45
|
2317 currentPane->setCentreFrame((start + end) / 2);
|
Chris@45
|
2318 }
|
Chris@45
|
2319
|
Chris@45
|
2320 void
|
Chris@45
|
2321 MainWindowBase::zoomDefault()
|
Chris@45
|
2322 {
|
Chris@45
|
2323 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@302
|
2324 QSettings settings;
|
Chris@302
|
2325 settings.beginGroup("MainWindow");
|
Chris@302
|
2326 int zoom = settings.value("zoom-default", 1024).toInt();
|
Chris@302
|
2327 settings.endGroup();
|
Chris@302
|
2328 if (currentPane) currentPane->setZoomLevel(zoom);
|
Chris@45
|
2329 }
|
Chris@45
|
2330
|
Chris@45
|
2331 void
|
Chris@45
|
2332 MainWindowBase::scrollLeft()
|
Chris@45
|
2333 {
|
Chris@45
|
2334 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2335 if (currentPane) currentPane->scroll(false, false);
|
Chris@45
|
2336 }
|
Chris@45
|
2337
|
Chris@45
|
2338 void
|
Chris@45
|
2339 MainWindowBase::jumpLeft()
|
Chris@45
|
2340 {
|
Chris@45
|
2341 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2342 if (currentPane) currentPane->scroll(false, true);
|
Chris@45
|
2343 }
|
Chris@45
|
2344
|
Chris@45
|
2345 void
|
Chris@162
|
2346 MainWindowBase::peekLeft()
|
Chris@162
|
2347 {
|
Chris@162
|
2348 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@162
|
2349 if (currentPane) currentPane->scroll(false, false, false);
|
Chris@162
|
2350 }
|
Chris@162
|
2351
|
Chris@162
|
2352 void
|
Chris@45
|
2353 MainWindowBase::scrollRight()
|
Chris@45
|
2354 {
|
Chris@45
|
2355 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2356 if (currentPane) currentPane->scroll(true, false);
|
Chris@45
|
2357 }
|
Chris@45
|
2358
|
Chris@45
|
2359 void
|
Chris@45
|
2360 MainWindowBase::jumpRight()
|
Chris@45
|
2361 {
|
Chris@45
|
2362 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2363 if (currentPane) currentPane->scroll(true, true);
|
Chris@45
|
2364 }
|
Chris@45
|
2365
|
Chris@45
|
2366 void
|
Chris@162
|
2367 MainWindowBase::peekRight()
|
Chris@162
|
2368 {
|
Chris@162
|
2369 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@162
|
2370 if (currentPane) currentPane->scroll(true, false, false);
|
Chris@162
|
2371 }
|
Chris@162
|
2372
|
Chris@162
|
2373 void
|
Chris@45
|
2374 MainWindowBase::showNoOverlays()
|
Chris@45
|
2375 {
|
Chris@45
|
2376 m_viewManager->setOverlayMode(ViewManager::NoOverlays);
|
Chris@45
|
2377 }
|
Chris@45
|
2378
|
Chris@45
|
2379 void
|
Chris@45
|
2380 MainWindowBase::showMinimalOverlays()
|
Chris@45
|
2381 {
|
Chris@335
|
2382 m_viewManager->setOverlayMode(ViewManager::StandardOverlays);
|
Chris@45
|
2383 }
|
Chris@45
|
2384
|
Chris@45
|
2385 void
|
Chris@45
|
2386 MainWindowBase::showAllOverlays()
|
Chris@45
|
2387 {
|
Chris@45
|
2388 m_viewManager->setOverlayMode(ViewManager::AllOverlays);
|
Chris@45
|
2389 }
|
Chris@45
|
2390
|
Chris@45
|
2391 void
|
Chris@211
|
2392 MainWindowBase::toggleTimeRulers()
|
Chris@211
|
2393 {
|
Chris@211
|
2394 bool haveRulers = false;
|
Chris@211
|
2395 bool someHidden = false;
|
Chris@211
|
2396
|
Chris@211
|
2397 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@211
|
2398
|
Chris@211
|
2399 Pane *pane = m_paneStack->getPane(i);
|
Chris@211
|
2400 if (!pane) continue;
|
Chris@211
|
2401
|
Chris@211
|
2402 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@211
|
2403
|
Chris@211
|
2404 Layer *layer = pane->getLayer(j);
|
Chris@211
|
2405 if (!dynamic_cast<TimeRulerLayer *>(layer)) continue;
|
Chris@211
|
2406
|
Chris@211
|
2407 haveRulers = true;
|
Chris@211
|
2408 if (layer->isLayerDormant(pane)) someHidden = true;
|
Chris@211
|
2409 }
|
Chris@211
|
2410 }
|
Chris@211
|
2411
|
Chris@211
|
2412 if (haveRulers) {
|
Chris@211
|
2413
|
Chris@211
|
2414 bool show = someHidden;
|
Chris@211
|
2415
|
Chris@211
|
2416 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@211
|
2417
|
Chris@211
|
2418 Pane *pane = m_paneStack->getPane(i);
|
Chris@211
|
2419 if (!pane) continue;
|
Chris@211
|
2420
|
Chris@211
|
2421 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@211
|
2422
|
Chris@211
|
2423 Layer *layer = pane->getLayer(j);
|
Chris@211
|
2424 if (!dynamic_cast<TimeRulerLayer *>(layer)) continue;
|
Chris@211
|
2425
|
Chris@211
|
2426 layer->showLayer(pane, show);
|
Chris@211
|
2427 }
|
Chris@211
|
2428 }
|
Chris@211
|
2429 }
|
Chris@211
|
2430 }
|
Chris@211
|
2431
|
Chris@211
|
2432 void
|
Chris@45
|
2433 MainWindowBase::toggleZoomWheels()
|
Chris@45
|
2434 {
|
Chris@45
|
2435 if (m_viewManager->getZoomWheelsEnabled()) {
|
Chris@45
|
2436 m_viewManager->setZoomWheelsEnabled(false);
|
Chris@45
|
2437 } else {
|
Chris@45
|
2438 m_viewManager->setZoomWheelsEnabled(true);
|
Chris@45
|
2439 }
|
Chris@45
|
2440 }
|
Chris@45
|
2441
|
Chris@45
|
2442 void
|
Chris@45
|
2443 MainWindowBase::togglePropertyBoxes()
|
Chris@45
|
2444 {
|
Chris@45
|
2445 if (m_paneStack->getLayoutStyle() == PaneStack::NoPropertyStacks) {
|
Chris@45
|
2446 if (Preferences::getInstance()->getPropertyBoxLayout() ==
|
Chris@45
|
2447 Preferences::VerticallyStacked) {
|
Chris@45
|
2448 m_paneStack->setLayoutStyle(PaneStack::PropertyStackPerPaneLayout);
|
Chris@45
|
2449 } else {
|
Chris@45
|
2450 m_paneStack->setLayoutStyle(PaneStack::SinglePropertyStackLayout);
|
Chris@45
|
2451 }
|
Chris@45
|
2452 } else {
|
Chris@45
|
2453 m_paneStack->setLayoutStyle(PaneStack::NoPropertyStacks);
|
Chris@45
|
2454 }
|
Chris@45
|
2455 }
|
Chris@45
|
2456
|
Chris@45
|
2457 void
|
Chris@45
|
2458 MainWindowBase::toggleStatusBar()
|
Chris@45
|
2459 {
|
Chris@45
|
2460 QSettings settings;
|
Chris@45
|
2461 settings.beginGroup("MainWindow");
|
Chris@45
|
2462 bool sb = settings.value("showstatusbar", true).toBool();
|
Chris@45
|
2463
|
Chris@45
|
2464 if (sb) {
|
Chris@45
|
2465 statusBar()->hide();
|
Chris@45
|
2466 } else {
|
Chris@45
|
2467 statusBar()->show();
|
Chris@45
|
2468 }
|
Chris@45
|
2469
|
Chris@45
|
2470 settings.setValue("showstatusbar", !sb);
|
Chris@45
|
2471
|
Chris@45
|
2472 settings.endGroup();
|
Chris@45
|
2473 }
|
Chris@45
|
2474
|
Chris@45
|
2475 void
|
Chris@256
|
2476 MainWindowBase::toggleCentreLine()
|
Chris@256
|
2477 {
|
Chris@256
|
2478 if (m_viewManager->shouldShowCentreLine()) {
|
Chris@256
|
2479 m_viewManager->setShowCentreLine(false);
|
Chris@256
|
2480 } else {
|
Chris@256
|
2481 m_viewManager->setShowCentreLine(true);
|
Chris@256
|
2482 }
|
Chris@256
|
2483 }
|
Chris@256
|
2484
|
Chris@256
|
2485 void
|
Chris@45
|
2486 MainWindowBase::preferenceChanged(PropertyContainer::PropertyName name)
|
Chris@45
|
2487 {
|
Chris@45
|
2488 if (name == "Property Box Layout") {
|
Chris@45
|
2489 if (m_paneStack->getLayoutStyle() != PaneStack::NoPropertyStacks) {
|
Chris@45
|
2490 if (Preferences::getInstance()->getPropertyBoxLayout() ==
|
Chris@45
|
2491 Preferences::VerticallyStacked) {
|
Chris@45
|
2492 m_paneStack->setLayoutStyle(PaneStack::PropertyStackPerPaneLayout);
|
Chris@45
|
2493 } else {
|
Chris@45
|
2494 m_paneStack->setLayoutStyle(PaneStack::SinglePropertyStackLayout);
|
Chris@45
|
2495 }
|
Chris@45
|
2496 }
|
Chris@45
|
2497 } else if (name == "Background Mode" && m_viewManager) {
|
Chris@45
|
2498 Preferences::BackgroundMode mode =
|
Chris@45
|
2499 Preferences::getInstance()->getBackgroundMode();
|
Chris@45
|
2500 if (mode == Preferences::BackgroundFromTheme) {
|
Chris@45
|
2501 m_viewManager->setGlobalDarkBackground(m_initialDarkBackground);
|
Chris@45
|
2502 } else if (mode == Preferences::DarkBackground) {
|
Chris@45
|
2503 m_viewManager->setGlobalDarkBackground(true);
|
Chris@45
|
2504 } else {
|
Chris@45
|
2505 m_viewManager->setGlobalDarkBackground(false);
|
Chris@45
|
2506 }
|
Chris@45
|
2507 }
|
Chris@45
|
2508 }
|
Chris@45
|
2509
|
Chris@45
|
2510 void
|
Chris@45
|
2511 MainWindowBase::play()
|
Chris@45
|
2512 {
|
Chris@45
|
2513 if (m_playSource->isPlaying()) {
|
Chris@45
|
2514 stop();
|
Chris@45
|
2515 } else {
|
Chris@45
|
2516 playbackFrameChanged(m_viewManager->getPlaybackFrame());
|
Chris@45
|
2517 m_playSource->play(m_viewManager->getPlaybackFrame());
|
Chris@45
|
2518 }
|
Chris@45
|
2519 }
|
Chris@45
|
2520
|
Chris@45
|
2521 void
|
Chris@45
|
2522 MainWindowBase::ffwd()
|
Chris@45
|
2523 {
|
Chris@45
|
2524 if (!getMainModel()) return;
|
Chris@45
|
2525
|
Chris@45
|
2526 int frame = m_viewManager->getPlaybackFrame();
|
Chris@45
|
2527 ++frame;
|
Chris@45
|
2528
|
Chris@85
|
2529 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2530 Layer *layer = getSnapLayer();
|
Chris@366
|
2531 int sr = getMainModel()->getSampleRate();
|
Chris@45
|
2532
|
Chris@45
|
2533 if (!layer) {
|
Chris@45
|
2534
|
Chris@45
|
2535 frame = RealTime::realTime2Frame
|
Chris@357
|
2536 (RealTime::frame2RealTime(frame, sr) + m_defaultFfwdRwdStep, sr);
|
Chris@45
|
2537 if (frame > int(getMainModel()->getEndFrame())) {
|
Chris@45
|
2538 frame = getMainModel()->getEndFrame();
|
Chris@45
|
2539 }
|
Chris@45
|
2540
|
Chris@45
|
2541 } else {
|
Chris@45
|
2542
|
Chris@366
|
2543 int resolution = 0;
|
Chris@166
|
2544 if (pane) frame = pane->alignFromReference(frame);
|
Chris@85
|
2545 if (layer->snapToFeatureFrame(m_paneStack->getCurrentPane(),
|
Chris@85
|
2546 frame, resolution, Layer::SnapRight)) {
|
Chris@85
|
2547 if (pane) frame = pane->alignToReference(frame);
|
Chris@85
|
2548 } else {
|
Chris@45
|
2549 frame = getMainModel()->getEndFrame();
|
Chris@45
|
2550 }
|
Chris@45
|
2551 }
|
Chris@45
|
2552
|
Chris@45
|
2553 if (frame < 0) frame = 0;
|
Chris@45
|
2554
|
Chris@45
|
2555 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@366
|
2556 frame = m_viewManager->constrainFrameToSelection(int(frame));
|
Chris@45
|
2557 }
|
Chris@45
|
2558
|
Chris@45
|
2559 m_viewManager->setPlaybackFrame(frame);
|
Chris@166
|
2560
|
Chris@358
|
2561 if (frame == (int)getMainModel()->getEndFrame() &&
|
Chris@166
|
2562 m_playSource &&
|
Chris@166
|
2563 m_playSource->isPlaying() &&
|
Chris@166
|
2564 !m_viewManager->getPlayLoopMode()) {
|
Chris@166
|
2565 stop();
|
Chris@166
|
2566 }
|
Chris@45
|
2567 }
|
Chris@45
|
2568
|
Chris@45
|
2569 void
|
Chris@45
|
2570 MainWindowBase::ffwdEnd()
|
Chris@45
|
2571 {
|
Chris@45
|
2572 if (!getMainModel()) return;
|
Chris@45
|
2573
|
Chris@139
|
2574 if (m_playSource &&
|
Chris@139
|
2575 m_playSource->isPlaying() &&
|
Chris@139
|
2576 !m_viewManager->getPlayLoopMode()) {
|
Chris@139
|
2577 stop();
|
Chris@139
|
2578 }
|
Chris@139
|
2579
|
Chris@366
|
2580 int frame = getMainModel()->getEndFrame();
|
Chris@45
|
2581
|
Chris@45
|
2582 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@45
|
2583 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
2584 }
|
Chris@45
|
2585
|
Chris@45
|
2586 m_viewManager->setPlaybackFrame(frame);
|
Chris@45
|
2587 }
|
Chris@45
|
2588
|
Chris@45
|
2589 void
|
Chris@166
|
2590 MainWindowBase::ffwdSimilar()
|
Chris@166
|
2591 {
|
Chris@166
|
2592 if (!getMainModel()) return;
|
Chris@166
|
2593
|
Chris@166
|
2594 Layer *layer = getSnapLayer();
|
Chris@166
|
2595 if (!layer) { ffwd(); return; }
|
Chris@166
|
2596
|
Chris@166
|
2597 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@166
|
2598 int frame = m_viewManager->getPlaybackFrame();
|
Chris@166
|
2599
|
Chris@366
|
2600 int resolution = 0;
|
Chris@166
|
2601 if (pane) frame = pane->alignFromReference(frame);
|
Chris@166
|
2602 if (layer->snapToSimilarFeature(m_paneStack->getCurrentPane(),
|
Chris@166
|
2603 frame, resolution, Layer::SnapRight)) {
|
Chris@166
|
2604 if (pane) frame = pane->alignToReference(frame);
|
Chris@166
|
2605 } else {
|
Chris@166
|
2606 frame = getMainModel()->getEndFrame();
|
Chris@166
|
2607 }
|
Chris@166
|
2608
|
Chris@166
|
2609 if (frame < 0) frame = 0;
|
Chris@166
|
2610
|
Chris@166
|
2611 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@366
|
2612 frame = m_viewManager->constrainFrameToSelection(int(frame));
|
Chris@166
|
2613 }
|
Chris@166
|
2614
|
Chris@166
|
2615 m_viewManager->setPlaybackFrame(frame);
|
Chris@166
|
2616
|
Chris@358
|
2617 if (frame == (int)getMainModel()->getEndFrame() &&
|
Chris@166
|
2618 m_playSource &&
|
Chris@166
|
2619 m_playSource->isPlaying() &&
|
Chris@166
|
2620 !m_viewManager->getPlayLoopMode()) {
|
Chris@166
|
2621 stop();
|
Chris@166
|
2622 }
|
Chris@166
|
2623 }
|
Chris@166
|
2624
|
Chris@166
|
2625 void
|
Chris@45
|
2626 MainWindowBase::rewind()
|
Chris@45
|
2627 {
|
Chris@45
|
2628 if (!getMainModel()) return;
|
Chris@45
|
2629
|
Chris@45
|
2630 int frame = m_viewManager->getPlaybackFrame();
|
Chris@45
|
2631 if (frame > 0) --frame;
|
Chris@45
|
2632
|
Chris@85
|
2633 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2634 Layer *layer = getSnapLayer();
|
Chris@366
|
2635 int sr = getMainModel()->getSampleRate();
|
Chris@45
|
2636
|
Chris@45
|
2637 // when rewinding during playback, we want to allow a period
|
Chris@45
|
2638 // following a rewind target point at which the rewind will go to
|
Chris@45
|
2639 // the prior point instead of the immediately neighbouring one
|
Chris@45
|
2640 if (m_playSource && m_playSource->isPlaying()) {
|
Chris@45
|
2641 RealTime ct = RealTime::frame2RealTime(frame, sr);
|
Chris@357
|
2642 ct = ct - RealTime::fromSeconds(0.15);
|
Chris@45
|
2643 if (ct < RealTime::zeroTime) ct = RealTime::zeroTime;
|
Chris@45
|
2644 frame = RealTime::realTime2Frame(ct, sr);
|
Chris@45
|
2645 }
|
Chris@45
|
2646
|
Chris@45
|
2647 if (!layer) {
|
Chris@45
|
2648
|
Chris@45
|
2649 frame = RealTime::realTime2Frame
|
Chris@357
|
2650 (RealTime::frame2RealTime(frame, sr) - m_defaultFfwdRwdStep, sr);
|
Chris@45
|
2651 if (frame < int(getMainModel()->getStartFrame())) {
|
Chris@45
|
2652 frame = getMainModel()->getStartFrame();
|
Chris@45
|
2653 }
|
Chris@45
|
2654
|
Chris@45
|
2655 } else {
|
Chris@45
|
2656
|
Chris@366
|
2657 int resolution = 0;
|
Chris@166
|
2658 if (pane) frame = pane->alignFromReference(frame);
|
Chris@85
|
2659 if (layer->snapToFeatureFrame(m_paneStack->getCurrentPane(),
|
Chris@85
|
2660 frame, resolution, Layer::SnapLeft)) {
|
Chris@85
|
2661 if (pane) frame = pane->alignToReference(frame);
|
Chris@85
|
2662 } else {
|
Chris@45
|
2663 frame = getMainModel()->getStartFrame();
|
Chris@45
|
2664 }
|
Chris@45
|
2665 }
|
Chris@45
|
2666
|
Chris@45
|
2667 if (frame < 0) frame = 0;
|
Chris@45
|
2668
|
Chris@45
|
2669 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@366
|
2670 frame = m_viewManager->constrainFrameToSelection(int(frame));
|
Chris@45
|
2671 }
|
Chris@45
|
2672
|
Chris@45
|
2673 m_viewManager->setPlaybackFrame(frame);
|
Chris@45
|
2674 }
|
Chris@45
|
2675
|
Chris@45
|
2676 void
|
Chris@45
|
2677 MainWindowBase::rewindStart()
|
Chris@45
|
2678 {
|
Chris@45
|
2679 if (!getMainModel()) return;
|
Chris@45
|
2680
|
Chris@366
|
2681 int frame = getMainModel()->getStartFrame();
|
Chris@45
|
2682
|
Chris@45
|
2683 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@45
|
2684 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
2685 }
|
Chris@45
|
2686
|
Chris@45
|
2687 m_viewManager->setPlaybackFrame(frame);
|
Chris@45
|
2688 }
|
Chris@45
|
2689
|
Chris@166
|
2690 void
|
Chris@166
|
2691 MainWindowBase::rewindSimilar()
|
Chris@166
|
2692 {
|
Chris@166
|
2693 if (!getMainModel()) return;
|
Chris@166
|
2694
|
Chris@166
|
2695 Layer *layer = getSnapLayer();
|
Chris@166
|
2696 if (!layer) { rewind(); return; }
|
Chris@166
|
2697
|
Chris@166
|
2698 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@166
|
2699 int frame = m_viewManager->getPlaybackFrame();
|
Chris@166
|
2700
|
Chris@366
|
2701 int resolution = 0;
|
Chris@166
|
2702 if (pane) frame = pane->alignFromReference(frame);
|
Chris@166
|
2703 if (layer->snapToSimilarFeature(m_paneStack->getCurrentPane(),
|
Chris@166
|
2704 frame, resolution, Layer::SnapLeft)) {
|
Chris@166
|
2705 if (pane) frame = pane->alignToReference(frame);
|
Chris@166
|
2706 } else {
|
Chris@166
|
2707 frame = getMainModel()->getStartFrame();
|
Chris@166
|
2708 }
|
Chris@166
|
2709
|
Chris@166
|
2710 if (frame < 0) frame = 0;
|
Chris@166
|
2711
|
Chris@166
|
2712 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@366
|
2713 frame = m_viewManager->constrainFrameToSelection(int(frame));
|
Chris@166
|
2714 }
|
Chris@166
|
2715
|
Chris@166
|
2716 m_viewManager->setPlaybackFrame(frame);
|
Chris@166
|
2717 }
|
Chris@166
|
2718
|
Chris@45
|
2719 Layer *
|
Chris@45
|
2720 MainWindowBase::getSnapLayer() const
|
Chris@45
|
2721 {
|
Chris@45
|
2722 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2723 if (!pane) return 0;
|
Chris@45
|
2724
|
Chris@45
|
2725 Layer *layer = pane->getSelectedLayer();
|
Chris@45
|
2726
|
Chris@45
|
2727 if (!dynamic_cast<TimeInstantLayer *>(layer) &&
|
Chris@45
|
2728 !dynamic_cast<TimeValueLayer *>(layer) &&
|
Chris@194
|
2729 !dynamic_cast<RegionLayer *>(layer) &&
|
Chris@45
|
2730 !dynamic_cast<TimeRulerLayer *>(layer)) {
|
Chris@45
|
2731
|
Chris@45
|
2732 layer = 0;
|
Chris@45
|
2733
|
Chris@45
|
2734 for (int i = pane->getLayerCount(); i > 0; --i) {
|
Chris@45
|
2735 Layer *l = pane->getLayer(i-1);
|
Chris@45
|
2736 if (dynamic_cast<TimeRulerLayer *>(l)) {
|
Chris@45
|
2737 layer = l;
|
Chris@45
|
2738 break;
|
Chris@45
|
2739 }
|
Chris@45
|
2740 }
|
Chris@45
|
2741 }
|
Chris@45
|
2742
|
Chris@45
|
2743 return layer;
|
Chris@45
|
2744 }
|
Chris@45
|
2745
|
Chris@45
|
2746 void
|
Chris@45
|
2747 MainWindowBase::stop()
|
Chris@45
|
2748 {
|
Chris@45
|
2749 m_playSource->stop();
|
Chris@45
|
2750
|
Chris@45
|
2751 if (m_paneStack && m_paneStack->getCurrentPane()) {
|
Chris@45
|
2752 updateVisibleRangeDisplay(m_paneStack->getCurrentPane());
|
Chris@45
|
2753 } else {
|
Chris@45
|
2754 m_myStatusMessage = "";
|
Chris@45
|
2755 statusBar()->showMessage("");
|
Chris@45
|
2756 }
|
Chris@45
|
2757 }
|
Chris@45
|
2758
|
Chris@45
|
2759 MainWindowBase::AddPaneCommand::AddPaneCommand(MainWindowBase *mw) :
|
Chris@45
|
2760 m_mw(mw),
|
Chris@45
|
2761 m_pane(0),
|
Chris@45
|
2762 m_prevCurrentPane(0),
|
Chris@45
|
2763 m_added(false)
|
Chris@45
|
2764 {
|
Chris@45
|
2765 }
|
Chris@45
|
2766
|
Chris@45
|
2767 MainWindowBase::AddPaneCommand::~AddPaneCommand()
|
Chris@45
|
2768 {
|
Chris@45
|
2769 if (m_pane && !m_added) {
|
Chris@45
|
2770 m_mw->m_paneStack->deletePane(m_pane);
|
Chris@45
|
2771 }
|
Chris@45
|
2772 }
|
Chris@45
|
2773
|
Chris@45
|
2774 QString
|
Chris@45
|
2775 MainWindowBase::AddPaneCommand::getName() const
|
Chris@45
|
2776 {
|
Chris@45
|
2777 return tr("Add Pane");
|
Chris@45
|
2778 }
|
Chris@45
|
2779
|
Chris@45
|
2780 void
|
Chris@45
|
2781 MainWindowBase::AddPaneCommand::execute()
|
Chris@45
|
2782 {
|
Chris@45
|
2783 if (!m_pane) {
|
Chris@45
|
2784 m_prevCurrentPane = m_mw->m_paneStack->getCurrentPane();
|
Chris@45
|
2785 m_pane = m_mw->m_paneStack->addPane();
|
Chris@45
|
2786
|
Chris@45
|
2787 connect(m_pane, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@45
|
2788 m_mw, SLOT(contextHelpChanged(const QString &)));
|
Chris@45
|
2789 } else {
|
Chris@45
|
2790 m_mw->m_paneStack->showPane(m_pane);
|
Chris@45
|
2791 }
|
Chris@45
|
2792
|
Chris@45
|
2793 m_mw->m_paneStack->setCurrentPane(m_pane);
|
Chris@45
|
2794 m_added = true;
|
Chris@45
|
2795 }
|
Chris@45
|
2796
|
Chris@45
|
2797 void
|
Chris@45
|
2798 MainWindowBase::AddPaneCommand::unexecute()
|
Chris@45
|
2799 {
|
Chris@45
|
2800 m_mw->m_paneStack->hidePane(m_pane);
|
Chris@45
|
2801 m_mw->m_paneStack->setCurrentPane(m_prevCurrentPane);
|
Chris@45
|
2802 m_added = false;
|
Chris@45
|
2803 }
|
Chris@45
|
2804
|
Chris@45
|
2805 MainWindowBase::RemovePaneCommand::RemovePaneCommand(MainWindowBase *mw, Pane *pane) :
|
Chris@45
|
2806 m_mw(mw),
|
Chris@45
|
2807 m_pane(pane),
|
Chris@45
|
2808 m_added(true)
|
Chris@45
|
2809 {
|
Chris@45
|
2810 }
|
Chris@45
|
2811
|
Chris@45
|
2812 MainWindowBase::RemovePaneCommand::~RemovePaneCommand()
|
Chris@45
|
2813 {
|
Chris@45
|
2814 if (m_pane && !m_added) {
|
Chris@45
|
2815 m_mw->m_paneStack->deletePane(m_pane);
|
Chris@45
|
2816 }
|
Chris@45
|
2817 }
|
Chris@45
|
2818
|
Chris@45
|
2819 QString
|
Chris@45
|
2820 MainWindowBase::RemovePaneCommand::getName() const
|
Chris@45
|
2821 {
|
Chris@45
|
2822 return tr("Remove Pane");
|
Chris@45
|
2823 }
|
Chris@45
|
2824
|
Chris@45
|
2825 void
|
Chris@45
|
2826 MainWindowBase::RemovePaneCommand::execute()
|
Chris@45
|
2827 {
|
Chris@45
|
2828 m_prevCurrentPane = m_mw->m_paneStack->getCurrentPane();
|
Chris@45
|
2829 m_mw->m_paneStack->hidePane(m_pane);
|
Chris@45
|
2830 m_added = false;
|
Chris@45
|
2831 }
|
Chris@45
|
2832
|
Chris@45
|
2833 void
|
Chris@45
|
2834 MainWindowBase::RemovePaneCommand::unexecute()
|
Chris@45
|
2835 {
|
Chris@45
|
2836 m_mw->m_paneStack->showPane(m_pane);
|
Chris@45
|
2837 m_mw->m_paneStack->setCurrentPane(m_prevCurrentPane);
|
Chris@45
|
2838 m_added = true;
|
Chris@45
|
2839 }
|
Chris@45
|
2840
|
Chris@45
|
2841 void
|
Chris@45
|
2842 MainWindowBase::deleteCurrentPane()
|
Chris@45
|
2843 {
|
Chris@45
|
2844 CommandHistory::getInstance()->startCompoundOperation
|
Chris@45
|
2845 (tr("Delete Pane"), true);
|
Chris@45
|
2846
|
Chris@45
|
2847 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2848 if (pane) {
|
Chris@45
|
2849 while (pane->getLayerCount() > 0) {
|
Chris@45
|
2850 Layer *layer = pane->getLayer(0);
|
Chris@45
|
2851 if (layer) {
|
Chris@45
|
2852 m_document->removeLayerFromView(pane, layer);
|
Chris@45
|
2853 } else {
|
Chris@45
|
2854 break;
|
Chris@45
|
2855 }
|
Chris@45
|
2856 }
|
Chris@45
|
2857
|
Chris@45
|
2858 RemovePaneCommand *command = new RemovePaneCommand(this, pane);
|
Chris@45
|
2859 CommandHistory::getInstance()->addCommand(command);
|
Chris@45
|
2860 }
|
Chris@45
|
2861
|
Chris@45
|
2862 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@45
|
2863
|
Chris@45
|
2864 updateMenuStates();
|
Chris@45
|
2865 }
|
Chris@45
|
2866
|
Chris@45
|
2867 void
|
Chris@45
|
2868 MainWindowBase::deleteCurrentLayer()
|
Chris@45
|
2869 {
|
Chris@45
|
2870 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2871 if (pane) {
|
Chris@45
|
2872 Layer *layer = pane->getSelectedLayer();
|
Chris@45
|
2873 if (layer) {
|
Chris@45
|
2874 m_document->removeLayerFromView(pane, layer);
|
Chris@45
|
2875 }
|
Chris@45
|
2876 }
|
Chris@45
|
2877 updateMenuStates();
|
Chris@45
|
2878 }
|
Chris@45
|
2879
|
Chris@45
|
2880 void
|
Chris@123
|
2881 MainWindowBase::editCurrentLayer()
|
Chris@123
|
2882 {
|
Chris@123
|
2883 Layer *layer = 0;
|
Chris@123
|
2884 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@123
|
2885 if (pane) layer = pane->getSelectedLayer();
|
Chris@123
|
2886 if (!layer) return;
|
Chris@123
|
2887
|
Chris@123
|
2888 Model *model = layer->getModel();
|
Chris@123
|
2889 if (!model) return;
|
Chris@123
|
2890
|
Chris@124
|
2891 TabularModel *tabular = dynamic_cast<TabularModel *>(model);
|
Chris@124
|
2892 if (!tabular) {
|
Chris@124
|
2893 //!!! how to prevent this function from being active if not
|
Chris@124
|
2894 //appropriate model type? or will we ultimately support
|
Chris@124
|
2895 //tabular display for all editable models?
|
Chris@233
|
2896 SVDEBUG << "NOTE: Not a tabular model" << endl;
|
Chris@124
|
2897 return;
|
Chris@124
|
2898 }
|
Chris@124
|
2899
|
Chris@123
|
2900 if (m_layerDataDialogMap.find(layer) != m_layerDataDialogMap.end()) {
|
Chris@126
|
2901 if (!m_layerDataDialogMap[layer].isNull()) {
|
Chris@126
|
2902 m_layerDataDialogMap[layer]->show();
|
Chris@126
|
2903 m_layerDataDialogMap[layer]->raise();
|
Chris@126
|
2904 return;
|
Chris@126
|
2905 }
|
Chris@123
|
2906 }
|
Chris@123
|
2907
|
Chris@125
|
2908 QString title = layer->getLayerPresentationName();
|
Chris@125
|
2909
|
Chris@125
|
2910 ModelDataTableDialog *dialog = new ModelDataTableDialog(tabular, title, this);
|
Chris@128
|
2911 dialog->setAttribute(Qt::WA_DeleteOnClose);
|
Chris@128
|
2912
|
Chris@128
|
2913 connectLayerEditDialog(dialog);
|
Chris@123
|
2914
|
Chris@128
|
2915 m_layerDataDialogMap[layer] = dialog;
|
Chris@128
|
2916 m_viewDataDialogMap[pane].insert(dialog);
|
Chris@128
|
2917
|
Chris@128
|
2918 dialog->show();
|
Chris@128
|
2919 }
|
Chris@128
|
2920
|
Chris@128
|
2921 void
|
Chris@128
|
2922 MainWindowBase::connectLayerEditDialog(ModelDataTableDialog *dialog)
|
Chris@128
|
2923 {
|
Chris@123
|
2924 connect(m_viewManager,
|
Chris@366
|
2925 SIGNAL(globalCentreFrameChanged(int)),
|
Chris@123
|
2926 dialog,
|
Chris@366
|
2927 SLOT(userScrolledToFrame(int)));
|
Chris@127
|
2928
|
Chris@127
|
2929 connect(m_viewManager,
|
Chris@366
|
2930 SIGNAL(playbackFrameChanged(int)),
|
Chris@127
|
2931 dialog,
|
Chris@366
|
2932 SLOT(playbackScrolledToFrame(int)));
|
Chris@127
|
2933
|
Chris@123
|
2934 connect(dialog,
|
Chris@366
|
2935 SIGNAL(scrollToFrame(int)),
|
Chris@123
|
2936 m_viewManager,
|
Chris@366
|
2937 SLOT(setGlobalCentreFrame(int)));
|
Chris@129
|
2938
|
Chris@129
|
2939 connect(dialog,
|
Chris@366
|
2940 SIGNAL(scrollToFrame(int)),
|
Chris@129
|
2941 m_viewManager,
|
Chris@366
|
2942 SLOT(setPlaybackFrame(int)));
|
Chris@128
|
2943 }
|
Chris@123
|
2944
|
Chris@123
|
2945 void
|
Chris@73
|
2946 MainWindowBase::previousPane()
|
Chris@73
|
2947 {
|
Chris@73
|
2948 if (!m_paneStack) return;
|
Chris@73
|
2949
|
Chris@73
|
2950 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
2951 if (!currentPane) return;
|
Chris@73
|
2952
|
Chris@73
|
2953 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@73
|
2954 if (m_paneStack->getPane(i) == currentPane) {
|
Chris@73
|
2955 if (i == 0) return;
|
Chris@73
|
2956 m_paneStack->setCurrentPane(m_paneStack->getPane(i-1));
|
Chris@73
|
2957 updateMenuStates();
|
Chris@73
|
2958 return;
|
Chris@73
|
2959 }
|
Chris@73
|
2960 }
|
Chris@73
|
2961 }
|
Chris@73
|
2962
|
Chris@73
|
2963 void
|
Chris@73
|
2964 MainWindowBase::nextPane()
|
Chris@73
|
2965 {
|
Chris@73
|
2966 if (!m_paneStack) return;
|
Chris@73
|
2967
|
Chris@73
|
2968 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
2969 if (!currentPane) return;
|
Chris@73
|
2970
|
Chris@73
|
2971 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@73
|
2972 if (m_paneStack->getPane(i) == currentPane) {
|
Chris@73
|
2973 if (i == m_paneStack->getPaneCount()-1) return;
|
Chris@73
|
2974 m_paneStack->setCurrentPane(m_paneStack->getPane(i+1));
|
Chris@73
|
2975 updateMenuStates();
|
Chris@73
|
2976 return;
|
Chris@73
|
2977 }
|
Chris@73
|
2978 }
|
Chris@73
|
2979 }
|
Chris@73
|
2980
|
Chris@73
|
2981 void
|
Chris@73
|
2982 MainWindowBase::previousLayer()
|
Chris@73
|
2983 {
|
Chris@73
|
2984 //!!! Not right -- pane lists layers in stacking order
|
Chris@73
|
2985
|
Chris@73
|
2986 if (!m_paneStack) return;
|
Chris@73
|
2987
|
Chris@73
|
2988 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
2989 if (!currentPane) return;
|
Chris@73
|
2990
|
Chris@73
|
2991 Layer *currentLayer = currentPane->getSelectedLayer();
|
Chris@73
|
2992 if (!currentLayer) return;
|
Chris@73
|
2993
|
Chris@73
|
2994 for (int i = 0; i < currentPane->getLayerCount(); ++i) {
|
Chris@73
|
2995 if (currentPane->getLayer(i) == currentLayer) {
|
Chris@73
|
2996 if (i == 0) return;
|
Chris@73
|
2997 m_paneStack->setCurrentLayer(currentPane,
|
Chris@73
|
2998 currentPane->getLayer(i-1));
|
Chris@73
|
2999 updateMenuStates();
|
Chris@73
|
3000 return;
|
Chris@73
|
3001 }
|
Chris@73
|
3002 }
|
Chris@73
|
3003 }
|
Chris@73
|
3004
|
Chris@73
|
3005 void
|
Chris@73
|
3006 MainWindowBase::nextLayer()
|
Chris@73
|
3007 {
|
Chris@73
|
3008 //!!! Not right -- pane lists layers in stacking order
|
Chris@73
|
3009
|
Chris@73
|
3010 if (!m_paneStack) return;
|
Chris@73
|
3011
|
Chris@73
|
3012 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
3013 if (!currentPane) return;
|
Chris@73
|
3014
|
Chris@73
|
3015 Layer *currentLayer = currentPane->getSelectedLayer();
|
Chris@73
|
3016 if (!currentLayer) return;
|
Chris@73
|
3017
|
Chris@73
|
3018 for (int i = 0; i < currentPane->getLayerCount(); ++i) {
|
Chris@73
|
3019 if (currentPane->getLayer(i) == currentLayer) {
|
Chris@73
|
3020 if (i == currentPane->getLayerCount()-1) return;
|
Chris@73
|
3021 m_paneStack->setCurrentLayer(currentPane,
|
Chris@73
|
3022 currentPane->getLayer(i+1));
|
Chris@73
|
3023 updateMenuStates();
|
Chris@73
|
3024 return;
|
Chris@73
|
3025 }
|
Chris@73
|
3026 }
|
Chris@73
|
3027 }
|
Chris@73
|
3028
|
Chris@73
|
3029 void
|
Chris@366
|
3030 MainWindowBase::playbackFrameChanged(int frame)
|
Chris@45
|
3031 {
|
Chris@45
|
3032 if (!(m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3033
|
Chris@187
|
3034 updatePositionStatusDisplays();
|
Chris@187
|
3035
|
Chris@45
|
3036 RealTime now = RealTime::frame2RealTime
|
Chris@45
|
3037 (frame, getMainModel()->getSampleRate());
|
Chris@45
|
3038
|
Chris@45
|
3039 if (now.sec == m_lastPlayStatusSec) return;
|
Chris@45
|
3040
|
Chris@45
|
3041 RealTime then = RealTime::frame2RealTime
|
Chris@45
|
3042 (m_playSource->getPlayEndFrame(), getMainModel()->getSampleRate());
|
Chris@45
|
3043
|
Chris@45
|
3044 QString nowStr;
|
Chris@45
|
3045 QString thenStr;
|
Chris@45
|
3046 QString remainingStr;
|
Chris@45
|
3047
|
Chris@45
|
3048 if (then.sec > 10) {
|
Chris@45
|
3049 nowStr = now.toSecText().c_str();
|
Chris@45
|
3050 thenStr = then.toSecText().c_str();
|
Chris@45
|
3051 remainingStr = (then - now).toSecText().c_str();
|
Chris@45
|
3052 m_lastPlayStatusSec = now.sec;
|
Chris@45
|
3053 } else {
|
Chris@45
|
3054 nowStr = now.toText(true).c_str();
|
Chris@45
|
3055 thenStr = then.toText(true).c_str();
|
Chris@45
|
3056 remainingStr = (then - now).toText(true).c_str();
|
Chris@45
|
3057 }
|
Chris@45
|
3058
|
Chris@45
|
3059 m_myStatusMessage = tr("Playing: %1 of %2 (%3 remaining)")
|
Chris@45
|
3060 .arg(nowStr).arg(thenStr).arg(remainingStr);
|
Chris@45
|
3061
|
Chris@45
|
3062 statusBar()->showMessage(m_myStatusMessage);
|
Chris@45
|
3063 }
|
Chris@45
|
3064
|
Chris@45
|
3065 void
|
Chris@366
|
3066 MainWindowBase::globalCentreFrameChanged(int )
|
Chris@45
|
3067 {
|
Chris@45
|
3068 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3069 Pane *p = 0;
|
Chris@45
|
3070 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@45
|
3071 if (!p->getFollowGlobalPan()) return;
|
Chris@45
|
3072 updateVisibleRangeDisplay(p);
|
Chris@45
|
3073 }
|
Chris@45
|
3074
|
Chris@45
|
3075 void
|
Chris@366
|
3076 MainWindowBase::viewCentreFrameChanged(View *v, int frame)
|
Chris@45
|
3077 {
|
Chris@233
|
3078 // SVDEBUG << "MainWindowBase::viewCentreFrameChanged(" << v << "," << frame << ")" << endl;
|
Chris@123
|
3079
|
Chris@123
|
3080 if (m_viewDataDialogMap.find(v) != m_viewDataDialogMap.end()) {
|
Chris@123
|
3081 for (DataDialogSet::iterator i = m_viewDataDialogMap[v].begin();
|
Chris@123
|
3082 i != m_viewDataDialogMap[v].end(); ++i) {
|
Chris@127
|
3083 (*i)->userScrolledToFrame(frame);
|
Chris@123
|
3084 }
|
Chris@123
|
3085 }
|
Chris@45
|
3086 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3087 Pane *p = 0;
|
Chris@45
|
3088 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@45
|
3089 if (v == p) updateVisibleRangeDisplay(p);
|
Chris@45
|
3090 }
|
Chris@45
|
3091
|
Chris@45
|
3092 void
|
Chris@366
|
3093 MainWindowBase::viewZoomLevelChanged(View *v, int , bool )
|
Chris@45
|
3094 {
|
Chris@45
|
3095 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3096 Pane *p = 0;
|
Chris@45
|
3097 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@45
|
3098 if (v == p) updateVisibleRangeDisplay(p);
|
Chris@45
|
3099 }
|
Chris@45
|
3100
|
Chris@45
|
3101 void
|
Chris@45
|
3102 MainWindowBase::layerAdded(Layer *)
|
Chris@45
|
3103 {
|
Chris@233
|
3104 // SVDEBUG << "MainWindowBase::layerAdded(" << layer << ")" << endl;
|
Chris@45
|
3105 updateMenuStates();
|
Chris@45
|
3106 }
|
Chris@45
|
3107
|
Chris@45
|
3108 void
|
Chris@45
|
3109 MainWindowBase::layerRemoved(Layer *)
|
Chris@45
|
3110 {
|
Chris@233
|
3111 // SVDEBUG << "MainWindowBase::layerRemoved(" << layer << ")" << endl;
|
Chris@45
|
3112 updateMenuStates();
|
Chris@45
|
3113 }
|
Chris@45
|
3114
|
Chris@45
|
3115 void
|
Chris@45
|
3116 MainWindowBase::layerAboutToBeDeleted(Layer *layer)
|
Chris@45
|
3117 {
|
Chris@233
|
3118 // SVDEBUG << "MainWindowBase::layerAboutToBeDeleted(" << layer << ")" << endl;
|
Chris@123
|
3119
|
Chris@128
|
3120 removeLayerEditDialog(layer);
|
Chris@123
|
3121
|
Chris@47
|
3122 if (m_timeRulerLayer && (layer == m_timeRulerLayer)) {
|
Chris@293
|
3123 // cerr << "(this is the time ruler layer)" << endl;
|
Chris@45
|
3124 m_timeRulerLayer = 0;
|
Chris@45
|
3125 }
|
Chris@45
|
3126 }
|
Chris@45
|
3127
|
Chris@45
|
3128 void
|
Chris@45
|
3129 MainWindowBase::layerInAView(Layer *layer, bool inAView)
|
Chris@45
|
3130 {
|
Chris@233
|
3131 // SVDEBUG << "MainWindowBase::layerInAView(" << layer << "," << inAView << ")" << endl;
|
Chris@128
|
3132
|
Chris@128
|
3133 if (!inAView) removeLayerEditDialog(layer);
|
Chris@45
|
3134
|
Chris@45
|
3135 // Check whether we need to add or remove model from play source
|
Chris@45
|
3136 Model *model = layer->getModel();
|
Chris@45
|
3137 if (model) {
|
Chris@45
|
3138 if (inAView) {
|
Chris@45
|
3139 m_playSource->addModel(model);
|
Chris@45
|
3140 } else {
|
Chris@45
|
3141 bool found = false;
|
Chris@45
|
3142 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@45
|
3143 Pane *pane = m_paneStack->getPane(i);
|
Chris@45
|
3144 if (!pane) continue;
|
Chris@45
|
3145 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@45
|
3146 Layer *pl = pane->getLayer(j);
|
Chris@183
|
3147 if (pl &&
|
Chris@183
|
3148 !dynamic_cast<TimeRulerLayer *>(pl) &&
|
Chris@183
|
3149 (pl->getModel() == model)) {
|
Chris@45
|
3150 found = true;
|
Chris@45
|
3151 break;
|
Chris@45
|
3152 }
|
Chris@45
|
3153 }
|
Chris@45
|
3154 if (found) break;
|
Chris@45
|
3155 }
|
Chris@173
|
3156 if (!found) {
|
Chris@173
|
3157 m_playSource->removeModel(model);
|
Chris@173
|
3158 }
|
Chris@45
|
3159 }
|
Chris@45
|
3160 }
|
Chris@45
|
3161
|
Chris@45
|
3162 updateMenuStates();
|
Chris@45
|
3163 }
|
Chris@45
|
3164
|
Chris@45
|
3165 void
|
Chris@128
|
3166 MainWindowBase::removeLayerEditDialog(Layer *layer)
|
Chris@128
|
3167 {
|
Chris@128
|
3168 if (m_layerDataDialogMap.find(layer) != m_layerDataDialogMap.end()) {
|
Chris@128
|
3169
|
Chris@128
|
3170 ModelDataTableDialog *dialog = m_layerDataDialogMap[layer];
|
Chris@128
|
3171
|
Chris@128
|
3172 for (ViewDataDialogMap::iterator vi = m_viewDataDialogMap.begin();
|
Chris@128
|
3173 vi != m_viewDataDialogMap.end(); ++vi) {
|
Chris@128
|
3174 vi->second.erase(dialog);
|
Chris@128
|
3175 }
|
Chris@128
|
3176
|
Chris@128
|
3177 m_layerDataDialogMap.erase(layer);
|
Chris@128
|
3178 delete dialog;
|
Chris@128
|
3179 }
|
Chris@128
|
3180 }
|
Chris@128
|
3181
|
Chris@128
|
3182 void
|
Chris@45
|
3183 MainWindowBase::modelAdded(Model *model)
|
Chris@45
|
3184 {
|
Chris@233
|
3185 // SVDEBUG << "MainWindowBase::modelAdded(" << model << ")" << endl;
|
gyorgyf@273
|
3186 std::cerr << "\nAdding model " << model->getTypeName() << " to playsource " << std::endl;
|
Chris@45
|
3187 m_playSource->addModel(model);
|
Chris@45
|
3188 }
|
Chris@45
|
3189
|
Chris@45
|
3190 void
|
Chris@45
|
3191 MainWindowBase::mainModelChanged(WaveFileModel *model)
|
Chris@45
|
3192 {
|
Chris@233
|
3193 // SVDEBUG << "MainWindowBase::mainModelChanged(" << model << ")" << endl;
|
Chris@45
|
3194 updateDescriptionLabel();
|
Chris@45
|
3195 if (model) m_viewManager->setMainModelSampleRate(model->getSampleRate());
|
Chris@360
|
3196 if (model && !m_playTarget && m_audioOutput) {
|
Chris@360
|
3197 createPlayTarget();
|
Chris@360
|
3198 }
|
Chris@45
|
3199 }
|
Chris@45
|
3200
|
Chris@45
|
3201 void
|
Chris@45
|
3202 MainWindowBase::modelAboutToBeDeleted(Model *model)
|
Chris@45
|
3203 {
|
Chris@233
|
3204 // SVDEBUG << "MainWindowBase::modelAboutToBeDeleted(" << model << ")" << endl;
|
Chris@45
|
3205 if (model == m_viewManager->getPlaybackModel()) {
|
Chris@45
|
3206 m_viewManager->setPlaybackModel(0);
|
Chris@45
|
3207 }
|
Chris@45
|
3208 m_playSource->removeModel(model);
|
Chris@45
|
3209 FFTDataServer::modelAboutToBeDeleted(model);
|
Chris@45
|
3210 }
|
Chris@45
|
3211
|
Chris@45
|
3212 void
|
Chris@55
|
3213 MainWindowBase::paneDeleteButtonClicked(Pane *pane)
|
Chris@55
|
3214 {
|
Chris@55
|
3215 bool found = false;
|
Chris@55
|
3216 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@55
|
3217 if (m_paneStack->getPane(i) == pane) {
|
Chris@55
|
3218 found = true;
|
Chris@55
|
3219 break;
|
Chris@55
|
3220 }
|
Chris@55
|
3221 }
|
Chris@55
|
3222 if (!found) {
|
Chris@233
|
3223 SVDEBUG << "MainWindowBase::paneDeleteButtonClicked: Unknown pane "
|
Chris@229
|
3224 << pane << endl;
|
Chris@55
|
3225 return;
|
Chris@55
|
3226 }
|
Chris@55
|
3227
|
Chris@55
|
3228 CommandHistory::getInstance()->startCompoundOperation
|
Chris@55
|
3229 (tr("Delete Pane"), true);
|
Chris@55
|
3230
|
Chris@55
|
3231 while (pane->getLayerCount() > 0) {
|
Chris@55
|
3232 Layer *layer = pane->getLayer(0);
|
Chris@55
|
3233 if (layer) {
|
Chris@55
|
3234 m_document->removeLayerFromView(pane, layer);
|
Chris@55
|
3235 } else {
|
Chris@55
|
3236 break;
|
Chris@55
|
3237 }
|
Chris@55
|
3238 }
|
Chris@55
|
3239
|
Chris@55
|
3240 RemovePaneCommand *command = new RemovePaneCommand(this, pane);
|
Chris@55
|
3241 CommandHistory::getInstance()->addCommand(command);
|
Chris@55
|
3242
|
Chris@55
|
3243 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@55
|
3244
|
Chris@55
|
3245 updateMenuStates();
|
Chris@55
|
3246 }
|
Chris@55
|
3247
|
Chris@55
|
3248 void
|
Chris@45
|
3249 MainWindowBase::pollOSC()
|
Chris@45
|
3250 {
|
Chris@45
|
3251 if (!m_oscQueue || m_oscQueue->isEmpty()) return;
|
Chris@233
|
3252 SVDEBUG << "MainWindowBase::pollOSC: have " << m_oscQueue->getMessagesAvailable() << " messages" << endl;
|
Chris@45
|
3253
|
Chris@45
|
3254 if (m_openingAudioFile) return;
|
Chris@45
|
3255
|
Chris@45
|
3256 OSCMessage message = m_oscQueue->readMessage();
|
Chris@45
|
3257
|
Chris@45
|
3258 if (message.getTarget() != 0) {
|
Chris@45
|
3259 return; //!!! for now -- this class is target 0, others not handled yet
|
Chris@45
|
3260 }
|
Chris@45
|
3261
|
Chris@45
|
3262 handleOSCMessage(message);
|
Chris@45
|
3263 }
|
Chris@45
|
3264
|
Chris@45
|
3265 void
|
Chris@45
|
3266 MainWindowBase::inProgressSelectionChanged()
|
Chris@45
|
3267 {
|
Chris@45
|
3268 Pane *currentPane = 0;
|
Chris@45
|
3269 if (m_paneStack) currentPane = m_paneStack->getCurrentPane();
|
justin@331
|
3270 if (currentPane) {
|
justin@331
|
3271 //cerr << "JTEST: mouse event on selection pane" << endl;
|
justin@331
|
3272 updateVisibleRangeDisplay(currentPane);
|
justin@331
|
3273 }
|
Chris@45
|
3274 }
|
Chris@45
|
3275
|
Chris@45
|
3276 void
|
Chris@45
|
3277 MainWindowBase::contextHelpChanged(const QString &s)
|
Chris@45
|
3278 {
|
Chris@45
|
3279 if (s == "" && m_myStatusMessage != "") {
|
Chris@45
|
3280 statusBar()->showMessage(m_myStatusMessage);
|
Chris@45
|
3281 return;
|
Chris@45
|
3282 }
|
Chris@45
|
3283 statusBar()->showMessage(s);
|
Chris@45
|
3284 }
|
Chris@45
|
3285
|
Chris@45
|
3286 void
|
Chris@45
|
3287 MainWindowBase::openHelpUrl(QString url)
|
Chris@45
|
3288 {
|
Chris@45
|
3289 // This method mostly lifted from Qt Assistant source code
|
Chris@45
|
3290
|
Chris@45
|
3291 QProcess *process = new QProcess(this);
|
Chris@45
|
3292 connect(process, SIGNAL(finished(int)), process, SLOT(deleteLater()));
|
Chris@45
|
3293
|
Chris@45
|
3294 QStringList args;
|
Chris@45
|
3295
|
Chris@45
|
3296 #ifdef Q_OS_MAC
|
Chris@45
|
3297 args.append(url);
|
Chris@45
|
3298 process->start("open", args);
|
Chris@45
|
3299 #else
|
Chris@45
|
3300 #ifdef Q_OS_WIN32
|
Chris@358
|
3301 QString pf(getenv("ProgramFiles"));
|
Chris@358
|
3302 QString command = pf + QString("\\Internet Explorer\\IEXPLORE.EXE");
|
Chris@358
|
3303
|
Chris@358
|
3304 args.append(url);
|
Chris@358
|
3305 process->start(command, args);
|
Chris@45
|
3306 #else
|
Chris@45
|
3307 if (!qgetenv("KDE_FULL_SESSION").isEmpty()) {
|
Chris@45
|
3308 args.append("exec");
|
Chris@45
|
3309 args.append(url);
|
Chris@45
|
3310 process->start("kfmclient", args);
|
Chris@45
|
3311 } else if (!qgetenv("BROWSER").isEmpty()) {
|
Chris@45
|
3312 args.append(url);
|
Chris@45
|
3313 process->start(qgetenv("BROWSER"), args);
|
Chris@45
|
3314 } else {
|
Chris@45
|
3315 args.append(url);
|
Chris@45
|
3316 process->start("firefox", args);
|
Chris@45
|
3317 }
|
Chris@45
|
3318 #endif
|
Chris@45
|
3319 #endif
|
Chris@45
|
3320 }
|
Chris@45
|
3321
|
Chris@180
|
3322
|