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