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