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