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@45
|
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@426
|
160 m_iconsVisibleInMenus(true),
|
Chris@390
|
161 m_menuShortcutMapper(0)
|
Chris@45
|
162 {
|
Chris@113
|
163 Profiler profiler("MainWindowBase::MainWindowBase");
|
Chris@113
|
164
|
Chris@475
|
165 if (options & WithAudioInput) {
|
Chris@475
|
166 if (!(options & WithAudioOutput)) {
|
Chris@475
|
167 cerr << "WARNING: MainWindowBase: WithAudioInput requires WithAudioOutput -- recording will not work" << endl;
|
Chris@475
|
168 }
|
Chris@475
|
169 }
|
Chris@475
|
170
|
Chris@438
|
171 qRegisterMetaType<sv_frame_t>("sv_frame_t");
|
Chris@438
|
172 qRegisterMetaType<sv_samplerate_t>("sv_samplerate_t");
|
Chris@438
|
173
|
Chris@255
|
174 #ifdef Q_WS_X11
|
Chris@255
|
175 XSetErrorHandler(handle_x11_error);
|
Chris@255
|
176 #endif
|
Chris@255
|
177
|
Chris@452
|
178 connect(this, SIGNAL(hideSplash()), this, SLOT(emitHideSplash()));
|
Chris@452
|
179
|
Chris@45
|
180 connect(CommandHistory::getInstance(), SIGNAL(commandExecuted()),
|
Chris@45
|
181 this, SLOT(documentModified()));
|
Chris@45
|
182 connect(CommandHistory::getInstance(), SIGNAL(documentRestored()),
|
Chris@45
|
183 this, SLOT(documentRestored()));
|
Chris@45
|
184
|
Chris@45
|
185 m_viewManager = new ViewManager();
|
Chris@45
|
186 connect(m_viewManager, SIGNAL(selectionChanged()),
|
Chris@45
|
187 this, SLOT(updateMenuStates()));
|
Chris@45
|
188 connect(m_viewManager, SIGNAL(inProgressSelectionChanged()),
|
Chris@45
|
189 this, SLOT(inProgressSelectionChanged()));
|
Chris@45
|
190
|
Chris@105
|
191 // set a sensible default font size for views -- cannot do this
|
Chris@105
|
192 // in Preferences, which is in base and not supposed to use QtGui
|
Chris@436
|
193 int viewFontSize = int(QApplication::font().pointSize() * 0.9);
|
Chris@105
|
194 QSettings settings;
|
Chris@105
|
195 settings.beginGroup("Preferences");
|
Chris@105
|
196 viewFontSize = settings.value("view-font-size", viewFontSize).toInt();
|
Chris@105
|
197 settings.setValue("view-font-size", viewFontSize);
|
Chris@105
|
198 settings.endGroup();
|
Chris@105
|
199
|
Chris@511
|
200 #ifdef NOT_DEFINED // This no longer works correctly on any platform AFAICS
|
Chris@45
|
201 Preferences::BackgroundMode mode =
|
Chris@45
|
202 Preferences::getInstance()->getBackgroundMode();
|
Chris@45
|
203 m_initialDarkBackground = m_viewManager->getGlobalDarkBackground();
|
Chris@45
|
204 if (mode != Preferences::BackgroundFromTheme) {
|
Chris@45
|
205 m_viewManager->setGlobalDarkBackground
|
Chris@45
|
206 (mode == Preferences::DarkBackground);
|
Chris@45
|
207 }
|
Chris@511
|
208 #endif
|
Chris@45
|
209
|
Chris@45
|
210 m_paneStack = new PaneStack(0, m_viewManager);
|
Chris@45
|
211 connect(m_paneStack, SIGNAL(currentPaneChanged(Pane *)),
|
Chris@45
|
212 this, SLOT(currentPaneChanged(Pane *)));
|
Chris@45
|
213 connect(m_paneStack, SIGNAL(currentLayerChanged(Pane *, Layer *)),
|
Chris@45
|
214 this, SLOT(currentLayerChanged(Pane *, Layer *)));
|
Chris@45
|
215 connect(m_paneStack, SIGNAL(rightButtonMenuRequested(Pane *, QPoint)),
|
Chris@45
|
216 this, SLOT(rightButtonMenuRequested(Pane *, QPoint)));
|
Chris@45
|
217 connect(m_paneStack, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@45
|
218 this, SLOT(contextHelpChanged(const QString &)));
|
Chris@45
|
219 connect(m_paneStack, SIGNAL(paneAdded(Pane *)),
|
Chris@45
|
220 this, SLOT(paneAdded(Pane *)));
|
Chris@45
|
221 connect(m_paneStack, SIGNAL(paneHidden(Pane *)),
|
Chris@45
|
222 this, SLOT(paneHidden(Pane *)));
|
Chris@45
|
223 connect(m_paneStack, SIGNAL(paneAboutToBeDeleted(Pane *)),
|
Chris@45
|
224 this, SLOT(paneAboutToBeDeleted(Pane *)));
|
Chris@45
|
225 connect(m_paneStack, SIGNAL(dropAccepted(Pane *, QStringList)),
|
Chris@45
|
226 this, SLOT(paneDropAccepted(Pane *, QStringList)));
|
Chris@45
|
227 connect(m_paneStack, SIGNAL(dropAccepted(Pane *, QString)),
|
Chris@45
|
228 this, SLOT(paneDropAccepted(Pane *, QString)));
|
Chris@55
|
229 connect(m_paneStack, SIGNAL(paneDeleteButtonClicked(Pane *)),
|
Chris@55
|
230 this, SLOT(paneDeleteButtonClicked(Pane *)));
|
Chris@45
|
231
|
Chris@57
|
232 m_playSource = new AudioCallbackPlaySource(m_viewManager,
|
Chris@57
|
233 QApplication::applicationName());
|
Chris@475
|
234 if (m_soundOptions & WithAudioInput) {
|
Chris@475
|
235 m_recordTarget = new AudioRecordTarget(m_viewManager,
|
Chris@475
|
236 QApplication::applicationName());
|
Chris@486
|
237 connect(m_recordTarget, SIGNAL(recordDurationChanged(sv_frame_t, sv_samplerate_t)),
|
Chris@486
|
238 this, SLOT(recordDurationChanged(sv_frame_t, sv_samplerate_t)));
|
Chris@475
|
239 }
|
Chris@45
|
240
|
Chris@436
|
241 connect(m_playSource, SIGNAL(sampleRateMismatch(sv_samplerate_t, sv_samplerate_t, bool)),
|
Chris@436
|
242 this, SLOT(sampleRateMismatch(sv_samplerate_t, sv_samplerate_t, bool)));
|
Chris@45
|
243 connect(m_playSource, SIGNAL(audioOverloadPluginDisabled()),
|
Chris@45
|
244 this, SLOT(audioOverloadPluginDisabled()));
|
Chris@130
|
245 connect(m_playSource, SIGNAL(audioTimeStretchMultiChannelDisabled()),
|
Chris@130
|
246 this, SLOT(audioTimeStretchMultiChannelDisabled()));
|
Chris@45
|
247
|
Chris@45
|
248 connect(m_viewManager, SIGNAL(outputLevelsChanged(float, float)),
|
Chris@45
|
249 this, SLOT(outputLevelsChanged(float, float)));
|
Chris@45
|
250
|
Chris@435
|
251 connect(m_viewManager, SIGNAL(playbackFrameChanged(sv_frame_t)),
|
Chris@435
|
252 this, SLOT(playbackFrameChanged(sv_frame_t)));
|
Chris@435
|
253
|
Chris@435
|
254 connect(m_viewManager, SIGNAL(globalCentreFrameChanged(sv_frame_t)),
|
Chris@435
|
255 this, SLOT(globalCentreFrameChanged(sv_frame_t)));
|
Chris@435
|
256
|
Chris@435
|
257 connect(m_viewManager, SIGNAL(viewCentreFrameChanged(View *, sv_frame_t)),
|
Chris@435
|
258 this, SLOT(viewCentreFrameChanged(View *, sv_frame_t)));
|
Chris@366
|
259
|
Chris@366
|
260 connect(m_viewManager, SIGNAL(viewZoomLevelChanged(View *, int, bool)),
|
Chris@366
|
261 this, SLOT(viewZoomLevelChanged(View *, int, bool)));
|
Chris@45
|
262
|
Chris@45
|
263 connect(Preferences::getInstance(),
|
Chris@45
|
264 SIGNAL(propertyChanged(PropertyContainer::PropertyName)),
|
Chris@45
|
265 this,
|
Chris@45
|
266 SLOT(preferenceChanged(PropertyContainer::PropertyName)));
|
Chris@45
|
267
|
Chris@45
|
268 Labeller::ValueType labellerType = Labeller::ValueFromTwoLevelCounter;
|
Chris@45
|
269 settings.beginGroup("MainWindow");
|
Chris@230
|
270
|
Chris@45
|
271 labellerType = (Labeller::ValueType)
|
Chris@45
|
272 settings.value("labellertype", (int)labellerType).toInt();
|
Chris@45
|
273 int cycle = settings.value("labellercycle", 4).toInt();
|
Chris@230
|
274
|
Chris@45
|
275 settings.endGroup();
|
Chris@45
|
276
|
Chris@45
|
277 m_labeller = new Labeller(labellerType);
|
Chris@45
|
278 m_labeller->setCounterCycleSize(cycle);
|
Chris@113
|
279
|
Chris@475
|
280 if (m_soundOptions & WithMIDIInput) {
|
Chris@161
|
281 m_midiInput = new MIDIInput(QApplication::applicationName(), this);
|
Chris@161
|
282 }
|
Chris@452
|
283
|
Chris@452
|
284 QTimer::singleShot(1500, this, SIGNAL(hideSplash()));
|
Chris@45
|
285 }
|
Chris@45
|
286
|
Chris@45
|
287 MainWindowBase::~MainWindowBase()
|
Chris@45
|
288 {
|
Chris@233
|
289 SVDEBUG << "MainWindowBase::~MainWindowBase" << endl;
|
Chris@468
|
290 delete m_playTarget;
|
Chris@45
|
291 delete m_playSource;
|
Chris@475
|
292 delete m_audioIO;
|
Chris@475
|
293 delete m_recordTarget;
|
Chris@45
|
294 delete m_viewManager;
|
Chris@45
|
295 delete m_oscQueue;
|
Chris@304
|
296 delete m_oscQueueStarter;
|
Chris@157
|
297 delete m_midiInput;
|
Chris@45
|
298 Profiles::getInstance()->dump();
|
Chris@45
|
299 }
|
Chris@45
|
300
|
Chris@113
|
301 void
|
Chris@452
|
302 MainWindowBase::emitHideSplash()
|
Chris@452
|
303 {
|
Chris@452
|
304 emit hideSplash(this);
|
Chris@452
|
305 }
|
Chris@452
|
306
|
Chris@452
|
307 void
|
Chris@354
|
308 MainWindowBase::finaliseMenus()
|
Chris@354
|
309 {
|
Chris@390
|
310 delete m_menuShortcutMapper;
|
Chris@390
|
311 m_menuShortcutMapper = 0;
|
Chris@390
|
312
|
Chris@391
|
313 foreach (QShortcut *sc, m_appShortcuts) {
|
Chris@391
|
314 delete sc;
|
Chris@391
|
315 }
|
Chris@391
|
316 m_appShortcuts.clear();
|
Chris@391
|
317
|
Chris@354
|
318 QMenuBar *mb = menuBar();
|
Chris@394
|
319
|
Chris@396
|
320 // This used to find all children of QMenu type, and call
|
Chris@396
|
321 // finaliseMenu on those. But it seems we are getting hold of some
|
Chris@396
|
322 // menus that way that are not actually active in the menu bar and
|
Chris@396
|
323 // are not returned in their parent menu's actions() list, and if
|
Chris@396
|
324 // we finalise those, we end up with duplicate shortcuts in the
|
Chris@396
|
325 // app shortcut mapper. So we should do this by descending the
|
Chris@396
|
326 // menu tree through only those menus accessible via actions()
|
Chris@396
|
327 // from their parents instead.
|
Chris@396
|
328
|
Chris@394
|
329 QList<QMenu *> menus = mb->findChildren<QMenu *>
|
Chris@394
|
330 (QString(), Qt::FindDirectChildrenOnly);
|
Chris@394
|
331
|
Chris@354
|
332 foreach (QMenu *menu, menus) {
|
Chris@354
|
333 if (menu) finaliseMenu(menu);
|
Chris@354
|
334 }
|
Chris@354
|
335 }
|
Chris@354
|
336
|
Chris@354
|
337 void
|
Chris@426
|
338 MainWindowBase::finaliseMenu(QMenu *menu)
|
Chris@354
|
339 {
|
Chris@426
|
340 foreach (QAction *a, menu->actions()) {
|
Chris@426
|
341 a->setIconVisibleInMenu(m_iconsVisibleInMenus);
|
Chris@426
|
342 }
|
Chris@426
|
343
|
Chris@354
|
344 #ifdef Q_OS_MAC
|
Chris@354
|
345 // See https://bugreports.qt-project.org/browse/QTBUG-38256 and
|
Chris@354
|
346 // our issue #890 http://code.soundsoftware.ac.uk/issues/890 --
|
Chris@354
|
347 // single-key shortcuts that are associated only with a menu
|
Chris@384
|
348 // action (and not with a toolbar button) do not work with Qt 5.x
|
Chris@384
|
349 // under OS/X.
|
Chris@354
|
350 //
|
Chris@354
|
351 // Apparently Cocoa never handled them as a matter of course, but
|
Chris@354
|
352 // earlier versions of Qt picked them up as widget shortcuts and
|
Chris@354
|
353 // handled them anyway. That behaviour was removed to fix a crash
|
Chris@354
|
354 // when invoking a menu while its window was overridden by a modal
|
Chris@354
|
355 // dialog (https://bugreports.qt-project.org/browse/QTBUG-30657).
|
Chris@354
|
356 //
|
Chris@354
|
357 // This workaround restores the single-key shortcut behaviour by
|
Chris@384
|
358 // searching in menus for single-key shortcuts that are associated
|
Chris@384
|
359 // only with the menu and not with a toolbar button, and
|
Chris@384
|
360 // augmenting them with global application shortcuts that invoke
|
Chris@384
|
361 // the relevant actions, testing whether the actions are enabled
|
Chris@384
|
362 // on invocation.
|
Chris@354
|
363 //
|
Chris@384
|
364 // (Previously this acted on all single-key shortcuts in menus,
|
Chris@384
|
365 // and it removed the shortcut from the action when it created
|
Chris@384
|
366 // each new global one, in order to avoid an "ambiguous shortcut"
|
Chris@384
|
367 // error in the case where the action was also associated with a
|
Chris@384
|
368 // toolbar button. But that has the unwelcome side-effect of
|
Chris@384
|
369 // removing the shortcut hint from the menu entry. So now we leave
|
Chris@384
|
370 // the shortcut in the menu action as well as creating a global
|
Chris@384
|
371 // one, and we only act on shortcuts that have no toolbar button,
|
Chris@384
|
372 // i.e. that will not otherwise work. The downside is that if this
|
Chris@384
|
373 // bug is fixed in a future Qt release, we will start getting
|
Chris@384
|
374 // "ambiguous shortcut" errors from the menu entry actions and
|
Chris@384
|
375 // will need to update the code.)
|
Chris@354
|
376
|
Chris@443
|
377 // Update: The bug was fixed in Qt 5.4 for shortcuts with no
|
Chris@443
|
378 // modifier, and I believe it is fixed in Qt 5.5 for shortcuts
|
Chris@443
|
379 // with Shift modifiers. The below reflects that
|
Chris@443
|
380
|
Chris@443
|
381 #if (QT_VERSION < QT_VERSION_CHECK(5, 5, 0))
|
Chris@443
|
382
|
Chris@390
|
383 if (!m_menuShortcutMapper) {
|
Chris@390
|
384 m_menuShortcutMapper = new QSignalMapper(this);
|
Chris@392
|
385 connect(m_menuShortcutMapper, SIGNAL(mapped(QObject *)),
|
Chris@392
|
386 this, SLOT(menuActionMapperInvoked(QObject *)));
|
Chris@390
|
387 }
|
Chris@390
|
388
|
Chris@354
|
389 foreach (QAction *a, menu->actions()) {
|
Chris@394
|
390
|
Chris@394
|
391 if (a->isSeparator()) {
|
Chris@394
|
392 continue;
|
Chris@394
|
393 } else if (a->menu()) {
|
Chris@394
|
394 finaliseMenu(a->menu());
|
Chris@394
|
395 } else {
|
Chris@394
|
396
|
Chris@394
|
397 QWidgetList ww = a->associatedWidgets();
|
Chris@394
|
398 bool hasButton = false;
|
Chris@394
|
399 foreach (QWidget *w, ww) {
|
Chris@394
|
400 if (qobject_cast<QAbstractButton *>(w)) {
|
Chris@394
|
401 hasButton = true;
|
Chris@394
|
402 break;
|
Chris@394
|
403 }
|
Chris@394
|
404 }
|
Chris@394
|
405 if (hasButton) continue;
|
Chris@394
|
406 QKeySequence sc = a->shortcut();
|
Chris@399
|
407
|
Chris@399
|
408 // Note that the set of "single-key shortcuts" that aren't
|
Chris@399
|
409 // working and that we need to handle here includes those
|
Chris@399
|
410 // with the Shift modifier mask as well as those with no
|
Chris@399
|
411 // modifier at all
|
Chris@443
|
412 #if (QT_VERSION >= QT_VERSION_CHECK(5, 5, 0))
|
Chris@443
|
413 // Nothing needed
|
Chris@443
|
414 if (false) {
|
Chris@443
|
415 #elif (QT_VERSION >= QT_VERSION_CHECK(5, 4, 0))
|
Chris@443
|
416 if (sc.count() == 1 &&
|
Chris@443
|
417 (sc[0] & Qt::KeyboardModifierMask) == Qt::ShiftModifier) {
|
Chris@443
|
418 #else
|
Chris@399
|
419 if (sc.count() == 1 &&
|
Chris@399
|
420 ((sc[0] & Qt::KeyboardModifierMask) == Qt::NoModifier ||
|
Chris@399
|
421 (sc[0] & Qt::KeyboardModifierMask) == Qt::ShiftModifier)) {
|
Chris@443
|
422 #endif
|
Chris@394
|
423 QShortcut *newSc = new QShortcut(sc, a->parentWidget());
|
Chris@394
|
424 QObject::connect(newSc, SIGNAL(activated()),
|
Chris@394
|
425 m_menuShortcutMapper, SLOT(map()));
|
Chris@394
|
426 m_menuShortcutMapper->setMapping(newSc, a);
|
Chris@394
|
427 m_appShortcuts.push_back(newSc);
|
Chris@384
|
428 }
|
Chris@384
|
429 }
|
Chris@354
|
430 }
|
Chris@354
|
431 #endif
|
Chris@443
|
432 #endif
|
Chris@354
|
433 }
|
Chris@354
|
434
|
Chris@354
|
435 void
|
Chris@354
|
436 MainWindowBase::menuActionMapperInvoked(QObject *o)
|
Chris@354
|
437 {
|
Chris@354
|
438 QAction *a = qobject_cast<QAction *>(o);
|
Chris@354
|
439 if (a && a->isEnabled()) {
|
Chris@354
|
440 a->trigger();
|
Chris@354
|
441 }
|
Chris@354
|
442 }
|
Chris@354
|
443
|
Chris@354
|
444 void
|
Chris@168
|
445 MainWindowBase::resizeConstrained(QSize size)
|
Chris@168
|
446 {
|
Chris@168
|
447 QDesktopWidget *desktop = QApplication::desktop();
|
Chris@168
|
448 QRect available = desktop->availableGeometry();
|
Chris@168
|
449 QSize actual(std::min(size.width(), available.width()),
|
Chris@168
|
450 std::min(size.height(), available.height()));
|
Chris@168
|
451 resize(actual);
|
Chris@168
|
452 }
|
Chris@168
|
453
|
Chris@168
|
454 void
|
Chris@304
|
455 MainWindowBase::startOSCQueue()
|
Chris@304
|
456 {
|
Chris@304
|
457 m_oscQueueStarter = new OSCQueueStarter(this);
|
Chris@304
|
458 connect(m_oscQueueStarter, SIGNAL(finished()), this, SLOT(oscReady()));
|
Chris@304
|
459 m_oscQueueStarter->start();
|
Chris@304
|
460 }
|
Chris@304
|
461
|
Chris@304
|
462 void
|
Chris@113
|
463 MainWindowBase::oscReady()
|
Chris@113
|
464 {
|
Chris@113
|
465 if (m_oscQueue && m_oscQueue->isOK()) {
|
Chris@113
|
466 connect(m_oscQueue, SIGNAL(messagesAvailable()), this, SLOT(pollOSC()));
|
Chris@113
|
467 QTimer *oscTimer = new QTimer(this);
|
Chris@113
|
468 connect(oscTimer, SIGNAL(timeout()), this, SLOT(pollOSC()));
|
Chris@113
|
469 oscTimer->start(1000);
|
Chris@293
|
470 cerr << "Finished setting up OSC interface" << endl;
|
Chris@113
|
471 }
|
Chris@113
|
472 }
|
Chris@113
|
473
|
Chris@45
|
474 QString
|
Chris@45
|
475 MainWindowBase::getOpenFileName(FileFinder::FileType type)
|
Chris@45
|
476 {
|
Chris@45
|
477 FileFinder *ff = FileFinder::getInstance();
|
Chris@358
|
478
|
Chris@358
|
479 if (type == FileFinder::AnyFile) {
|
Chris@45
|
480 if (getMainModel() != 0 &&
|
Chris@45
|
481 m_paneStack != 0 &&
|
Chris@45
|
482 m_paneStack->getCurrentPane() != 0) { // can import a layer
|
Chris@45
|
483 return ff->getOpenFileName(FileFinder::AnyFile, m_sessionFile);
|
Chris@45
|
484 } else {
|
Chris@45
|
485 return ff->getOpenFileName(FileFinder::SessionOrAudioFile,
|
Chris@45
|
486 m_sessionFile);
|
Chris@45
|
487 }
|
Chris@358
|
488 }
|
Chris@358
|
489
|
Chris@358
|
490 QString lastPath = m_sessionFile;
|
Chris@358
|
491
|
Chris@358
|
492 if (type == FileFinder::AudioFile) {
|
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@93
|
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@354
|
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@223
|
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@45
|
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@427
|
1791 MainWindowBase::openDirOfAudio(QString dirPath)
|
Chris@427
|
1792 {
|
Chris@427
|
1793 QDir dir(dirPath);
|
Chris@427
|
1794 QStringList files = dir.entryList(QDir::Files | QDir::Readable);
|
Chris@427
|
1795 files.sort();
|
Chris@427
|
1796
|
Chris@427
|
1797 FileOpenStatus status = FileOpenFailed;
|
Chris@427
|
1798 bool first = true;
|
Chris@427
|
1799 bool cancelled = false;
|
Chris@427
|
1800
|
Chris@427
|
1801 foreach (QString file, files) {
|
Chris@427
|
1802
|
Chris@427
|
1803 FileSource source(dir.filePath(file));
|
Chris@427
|
1804 if (!source.isAvailable()) {
|
Chris@427
|
1805 continue;
|
Chris@427
|
1806 }
|
Chris@427
|
1807
|
Chris@427
|
1808 if (AudioFileReaderFactory::getKnownExtensions().contains
|
Chris@427
|
1809 (source.getExtension().toLower())) {
|
Chris@427
|
1810
|
Chris@427
|
1811 AudioFileOpenMode mode = CreateAdditionalModel;
|
Chris@427
|
1812 if (first) mode = ReplaceSession;
|
Chris@427
|
1813
|
Chris@427
|
1814 switch (openAudio(source, mode)) {
|
Chris@427
|
1815 case FileOpenSucceeded:
|
Chris@427
|
1816 status = FileOpenSucceeded;
|
Chris@427
|
1817 first = false;
|
Chris@427
|
1818 break;
|
Chris@427
|
1819 case FileOpenFailed:
|
Chris@427
|
1820 break;
|
Chris@427
|
1821 case FileOpenCancelled:
|
Chris@427
|
1822 cancelled = true;
|
Chris@427
|
1823 break;
|
Chris@427
|
1824 case FileOpenWrongMode:
|
Chris@427
|
1825 break;
|
Chris@427
|
1826 }
|
Chris@427
|
1827 }
|
Chris@427
|
1828
|
Chris@427
|
1829 if (cancelled) break;
|
Chris@427
|
1830 }
|
Chris@427
|
1831
|
Chris@427
|
1832 return status;
|
Chris@427
|
1833 }
|
Chris@427
|
1834
|
Chris@427
|
1835 MainWindowBase::FileOpenStatus
|
Chris@373
|
1836 MainWindowBase::openSessionPath(QString fileOrUrl)
|
Chris@45
|
1837 {
|
Chris@134
|
1838 ProgressDialog dialog(tr("Opening session..."), true, 2000, this);
|
Chris@134
|
1839 connect(&dialog, SIGNAL(showing()), this, SIGNAL(hideSplash()));
|
Chris@109
|
1840 return openSession(FileSource(fileOrUrl, &dialog));
|
Chris@45
|
1841 }
|
Chris@45
|
1842
|
Chris@45
|
1843 MainWindowBase::FileOpenStatus
|
Chris@45
|
1844 MainWindowBase::openSession(FileSource source)
|
Chris@45
|
1845 {
|
Chris@233
|
1846 SVDEBUG << "MainWindowBase::openSession(" << source.getLocation() << ")" << endl;
|
Chris@135
|
1847
|
Chris@45
|
1848 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@145
|
1849 source.waitForData();
|
Chris@141
|
1850
|
Chris@341
|
1851 QString sessionExt =
|
Chris@341
|
1852 InteractiveFileFinder::getInstance()->getApplicationSessionExtension();
|
Chris@341
|
1853
|
Chris@341
|
1854 if (source.getExtension().toLower() != sessionExt) {
|
Chris@145
|
1855
|
Chris@145
|
1856 RDFImporter::RDFDocumentType rdfType =
|
Chris@145
|
1857 RDFImporter::identifyDocumentType
|
Chris@145
|
1858 (QUrl::fromLocalFile(source.getLocalFilename()).toString());
|
Chris@145
|
1859
|
Chris@293
|
1860 // cerr << "RDF type: " << (int)rdfType << endl;
|
Chris@148
|
1861
|
Chris@145
|
1862 if (rdfType == RDFImporter::AudioRefAndAnnotations ||
|
Chris@145
|
1863 rdfType == RDFImporter::AudioRef) {
|
Chris@145
|
1864 return openSessionFromRDF(source);
|
Chris@145
|
1865 } else if (rdfType != RDFImporter::NotRDF) {
|
Chris@145
|
1866 return FileOpenFailed;
|
Chris@145
|
1867 }
|
Chris@145
|
1868
|
Chris@152
|
1869 if (source.getExtension().toLower() == "xml") {
|
Chris@140
|
1870 if (SVFileReader::identifyXmlFile(source.getLocalFilename()) ==
|
Chris@140
|
1871 SVFileReader::SVSessionFile) {
|
Chris@293
|
1872 cerr << "This XML file looks like a session file, attempting to open it as a session" << endl;
|
Chris@140
|
1873 } else {
|
Chris@140
|
1874 return FileOpenFailed;
|
Chris@140
|
1875 }
|
Chris@140
|
1876 } else {
|
Chris@140
|
1877 return FileOpenFailed;
|
Chris@140
|
1878 }
|
Chris@140
|
1879 }
|
Chris@45
|
1880
|
Chris@140
|
1881 QXmlInputSource *inputSource = 0;
|
Chris@140
|
1882 BZipFileDevice *bzFile = 0;
|
Chris@140
|
1883 QFile *rawFile = 0;
|
Chris@140
|
1884
|
Chris@341
|
1885 if (source.getExtension().toLower() == sessionExt) {
|
Chris@140
|
1886 bzFile = new BZipFileDevice(source.getLocalFilename());
|
Chris@140
|
1887 if (!bzFile->open(QIODevice::ReadOnly)) {
|
Chris@140
|
1888 delete bzFile;
|
Chris@140
|
1889 return FileOpenFailed;
|
Chris@140
|
1890 }
|
Chris@140
|
1891 inputSource = new QXmlInputSource(bzFile);
|
Chris@140
|
1892 } else {
|
Chris@140
|
1893 rawFile = new QFile(source.getLocalFilename());
|
Chris@140
|
1894 inputSource = new QXmlInputSource(rawFile);
|
Chris@140
|
1895 }
|
Chris@140
|
1896
|
Chris@140
|
1897 if (!checkSaveModified()) {
|
Chris@140
|
1898 if (bzFile) bzFile->close();
|
Chris@140
|
1899 delete inputSource;
|
Chris@140
|
1900 delete bzFile;
|
Chris@140
|
1901 delete rawFile;
|
Chris@140
|
1902 return FileOpenCancelled;
|
Chris@140
|
1903 }
|
Chris@45
|
1904
|
Chris@45
|
1905 QString error;
|
Chris@45
|
1906 closeSession();
|
Chris@45
|
1907 createDocument();
|
Chris@45
|
1908
|
Chris@45
|
1909 PaneCallback callback(this);
|
Chris@45
|
1910 m_viewManager->clearSelections();
|
Chris@45
|
1911
|
Chris@45
|
1912 SVFileReader reader(m_document, callback, source.getLocation());
|
Chris@79
|
1913 connect
|
Chris@79
|
1914 (&reader, SIGNAL(modelRegenerationFailed(QString, QString, QString)),
|
Chris@79
|
1915 this, SLOT(modelRegenerationFailed(QString, QString, QString)));
|
Chris@79
|
1916 connect
|
Chris@79
|
1917 (&reader, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@79
|
1918 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@140
|
1919
|
Chris@140
|
1920 reader.parse(*inputSource);
|
Chris@45
|
1921
|
Chris@45
|
1922 if (!reader.isOK()) {
|
Chris@45
|
1923 error = tr("SV XML file read error:\n%1").arg(reader.getErrorString());
|
Chris@45
|
1924 }
|
Chris@45
|
1925
|
Chris@140
|
1926 if (bzFile) bzFile->close();
|
Chris@140
|
1927
|
Chris@140
|
1928 delete inputSource;
|
Chris@140
|
1929 delete bzFile;
|
Chris@140
|
1930 delete rawFile;
|
Chris@45
|
1931
|
Chris@45
|
1932 bool ok = (error == "");
|
Chris@45
|
1933
|
Chris@45
|
1934 if (ok) {
|
Chris@45
|
1935
|
Chris@164
|
1936 emit activity(tr("Import session file \"%1\"").arg(source.getLocation()));
|
Chris@164
|
1937
|
Chris@57
|
1938 setWindowTitle(tr("%1: %2")
|
Chris@57
|
1939 .arg(QApplication::applicationName())
|
Chris@45
|
1940 .arg(source.getLocation()));
|
Chris@45
|
1941
|
Chris@45
|
1942 if (!source.isRemote()) m_sessionFile = source.getLocalFilename();
|
Chris@45
|
1943
|
Chris@45
|
1944 setupMenus();
|
Chris@45
|
1945
|
Chris@45
|
1946 CommandHistory::getInstance()->clear();
|
Chris@45
|
1947 CommandHistory::getInstance()->documentSaved();
|
Chris@45
|
1948 m_documentModified = false;
|
Chris@45
|
1949 updateMenuStates();
|
Chris@45
|
1950
|
Chris@227
|
1951 m_recentFiles.addFile(source.getLocation());
|
Chris@45
|
1952
|
Chris@45
|
1953 if (!source.isRemote()) {
|
Chris@45
|
1954 // for file dialog
|
Chris@45
|
1955 registerLastOpenedFilePath(FileFinder::SessionFile,
|
Chris@227
|
1956 source.getLocalFilename());
|
Chris@45
|
1957 }
|
Chris@45
|
1958
|
Chris@342
|
1959 emit sessionLoaded();
|
Chris@342
|
1960
|
Chris@45
|
1961 } else {
|
Chris@57
|
1962 setWindowTitle(QApplication::applicationName());
|
Chris@45
|
1963 }
|
Chris@45
|
1964
|
Chris@45
|
1965 return ok ? FileOpenSucceeded : FileOpenFailed;
|
Chris@45
|
1966 }
|
Chris@45
|
1967
|
Chris@141
|
1968 MainWindowBase::FileOpenStatus
|
Chris@230
|
1969 MainWindowBase::openSessionTemplate(QString templateName)
|
Chris@230
|
1970 {
|
Chris@230
|
1971 // Template in the user's template directory takes
|
Chris@230
|
1972 // priority over a bundled one; we don't unbundle, but
|
Chris@230
|
1973 // open directly from the bundled file (where applicable)
|
Chris@230
|
1974 ResourceFinder rf;
|
Chris@230
|
1975 QString tfile = rf.getResourcePath("templates", templateName + ".svt");
|
Chris@230
|
1976 if (tfile != "") {
|
Chris@294
|
1977 cerr << "SV loading template file " << tfile << endl;
|
Chris@230
|
1978 return openSessionTemplate(FileSource("file:" + tfile));
|
Chris@230
|
1979 } else {
|
Chris@230
|
1980 return FileOpenFailed;
|
Chris@230
|
1981 }
|
Chris@230
|
1982 }
|
Chris@230
|
1983
|
Chris@230
|
1984 MainWindowBase::FileOpenStatus
|
Chris@227
|
1985 MainWindowBase::openSessionTemplate(FileSource source)
|
Chris@227
|
1986 {
|
Chris@294
|
1987 cerr << "MainWindowBase::openSessionTemplate(" << source.getLocation() << ")" << endl;
|
Chris@227
|
1988
|
Chris@227
|
1989 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@227
|
1990 source.waitForData();
|
Chris@227
|
1991
|
Chris@227
|
1992 QXmlInputSource *inputSource = 0;
|
Chris@227
|
1993 QFile *file = 0;
|
Chris@227
|
1994
|
Chris@227
|
1995 file = new QFile(source.getLocalFilename());
|
Chris@227
|
1996 inputSource = new QXmlInputSource(file);
|
Chris@227
|
1997
|
Chris@227
|
1998 if (!checkSaveModified()) {
|
Chris@227
|
1999 delete inputSource;
|
Chris@227
|
2000 delete file;
|
Chris@227
|
2001 return FileOpenCancelled;
|
Chris@227
|
2002 }
|
Chris@227
|
2003
|
Chris@227
|
2004 QString error;
|
Chris@227
|
2005 closeSession();
|
Chris@227
|
2006 createDocument();
|
Chris@227
|
2007
|
Chris@227
|
2008 PaneCallback callback(this);
|
Chris@227
|
2009 m_viewManager->clearSelections();
|
Chris@227
|
2010
|
Chris@227
|
2011 SVFileReader reader(m_document, callback, source.getLocation());
|
Chris@227
|
2012 connect
|
Chris@227
|
2013 (&reader, SIGNAL(modelRegenerationFailed(QString, QString, QString)),
|
Chris@227
|
2014 this, SLOT(modelRegenerationFailed(QString, QString, QString)));
|
Chris@227
|
2015 connect
|
Chris@227
|
2016 (&reader, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@227
|
2017 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@227
|
2018
|
Chris@227
|
2019 reader.parse(*inputSource);
|
Chris@227
|
2020
|
Chris@227
|
2021 if (!reader.isOK()) {
|
Chris@227
|
2022 error = tr("SV XML file read error:\n%1").arg(reader.getErrorString());
|
Chris@227
|
2023 }
|
Chris@227
|
2024
|
Chris@227
|
2025 delete inputSource;
|
Chris@227
|
2026 delete file;
|
Chris@227
|
2027
|
Chris@227
|
2028 bool ok = (error == "");
|
Chris@227
|
2029
|
Chris@227
|
2030 setWindowTitle(QApplication::applicationName());
|
Chris@227
|
2031
|
Chris@227
|
2032 if (ok) {
|
Chris@227
|
2033
|
Chris@227
|
2034 emit activity(tr("Open session template \"%1\"").arg(source.getLocation()));
|
Chris@227
|
2035
|
Chris@227
|
2036 setupMenus();
|
Chris@227
|
2037
|
Chris@227
|
2038 CommandHistory::getInstance()->clear();
|
Chris@227
|
2039 CommandHistory::getInstance()->documentSaved();
|
Chris@227
|
2040 m_documentModified = false;
|
Chris@227
|
2041 updateMenuStates();
|
Chris@342
|
2042
|
Chris@342
|
2043 emit sessionLoaded();
|
Chris@227
|
2044 }
|
Chris@227
|
2045
|
Chris@227
|
2046 return ok ? FileOpenSucceeded : FileOpenFailed;
|
Chris@227
|
2047 }
|
Chris@227
|
2048
|
Chris@227
|
2049 MainWindowBase::FileOpenStatus
|
Chris@141
|
2050 MainWindowBase::openSessionFromRDF(FileSource source)
|
Chris@141
|
2051 {
|
Chris@233
|
2052 SVDEBUG << "MainWindowBase::openSessionFromRDF(" << source.getLocation() << ")" << endl;
|
Chris@141
|
2053
|
Chris@141
|
2054 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@141
|
2055 source.waitForData();
|
Chris@141
|
2056
|
Chris@145
|
2057 if (!checkSaveModified()) {
|
Chris@145
|
2058 return FileOpenCancelled;
|
Chris@141
|
2059 }
|
Chris@143
|
2060
|
Chris@145
|
2061 closeSession();
|
Chris@145
|
2062 createDocument();
|
Chris@145
|
2063
|
Chris@145
|
2064 FileOpenStatus status = openLayersFromRDF(source);
|
Chris@141
|
2065
|
Chris@141
|
2066 setupMenus();
|
Chris@141
|
2067
|
Chris@141
|
2068 setWindowTitle(tr("%1: %2")
|
Chris@141
|
2069 .arg(QApplication::applicationName())
|
Chris@141
|
2070 .arg(source.getLocation()));
|
Chris@141
|
2071 CommandHistory::getInstance()->clear();
|
Chris@141
|
2072 CommandHistory::getInstance()->documentSaved();
|
Chris@141
|
2073 m_documentModified = false;
|
Chris@145
|
2074
|
Chris@342
|
2075 emit sessionLoaded();
|
Chris@342
|
2076
|
Chris@145
|
2077 return status;
|
Chris@145
|
2078 }
|
Chris@145
|
2079
|
Chris@145
|
2080 MainWindowBase::FileOpenStatus
|
Chris@145
|
2081 MainWindowBase::openLayersFromRDF(FileSource source)
|
Chris@145
|
2082 {
|
Chris@435
|
2083 sv_samplerate_t rate = 0;
|
Chris@145
|
2084
|
Chris@233
|
2085 SVDEBUG << "MainWindowBase::openLayersFromRDF" << endl;
|
Chris@186
|
2086
|
Chris@145
|
2087 ProgressDialog dialog(tr("Importing from RDF..."), true, 2000, this);
|
Chris@145
|
2088 connect(&dialog, SIGNAL(showing()), this, SIGNAL(hideSplash()));
|
Chris@145
|
2089
|
Chris@145
|
2090 if (getMainModel()) {
|
Chris@145
|
2091 rate = getMainModel()->getSampleRate();
|
Chris@145
|
2092 } else if (Preferences::getInstance()->getResampleOnLoad()) {
|
Chris@145
|
2093 rate = m_playSource->getSourceSampleRate();
|
Chris@145
|
2094 }
|
Chris@145
|
2095
|
Chris@145
|
2096 RDFImporter importer
|
Chris@145
|
2097 (QUrl::fromLocalFile(source.getLocalFilename()).toString(), rate);
|
Chris@145
|
2098
|
Chris@145
|
2099 if (!importer.isOK()) {
|
Chris@147
|
2100 if (importer.getErrorString() != "") {
|
Chris@147
|
2101 QMessageBox::critical
|
Chris@147
|
2102 (this, tr("Failed to import RDF"),
|
Chris@147
|
2103 tr("<b>Failed to import RDF</b><p>Importing data from RDF document at \"%1\" failed: %2</p>")
|
Chris@147
|
2104 .arg(source.getLocation()).arg(importer.getErrorString()));
|
Chris@147
|
2105 }
|
Chris@145
|
2106 return FileOpenFailed;
|
Chris@145
|
2107 }
|
Chris@145
|
2108
|
Chris@145
|
2109 std::vector<Model *> models = importer.getDataModels(&dialog);
|
Chris@145
|
2110
|
Chris@145
|
2111 dialog.setMessage(tr("Importing from RDF..."));
|
Chris@145
|
2112
|
Chris@145
|
2113 if (models.empty()) {
|
Chris@186
|
2114 QMessageBox::critical
|
Chris@186
|
2115 (this, tr("Failed to import RDF"),
|
Chris@186
|
2116 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
|
2117 return FileOpenFailed;
|
Chris@145
|
2118 }
|
Chris@145
|
2119
|
Chris@164
|
2120 emit activity(tr("Import RDF document \"%1\"").arg(source.getLocation()));
|
Chris@164
|
2121
|
Chris@145
|
2122 std::set<Model *> added;
|
Chris@145
|
2123
|
Chris@221
|
2124 for (int i = 0; i < (int)models.size(); ++i) {
|
Chris@145
|
2125
|
Chris@145
|
2126 Model *m = models[i];
|
Chris@145
|
2127 WaveFileModel *w = dynamic_cast<WaveFileModel *>(m);
|
Chris@145
|
2128
|
Chris@145
|
2129 if (w) {
|
Chris@145
|
2130
|
Chris@145
|
2131 Pane *pane = addPaneToStack();
|
Chris@145
|
2132 Layer *layer = 0;
|
Chris@145
|
2133
|
Chris@145
|
2134 if (m_timeRulerLayer) {
|
Chris@145
|
2135 m_document->addLayerToView(pane, m_timeRulerLayer);
|
Chris@145
|
2136 }
|
Chris@145
|
2137
|
Chris@145
|
2138 if (!getMainModel()) {
|
Chris@145
|
2139 m_document->setMainModel(w);
|
Chris@145
|
2140 layer = m_document->createMainModelLayer(LayerFactory::Waveform);
|
Chris@145
|
2141 } else {
|
Chris@145
|
2142 layer = m_document->createImportedLayer(w);
|
Chris@145
|
2143 }
|
Chris@145
|
2144
|
Chris@145
|
2145 m_document->addLayerToView(pane, layer);
|
Chris@145
|
2146
|
Chris@145
|
2147 added.insert(w);
|
Chris@145
|
2148
|
Chris@221
|
2149 for (int j = 0; j < (int)models.size(); ++j) {
|
Chris@145
|
2150
|
Chris@145
|
2151 Model *dm = models[j];
|
Chris@145
|
2152
|
Chris@145
|
2153 if (dm == m) continue;
|
Chris@145
|
2154 if (dm->getSourceModel() != m) continue;
|
Chris@145
|
2155
|
Chris@145
|
2156 layer = m_document->createImportedLayer(dm);
|
Chris@145
|
2157
|
Chris@145
|
2158 if (layer->isLayerOpaque() ||
|
Chris@145
|
2159 dynamic_cast<Colour3DPlotLayer *>(layer)) {
|
Chris@145
|
2160
|
Chris@156
|
2161 // these always go in a new pane, with nothing
|
Chris@156
|
2162 // else going in the same pane
|
Chris@156
|
2163
|
Chris@145
|
2164 Pane *singleLayerPane = addPaneToStack();
|
Chris@145
|
2165 if (m_timeRulerLayer) {
|
Chris@145
|
2166 m_document->addLayerToView(singleLayerPane, m_timeRulerLayer);
|
Chris@145
|
2167 }
|
Chris@145
|
2168 m_document->addLayerToView(singleLayerPane, layer);
|
Chris@145
|
2169
|
Chris@156
|
2170 } else if (layer->getLayerColourSignificance() ==
|
Chris@156
|
2171 Layer::ColourHasMeaningfulValue) {
|
Chris@156
|
2172
|
Chris@156
|
2173 // these can go in a pane with something else, but
|
Chris@156
|
2174 // only if none of the something elses also have
|
Chris@156
|
2175 // this quality
|
Chris@156
|
2176
|
Chris@156
|
2177 bool needNewPane = false;
|
Chris@156
|
2178 for (int i = 0; i < pane->getLayerCount(); ++i) {
|
Chris@156
|
2179 Layer *otherLayer = pane->getLayer(i);
|
Chris@156
|
2180 if (otherLayer &&
|
Chris@156
|
2181 (otherLayer->getLayerColourSignificance() ==
|
Chris@156
|
2182 Layer::ColourHasMeaningfulValue)) {
|
Chris@156
|
2183 needNewPane = true;
|
Chris@156
|
2184 break;
|
Chris@156
|
2185 }
|
Chris@156
|
2186 }
|
Chris@156
|
2187 if (needNewPane) {
|
Chris@156
|
2188 pane = addPaneToStack();
|
Chris@156
|
2189 }
|
Chris@156
|
2190
|
Chris@156
|
2191 m_document->addLayerToView(pane, layer);
|
Chris@156
|
2192
|
Chris@145
|
2193 } else {
|
Chris@145
|
2194
|
Chris@145
|
2195 if (pane->getLayerCount() > 4) {
|
Chris@145
|
2196 pane = addPaneToStack();
|
Chris@145
|
2197 }
|
Chris@145
|
2198
|
Chris@145
|
2199 m_document->addLayerToView(pane, layer);
|
Chris@145
|
2200 }
|
Chris@145
|
2201
|
Chris@145
|
2202 added.insert(dm);
|
Chris@145
|
2203 }
|
Chris@145
|
2204 }
|
Chris@145
|
2205 }
|
Chris@145
|
2206
|
Chris@221
|
2207 for (int i = 0; i < (int)models.size(); ++i) {
|
Chris@145
|
2208
|
Chris@145
|
2209 Model *m = models[i];
|
Chris@145
|
2210
|
Chris@145
|
2211 if (added.find(m) == added.end()) {
|
Chris@145
|
2212
|
Chris@145
|
2213 Layer *layer = m_document->createImportedLayer(m);
|
Chris@145
|
2214 if (!layer) return FileOpenFailed;
|
Chris@145
|
2215
|
Chris@145
|
2216 Pane *singleLayerPane = addPaneToStack();
|
Chris@145
|
2217 if (m_timeRulerLayer) {
|
Chris@145
|
2218 m_document->addLayerToView(singleLayerPane, m_timeRulerLayer);
|
Chris@145
|
2219 }
|
Chris@145
|
2220 m_document->addLayerToView(singleLayerPane, layer);
|
Chris@145
|
2221 }
|
Chris@145
|
2222 }
|
Chris@145
|
2223
|
Chris@145
|
2224 m_recentFiles.addFile(source.getLocation());
|
Chris@145
|
2225 return FileOpenSucceeded;
|
Chris@141
|
2226 }
|
Chris@141
|
2227
|
Chris@45
|
2228 void
|
Chris@475
|
2229 MainWindowBase::createAudioIO()
|
Chris@45
|
2230 {
|
Chris@475
|
2231 if (m_playTarget || m_audioIO) return;
|
Chris@475
|
2232
|
Chris@475
|
2233 if (!(m_soundOptions & WithAudioOutput)) return;
|
Chris@45
|
2234
|
Chris@468
|
2235 //!!! how to handle preferences
|
Chris@468
|
2236 /*
|
Chris@126
|
2237 QSettings settings;
|
Chris@126
|
2238 settings.beginGroup("Preferences");
|
Chris@126
|
2239 QString targetName = settings.value("audio-target", "").toString();
|
Chris@126
|
2240 settings.endGroup();
|
Chris@126
|
2241 AudioTargetFactory *factory = AudioTargetFactory::getInstance();
|
Chris@126
|
2242
|
Chris@126
|
2243 factory->setDefaultCallbackTarget(targetName);
|
Chris@468
|
2244 */
|
Chris@475
|
2245
|
Chris@475
|
2246 if (m_soundOptions & WithAudioInput) {
|
Chris@475
|
2247 m_audioIO = breakfastquay::AudioFactory::
|
Chris@475
|
2248 createCallbackIO(m_recordTarget, m_playSource);
|
Chris@525
|
2249 if (m_audioIO) {
|
Chris@525
|
2250 m_audioIO->suspend(); // start in suspended state
|
Chris@525
|
2251 m_playSource->setSystemPlaybackTarget(m_audioIO);
|
Chris@525
|
2252 }
|
Chris@475
|
2253 } else {
|
Chris@475
|
2254 m_playTarget = breakfastquay::AudioFactory::
|
Chris@475
|
2255 createCallbackPlayTarget(m_playSource);
|
Chris@525
|
2256 if (m_playTarget) {
|
Chris@525
|
2257 m_playTarget->suspend(); // start in suspended state
|
Chris@525
|
2258 m_playSource->setSystemPlaybackTarget(m_playTarget);
|
Chris@525
|
2259 }
|
Chris@475
|
2260 }
|
Chris@475
|
2261
|
Chris@475
|
2262 if (!m_playTarget && !m_audioIO) {
|
Chris@104
|
2263 emit hideSplash();
|
Chris@126
|
2264
|
Chris@468
|
2265 // if (factory->isAutoCallbackTarget(targetName)) {
|
Chris@128
|
2266 QMessageBox::warning
|
Chris@45
|
2267 (this, tr("Couldn't open audio device"),
|
Chris@126
|
2268 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
|
2269 QMessageBox::Ok);
|
Chris@468
|
2270 /*
|
Chris@126
|
2271 } else {
|
Chris@126
|
2272 QMessageBox::warning
|
Chris@126
|
2273 (this, tr("Couldn't open audio device"),
|
Chris@126
|
2274 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
|
2275 .arg(factory->getCallbackTargetDescription(targetName)),
|
Chris@126
|
2276 QMessageBox::Ok);
|
Chris@126
|
2277 }
|
Chris@468
|
2278 */
|
Chris@475
|
2279 return;
|
Chris@45
|
2280 }
|
Chris@45
|
2281 }
|
Chris@45
|
2282
|
Chris@45
|
2283 WaveFileModel *
|
Chris@45
|
2284 MainWindowBase::getMainModel()
|
Chris@45
|
2285 {
|
Chris@45
|
2286 if (!m_document) return 0;
|
Chris@45
|
2287 return m_document->getMainModel();
|
Chris@45
|
2288 }
|
Chris@45
|
2289
|
Chris@45
|
2290 const WaveFileModel *
|
Chris@45
|
2291 MainWindowBase::getMainModel() const
|
Chris@45
|
2292 {
|
Chris@45
|
2293 if (!m_document) return 0;
|
Chris@45
|
2294 return m_document->getMainModel();
|
Chris@45
|
2295 }
|
Chris@45
|
2296
|
Chris@45
|
2297 void
|
Chris@45
|
2298 MainWindowBase::createDocument()
|
Chris@45
|
2299 {
|
Chris@45
|
2300 m_document = new Document;
|
Chris@45
|
2301
|
Chris@45
|
2302 connect(m_document, SIGNAL(layerAdded(Layer *)),
|
Chris@45
|
2303 this, SLOT(layerAdded(Layer *)));
|
Chris@45
|
2304 connect(m_document, SIGNAL(layerRemoved(Layer *)),
|
Chris@45
|
2305 this, SLOT(layerRemoved(Layer *)));
|
Chris@45
|
2306 connect(m_document, SIGNAL(layerAboutToBeDeleted(Layer *)),
|
Chris@45
|
2307 this, SLOT(layerAboutToBeDeleted(Layer *)));
|
Chris@45
|
2308 connect(m_document, SIGNAL(layerInAView(Layer *, bool)),
|
Chris@45
|
2309 this, SLOT(layerInAView(Layer *, bool)));
|
Chris@45
|
2310
|
Chris@45
|
2311 connect(m_document, SIGNAL(modelAdded(Model *)),
|
Chris@45
|
2312 this, SLOT(modelAdded(Model *)));
|
Chris@45
|
2313 connect(m_document, SIGNAL(mainModelChanged(WaveFileModel *)),
|
Chris@45
|
2314 this, SLOT(mainModelChanged(WaveFileModel *)));
|
Chris@45
|
2315 connect(m_document, SIGNAL(modelAboutToBeDeleted(Model *)),
|
Chris@45
|
2316 this, SLOT(modelAboutToBeDeleted(Model *)));
|
Chris@45
|
2317
|
Chris@78
|
2318 connect(m_document, SIGNAL(modelGenerationFailed(QString, QString)),
|
Chris@78
|
2319 this, SLOT(modelGenerationFailed(QString, QString)));
|
Chris@78
|
2320 connect(m_document, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@78
|
2321 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@78
|
2322 connect(m_document, SIGNAL(modelGenerationFailed(QString, QString)),
|
Chris@78
|
2323 this, SLOT(modelGenerationFailed(QString, QString)));
|
Chris@78
|
2324 connect(m_document, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@78
|
2325 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@429
|
2326 connect(m_document, SIGNAL(alignmentComplete(AlignmentModel *)),
|
Chris@429
|
2327 this, SLOT(alignmentComplete(AlignmentModel *)));
|
Chris@423
|
2328 connect(m_document, SIGNAL(alignmentFailed(QString)),
|
Chris@423
|
2329 this, SLOT(alignmentFailed(QString)));
|
Chris@160
|
2330
|
Chris@160
|
2331 emit replacedDocument();
|
Chris@45
|
2332 }
|
Chris@45
|
2333
|
Chris@45
|
2334 bool
|
Chris@45
|
2335 MainWindowBase::saveSessionFile(QString path)
|
Chris@45
|
2336 {
|
Chris@217
|
2337 try {
|
Chris@217
|
2338
|
Chris@217
|
2339 TempWriteFile temp(path);
|
Chris@217
|
2340
|
Chris@217
|
2341 BZipFileDevice bzFile(temp.getTemporaryFilename());
|
Chris@217
|
2342 if (!bzFile.open(QIODevice::WriteOnly)) {
|
Chris@293
|
2343 cerr << "Failed to open session file \""
|
Chris@294
|
2344 << temp.getTemporaryFilename()
|
Chris@217
|
2345 << "\" for writing: "
|
Chris@293
|
2346 << bzFile.errorString() << endl;
|
Chris@217
|
2347 return false;
|
Chris@217
|
2348 }
|
Chris@217
|
2349
|
Chris@217
|
2350 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
Chris@217
|
2351
|
Chris@217
|
2352 QTextStream out(&bzFile);
|
Chris@432
|
2353 out.setCodec(QTextCodec::codecForName("UTF-8"));
|
Chris@226
|
2354 toXml(out, false);
|
Chris@217
|
2355 out.flush();
|
Chris@217
|
2356
|
Chris@217
|
2357 QApplication::restoreOverrideCursor();
|
Chris@217
|
2358
|
Chris@217
|
2359 if (!bzFile.isOK()) {
|
Chris@217
|
2360 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@217
|
2361 tr("<b>Save failed</b><p>Failed to write to file \"%1\": %2")
|
Chris@217
|
2362 .arg(path).arg(bzFile.errorString()));
|
Chris@217
|
2363 bzFile.close();
|
Chris@217
|
2364 return false;
|
Chris@217
|
2365 }
|
Chris@217
|
2366
|
Chris@217
|
2367 bzFile.close();
|
Chris@217
|
2368 temp.moveToTarget();
|
Chris@217
|
2369 return true;
|
Chris@217
|
2370
|
Chris@217
|
2371 } catch (FileOperationFailed &f) {
|
Chris@217
|
2372
|
Chris@217
|
2373 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@217
|
2374 tr("<b>Save failed</b><p>Failed to write to file \"%1\": %2")
|
Chris@217
|
2375 .arg(path).arg(f.what()));
|
Chris@45
|
2376 return false;
|
Chris@45
|
2377 }
|
Chris@45
|
2378 }
|
Chris@45
|
2379
|
Chris@224
|
2380 bool
|
Chris@224
|
2381 MainWindowBase::saveSessionTemplate(QString path)
|
Chris@224
|
2382 {
|
Chris@224
|
2383 try {
|
Chris@224
|
2384
|
Chris@224
|
2385 TempWriteFile temp(path);
|
Chris@224
|
2386
|
Chris@224
|
2387 QFile file(temp.getTemporaryFilename());
|
Chris@224
|
2388 if (!file.open(QIODevice::WriteOnly)) {
|
Chris@293
|
2389 cerr << "Failed to open session template file \""
|
Chris@294
|
2390 << temp.getTemporaryFilename()
|
Chris@224
|
2391 << "\" for writing: "
|
Chris@294
|
2392 << file.errorString() << endl;
|
Chris@224
|
2393 return false;
|
Chris@224
|
2394 }
|
Chris@224
|
2395
|
Chris@224
|
2396 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
Chris@224
|
2397
|
Chris@224
|
2398 QTextStream out(&file);
|
Chris@432
|
2399 out.setCodec(QTextCodec::codecForName("UTF-8"));
|
Chris@226
|
2400 toXml(out, true);
|
Chris@224
|
2401 out.flush();
|
Chris@224
|
2402
|
Chris@224
|
2403 QApplication::restoreOverrideCursor();
|
Chris@224
|
2404
|
Chris@224
|
2405 file.close();
|
Chris@224
|
2406 temp.moveToTarget();
|
Chris@224
|
2407 return true;
|
Chris@224
|
2408
|
Chris@224
|
2409 } catch (FileOperationFailed &f) {
|
Chris@224
|
2410
|
Chris@224
|
2411 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@224
|
2412 tr("<b>Save failed</b><p>Failed to write to file \"%1\": %2")
|
Chris@224
|
2413 .arg(path).arg(f.what()));
|
Chris@224
|
2414 return false;
|
Chris@224
|
2415 }
|
Chris@224
|
2416 }
|
Chris@224
|
2417
|
Chris@45
|
2418 void
|
Chris@226
|
2419 MainWindowBase::toXml(QTextStream &out, bool asTemplate)
|
Chris@45
|
2420 {
|
Chris@45
|
2421 QString indent(" ");
|
Chris@45
|
2422
|
Chris@45
|
2423 out << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
|
Chris@45
|
2424 out << "<!DOCTYPE sonic-visualiser>\n";
|
Chris@45
|
2425 out << "<sv>\n";
|
Chris@45
|
2426
|
Chris@226
|
2427 if (asTemplate) {
|
Chris@226
|
2428 m_document->toXmlAsTemplate(out, "", "");
|
Chris@226
|
2429 } else {
|
Chris@226
|
2430 m_document->toXml(out, "", "");
|
Chris@226
|
2431 }
|
Chris@45
|
2432
|
Chris@45
|
2433 out << "<display>\n";
|
Chris@45
|
2434
|
Chris@45
|
2435 out << QString(" <window width=\"%1\" height=\"%2\"/>\n")
|
Chris@45
|
2436 .arg(width()).arg(height());
|
Chris@45
|
2437
|
Chris@45
|
2438 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@45
|
2439
|
Chris@45
|
2440 Pane *pane = m_paneStack->getPane(i);
|
Chris@45
|
2441
|
Chris@45
|
2442 if (pane) {
|
Chris@45
|
2443 pane->toXml(out, indent);
|
Chris@45
|
2444 }
|
Chris@45
|
2445 }
|
Chris@45
|
2446
|
Chris@45
|
2447 out << "</display>\n";
|
Chris@45
|
2448
|
Chris@45
|
2449 m_viewManager->getSelection().toXml(out);
|
Chris@45
|
2450
|
Chris@45
|
2451 out << "</sv>\n";
|
Chris@45
|
2452 }
|
Chris@45
|
2453
|
Chris@45
|
2454 Pane *
|
Chris@45
|
2455 MainWindowBase::addPaneToStack()
|
Chris@45
|
2456 {
|
Chris@342
|
2457 cerr << "MainWindowBase::addPaneToStack()" << endl;
|
Chris@45
|
2458 AddPaneCommand *command = new AddPaneCommand(this);
|
Chris@45
|
2459 CommandHistory::getInstance()->addCommand(command);
|
Chris@57
|
2460 Pane *pane = command->getPane();
|
Chris@57
|
2461 return pane;
|
Chris@45
|
2462 }
|
Chris@45
|
2463
|
Chris@45
|
2464 void
|
Chris@45
|
2465 MainWindowBase::zoomIn()
|
Chris@45
|
2466 {
|
Chris@45
|
2467 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2468 if (currentPane) currentPane->zoom(true);
|
Chris@45
|
2469 }
|
Chris@45
|
2470
|
Chris@45
|
2471 void
|
Chris@45
|
2472 MainWindowBase::zoomOut()
|
Chris@45
|
2473 {
|
Chris@45
|
2474 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2475 if (currentPane) currentPane->zoom(false);
|
Chris@45
|
2476 }
|
Chris@45
|
2477
|
Chris@45
|
2478 void
|
Chris@45
|
2479 MainWindowBase::zoomToFit()
|
Chris@45
|
2480 {
|
Chris@45
|
2481 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2482 if (!currentPane) return;
|
Chris@45
|
2483
|
Chris@45
|
2484 Model *model = getMainModel();
|
Chris@45
|
2485 if (!model) return;
|
Chris@45
|
2486
|
Chris@434
|
2487 sv_frame_t start = model->getStartFrame();
|
Chris@434
|
2488 sv_frame_t end = model->getEndFrame();
|
Chris@60
|
2489 if (m_playSource) end = std::max(end, m_playSource->getPlayEndFrame());
|
Chris@366
|
2490 int pixels = currentPane->width();
|
Chris@366
|
2491
|
Chris@366
|
2492 int sw = currentPane->getVerticalScaleWidth();
|
Chris@45
|
2493 if (pixels > sw * 2) pixels -= sw * 2;
|
Chris@45
|
2494 else pixels = 1;
|
Chris@45
|
2495 if (pixels > 4) pixels -= 4;
|
Chris@45
|
2496
|
Chris@436
|
2497 int zoomLevel = int((end - start) / pixels);
|
Chris@150
|
2498 if (zoomLevel < 1) zoomLevel = 1;
|
Chris@45
|
2499
|
Chris@45
|
2500 currentPane->setZoomLevel(zoomLevel);
|
Chris@45
|
2501 currentPane->setCentreFrame((start + end) / 2);
|
Chris@45
|
2502 }
|
Chris@45
|
2503
|
Chris@45
|
2504 void
|
Chris@45
|
2505 MainWindowBase::zoomDefault()
|
Chris@45
|
2506 {
|
Chris@45
|
2507 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@302
|
2508 QSettings settings;
|
Chris@302
|
2509 settings.beginGroup("MainWindow");
|
Chris@302
|
2510 int zoom = settings.value("zoom-default", 1024).toInt();
|
Chris@302
|
2511 settings.endGroup();
|
Chris@302
|
2512 if (currentPane) currentPane->setZoomLevel(zoom);
|
Chris@45
|
2513 }
|
Chris@45
|
2514
|
Chris@45
|
2515 void
|
Chris@45
|
2516 MainWindowBase::scrollLeft()
|
Chris@45
|
2517 {
|
Chris@45
|
2518 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2519 if (currentPane) currentPane->scroll(false, false);
|
Chris@45
|
2520 }
|
Chris@45
|
2521
|
Chris@45
|
2522 void
|
Chris@45
|
2523 MainWindowBase::jumpLeft()
|
Chris@45
|
2524 {
|
Chris@45
|
2525 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2526 if (currentPane) currentPane->scroll(false, true);
|
Chris@45
|
2527 }
|
Chris@45
|
2528
|
Chris@45
|
2529 void
|
Chris@162
|
2530 MainWindowBase::peekLeft()
|
Chris@162
|
2531 {
|
Chris@162
|
2532 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@162
|
2533 if (currentPane) currentPane->scroll(false, false, false);
|
Chris@162
|
2534 }
|
Chris@162
|
2535
|
Chris@162
|
2536 void
|
Chris@45
|
2537 MainWindowBase::scrollRight()
|
Chris@45
|
2538 {
|
Chris@45
|
2539 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2540 if (currentPane) currentPane->scroll(true, false);
|
Chris@45
|
2541 }
|
Chris@45
|
2542
|
Chris@45
|
2543 void
|
Chris@45
|
2544 MainWindowBase::jumpRight()
|
Chris@45
|
2545 {
|
Chris@45
|
2546 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2547 if (currentPane) currentPane->scroll(true, true);
|
Chris@45
|
2548 }
|
Chris@45
|
2549
|
Chris@45
|
2550 void
|
Chris@162
|
2551 MainWindowBase::peekRight()
|
Chris@162
|
2552 {
|
Chris@162
|
2553 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@162
|
2554 if (currentPane) currentPane->scroll(true, false, false);
|
Chris@162
|
2555 }
|
Chris@162
|
2556
|
Chris@162
|
2557 void
|
Chris@45
|
2558 MainWindowBase::showNoOverlays()
|
Chris@45
|
2559 {
|
Chris@45
|
2560 m_viewManager->setOverlayMode(ViewManager::NoOverlays);
|
Chris@45
|
2561 }
|
Chris@45
|
2562
|
Chris@45
|
2563 void
|
Chris@45
|
2564 MainWindowBase::showMinimalOverlays()
|
Chris@45
|
2565 {
|
Chris@335
|
2566 m_viewManager->setOverlayMode(ViewManager::StandardOverlays);
|
Chris@45
|
2567 }
|
Chris@45
|
2568
|
Chris@45
|
2569 void
|
Chris@45
|
2570 MainWindowBase::showAllOverlays()
|
Chris@45
|
2571 {
|
Chris@45
|
2572 m_viewManager->setOverlayMode(ViewManager::AllOverlays);
|
Chris@45
|
2573 }
|
Chris@45
|
2574
|
Chris@45
|
2575 void
|
Chris@211
|
2576 MainWindowBase::toggleTimeRulers()
|
Chris@211
|
2577 {
|
Chris@211
|
2578 bool haveRulers = false;
|
Chris@211
|
2579 bool someHidden = false;
|
Chris@211
|
2580
|
Chris@211
|
2581 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@211
|
2582
|
Chris@211
|
2583 Pane *pane = m_paneStack->getPane(i);
|
Chris@211
|
2584 if (!pane) continue;
|
Chris@211
|
2585
|
Chris@211
|
2586 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@211
|
2587
|
Chris@211
|
2588 Layer *layer = pane->getLayer(j);
|
Chris@211
|
2589 if (!dynamic_cast<TimeRulerLayer *>(layer)) continue;
|
Chris@211
|
2590
|
Chris@211
|
2591 haveRulers = true;
|
Chris@211
|
2592 if (layer->isLayerDormant(pane)) someHidden = true;
|
Chris@211
|
2593 }
|
Chris@211
|
2594 }
|
Chris@211
|
2595
|
Chris@211
|
2596 if (haveRulers) {
|
Chris@211
|
2597
|
Chris@211
|
2598 bool show = someHidden;
|
Chris@211
|
2599
|
Chris@211
|
2600 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@211
|
2601
|
Chris@211
|
2602 Pane *pane = m_paneStack->getPane(i);
|
Chris@211
|
2603 if (!pane) continue;
|
Chris@211
|
2604
|
Chris@211
|
2605 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@211
|
2606
|
Chris@211
|
2607 Layer *layer = pane->getLayer(j);
|
Chris@211
|
2608 if (!dynamic_cast<TimeRulerLayer *>(layer)) continue;
|
Chris@211
|
2609
|
Chris@211
|
2610 layer->showLayer(pane, show);
|
Chris@211
|
2611 }
|
Chris@211
|
2612 }
|
Chris@211
|
2613 }
|
Chris@211
|
2614 }
|
Chris@211
|
2615
|
Chris@211
|
2616 void
|
Chris@45
|
2617 MainWindowBase::toggleZoomWheels()
|
Chris@45
|
2618 {
|
Chris@45
|
2619 if (m_viewManager->getZoomWheelsEnabled()) {
|
Chris@45
|
2620 m_viewManager->setZoomWheelsEnabled(false);
|
Chris@45
|
2621 } else {
|
Chris@45
|
2622 m_viewManager->setZoomWheelsEnabled(true);
|
Chris@45
|
2623 }
|
Chris@45
|
2624 }
|
Chris@45
|
2625
|
Chris@45
|
2626 void
|
Chris@45
|
2627 MainWindowBase::togglePropertyBoxes()
|
Chris@45
|
2628 {
|
Chris@45
|
2629 if (m_paneStack->getLayoutStyle() == PaneStack::NoPropertyStacks) {
|
Chris@45
|
2630 if (Preferences::getInstance()->getPropertyBoxLayout() ==
|
Chris@45
|
2631 Preferences::VerticallyStacked) {
|
Chris@45
|
2632 m_paneStack->setLayoutStyle(PaneStack::PropertyStackPerPaneLayout);
|
Chris@45
|
2633 } else {
|
Chris@45
|
2634 m_paneStack->setLayoutStyle(PaneStack::SinglePropertyStackLayout);
|
Chris@45
|
2635 }
|
Chris@45
|
2636 } else {
|
Chris@45
|
2637 m_paneStack->setLayoutStyle(PaneStack::NoPropertyStacks);
|
Chris@45
|
2638 }
|
Chris@45
|
2639 }
|
Chris@45
|
2640
|
Chris@378
|
2641 QLabel *
|
Chris@378
|
2642 MainWindowBase::getStatusLabel() const
|
Chris@378
|
2643 {
|
Chris@378
|
2644 if (!m_statusLabel) {
|
Chris@378
|
2645 m_statusLabel = new QLabel();
|
Chris@378
|
2646 statusBar()->addWidget(m_statusLabel, 1);
|
Chris@378
|
2647 }
|
Chris@379
|
2648
|
Chris@379
|
2649 QList<QFrame *> frames = statusBar()->findChildren<QFrame *>();
|
Chris@379
|
2650 foreach (QFrame *f, frames) {
|
Chris@379
|
2651 f->setFrameStyle(QFrame::NoFrame);
|
Chris@379
|
2652 }
|
Chris@379
|
2653
|
Chris@378
|
2654 return m_statusLabel;
|
Chris@378
|
2655 }
|
Chris@378
|
2656
|
Chris@45
|
2657 void
|
Chris@45
|
2658 MainWindowBase::toggleStatusBar()
|
Chris@45
|
2659 {
|
Chris@45
|
2660 QSettings settings;
|
Chris@45
|
2661 settings.beginGroup("MainWindow");
|
Chris@45
|
2662 bool sb = settings.value("showstatusbar", true).toBool();
|
Chris@45
|
2663
|
Chris@45
|
2664 if (sb) {
|
Chris@45
|
2665 statusBar()->hide();
|
Chris@45
|
2666 } else {
|
Chris@45
|
2667 statusBar()->show();
|
Chris@45
|
2668 }
|
Chris@45
|
2669
|
Chris@45
|
2670 settings.setValue("showstatusbar", !sb);
|
Chris@45
|
2671
|
Chris@45
|
2672 settings.endGroup();
|
Chris@45
|
2673 }
|
Chris@45
|
2674
|
Chris@45
|
2675 void
|
Chris@256
|
2676 MainWindowBase::toggleCentreLine()
|
Chris@256
|
2677 {
|
Chris@256
|
2678 if (m_viewManager->shouldShowCentreLine()) {
|
Chris@256
|
2679 m_viewManager->setShowCentreLine(false);
|
Chris@256
|
2680 } else {
|
Chris@256
|
2681 m_viewManager->setShowCentreLine(true);
|
Chris@256
|
2682 }
|
Chris@256
|
2683 }
|
Chris@256
|
2684
|
Chris@256
|
2685 void
|
Chris@45
|
2686 MainWindowBase::preferenceChanged(PropertyContainer::PropertyName name)
|
Chris@45
|
2687 {
|
Chris@45
|
2688 if (name == "Property Box Layout") {
|
Chris@45
|
2689 if (m_paneStack->getLayoutStyle() != PaneStack::NoPropertyStacks) {
|
Chris@45
|
2690 if (Preferences::getInstance()->getPropertyBoxLayout() ==
|
Chris@45
|
2691 Preferences::VerticallyStacked) {
|
Chris@45
|
2692 m_paneStack->setLayoutStyle(PaneStack::PropertyStackPerPaneLayout);
|
Chris@45
|
2693 } else {
|
Chris@45
|
2694 m_paneStack->setLayoutStyle(PaneStack::SinglePropertyStackLayout);
|
Chris@45
|
2695 }
|
Chris@45
|
2696 }
|
Chris@45
|
2697 } else if (name == "Background Mode" && m_viewManager) {
|
Chris@45
|
2698 Preferences::BackgroundMode mode =
|
Chris@45
|
2699 Preferences::getInstance()->getBackgroundMode();
|
Chris@45
|
2700 if (mode == Preferences::BackgroundFromTheme) {
|
Chris@45
|
2701 m_viewManager->setGlobalDarkBackground(m_initialDarkBackground);
|
Chris@45
|
2702 } else if (mode == Preferences::DarkBackground) {
|
Chris@45
|
2703 m_viewManager->setGlobalDarkBackground(true);
|
Chris@45
|
2704 } else {
|
Chris@45
|
2705 m_viewManager->setGlobalDarkBackground(false);
|
Chris@45
|
2706 }
|
Chris@45
|
2707 }
|
Chris@45
|
2708 }
|
Chris@45
|
2709
|
Chris@45
|
2710 void
|
Chris@45
|
2711 MainWindowBase::play()
|
Chris@45
|
2712 {
|
Chris@516
|
2713 if ((m_recordTarget && m_recordTarget->isRecording()) ||
|
Chris@516
|
2714 (m_playSource && m_playSource->isPlaying())) {
|
Chris@45
|
2715 stop();
|
Chris@479
|
2716 QAction *action = qobject_cast<QAction *>(sender());
|
Chris@479
|
2717 if (action) action->setChecked(false);
|
Chris@45
|
2718 } else {
|
Chris@487
|
2719 if (m_audioIO) m_audioIO->resume();
|
Chris@509
|
2720 else if (m_playTarget) m_playTarget->resume();
|
Chris@45
|
2721 playbackFrameChanged(m_viewManager->getPlaybackFrame());
|
Chris@45
|
2722 m_playSource->play(m_viewManager->getPlaybackFrame());
|
Chris@45
|
2723 }
|
Chris@45
|
2724 }
|
Chris@45
|
2725
|
Chris@45
|
2726 void
|
Chris@477
|
2727 MainWindowBase::record()
|
Chris@477
|
2728 {
|
Chris@478
|
2729 if (!(m_soundOptions & WithAudioInput)) {
|
Chris@478
|
2730 return;
|
Chris@478
|
2731 }
|
Chris@478
|
2732
|
Chris@477
|
2733 if (!m_recordTarget) {
|
Chris@477
|
2734 //!!! report
|
Chris@477
|
2735 return;
|
Chris@477
|
2736 }
|
Chris@477
|
2737
|
Chris@478
|
2738 if (!m_audioIO) {
|
Chris@478
|
2739 createAudioIO();
|
Chris@478
|
2740 }
|
Chris@492
|
2741
|
Chris@492
|
2742 if (!m_audioIO) {
|
Chris@492
|
2743 //!!! report
|
Chris@492
|
2744 return;
|
Chris@492
|
2745 }
|
Chris@478
|
2746
|
Chris@477
|
2747 if (m_recordTarget->isRecording()) {
|
Chris@492
|
2748 stop();
|
Chris@477
|
2749 return;
|
Chris@477
|
2750 }
|
Chris@477
|
2751
|
Chris@490
|
2752 QAction *action = qobject_cast<QAction *>(sender());
|
Chris@490
|
2753
|
Chris@483
|
2754 if (m_audioRecordMode == RecordReplaceSession) {
|
Chris@490
|
2755 if (!checkSaveModified()) {
|
Chris@490
|
2756 if (action) action->setChecked(false);
|
Chris@490
|
2757 return;
|
Chris@490
|
2758 }
|
Chris@483
|
2759 }
|
Chris@487
|
2760
|
Chris@492
|
2761 m_audioIO->resume();
|
Chris@509
|
2762
|
Chris@477
|
2763 WritableWaveFileModel *model = m_recordTarget->startRecording();
|
Chris@477
|
2764 if (!model) {
|
Chris@477
|
2765 cerr << "ERROR: MainWindowBase::record: Recording failed" << endl;
|
Chris@477
|
2766 //!!! report
|
Chris@490
|
2767 if (action) action->setChecked(false);
|
Chris@477
|
2768 return;
|
Chris@477
|
2769 }
|
Chris@477
|
2770
|
Chris@477
|
2771 if (!model->isOK()) {
|
Chris@477
|
2772 m_recordTarget->stopRecording();
|
Chris@492
|
2773 m_audioIO->suspend();
|
Chris@477
|
2774 delete model;
|
Chris@477
|
2775 return;
|
Chris@477
|
2776 }
|
Chris@487
|
2777
|
Chris@478
|
2778 PlayParameterRepository::getInstance()->addPlayable(model);
|
Chris@483
|
2779
|
Chris@483
|
2780 if (m_audioRecordMode == RecordReplaceSession || !getMainModel()) {
|
Chris@478
|
2781
|
Chris@479
|
2782 //!!! duplication with openAudio here
|
Chris@479
|
2783
|
Chris@479
|
2784 QString templateName = getDefaultSessionTemplate();
|
Chris@479
|
2785 bool loadedTemplate = false;
|
Chris@479
|
2786
|
Chris@479
|
2787 if (templateName != "") {
|
Chris@479
|
2788 FileOpenStatus tplStatus = openSessionTemplate(templateName);
|
Chris@479
|
2789 if (tplStatus == FileOpenCancelled) {
|
Chris@490
|
2790 m_recordTarget->stopRecording();
|
Chris@492
|
2791 m_audioIO->suspend();
|
Chris@490
|
2792 PlayParameterRepository::getInstance()->removePlayable(model);
|
Chris@479
|
2793 return;
|
Chris@479
|
2794 }
|
Chris@479
|
2795 if (tplStatus != FileOpenFailed) {
|
Chris@479
|
2796 loadedTemplate = true;
|
Chris@479
|
2797 }
|
Chris@479
|
2798 }
|
Chris@479
|
2799
|
Chris@479
|
2800 if (!loadedTemplate) {
|
Chris@479
|
2801 closeSession();
|
Chris@479
|
2802 createDocument();
|
Chris@479
|
2803 }
|
Chris@479
|
2804
|
Chris@479
|
2805 Model *prevMain = getMainModel();
|
Chris@479
|
2806 if (prevMain) {
|
Chris@479
|
2807 m_playSource->removeModel(prevMain);
|
Chris@479
|
2808 PlayParameterRepository::getInstance()->removePlayable(prevMain);
|
Chris@479
|
2809 }
|
Chris@479
|
2810
|
Chris@478
|
2811 m_document->setMainModel(model);
|
Chris@478
|
2812 setupMenus();
|
Chris@478
|
2813
|
Chris@479
|
2814 if (loadedTemplate || (m_sessionFile == "")) {
|
Chris@479
|
2815 //!!! shouldn't be dealing directly with title from here -- call a method
|
Chris@479
|
2816 setWindowTitle(tr("%1: %2")
|
Chris@479
|
2817 .arg(QApplication::applicationName())
|
Chris@479
|
2818 .arg(model->getLocation()));
|
Chris@479
|
2819 CommandHistory::getInstance()->clear();
|
Chris@479
|
2820 CommandHistory::getInstance()->documentSaved();
|
Chris@479
|
2821 m_documentModified = false;
|
Chris@479
|
2822 } else {
|
Chris@479
|
2823 setWindowTitle(tr("%1: %2 [%3]")
|
Chris@479
|
2824 .arg(QApplication::applicationName())
|
Chris@479
|
2825 .arg(QFileInfo(m_sessionFile).fileName())
|
Chris@479
|
2826 .arg(model->getLocation()));
|
Chris@479
|
2827 if (m_documentModified) {
|
Chris@479
|
2828 m_documentModified = false;
|
Chris@479
|
2829 documentModified(); // so as to restore "(modified)" window title
|
Chris@479
|
2830 }
|
Chris@479
|
2831 }
|
Chris@479
|
2832
|
Chris@478
|
2833 } else {
|
Chris@478
|
2834
|
Chris@478
|
2835 CommandHistory::getInstance()->startCompoundOperation
|
Chris@478
|
2836 (tr("Import Recorded Audio"), true);
|
Chris@478
|
2837
|
Chris@478
|
2838 m_document->addImportedModel(model);
|
Chris@478
|
2839
|
Chris@478
|
2840 AddPaneCommand *command = new AddPaneCommand(this);
|
Chris@478
|
2841 CommandHistory::getInstance()->addCommand(command);
|
Chris@478
|
2842
|
Chris@478
|
2843 Pane *pane = command->getPane();
|
Chris@478
|
2844
|
Chris@478
|
2845 if (m_timeRulerLayer) {
|
Chris@478
|
2846 m_document->addLayerToView(pane, m_timeRulerLayer);
|
Chris@478
|
2847 }
|
Chris@478
|
2848
|
Chris@478
|
2849 Layer *newLayer = m_document->createImportedLayer(model);
|
Chris@478
|
2850
|
Chris@478
|
2851 if (newLayer) {
|
Chris@478
|
2852 m_document->addLayerToView(pane, newLayer);
|
Chris@478
|
2853 }
|
Chris@478
|
2854
|
Chris@478
|
2855 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@477
|
2856 }
|
Chris@479
|
2857
|
Chris@479
|
2858 updateMenuStates();
|
Chris@479
|
2859 m_recentFiles.addFile(model->getLocation());
|
Chris@479
|
2860 currentPaneChanged(m_paneStack->getCurrentPane());
|
Chris@496
|
2861
|
Chris@496
|
2862 emit audioFileLoaded();
|
Chris@477
|
2863 }
|
Chris@477
|
2864
|
Chris@477
|
2865 void
|
Chris@45
|
2866 MainWindowBase::ffwd()
|
Chris@45
|
2867 {
|
Chris@45
|
2868 if (!getMainModel()) return;
|
Chris@45
|
2869
|
Chris@435
|
2870 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
Chris@45
|
2871 ++frame;
|
Chris@45
|
2872
|
Chris@85
|
2873 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2874 Layer *layer = getSnapLayer();
|
Chris@435
|
2875 sv_samplerate_t sr = getMainModel()->getSampleRate();
|
Chris@45
|
2876
|
Chris@45
|
2877 if (!layer) {
|
Chris@45
|
2878
|
Chris@45
|
2879 frame = RealTime::realTime2Frame
|
Chris@357
|
2880 (RealTime::frame2RealTime(frame, sr) + m_defaultFfwdRwdStep, sr);
|
Chris@435
|
2881 if (frame > getMainModel()->getEndFrame()) {
|
Chris@45
|
2882 frame = getMainModel()->getEndFrame();
|
Chris@45
|
2883 }
|
Chris@45
|
2884
|
Chris@45
|
2885 } else {
|
Chris@45
|
2886
|
Chris@366
|
2887 int resolution = 0;
|
Chris@166
|
2888 if (pane) frame = pane->alignFromReference(frame);
|
Chris@85
|
2889 if (layer->snapToFeatureFrame(m_paneStack->getCurrentPane(),
|
Chris@85
|
2890 frame, resolution, Layer::SnapRight)) {
|
Chris@85
|
2891 if (pane) frame = pane->alignToReference(frame);
|
Chris@85
|
2892 } else {
|
Chris@45
|
2893 frame = getMainModel()->getEndFrame();
|
Chris@45
|
2894 }
|
Chris@45
|
2895 }
|
Chris@45
|
2896
|
Chris@45
|
2897 if (frame < 0) frame = 0;
|
Chris@45
|
2898
|
Chris@45
|
2899 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@435
|
2900 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
2901 }
|
Chris@45
|
2902
|
Chris@45
|
2903 m_viewManager->setPlaybackFrame(frame);
|
Chris@166
|
2904
|
Chris@435
|
2905 if (frame == getMainModel()->getEndFrame() &&
|
Chris@166
|
2906 m_playSource &&
|
Chris@166
|
2907 m_playSource->isPlaying() &&
|
Chris@166
|
2908 !m_viewManager->getPlayLoopMode()) {
|
Chris@166
|
2909 stop();
|
Chris@166
|
2910 }
|
Chris@45
|
2911 }
|
Chris@45
|
2912
|
Chris@45
|
2913 void
|
Chris@45
|
2914 MainWindowBase::ffwdEnd()
|
Chris@45
|
2915 {
|
Chris@45
|
2916 if (!getMainModel()) return;
|
Chris@45
|
2917
|
Chris@139
|
2918 if (m_playSource &&
|
Chris@139
|
2919 m_playSource->isPlaying() &&
|
Chris@139
|
2920 !m_viewManager->getPlayLoopMode()) {
|
Chris@139
|
2921 stop();
|
Chris@139
|
2922 }
|
Chris@139
|
2923
|
Chris@435
|
2924 sv_frame_t frame = getMainModel()->getEndFrame();
|
Chris@45
|
2925
|
Chris@45
|
2926 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@45
|
2927 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
2928 }
|
Chris@45
|
2929
|
Chris@45
|
2930 m_viewManager->setPlaybackFrame(frame);
|
Chris@45
|
2931 }
|
Chris@45
|
2932
|
Chris@45
|
2933 void
|
Chris@166
|
2934 MainWindowBase::ffwdSimilar()
|
Chris@166
|
2935 {
|
Chris@166
|
2936 if (!getMainModel()) return;
|
Chris@166
|
2937
|
Chris@166
|
2938 Layer *layer = getSnapLayer();
|
Chris@166
|
2939 if (!layer) { ffwd(); return; }
|
Chris@166
|
2940
|
Chris@166
|
2941 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@435
|
2942 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
Chris@166
|
2943
|
Chris@366
|
2944 int resolution = 0;
|
Chris@166
|
2945 if (pane) frame = pane->alignFromReference(frame);
|
Chris@166
|
2946 if (layer->snapToSimilarFeature(m_paneStack->getCurrentPane(),
|
Chris@166
|
2947 frame, resolution, Layer::SnapRight)) {
|
Chris@166
|
2948 if (pane) frame = pane->alignToReference(frame);
|
Chris@166
|
2949 } else {
|
Chris@166
|
2950 frame = getMainModel()->getEndFrame();
|
Chris@166
|
2951 }
|
Chris@166
|
2952
|
Chris@166
|
2953 if (frame < 0) frame = 0;
|
Chris@166
|
2954
|
Chris@166
|
2955 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@435
|
2956 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@166
|
2957 }
|
Chris@166
|
2958
|
Chris@166
|
2959 m_viewManager->setPlaybackFrame(frame);
|
Chris@166
|
2960
|
Chris@435
|
2961 if (frame == getMainModel()->getEndFrame() &&
|
Chris@166
|
2962 m_playSource &&
|
Chris@166
|
2963 m_playSource->isPlaying() &&
|
Chris@166
|
2964 !m_viewManager->getPlayLoopMode()) {
|
Chris@166
|
2965 stop();
|
Chris@166
|
2966 }
|
Chris@166
|
2967 }
|
Chris@166
|
2968
|
Chris@166
|
2969 void
|
Chris@45
|
2970 MainWindowBase::rewind()
|
Chris@45
|
2971 {
|
Chris@45
|
2972 if (!getMainModel()) return;
|
Chris@45
|
2973
|
Chris@435
|
2974 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
Chris@45
|
2975 if (frame > 0) --frame;
|
Chris@45
|
2976
|
Chris@85
|
2977 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2978 Layer *layer = getSnapLayer();
|
Chris@435
|
2979 sv_samplerate_t sr = getMainModel()->getSampleRate();
|
Chris@45
|
2980
|
Chris@45
|
2981 // when rewinding during playback, we want to allow a period
|
Chris@45
|
2982 // following a rewind target point at which the rewind will go to
|
Chris@45
|
2983 // the prior point instead of the immediately neighbouring one
|
Chris@45
|
2984 if (m_playSource && m_playSource->isPlaying()) {
|
Chris@45
|
2985 RealTime ct = RealTime::frame2RealTime(frame, sr);
|
Chris@357
|
2986 ct = ct - RealTime::fromSeconds(0.15);
|
Chris@45
|
2987 if (ct < RealTime::zeroTime) ct = RealTime::zeroTime;
|
Chris@45
|
2988 frame = RealTime::realTime2Frame(ct, sr);
|
Chris@45
|
2989 }
|
Chris@45
|
2990
|
Chris@45
|
2991 if (!layer) {
|
Chris@45
|
2992
|
Chris@45
|
2993 frame = RealTime::realTime2Frame
|
Chris@357
|
2994 (RealTime::frame2RealTime(frame, sr) - m_defaultFfwdRwdStep, sr);
|
Chris@435
|
2995 if (frame < getMainModel()->getStartFrame()) {
|
Chris@45
|
2996 frame = getMainModel()->getStartFrame();
|
Chris@45
|
2997 }
|
Chris@45
|
2998
|
Chris@45
|
2999 } else {
|
Chris@45
|
3000
|
Chris@366
|
3001 int resolution = 0;
|
Chris@166
|
3002 if (pane) frame = pane->alignFromReference(frame);
|
Chris@85
|
3003 if (layer->snapToFeatureFrame(m_paneStack->getCurrentPane(),
|
Chris@85
|
3004 frame, resolution, Layer::SnapLeft)) {
|
Chris@85
|
3005 if (pane) frame = pane->alignToReference(frame);
|
Chris@85
|
3006 } else {
|
Chris@45
|
3007 frame = getMainModel()->getStartFrame();
|
Chris@45
|
3008 }
|
Chris@45
|
3009 }
|
Chris@45
|
3010
|
Chris@45
|
3011 if (frame < 0) frame = 0;
|
Chris@45
|
3012
|
Chris@45
|
3013 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@435
|
3014 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
3015 }
|
Chris@45
|
3016
|
Chris@45
|
3017 m_viewManager->setPlaybackFrame(frame);
|
Chris@45
|
3018 }
|
Chris@45
|
3019
|
Chris@45
|
3020 void
|
Chris@45
|
3021 MainWindowBase::rewindStart()
|
Chris@45
|
3022 {
|
Chris@45
|
3023 if (!getMainModel()) return;
|
Chris@45
|
3024
|
Chris@435
|
3025 sv_frame_t frame = getMainModel()->getStartFrame();
|
Chris@45
|
3026
|
Chris@45
|
3027 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@45
|
3028 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
3029 }
|
Chris@45
|
3030
|
Chris@45
|
3031 m_viewManager->setPlaybackFrame(frame);
|
Chris@45
|
3032 }
|
Chris@45
|
3033
|
Chris@166
|
3034 void
|
Chris@166
|
3035 MainWindowBase::rewindSimilar()
|
Chris@166
|
3036 {
|
Chris@166
|
3037 if (!getMainModel()) return;
|
Chris@166
|
3038
|
Chris@166
|
3039 Layer *layer = getSnapLayer();
|
Chris@166
|
3040 if (!layer) { rewind(); return; }
|
Chris@166
|
3041
|
Chris@166
|
3042 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@435
|
3043 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
Chris@166
|
3044
|
Chris@366
|
3045 int resolution = 0;
|
Chris@166
|
3046 if (pane) frame = pane->alignFromReference(frame);
|
Chris@166
|
3047 if (layer->snapToSimilarFeature(m_paneStack->getCurrentPane(),
|
Chris@166
|
3048 frame, resolution, Layer::SnapLeft)) {
|
Chris@166
|
3049 if (pane) frame = pane->alignToReference(frame);
|
Chris@166
|
3050 } else {
|
Chris@166
|
3051 frame = getMainModel()->getStartFrame();
|
Chris@166
|
3052 }
|
Chris@166
|
3053
|
Chris@166
|
3054 if (frame < 0) frame = 0;
|
Chris@166
|
3055
|
Chris@166
|
3056 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@435
|
3057 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@166
|
3058 }
|
Chris@166
|
3059
|
Chris@166
|
3060 m_viewManager->setPlaybackFrame(frame);
|
Chris@166
|
3061 }
|
Chris@166
|
3062
|
Chris@45
|
3063 Layer *
|
Chris@45
|
3064 MainWindowBase::getSnapLayer() const
|
Chris@45
|
3065 {
|
Chris@45
|
3066 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
3067 if (!pane) return 0;
|
Chris@45
|
3068
|
Chris@45
|
3069 Layer *layer = pane->getSelectedLayer();
|
Chris@45
|
3070
|
Chris@45
|
3071 if (!dynamic_cast<TimeInstantLayer *>(layer) &&
|
Chris@45
|
3072 !dynamic_cast<TimeValueLayer *>(layer) &&
|
Chris@194
|
3073 !dynamic_cast<RegionLayer *>(layer) &&
|
Chris@45
|
3074 !dynamic_cast<TimeRulerLayer *>(layer)) {
|
Chris@45
|
3075
|
Chris@45
|
3076 layer = 0;
|
Chris@45
|
3077
|
Chris@45
|
3078 for (int i = pane->getLayerCount(); i > 0; --i) {
|
Chris@45
|
3079 Layer *l = pane->getLayer(i-1);
|
Chris@45
|
3080 if (dynamic_cast<TimeRulerLayer *>(l)) {
|
Chris@45
|
3081 layer = l;
|
Chris@45
|
3082 break;
|
Chris@45
|
3083 }
|
Chris@45
|
3084 }
|
Chris@45
|
3085 }
|
Chris@45
|
3086
|
Chris@45
|
3087 return layer;
|
Chris@45
|
3088 }
|
Chris@45
|
3089
|
Chris@45
|
3090 void
|
Chris@45
|
3091 MainWindowBase::stop()
|
Chris@45
|
3092 {
|
Chris@516
|
3093 if (m_recordTarget &&
|
Chris@516
|
3094 m_recordTarget->isRecording()) {
|
Chris@477
|
3095 m_recordTarget->stopRecording();
|
Chris@477
|
3096 }
|
Chris@516
|
3097
|
Chris@516
|
3098 if (!m_playSource) return;
|
Chris@516
|
3099
|
Chris@45
|
3100 m_playSource->stop();
|
Chris@45
|
3101
|
Chris@487
|
3102 if (m_audioIO) m_audioIO->suspend();
|
Chris@509
|
3103 else if (m_playTarget) m_playTarget->suspend();
|
Chris@487
|
3104
|
Chris@45
|
3105 if (m_paneStack && m_paneStack->getCurrentPane()) {
|
Chris@45
|
3106 updateVisibleRangeDisplay(m_paneStack->getCurrentPane());
|
Chris@45
|
3107 } else {
|
Chris@45
|
3108 m_myStatusMessage = "";
|
Chris@378
|
3109 getStatusLabel()->setText("");
|
Chris@45
|
3110 }
|
Chris@45
|
3111 }
|
Chris@45
|
3112
|
Chris@45
|
3113 MainWindowBase::AddPaneCommand::AddPaneCommand(MainWindowBase *mw) :
|
Chris@45
|
3114 m_mw(mw),
|
Chris@45
|
3115 m_pane(0),
|
Chris@45
|
3116 m_prevCurrentPane(0),
|
Chris@45
|
3117 m_added(false)
|
Chris@45
|
3118 {
|
Chris@45
|
3119 }
|
Chris@45
|
3120
|
Chris@45
|
3121 MainWindowBase::AddPaneCommand::~AddPaneCommand()
|
Chris@45
|
3122 {
|
Chris@45
|
3123 if (m_pane && !m_added) {
|
Chris@45
|
3124 m_mw->m_paneStack->deletePane(m_pane);
|
Chris@45
|
3125 }
|
Chris@45
|
3126 }
|
Chris@45
|
3127
|
Chris@45
|
3128 QString
|
Chris@45
|
3129 MainWindowBase::AddPaneCommand::getName() const
|
Chris@45
|
3130 {
|
Chris@45
|
3131 return tr("Add Pane");
|
Chris@45
|
3132 }
|
Chris@45
|
3133
|
Chris@45
|
3134 void
|
Chris@45
|
3135 MainWindowBase::AddPaneCommand::execute()
|
Chris@45
|
3136 {
|
Chris@45
|
3137 if (!m_pane) {
|
Chris@45
|
3138 m_prevCurrentPane = m_mw->m_paneStack->getCurrentPane();
|
Chris@45
|
3139 m_pane = m_mw->m_paneStack->addPane();
|
Chris@45
|
3140
|
Chris@45
|
3141 connect(m_pane, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@45
|
3142 m_mw, SLOT(contextHelpChanged(const QString &)));
|
Chris@45
|
3143 } else {
|
Chris@45
|
3144 m_mw->m_paneStack->showPane(m_pane);
|
Chris@45
|
3145 }
|
Chris@45
|
3146
|
Chris@45
|
3147 m_mw->m_paneStack->setCurrentPane(m_pane);
|
Chris@45
|
3148 m_added = true;
|
Chris@45
|
3149 }
|
Chris@45
|
3150
|
Chris@45
|
3151 void
|
Chris@45
|
3152 MainWindowBase::AddPaneCommand::unexecute()
|
Chris@45
|
3153 {
|
Chris@45
|
3154 m_mw->m_paneStack->hidePane(m_pane);
|
Chris@45
|
3155 m_mw->m_paneStack->setCurrentPane(m_prevCurrentPane);
|
Chris@45
|
3156 m_added = false;
|
Chris@45
|
3157 }
|
Chris@45
|
3158
|
Chris@45
|
3159 MainWindowBase::RemovePaneCommand::RemovePaneCommand(MainWindowBase *mw, Pane *pane) :
|
Chris@45
|
3160 m_mw(mw),
|
Chris@45
|
3161 m_pane(pane),
|
Chris@409
|
3162 m_prevCurrentPane(0),
|
Chris@45
|
3163 m_added(true)
|
Chris@45
|
3164 {
|
Chris@45
|
3165 }
|
Chris@45
|
3166
|
Chris@45
|
3167 MainWindowBase::RemovePaneCommand::~RemovePaneCommand()
|
Chris@45
|
3168 {
|
Chris@45
|
3169 if (m_pane && !m_added) {
|
Chris@45
|
3170 m_mw->m_paneStack->deletePane(m_pane);
|
Chris@45
|
3171 }
|
Chris@45
|
3172 }
|
Chris@45
|
3173
|
Chris@45
|
3174 QString
|
Chris@45
|
3175 MainWindowBase::RemovePaneCommand::getName() const
|
Chris@45
|
3176 {
|
Chris@45
|
3177 return tr("Remove Pane");
|
Chris@45
|
3178 }
|
Chris@45
|
3179
|
Chris@45
|
3180 void
|
Chris@45
|
3181 MainWindowBase::RemovePaneCommand::execute()
|
Chris@45
|
3182 {
|
Chris@45
|
3183 m_prevCurrentPane = m_mw->m_paneStack->getCurrentPane();
|
Chris@45
|
3184 m_mw->m_paneStack->hidePane(m_pane);
|
Chris@45
|
3185 m_added = false;
|
Chris@45
|
3186 }
|
Chris@45
|
3187
|
Chris@45
|
3188 void
|
Chris@45
|
3189 MainWindowBase::RemovePaneCommand::unexecute()
|
Chris@45
|
3190 {
|
Chris@45
|
3191 m_mw->m_paneStack->showPane(m_pane);
|
Chris@45
|
3192 m_mw->m_paneStack->setCurrentPane(m_prevCurrentPane);
|
Chris@45
|
3193 m_added = true;
|
Chris@45
|
3194 }
|
Chris@45
|
3195
|
Chris@45
|
3196 void
|
Chris@45
|
3197 MainWindowBase::deleteCurrentPane()
|
Chris@45
|
3198 {
|
Chris@45
|
3199 CommandHistory::getInstance()->startCompoundOperation
|
Chris@45
|
3200 (tr("Delete Pane"), true);
|
Chris@45
|
3201
|
Chris@45
|
3202 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
3203 if (pane) {
|
Chris@45
|
3204 while (pane->getLayerCount() > 0) {
|
Chris@45
|
3205 Layer *layer = pane->getLayer(0);
|
Chris@45
|
3206 if (layer) {
|
Chris@45
|
3207 m_document->removeLayerFromView(pane, layer);
|
Chris@45
|
3208 } else {
|
Chris@45
|
3209 break;
|
Chris@45
|
3210 }
|
Chris@45
|
3211 }
|
Chris@45
|
3212
|
Chris@45
|
3213 RemovePaneCommand *command = new RemovePaneCommand(this, pane);
|
Chris@45
|
3214 CommandHistory::getInstance()->addCommand(command);
|
Chris@45
|
3215 }
|
Chris@45
|
3216
|
Chris@45
|
3217 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@45
|
3218
|
Chris@45
|
3219 updateMenuStates();
|
Chris@45
|
3220 }
|
Chris@45
|
3221
|
Chris@45
|
3222 void
|
Chris@45
|
3223 MainWindowBase::deleteCurrentLayer()
|
Chris@45
|
3224 {
|
Chris@45
|
3225 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
3226 if (pane) {
|
Chris@45
|
3227 Layer *layer = pane->getSelectedLayer();
|
Chris@45
|
3228 if (layer) {
|
Chris@45
|
3229 m_document->removeLayerFromView(pane, layer);
|
Chris@45
|
3230 }
|
Chris@45
|
3231 }
|
Chris@45
|
3232 updateMenuStates();
|
Chris@45
|
3233 }
|
Chris@45
|
3234
|
Chris@45
|
3235 void
|
Chris@123
|
3236 MainWindowBase::editCurrentLayer()
|
Chris@123
|
3237 {
|
Chris@123
|
3238 Layer *layer = 0;
|
Chris@123
|
3239 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@123
|
3240 if (pane) layer = pane->getSelectedLayer();
|
Chris@123
|
3241 if (!layer) return;
|
Chris@123
|
3242
|
Chris@123
|
3243 Model *model = layer->getModel();
|
Chris@123
|
3244 if (!model) return;
|
Chris@123
|
3245
|
Chris@124
|
3246 TabularModel *tabular = dynamic_cast<TabularModel *>(model);
|
Chris@124
|
3247 if (!tabular) {
|
Chris@124
|
3248 //!!! how to prevent this function from being active if not
|
Chris@124
|
3249 //appropriate model type? or will we ultimately support
|
Chris@124
|
3250 //tabular display for all editable models?
|
Chris@233
|
3251 SVDEBUG << "NOTE: Not a tabular model" << endl;
|
Chris@124
|
3252 return;
|
Chris@124
|
3253 }
|
Chris@124
|
3254
|
Chris@123
|
3255 if (m_layerDataDialogMap.find(layer) != m_layerDataDialogMap.end()) {
|
Chris@126
|
3256 if (!m_layerDataDialogMap[layer].isNull()) {
|
Chris@126
|
3257 m_layerDataDialogMap[layer]->show();
|
Chris@126
|
3258 m_layerDataDialogMap[layer]->raise();
|
Chris@126
|
3259 return;
|
Chris@126
|
3260 }
|
Chris@123
|
3261 }
|
Chris@123
|
3262
|
Chris@125
|
3263 QString title = layer->getLayerPresentationName();
|
Chris@125
|
3264
|
Chris@125
|
3265 ModelDataTableDialog *dialog = new ModelDataTableDialog(tabular, title, this);
|
Chris@128
|
3266 dialog->setAttribute(Qt::WA_DeleteOnClose);
|
Chris@128
|
3267
|
Chris@128
|
3268 connectLayerEditDialog(dialog);
|
Chris@123
|
3269
|
Chris@128
|
3270 m_layerDataDialogMap[layer] = dialog;
|
Chris@128
|
3271 m_viewDataDialogMap[pane].insert(dialog);
|
Chris@128
|
3272
|
Chris@128
|
3273 dialog->show();
|
Chris@128
|
3274 }
|
Chris@128
|
3275
|
Chris@128
|
3276 void
|
Chris@128
|
3277 MainWindowBase::connectLayerEditDialog(ModelDataTableDialog *dialog)
|
Chris@128
|
3278 {
|
Chris@123
|
3279 connect(m_viewManager,
|
Chris@435
|
3280 SIGNAL(globalCentreFrameChanged(sv_frame_t)),
|
Chris@123
|
3281 dialog,
|
Chris@435
|
3282 SLOT(userScrolledToFrame(sv_frame_t)));
|
Chris@127
|
3283
|
Chris@127
|
3284 connect(m_viewManager,
|
Chris@435
|
3285 SIGNAL(playbackFrameChanged(sv_frame_t)),
|
Chris@127
|
3286 dialog,
|
Chris@435
|
3287 SLOT(playbackScrolledToFrame(sv_frame_t)));
|
Chris@127
|
3288
|
Chris@123
|
3289 connect(dialog,
|
Chris@435
|
3290 SIGNAL(scrollToFrame(sv_frame_t)),
|
Chris@123
|
3291 m_viewManager,
|
Chris@435
|
3292 SLOT(setGlobalCentreFrame(sv_frame_t)));
|
Chris@129
|
3293
|
Chris@129
|
3294 connect(dialog,
|
Chris@435
|
3295 SIGNAL(scrollToFrame(sv_frame_t)),
|
Chris@129
|
3296 m_viewManager,
|
Chris@435
|
3297 SLOT(setPlaybackFrame(sv_frame_t)));
|
Chris@128
|
3298 }
|
Chris@123
|
3299
|
Chris@123
|
3300 void
|
Chris@73
|
3301 MainWindowBase::previousPane()
|
Chris@73
|
3302 {
|
Chris@73
|
3303 if (!m_paneStack) return;
|
Chris@73
|
3304
|
Chris@73
|
3305 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
3306 if (!currentPane) return;
|
Chris@73
|
3307
|
Chris@73
|
3308 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@73
|
3309 if (m_paneStack->getPane(i) == currentPane) {
|
Chris@73
|
3310 if (i == 0) return;
|
Chris@73
|
3311 m_paneStack->setCurrentPane(m_paneStack->getPane(i-1));
|
Chris@73
|
3312 updateMenuStates();
|
Chris@73
|
3313 return;
|
Chris@73
|
3314 }
|
Chris@73
|
3315 }
|
Chris@73
|
3316 }
|
Chris@73
|
3317
|
Chris@73
|
3318 void
|
Chris@73
|
3319 MainWindowBase::nextPane()
|
Chris@73
|
3320 {
|
Chris@73
|
3321 if (!m_paneStack) return;
|
Chris@73
|
3322
|
Chris@73
|
3323 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
3324 if (!currentPane) return;
|
Chris@73
|
3325
|
Chris@73
|
3326 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@73
|
3327 if (m_paneStack->getPane(i) == currentPane) {
|
Chris@73
|
3328 if (i == m_paneStack->getPaneCount()-1) return;
|
Chris@73
|
3329 m_paneStack->setCurrentPane(m_paneStack->getPane(i+1));
|
Chris@73
|
3330 updateMenuStates();
|
Chris@73
|
3331 return;
|
Chris@73
|
3332 }
|
Chris@73
|
3333 }
|
Chris@73
|
3334 }
|
Chris@73
|
3335
|
Chris@73
|
3336 void
|
Chris@73
|
3337 MainWindowBase::previousLayer()
|
Chris@73
|
3338 {
|
Chris@73
|
3339 if (!m_paneStack) return;
|
Chris@73
|
3340
|
Chris@73
|
3341 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
3342 if (!currentPane) return;
|
Chris@73
|
3343
|
Chris@403
|
3344 int count = currentPane->getLayerCount();
|
Chris@403
|
3345 if (count == 0) return;
|
Chris@403
|
3346
|
Chris@73
|
3347 Layer *currentLayer = currentPane->getSelectedLayer();
|
Chris@403
|
3348
|
Chris@403
|
3349 if (!currentLayer) {
|
Chris@403
|
3350 // The pane itself is current
|
Chris@403
|
3351 m_paneStack->setCurrentLayer
|
Chris@403
|
3352 (currentPane, currentPane->getFixedOrderLayer(count-1));
|
Chris@403
|
3353 } else {
|
Chris@403
|
3354 for (int i = 0; i < count; ++i) {
|
Chris@403
|
3355 if (currentPane->getFixedOrderLayer(i) == currentLayer) {
|
Chris@403
|
3356 if (i == 0) {
|
Chris@403
|
3357 m_paneStack->setCurrentLayer
|
Chris@403
|
3358 (currentPane, 0); // pane
|
Chris@403
|
3359 } else {
|
Chris@403
|
3360 m_paneStack->setCurrentLayer
|
Chris@403
|
3361 (currentPane, currentPane->getFixedOrderLayer(i-1));
|
Chris@403
|
3362 }
|
Chris@403
|
3363 break;
|
Chris@403
|
3364 }
|
Chris@73
|
3365 }
|
Chris@73
|
3366 }
|
Chris@403
|
3367
|
Chris@403
|
3368 updateMenuStates();
|
Chris@73
|
3369 }
|
Chris@73
|
3370
|
Chris@73
|
3371 void
|
Chris@73
|
3372 MainWindowBase::nextLayer()
|
Chris@73
|
3373 {
|
Chris@73
|
3374 if (!m_paneStack) return;
|
Chris@73
|
3375
|
Chris@73
|
3376 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
3377 if (!currentPane) return;
|
Chris@73
|
3378
|
Chris@403
|
3379 int count = currentPane->getLayerCount();
|
Chris@403
|
3380 if (count == 0) return;
|
Chris@403
|
3381
|
Chris@73
|
3382 Layer *currentLayer = currentPane->getSelectedLayer();
|
Chris@403
|
3383
|
Chris@403
|
3384 if (!currentLayer) {
|
Chris@403
|
3385 // The pane itself is current
|
Chris@403
|
3386 m_paneStack->setCurrentLayer
|
Chris@403
|
3387 (currentPane, currentPane->getFixedOrderLayer(0));
|
Chris@403
|
3388 } else {
|
Chris@403
|
3389 for (int i = 0; i < count; ++i) {
|
Chris@403
|
3390 if (currentPane->getFixedOrderLayer(i) == currentLayer) {
|
Chris@403
|
3391 if (i == currentPane->getLayerCount()-1) {
|
Chris@403
|
3392 m_paneStack->setCurrentLayer
|
Chris@403
|
3393 (currentPane, 0); // pane
|
Chris@403
|
3394 } else {
|
Chris@403
|
3395 m_paneStack->setCurrentLayer
|
Chris@403
|
3396 (currentPane, currentPane->getFixedOrderLayer(i+1));
|
Chris@403
|
3397 }
|
Chris@403
|
3398 break;
|
Chris@403
|
3399 }
|
Chris@73
|
3400 }
|
Chris@73
|
3401 }
|
Chris@403
|
3402
|
Chris@403
|
3403 updateMenuStates();
|
Chris@73
|
3404 }
|
Chris@73
|
3405
|
Chris@73
|
3406 void
|
Chris@435
|
3407 MainWindowBase::playbackFrameChanged(sv_frame_t frame)
|
Chris@45
|
3408 {
|
Chris@45
|
3409 if (!(m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3410
|
Chris@187
|
3411 updatePositionStatusDisplays();
|
Chris@187
|
3412
|
Chris@45
|
3413 RealTime now = RealTime::frame2RealTime
|
Chris@45
|
3414 (frame, getMainModel()->getSampleRate());
|
Chris@45
|
3415
|
Chris@45
|
3416 if (now.sec == m_lastPlayStatusSec) return;
|
Chris@45
|
3417
|
Chris@45
|
3418 RealTime then = RealTime::frame2RealTime
|
Chris@45
|
3419 (m_playSource->getPlayEndFrame(), getMainModel()->getSampleRate());
|
Chris@45
|
3420
|
Chris@45
|
3421 QString nowStr;
|
Chris@45
|
3422 QString thenStr;
|
Chris@45
|
3423 QString remainingStr;
|
Chris@45
|
3424
|
Chris@45
|
3425 if (then.sec > 10) {
|
Chris@45
|
3426 nowStr = now.toSecText().c_str();
|
Chris@45
|
3427 thenStr = then.toSecText().c_str();
|
Chris@45
|
3428 remainingStr = (then - now).toSecText().c_str();
|
Chris@45
|
3429 m_lastPlayStatusSec = now.sec;
|
Chris@45
|
3430 } else {
|
Chris@45
|
3431 nowStr = now.toText(true).c_str();
|
Chris@45
|
3432 thenStr = then.toText(true).c_str();
|
Chris@45
|
3433 remainingStr = (then - now).toText(true).c_str();
|
Chris@45
|
3434 }
|
Chris@45
|
3435
|
Chris@45
|
3436 m_myStatusMessage = tr("Playing: %1 of %2 (%3 remaining)")
|
Chris@45
|
3437 .arg(nowStr).arg(thenStr).arg(remainingStr);
|
Chris@45
|
3438
|
Chris@378
|
3439 getStatusLabel()->setText(m_myStatusMessage);
|
Chris@45
|
3440 }
|
Chris@45
|
3441
|
Chris@45
|
3442 void
|
Chris@486
|
3443 MainWindowBase::recordDurationChanged(sv_frame_t frame, sv_samplerate_t rate)
|
Chris@486
|
3444 {
|
Chris@486
|
3445 RealTime duration = RealTime::frame2RealTime(frame, rate);
|
Chris@486
|
3446 QString durStr = duration.toSecText().c_str();
|
Chris@486
|
3447
|
Chris@486
|
3448 m_myStatusMessage = tr("Recording: %1").arg(durStr);
|
Chris@486
|
3449
|
Chris@486
|
3450 getStatusLabel()->setText(m_myStatusMessage);
|
Chris@486
|
3451 }
|
Chris@486
|
3452
|
Chris@486
|
3453 void
|
Chris@435
|
3454 MainWindowBase::globalCentreFrameChanged(sv_frame_t )
|
Chris@45
|
3455 {
|
Chris@45
|
3456 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3457 Pane *p = 0;
|
Chris@45
|
3458 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@45
|
3459 if (!p->getFollowGlobalPan()) return;
|
Chris@45
|
3460 updateVisibleRangeDisplay(p);
|
Chris@45
|
3461 }
|
Chris@45
|
3462
|
Chris@45
|
3463 void
|
Chris@435
|
3464 MainWindowBase::viewCentreFrameChanged(View *v, sv_frame_t frame)
|
Chris@45
|
3465 {
|
Chris@233
|
3466 // SVDEBUG << "MainWindowBase::viewCentreFrameChanged(" << v << "," << frame << ")" << endl;
|
Chris@123
|
3467
|
Chris@123
|
3468 if (m_viewDataDialogMap.find(v) != m_viewDataDialogMap.end()) {
|
Chris@123
|
3469 for (DataDialogSet::iterator i = m_viewDataDialogMap[v].begin();
|
Chris@123
|
3470 i != m_viewDataDialogMap[v].end(); ++i) {
|
Chris@127
|
3471 (*i)->userScrolledToFrame(frame);
|
Chris@123
|
3472 }
|
Chris@123
|
3473 }
|
Chris@45
|
3474 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3475 Pane *p = 0;
|
Chris@45
|
3476 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@45
|
3477 if (v == p) updateVisibleRangeDisplay(p);
|
Chris@45
|
3478 }
|
Chris@45
|
3479
|
Chris@45
|
3480 void
|
Chris@366
|
3481 MainWindowBase::viewZoomLevelChanged(View *v, int , bool )
|
Chris@45
|
3482 {
|
Chris@45
|
3483 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3484 Pane *p = 0;
|
Chris@45
|
3485 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@45
|
3486 if (v == p) updateVisibleRangeDisplay(p);
|
Chris@45
|
3487 }
|
Chris@45
|
3488
|
Chris@45
|
3489 void
|
Chris@45
|
3490 MainWindowBase::layerAdded(Layer *)
|
Chris@45
|
3491 {
|
Chris@233
|
3492 // SVDEBUG << "MainWindowBase::layerAdded(" << layer << ")" << endl;
|
Chris@45
|
3493 updateMenuStates();
|
Chris@45
|
3494 }
|
Chris@45
|
3495
|
Chris@45
|
3496 void
|
Chris@45
|
3497 MainWindowBase::layerRemoved(Layer *)
|
Chris@45
|
3498 {
|
Chris@233
|
3499 // SVDEBUG << "MainWindowBase::layerRemoved(" << layer << ")" << endl;
|
Chris@45
|
3500 updateMenuStates();
|
Chris@45
|
3501 }
|
Chris@45
|
3502
|
Chris@45
|
3503 void
|
Chris@45
|
3504 MainWindowBase::layerAboutToBeDeleted(Layer *layer)
|
Chris@45
|
3505 {
|
Chris@233
|
3506 // SVDEBUG << "MainWindowBase::layerAboutToBeDeleted(" << layer << ")" << endl;
|
Chris@123
|
3507
|
Chris@128
|
3508 removeLayerEditDialog(layer);
|
Chris@123
|
3509
|
Chris@47
|
3510 if (m_timeRulerLayer && (layer == m_timeRulerLayer)) {
|
Chris@293
|
3511 // cerr << "(this is the time ruler layer)" << endl;
|
Chris@45
|
3512 m_timeRulerLayer = 0;
|
Chris@45
|
3513 }
|
Chris@45
|
3514 }
|
Chris@45
|
3515
|
Chris@45
|
3516 void
|
Chris@45
|
3517 MainWindowBase::layerInAView(Layer *layer, bool inAView)
|
Chris@45
|
3518 {
|
Chris@233
|
3519 // SVDEBUG << "MainWindowBase::layerInAView(" << layer << "," << inAView << ")" << endl;
|
Chris@128
|
3520
|
Chris@128
|
3521 if (!inAView) removeLayerEditDialog(layer);
|
Chris@45
|
3522
|
Chris@45
|
3523 // Check whether we need to add or remove model from play source
|
Chris@45
|
3524 Model *model = layer->getModel();
|
Chris@45
|
3525 if (model) {
|
Chris@45
|
3526 if (inAView) {
|
Chris@45
|
3527 m_playSource->addModel(model);
|
Chris@45
|
3528 } else {
|
Chris@45
|
3529 bool found = false;
|
Chris@45
|
3530 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@45
|
3531 Pane *pane = m_paneStack->getPane(i);
|
Chris@45
|
3532 if (!pane) continue;
|
Chris@45
|
3533 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@45
|
3534 Layer *pl = pane->getLayer(j);
|
Chris@183
|
3535 if (pl &&
|
Chris@183
|
3536 !dynamic_cast<TimeRulerLayer *>(pl) &&
|
Chris@183
|
3537 (pl->getModel() == model)) {
|
Chris@45
|
3538 found = true;
|
Chris@45
|
3539 break;
|
Chris@45
|
3540 }
|
Chris@45
|
3541 }
|
Chris@45
|
3542 if (found) break;
|
Chris@45
|
3543 }
|
Chris@173
|
3544 if (!found) {
|
Chris@173
|
3545 m_playSource->removeModel(model);
|
Chris@173
|
3546 }
|
Chris@45
|
3547 }
|
Chris@45
|
3548 }
|
Chris@45
|
3549
|
Chris@45
|
3550 updateMenuStates();
|
Chris@45
|
3551 }
|
Chris@45
|
3552
|
Chris@45
|
3553 void
|
Chris@128
|
3554 MainWindowBase::removeLayerEditDialog(Layer *layer)
|
Chris@128
|
3555 {
|
Chris@128
|
3556 if (m_layerDataDialogMap.find(layer) != m_layerDataDialogMap.end()) {
|
Chris@128
|
3557
|
Chris@128
|
3558 ModelDataTableDialog *dialog = m_layerDataDialogMap[layer];
|
Chris@128
|
3559
|
Chris@128
|
3560 for (ViewDataDialogMap::iterator vi = m_viewDataDialogMap.begin();
|
Chris@128
|
3561 vi != m_viewDataDialogMap.end(); ++vi) {
|
Chris@128
|
3562 vi->second.erase(dialog);
|
Chris@128
|
3563 }
|
Chris@128
|
3564
|
Chris@128
|
3565 m_layerDataDialogMap.erase(layer);
|
Chris@128
|
3566 delete dialog;
|
Chris@128
|
3567 }
|
Chris@128
|
3568 }
|
Chris@128
|
3569
|
Chris@128
|
3570 void
|
Chris@45
|
3571 MainWindowBase::modelAdded(Model *model)
|
Chris@45
|
3572 {
|
Chris@233
|
3573 // SVDEBUG << "MainWindowBase::modelAdded(" << model << ")" << endl;
|
gyorgyf@273
|
3574 std::cerr << "\nAdding model " << model->getTypeName() << " to playsource " << std::endl;
|
Chris@45
|
3575 m_playSource->addModel(model);
|
Chris@45
|
3576 }
|
Chris@45
|
3577
|
Chris@45
|
3578 void
|
Chris@45
|
3579 MainWindowBase::mainModelChanged(WaveFileModel *model)
|
Chris@45
|
3580 {
|
Chris@233
|
3581 // SVDEBUG << "MainWindowBase::mainModelChanged(" << model << ")" << endl;
|
Chris@45
|
3582 updateDescriptionLabel();
|
Chris@45
|
3583 if (model) m_viewManager->setMainModelSampleRate(model->getSampleRate());
|
Chris@475
|
3584 if (model && !(m_playTarget || m_audioIO) &&
|
Chris@475
|
3585 (m_soundOptions & WithAudioOutput)) {
|
Chris@475
|
3586 createAudioIO();
|
Chris@360
|
3587 }
|
Chris@45
|
3588 }
|
Chris@45
|
3589
|
Chris@45
|
3590 void
|
Chris@45
|
3591 MainWindowBase::modelAboutToBeDeleted(Model *model)
|
Chris@45
|
3592 {
|
Chris@233
|
3593 // SVDEBUG << "MainWindowBase::modelAboutToBeDeleted(" << model << ")" << endl;
|
Chris@45
|
3594 if (model == m_viewManager->getPlaybackModel()) {
|
Chris@45
|
3595 m_viewManager->setPlaybackModel(0);
|
Chris@45
|
3596 }
|
Chris@45
|
3597 m_playSource->removeModel(model);
|
Chris@45
|
3598 }
|
Chris@45
|
3599
|
Chris@45
|
3600 void
|
Chris@55
|
3601 MainWindowBase::paneDeleteButtonClicked(Pane *pane)
|
Chris@55
|
3602 {
|
Chris@55
|
3603 bool found = false;
|
Chris@55
|
3604 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@55
|
3605 if (m_paneStack->getPane(i) == pane) {
|
Chris@55
|
3606 found = true;
|
Chris@55
|
3607 break;
|
Chris@55
|
3608 }
|
Chris@55
|
3609 }
|
Chris@55
|
3610 if (!found) {
|
Chris@233
|
3611 SVDEBUG << "MainWindowBase::paneDeleteButtonClicked: Unknown pane "
|
Chris@229
|
3612 << pane << endl;
|
Chris@55
|
3613 return;
|
Chris@55
|
3614 }
|
Chris@55
|
3615
|
Chris@55
|
3616 CommandHistory::getInstance()->startCompoundOperation
|
Chris@55
|
3617 (tr("Delete Pane"), true);
|
Chris@55
|
3618
|
Chris@55
|
3619 while (pane->getLayerCount() > 0) {
|
Chris@55
|
3620 Layer *layer = pane->getLayer(0);
|
Chris@55
|
3621 if (layer) {
|
Chris@55
|
3622 m_document->removeLayerFromView(pane, layer);
|
Chris@55
|
3623 } else {
|
Chris@55
|
3624 break;
|
Chris@55
|
3625 }
|
Chris@55
|
3626 }
|
Chris@55
|
3627
|
Chris@55
|
3628 RemovePaneCommand *command = new RemovePaneCommand(this, pane);
|
Chris@55
|
3629 CommandHistory::getInstance()->addCommand(command);
|
Chris@55
|
3630
|
Chris@55
|
3631 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@55
|
3632
|
Chris@55
|
3633 updateMenuStates();
|
Chris@55
|
3634 }
|
Chris@55
|
3635
|
Chris@55
|
3636 void
|
Chris@429
|
3637 MainWindowBase::alignmentComplete(AlignmentModel *model)
|
Chris@429
|
3638 {
|
Chris@429
|
3639 cerr << "MainWindowBase::alignmentComplete(" << model << ")" << endl;
|
Chris@429
|
3640 }
|
Chris@429
|
3641
|
Chris@429
|
3642 void
|
Chris@45
|
3643 MainWindowBase::pollOSC()
|
Chris@45
|
3644 {
|
Chris@45
|
3645 if (!m_oscQueue || m_oscQueue->isEmpty()) return;
|
Chris@233
|
3646 SVDEBUG << "MainWindowBase::pollOSC: have " << m_oscQueue->getMessagesAvailable() << " messages" << endl;
|
Chris@45
|
3647
|
Chris@45
|
3648 if (m_openingAudioFile) return;
|
Chris@45
|
3649
|
Chris@45
|
3650 OSCMessage message = m_oscQueue->readMessage();
|
Chris@45
|
3651
|
Chris@45
|
3652 if (message.getTarget() != 0) {
|
Chris@45
|
3653 return; //!!! for now -- this class is target 0, others not handled yet
|
Chris@45
|
3654 }
|
Chris@45
|
3655
|
Chris@45
|
3656 handleOSCMessage(message);
|
Chris@45
|
3657 }
|
Chris@45
|
3658
|
Chris@45
|
3659 void
|
Chris@45
|
3660 MainWindowBase::inProgressSelectionChanged()
|
Chris@45
|
3661 {
|
Chris@45
|
3662 Pane *currentPane = 0;
|
Chris@45
|
3663 if (m_paneStack) currentPane = m_paneStack->getCurrentPane();
|
justin@331
|
3664 if (currentPane) {
|
justin@331
|
3665 //cerr << "JTEST: mouse event on selection pane" << endl;
|
justin@331
|
3666 updateVisibleRangeDisplay(currentPane);
|
justin@331
|
3667 }
|
Chris@45
|
3668 }
|
Chris@45
|
3669
|
Chris@45
|
3670 void
|
Chris@45
|
3671 MainWindowBase::contextHelpChanged(const QString &s)
|
Chris@45
|
3672 {
|
Chris@378
|
3673 QLabel *lab = getStatusLabel();
|
Chris@375
|
3674
|
Chris@45
|
3675 if (s == "" && m_myStatusMessage != "") {
|
Chris@378
|
3676 if (lab->text() != m_myStatusMessage) {
|
Chris@378
|
3677 lab->setText(m_myStatusMessage);
|
Chris@375
|
3678 }
|
Chris@45
|
3679 return;
|
Chris@45
|
3680 }
|
Chris@375
|
3681
|
Chris@378
|
3682 lab->setText(s);
|
Chris@45
|
3683 }
|
Chris@45
|
3684
|
Chris@45
|
3685 void
|
Chris@45
|
3686 MainWindowBase::openHelpUrl(QString url)
|
Chris@45
|
3687 {
|
Chris@45
|
3688 // This method mostly lifted from Qt Assistant source code
|
Chris@45
|
3689
|
Chris@45
|
3690 QProcess *process = new QProcess(this);
|
Chris@45
|
3691 connect(process, SIGNAL(finished(int)), process, SLOT(deleteLater()));
|
Chris@45
|
3692
|
Chris@45
|
3693 QStringList args;
|
Chris@45
|
3694
|
Chris@45
|
3695 #ifdef Q_OS_MAC
|
Chris@45
|
3696 args.append(url);
|
Chris@45
|
3697 process->start("open", args);
|
Chris@45
|
3698 #else
|
Chris@45
|
3699 #ifdef Q_OS_WIN32
|
Chris@358
|
3700 QString pf(getenv("ProgramFiles"));
|
Chris@358
|
3701 QString command = pf + QString("\\Internet Explorer\\IEXPLORE.EXE");
|
Chris@358
|
3702
|
Chris@358
|
3703 args.append(url);
|
Chris@358
|
3704 process->start(command, args);
|
Chris@45
|
3705 #else
|
Chris@45
|
3706 if (!qgetenv("KDE_FULL_SESSION").isEmpty()) {
|
Chris@45
|
3707 args.append("exec");
|
Chris@45
|
3708 args.append(url);
|
Chris@45
|
3709 process->start("kfmclient", args);
|
Chris@45
|
3710 } else if (!qgetenv("BROWSER").isEmpty()) {
|
Chris@45
|
3711 args.append(url);
|
Chris@45
|
3712 process->start(qgetenv("BROWSER"), args);
|
Chris@45
|
3713 } else {
|
Chris@45
|
3714 args.append(url);
|
Chris@45
|
3715 process->start("firefox", args);
|
Chris@45
|
3716 }
|
Chris@45
|
3717 #endif
|
Chris@45
|
3718 #endif
|
Chris@45
|
3719 }
|
Chris@45
|
3720
|
Chris@483
|
3721 void
|
Chris@483
|
3722 MainWindowBase::openLocalFolder(QString path)
|
Chris@483
|
3723 {
|
Chris@483
|
3724 QDir d(path);
|
Chris@483
|
3725 if (d.exists()) {
|
Chris@483
|
3726 QStringList args;
|
Chris@483
|
3727 QString path = d.canonicalPath();
|
Chris@483
|
3728 #if defined Q_OS_WIN32
|
Chris@483
|
3729 // Although the Win32 API is quite happy to have
|
Chris@483
|
3730 // forward slashes as directory separators, Windows
|
Chris@483
|
3731 // Explorer is not
|
Chris@483
|
3732 path = path.replace('/', '\\');
|
Chris@483
|
3733 args << path;
|
Chris@483
|
3734 QProcess::execute("c:/windows/explorer.exe", args);
|
Chris@483
|
3735 #else
|
Chris@483
|
3736 args << path;
|
Chris@483
|
3737 QProcess::execute(
|
Chris@483
|
3738 #if defined Q_OS_MAC
|
Chris@483
|
3739 "/usr/bin/open",
|
Chris@483
|
3740 #else
|
Chris@483
|
3741 "/usr/bin/xdg-open",
|
Chris@483
|
3742 #endif
|
Chris@483
|
3743 args);
|
Chris@483
|
3744 #endif
|
Chris@483
|
3745 }
|
Chris@483
|
3746 }
|
Chris@483
|
3747
|