Chris@45
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@45
|
2
|
Chris@45
|
3 /*
|
Chris@45
|
4 Sonic Visualiser
|
Chris@45
|
5 An audio file viewer and annotation editor.
|
Chris@45
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@45
|
7 This file copyright 2006-2007 Chris Cannam and QMUL.
|
Chris@45
|
8
|
Chris@45
|
9 This program is free software; you can redistribute it and/or
|
Chris@45
|
10 modify it under the terms of the GNU General Public License as
|
Chris@45
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@45
|
12 License, or (at your option) any later version. See the file
|
Chris@45
|
13 COPYING included with this distribution for more information.
|
Chris@45
|
14 */
|
Chris@45
|
15
|
Chris@45
|
16 #include "MainWindowBase.h"
|
Chris@46
|
17 #include "Document.h"
|
Chris@45
|
18
|
Chris@45
|
19
|
Chris@45
|
20 #include "view/Pane.h"
|
Chris@45
|
21 #include "view/PaneStack.h"
|
Chris@45
|
22 #include "data/model/WaveFileModel.h"
|
Chris@45
|
23 #include "data/model/SparseOneDimensionalModel.h"
|
Chris@45
|
24 #include "data/model/NoteModel.h"
|
matthiasm@267
|
25 #include "data/model/FlexiNoteModel.h"
|
Chris@45
|
26 #include "data/model/Labeller.h"
|
Chris@124
|
27 #include "data/model/TabularModel.h"
|
Chris@45
|
28 #include "view/ViewManager.h"
|
Chris@45
|
29
|
Chris@45
|
30 #include "layer/WaveformLayer.h"
|
Chris@45
|
31 #include "layer/TimeRulerLayer.h"
|
Chris@45
|
32 #include "layer/TimeInstantLayer.h"
|
Chris@45
|
33 #include "layer/TimeValueLayer.h"
|
Chris@45
|
34 #include "layer/Colour3DPlotLayer.h"
|
Chris@45
|
35 #include "layer/SliceLayer.h"
|
Chris@45
|
36 #include "layer/SliceableLayer.h"
|
Chris@45
|
37 #include "layer/ImageLayer.h"
|
Chris@184
|
38 #include "layer/NoteLayer.h"
|
matthiasm@267
|
39 #include "layer/FlexiNoteLayer.h"
|
Chris@184
|
40 #include "layer/RegionLayer.h"
|
Chris@45
|
41
|
Chris@45
|
42 #include "widgets/ListInputDialog.h"
|
Chris@105
|
43 #include "widgets/CommandHistory.h"
|
Chris@109
|
44 #include "widgets/ProgressDialog.h"
|
Chris@109
|
45 #include "widgets/MIDIFileImportDialog.h"
|
Chris@109
|
46 #include "widgets/CSVFormatDialog.h"
|
Chris@123
|
47 #include "widgets/ModelDataTableDialog.h"
|
Chris@341
|
48 #include "widgets/InteractiveFileFinder.h"
|
Chris@45
|
49
|
Chris@45
|
50 #include "audioio/AudioCallbackPlaySource.h"
|
Chris@45
|
51 #include "audioio/AudioCallbackPlayTarget.h"
|
Chris@45
|
52 #include "audioio/AudioTargetFactory.h"
|
Chris@45
|
53 #include "audioio/PlaySpeedRangeMapper.h"
|
Chris@45
|
54 #include "data/fileio/DataFileReaderFactory.h"
|
Chris@45
|
55 #include "data/fileio/PlaylistFileReader.h"
|
Chris@45
|
56 #include "data/fileio/WavFileWriter.h"
|
Chris@45
|
57 #include "data/fileio/CSVFileWriter.h"
|
Chris@45
|
58 #include "data/fileio/MIDIFileWriter.h"
|
Chris@45
|
59 #include "data/fileio/BZipFileDevice.h"
|
Chris@45
|
60 #include "data/fileio/FileSource.h"
|
Chris@152
|
61 #include "data/fileio/AudioFileReaderFactory.h"
|
Chris@134
|
62 #include "rdf/RDFImporter.h"
|
Chris@45
|
63
|
Chris@45
|
64 #include "data/fft/FFTDataServer.h"
|
Chris@45
|
65
|
Chris@45
|
66 #include "base/RecentFiles.h"
|
Chris@45
|
67
|
Chris@45
|
68 #include "base/PlayParameterRepository.h"
|
Chris@45
|
69 #include "base/XmlExportable.h"
|
Chris@45
|
70 #include "base/Profiler.h"
|
Chris@45
|
71 #include "base/Preferences.h"
|
Chris@217
|
72 #include "base/TempWriteFile.h"
|
Chris@217
|
73 #include "base/Exceptions.h"
|
Chris@223
|
74 #include "base/ResourceFinder.h"
|
Chris@45
|
75
|
Chris@45
|
76 #include "data/osc/OSCQueue.h"
|
Chris@157
|
77 #include "data/midi/MIDIInput.h"
|
Chris@45
|
78
|
Chris@45
|
79 #include <QApplication>
|
Chris@45
|
80 #include <QMessageBox>
|
Chris@45
|
81 #include <QGridLayout>
|
Chris@45
|
82 #include <QLabel>
|
Chris@45
|
83 #include <QAction>
|
Chris@45
|
84 #include <QMenuBar>
|
Chris@45
|
85 #include <QToolBar>
|
Chris@45
|
86 #include <QInputDialog>
|
Chris@45
|
87 #include <QStatusBar>
|
Chris@45
|
88 #include <QTreeView>
|
Chris@45
|
89 #include <QFile>
|
Chris@45
|
90 #include <QFileInfo>
|
Chris@45
|
91 #include <QDir>
|
Chris@45
|
92 #include <QTextStream>
|
Chris@432
|
93 #include <QTextCodec>
|
Chris@45
|
94 #include <QProcess>
|
Chris@45
|
95 #include <QShortcut>
|
Chris@45
|
96 #include <QSettings>
|
Chris@45
|
97 #include <QDateTime>
|
Chris@45
|
98 #include <QProcess>
|
Chris@45
|
99 #include <QCheckBox>
|
Chris@45
|
100 #include <QRegExp>
|
Chris@45
|
101 #include <QScrollArea>
|
Chris@168
|
102 #include <QDesktopWidget>
|
Chris@354
|
103 #include <QSignalMapper>
|
Chris@45
|
104
|
Chris@45
|
105 #include <iostream>
|
Chris@45
|
106 #include <cstdio>
|
Chris@45
|
107 #include <errno.h>
|
Chris@45
|
108
|
Chris@45
|
109 using std::vector;
|
Chris@45
|
110 using std::map;
|
Chris@45
|
111 using std::set;
|
Chris@45
|
112
|
Chris@255
|
113 #ifdef Q_WS_X11
|
Chris@255
|
114 #define Window X11Window
|
Chris@255
|
115 #include <X11/Xlib.h>
|
Chris@255
|
116 #include <X11/Xutil.h>
|
Chris@255
|
117 #include <X11/Xatom.h>
|
Chris@255
|
118 #include <X11/SM/SMlib.h>
|
Chris@255
|
119
|
Chris@255
|
120 static int handle_x11_error(Display *dpy, XErrorEvent *err)
|
Chris@255
|
121 {
|
Chris@255
|
122 char errstr[256];
|
Chris@255
|
123 XGetErrorText(dpy, err->error_code, errstr, 256);
|
Chris@255
|
124 if (err->error_code != BadWindow) {
|
Chris@293
|
125 cerr << "Sonic Visualiser: X Error: "
|
Chris@255
|
126 << errstr << " " << int(err->error_code)
|
Chris@255
|
127 << "\nin major opcode: "
|
Chris@293
|
128 << int(err->request_code) << endl;
|
Chris@255
|
129 }
|
Chris@255
|
130 return 0;
|
Chris@255
|
131 }
|
Chris@255
|
132 #undef Window
|
Chris@255
|
133 #endif
|
Chris@45
|
134
|
Chris@161
|
135 MainWindowBase::MainWindowBase(bool withAudioOutput,
|
Chris@161
|
136 bool withMIDIInput) :
|
Chris@45
|
137 m_document(0),
|
Chris@45
|
138 m_paneStack(0),
|
Chris@45
|
139 m_viewManager(0),
|
Chris@45
|
140 m_timeRulerLayer(0),
|
Chris@45
|
141 m_audioOutput(withAudioOutput),
|
Chris@45
|
142 m_playSource(0),
|
Chris@45
|
143 m_playTarget(0),
|
Chris@113
|
144 m_oscQueue(0),
|
Chris@113
|
145 m_oscQueueStarter(0),
|
Chris@157
|
146 m_midiInput(0),
|
Chris@45
|
147 m_recentFiles("RecentFiles", 20),
|
Chris@54
|
148 m_recentTransforms("RecentTransforms", 20),
|
Chris@45
|
149 m_documentModified(false),
|
Chris@45
|
150 m_openingAudioFile(false),
|
Chris@45
|
151 m_abandoning(false),
|
Chris@121
|
152 m_labeller(0),
|
Chris@357
|
153 m_lastPlayStatusSec(0),
|
Chris@357
|
154 m_initialDarkBackground(false),
|
Chris@378
|
155 m_defaultFfwdRwdStep(2, 0),
|
Chris@390
|
156 m_statusLabel(0),
|
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@358
|
309 MainWindowBase::finaliseMenu(QMenu *
|
Chris@358
|
310 #ifdef Q_OS_MAC
|
Chris@358
|
311 menu
|
Chris@358
|
312 #endif
|
Chris@358
|
313 )
|
Chris@354
|
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@373
|
1761 MainWindowBase::openSessionPath(QString fileOrUrl)
|
Chris@45
|
1762 {
|
Chris@134
|
1763 ProgressDialog dialog(tr("Opening session..."), true, 2000, this);
|
Chris@134
|
1764 connect(&dialog, SIGNAL(showing()), this, SIGNAL(hideSplash()));
|
Chris@109
|
1765 return openSession(FileSource(fileOrUrl, &dialog));
|
Chris@45
|
1766 }
|
Chris@45
|
1767
|
Chris@45
|
1768 MainWindowBase::FileOpenStatus
|
Chris@45
|
1769 MainWindowBase::openSession(FileSource source)
|
Chris@45
|
1770 {
|
Chris@233
|
1771 SVDEBUG << "MainWindowBase::openSession(" << source.getLocation() << ")" << endl;
|
Chris@135
|
1772
|
Chris@45
|
1773 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@145
|
1774 source.waitForData();
|
Chris@141
|
1775
|
Chris@341
|
1776 QString sessionExt =
|
Chris@341
|
1777 InteractiveFileFinder::getInstance()->getApplicationSessionExtension();
|
Chris@341
|
1778
|
Chris@341
|
1779 if (source.getExtension().toLower() != sessionExt) {
|
Chris@145
|
1780
|
Chris@145
|
1781 RDFImporter::RDFDocumentType rdfType =
|
Chris@145
|
1782 RDFImporter::identifyDocumentType
|
Chris@145
|
1783 (QUrl::fromLocalFile(source.getLocalFilename()).toString());
|
Chris@145
|
1784
|
Chris@293
|
1785 // cerr << "RDF type: " << (int)rdfType << endl;
|
Chris@148
|
1786
|
Chris@145
|
1787 if (rdfType == RDFImporter::AudioRefAndAnnotations ||
|
Chris@145
|
1788 rdfType == RDFImporter::AudioRef) {
|
Chris@145
|
1789 return openSessionFromRDF(source);
|
Chris@145
|
1790 } else if (rdfType != RDFImporter::NotRDF) {
|
Chris@145
|
1791 return FileOpenFailed;
|
Chris@145
|
1792 }
|
Chris@145
|
1793
|
Chris@152
|
1794 if (source.getExtension().toLower() == "xml") {
|
Chris@140
|
1795 if (SVFileReader::identifyXmlFile(source.getLocalFilename()) ==
|
Chris@140
|
1796 SVFileReader::SVSessionFile) {
|
Chris@293
|
1797 cerr << "This XML file looks like a session file, attempting to open it as a session" << endl;
|
Chris@140
|
1798 } else {
|
Chris@140
|
1799 return FileOpenFailed;
|
Chris@140
|
1800 }
|
Chris@140
|
1801 } else {
|
Chris@140
|
1802 return FileOpenFailed;
|
Chris@140
|
1803 }
|
Chris@140
|
1804 }
|
Chris@45
|
1805
|
Chris@140
|
1806 QXmlInputSource *inputSource = 0;
|
Chris@140
|
1807 BZipFileDevice *bzFile = 0;
|
Chris@140
|
1808 QFile *rawFile = 0;
|
Chris@140
|
1809
|
Chris@341
|
1810 if (source.getExtension().toLower() == sessionExt) {
|
Chris@140
|
1811 bzFile = new BZipFileDevice(source.getLocalFilename());
|
Chris@140
|
1812 if (!bzFile->open(QIODevice::ReadOnly)) {
|
Chris@140
|
1813 delete bzFile;
|
Chris@140
|
1814 return FileOpenFailed;
|
Chris@140
|
1815 }
|
Chris@140
|
1816 inputSource = new QXmlInputSource(bzFile);
|
Chris@140
|
1817 } else {
|
Chris@140
|
1818 rawFile = new QFile(source.getLocalFilename());
|
Chris@140
|
1819 inputSource = new QXmlInputSource(rawFile);
|
Chris@140
|
1820 }
|
Chris@140
|
1821
|
Chris@140
|
1822 if (!checkSaveModified()) {
|
Chris@140
|
1823 if (bzFile) bzFile->close();
|
Chris@140
|
1824 delete inputSource;
|
Chris@140
|
1825 delete bzFile;
|
Chris@140
|
1826 delete rawFile;
|
Chris@140
|
1827 return FileOpenCancelled;
|
Chris@140
|
1828 }
|
Chris@45
|
1829
|
Chris@45
|
1830 QString error;
|
Chris@45
|
1831 closeSession();
|
Chris@45
|
1832 createDocument();
|
Chris@45
|
1833
|
Chris@45
|
1834 PaneCallback callback(this);
|
Chris@45
|
1835 m_viewManager->clearSelections();
|
Chris@45
|
1836
|
Chris@45
|
1837 SVFileReader reader(m_document, callback, source.getLocation());
|
Chris@79
|
1838 connect
|
Chris@79
|
1839 (&reader, SIGNAL(modelRegenerationFailed(QString, QString, QString)),
|
Chris@79
|
1840 this, SLOT(modelRegenerationFailed(QString, QString, QString)));
|
Chris@79
|
1841 connect
|
Chris@79
|
1842 (&reader, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@79
|
1843 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@140
|
1844
|
Chris@140
|
1845 reader.parse(*inputSource);
|
Chris@45
|
1846
|
Chris@45
|
1847 if (!reader.isOK()) {
|
Chris@45
|
1848 error = tr("SV XML file read error:\n%1").arg(reader.getErrorString());
|
Chris@45
|
1849 }
|
Chris@45
|
1850
|
Chris@140
|
1851 if (bzFile) bzFile->close();
|
Chris@140
|
1852
|
Chris@140
|
1853 delete inputSource;
|
Chris@140
|
1854 delete bzFile;
|
Chris@140
|
1855 delete rawFile;
|
Chris@45
|
1856
|
Chris@45
|
1857 bool ok = (error == "");
|
Chris@45
|
1858
|
Chris@45
|
1859 if (ok) {
|
Chris@45
|
1860
|
Chris@164
|
1861 emit activity(tr("Import session file \"%1\"").arg(source.getLocation()));
|
Chris@164
|
1862
|
Chris@57
|
1863 setWindowTitle(tr("%1: %2")
|
Chris@57
|
1864 .arg(QApplication::applicationName())
|
Chris@45
|
1865 .arg(source.getLocation()));
|
Chris@45
|
1866
|
Chris@45
|
1867 if (!source.isRemote()) m_sessionFile = source.getLocalFilename();
|
Chris@45
|
1868
|
Chris@45
|
1869 setupMenus();
|
Chris@45
|
1870
|
Chris@45
|
1871 CommandHistory::getInstance()->clear();
|
Chris@45
|
1872 CommandHistory::getInstance()->documentSaved();
|
Chris@45
|
1873 m_documentModified = false;
|
Chris@45
|
1874 updateMenuStates();
|
Chris@45
|
1875
|
Chris@227
|
1876 m_recentFiles.addFile(source.getLocation());
|
Chris@45
|
1877
|
Chris@45
|
1878 if (!source.isRemote()) {
|
Chris@45
|
1879 // for file dialog
|
Chris@45
|
1880 registerLastOpenedFilePath(FileFinder::SessionFile,
|
Chris@227
|
1881 source.getLocalFilename());
|
Chris@45
|
1882 }
|
Chris@45
|
1883
|
Chris@342
|
1884 emit sessionLoaded();
|
Chris@342
|
1885
|
Chris@45
|
1886 } else {
|
Chris@57
|
1887 setWindowTitle(QApplication::applicationName());
|
Chris@45
|
1888 }
|
Chris@45
|
1889
|
Chris@45
|
1890 return ok ? FileOpenSucceeded : FileOpenFailed;
|
Chris@45
|
1891 }
|
Chris@45
|
1892
|
Chris@141
|
1893 MainWindowBase::FileOpenStatus
|
Chris@230
|
1894 MainWindowBase::openSessionTemplate(QString templateName)
|
Chris@230
|
1895 {
|
Chris@230
|
1896 // Template in the user's template directory takes
|
Chris@230
|
1897 // priority over a bundled one; we don't unbundle, but
|
Chris@230
|
1898 // open directly from the bundled file (where applicable)
|
Chris@230
|
1899 ResourceFinder rf;
|
Chris@230
|
1900 QString tfile = rf.getResourcePath("templates", templateName + ".svt");
|
Chris@230
|
1901 if (tfile != "") {
|
Chris@294
|
1902 cerr << "SV loading template file " << tfile << endl;
|
Chris@230
|
1903 return openSessionTemplate(FileSource("file:" + tfile));
|
Chris@230
|
1904 } else {
|
Chris@230
|
1905 return FileOpenFailed;
|
Chris@230
|
1906 }
|
Chris@230
|
1907 }
|
Chris@230
|
1908
|
Chris@230
|
1909 MainWindowBase::FileOpenStatus
|
Chris@227
|
1910 MainWindowBase::openSessionTemplate(FileSource source)
|
Chris@227
|
1911 {
|
Chris@294
|
1912 cerr << "MainWindowBase::openSessionTemplate(" << source.getLocation() << ")" << endl;
|
Chris@227
|
1913
|
Chris@227
|
1914 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@227
|
1915 source.waitForData();
|
Chris@227
|
1916
|
Chris@227
|
1917 QXmlInputSource *inputSource = 0;
|
Chris@227
|
1918 QFile *file = 0;
|
Chris@227
|
1919
|
Chris@227
|
1920 file = new QFile(source.getLocalFilename());
|
Chris@227
|
1921 inputSource = new QXmlInputSource(file);
|
Chris@227
|
1922
|
Chris@227
|
1923 if (!checkSaveModified()) {
|
Chris@227
|
1924 delete inputSource;
|
Chris@227
|
1925 delete file;
|
Chris@227
|
1926 return FileOpenCancelled;
|
Chris@227
|
1927 }
|
Chris@227
|
1928
|
Chris@227
|
1929 QString error;
|
Chris@227
|
1930 closeSession();
|
Chris@227
|
1931 createDocument();
|
Chris@227
|
1932
|
Chris@227
|
1933 PaneCallback callback(this);
|
Chris@227
|
1934 m_viewManager->clearSelections();
|
Chris@227
|
1935
|
Chris@227
|
1936 SVFileReader reader(m_document, callback, source.getLocation());
|
Chris@227
|
1937 connect
|
Chris@227
|
1938 (&reader, SIGNAL(modelRegenerationFailed(QString, QString, QString)),
|
Chris@227
|
1939 this, SLOT(modelRegenerationFailed(QString, QString, QString)));
|
Chris@227
|
1940 connect
|
Chris@227
|
1941 (&reader, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@227
|
1942 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@227
|
1943
|
Chris@227
|
1944 reader.parse(*inputSource);
|
Chris@227
|
1945
|
Chris@227
|
1946 if (!reader.isOK()) {
|
Chris@227
|
1947 error = tr("SV XML file read error:\n%1").arg(reader.getErrorString());
|
Chris@227
|
1948 }
|
Chris@227
|
1949
|
Chris@227
|
1950 delete inputSource;
|
Chris@227
|
1951 delete file;
|
Chris@227
|
1952
|
Chris@227
|
1953 bool ok = (error == "");
|
Chris@227
|
1954
|
Chris@227
|
1955 setWindowTitle(QApplication::applicationName());
|
Chris@227
|
1956
|
Chris@227
|
1957 if (ok) {
|
Chris@227
|
1958
|
Chris@227
|
1959 emit activity(tr("Open session template \"%1\"").arg(source.getLocation()));
|
Chris@227
|
1960
|
Chris@227
|
1961 setupMenus();
|
Chris@227
|
1962
|
Chris@227
|
1963 CommandHistory::getInstance()->clear();
|
Chris@227
|
1964 CommandHistory::getInstance()->documentSaved();
|
Chris@227
|
1965 m_documentModified = false;
|
Chris@227
|
1966 updateMenuStates();
|
Chris@342
|
1967
|
Chris@342
|
1968 emit sessionLoaded();
|
Chris@227
|
1969 }
|
Chris@227
|
1970
|
Chris@227
|
1971 return ok ? FileOpenSucceeded : FileOpenFailed;
|
Chris@227
|
1972 }
|
Chris@227
|
1973
|
Chris@227
|
1974 MainWindowBase::FileOpenStatus
|
Chris@141
|
1975 MainWindowBase::openSessionFromRDF(FileSource source)
|
Chris@141
|
1976 {
|
Chris@233
|
1977 SVDEBUG << "MainWindowBase::openSessionFromRDF(" << source.getLocation() << ")" << endl;
|
Chris@141
|
1978
|
Chris@141
|
1979 if (!source.isAvailable()) return FileOpenFailed;
|
Chris@141
|
1980 source.waitForData();
|
Chris@141
|
1981
|
Chris@145
|
1982 if (!checkSaveModified()) {
|
Chris@145
|
1983 return FileOpenCancelled;
|
Chris@141
|
1984 }
|
Chris@143
|
1985
|
Chris@145
|
1986 closeSession();
|
Chris@145
|
1987 createDocument();
|
Chris@145
|
1988
|
Chris@145
|
1989 FileOpenStatus status = openLayersFromRDF(source);
|
Chris@141
|
1990
|
Chris@141
|
1991 setupMenus();
|
Chris@141
|
1992
|
Chris@141
|
1993 setWindowTitle(tr("%1: %2")
|
Chris@141
|
1994 .arg(QApplication::applicationName())
|
Chris@141
|
1995 .arg(source.getLocation()));
|
Chris@141
|
1996 CommandHistory::getInstance()->clear();
|
Chris@141
|
1997 CommandHistory::getInstance()->documentSaved();
|
Chris@141
|
1998 m_documentModified = false;
|
Chris@145
|
1999
|
Chris@342
|
2000 emit sessionLoaded();
|
Chris@342
|
2001
|
Chris@145
|
2002 return status;
|
Chris@145
|
2003 }
|
Chris@145
|
2004
|
Chris@145
|
2005 MainWindowBase::FileOpenStatus
|
Chris@145
|
2006 MainWindowBase::openLayersFromRDF(FileSource source)
|
Chris@145
|
2007 {
|
Chris@435
|
2008 sv_samplerate_t rate = 0;
|
Chris@145
|
2009
|
Chris@233
|
2010 SVDEBUG << "MainWindowBase::openLayersFromRDF" << endl;
|
Chris@186
|
2011
|
Chris@145
|
2012 ProgressDialog dialog(tr("Importing from RDF..."), true, 2000, this);
|
Chris@145
|
2013 connect(&dialog, SIGNAL(showing()), this, SIGNAL(hideSplash()));
|
Chris@145
|
2014
|
Chris@145
|
2015 if (getMainModel()) {
|
Chris@145
|
2016 rate = getMainModel()->getSampleRate();
|
Chris@145
|
2017 } else if (Preferences::getInstance()->getResampleOnLoad()) {
|
Chris@145
|
2018 rate = m_playSource->getSourceSampleRate();
|
Chris@145
|
2019 }
|
Chris@145
|
2020
|
Chris@145
|
2021 RDFImporter importer
|
Chris@145
|
2022 (QUrl::fromLocalFile(source.getLocalFilename()).toString(), rate);
|
Chris@145
|
2023
|
Chris@145
|
2024 if (!importer.isOK()) {
|
Chris@147
|
2025 if (importer.getErrorString() != "") {
|
Chris@147
|
2026 QMessageBox::critical
|
Chris@147
|
2027 (this, tr("Failed to import RDF"),
|
Chris@147
|
2028 tr("<b>Failed to import RDF</b><p>Importing data from RDF document at \"%1\" failed: %2</p>")
|
Chris@147
|
2029 .arg(source.getLocation()).arg(importer.getErrorString()));
|
Chris@147
|
2030 }
|
Chris@145
|
2031 return FileOpenFailed;
|
Chris@145
|
2032 }
|
Chris@145
|
2033
|
Chris@145
|
2034 std::vector<Model *> models = importer.getDataModels(&dialog);
|
Chris@145
|
2035
|
Chris@145
|
2036 dialog.setMessage(tr("Importing from RDF..."));
|
Chris@145
|
2037
|
Chris@145
|
2038 if (models.empty()) {
|
Chris@186
|
2039 QMessageBox::critical
|
Chris@186
|
2040 (this, tr("Failed to import RDF"),
|
Chris@186
|
2041 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
|
2042 return FileOpenFailed;
|
Chris@145
|
2043 }
|
Chris@145
|
2044
|
Chris@164
|
2045 emit activity(tr("Import RDF document \"%1\"").arg(source.getLocation()));
|
Chris@164
|
2046
|
Chris@145
|
2047 std::set<Model *> added;
|
Chris@145
|
2048
|
Chris@221
|
2049 for (int i = 0; i < (int)models.size(); ++i) {
|
Chris@145
|
2050
|
Chris@145
|
2051 Model *m = models[i];
|
Chris@145
|
2052 WaveFileModel *w = dynamic_cast<WaveFileModel *>(m);
|
Chris@145
|
2053
|
Chris@145
|
2054 if (w) {
|
Chris@145
|
2055
|
Chris@145
|
2056 Pane *pane = addPaneToStack();
|
Chris@145
|
2057 Layer *layer = 0;
|
Chris@145
|
2058
|
Chris@145
|
2059 if (m_timeRulerLayer) {
|
Chris@145
|
2060 m_document->addLayerToView(pane, m_timeRulerLayer);
|
Chris@145
|
2061 }
|
Chris@145
|
2062
|
Chris@145
|
2063 if (!getMainModel()) {
|
Chris@145
|
2064 m_document->setMainModel(w);
|
Chris@145
|
2065 layer = m_document->createMainModelLayer(LayerFactory::Waveform);
|
Chris@145
|
2066 } else {
|
Chris@145
|
2067 layer = m_document->createImportedLayer(w);
|
Chris@145
|
2068 }
|
Chris@145
|
2069
|
Chris@145
|
2070 m_document->addLayerToView(pane, layer);
|
Chris@145
|
2071
|
Chris@145
|
2072 added.insert(w);
|
Chris@145
|
2073
|
Chris@221
|
2074 for (int j = 0; j < (int)models.size(); ++j) {
|
Chris@145
|
2075
|
Chris@145
|
2076 Model *dm = models[j];
|
Chris@145
|
2077
|
Chris@145
|
2078 if (dm == m) continue;
|
Chris@145
|
2079 if (dm->getSourceModel() != m) continue;
|
Chris@145
|
2080
|
Chris@145
|
2081 layer = m_document->createImportedLayer(dm);
|
Chris@145
|
2082
|
Chris@145
|
2083 if (layer->isLayerOpaque() ||
|
Chris@145
|
2084 dynamic_cast<Colour3DPlotLayer *>(layer)) {
|
Chris@145
|
2085
|
Chris@156
|
2086 // these always go in a new pane, with nothing
|
Chris@156
|
2087 // else going in the same pane
|
Chris@156
|
2088
|
Chris@145
|
2089 Pane *singleLayerPane = addPaneToStack();
|
Chris@145
|
2090 if (m_timeRulerLayer) {
|
Chris@145
|
2091 m_document->addLayerToView(singleLayerPane, m_timeRulerLayer);
|
Chris@145
|
2092 }
|
Chris@145
|
2093 m_document->addLayerToView(singleLayerPane, layer);
|
Chris@145
|
2094
|
Chris@156
|
2095 } else if (layer->getLayerColourSignificance() ==
|
Chris@156
|
2096 Layer::ColourHasMeaningfulValue) {
|
Chris@156
|
2097
|
Chris@156
|
2098 // these can go in a pane with something else, but
|
Chris@156
|
2099 // only if none of the something elses also have
|
Chris@156
|
2100 // this quality
|
Chris@156
|
2101
|
Chris@156
|
2102 bool needNewPane = false;
|
Chris@156
|
2103 for (int i = 0; i < pane->getLayerCount(); ++i) {
|
Chris@156
|
2104 Layer *otherLayer = pane->getLayer(i);
|
Chris@156
|
2105 if (otherLayer &&
|
Chris@156
|
2106 (otherLayer->getLayerColourSignificance() ==
|
Chris@156
|
2107 Layer::ColourHasMeaningfulValue)) {
|
Chris@156
|
2108 needNewPane = true;
|
Chris@156
|
2109 break;
|
Chris@156
|
2110 }
|
Chris@156
|
2111 }
|
Chris@156
|
2112 if (needNewPane) {
|
Chris@156
|
2113 pane = addPaneToStack();
|
Chris@156
|
2114 }
|
Chris@156
|
2115
|
Chris@156
|
2116 m_document->addLayerToView(pane, layer);
|
Chris@156
|
2117
|
Chris@145
|
2118 } else {
|
Chris@145
|
2119
|
Chris@145
|
2120 if (pane->getLayerCount() > 4) {
|
Chris@145
|
2121 pane = addPaneToStack();
|
Chris@145
|
2122 }
|
Chris@145
|
2123
|
Chris@145
|
2124 m_document->addLayerToView(pane, layer);
|
Chris@145
|
2125 }
|
Chris@145
|
2126
|
Chris@145
|
2127 added.insert(dm);
|
Chris@145
|
2128 }
|
Chris@145
|
2129 }
|
Chris@145
|
2130 }
|
Chris@145
|
2131
|
Chris@221
|
2132 for (int i = 0; i < (int)models.size(); ++i) {
|
Chris@145
|
2133
|
Chris@145
|
2134 Model *m = models[i];
|
Chris@145
|
2135
|
Chris@145
|
2136 if (added.find(m) == added.end()) {
|
Chris@145
|
2137
|
Chris@145
|
2138 Layer *layer = m_document->createImportedLayer(m);
|
Chris@145
|
2139 if (!layer) return FileOpenFailed;
|
Chris@145
|
2140
|
Chris@145
|
2141 Pane *singleLayerPane = addPaneToStack();
|
Chris@145
|
2142 if (m_timeRulerLayer) {
|
Chris@145
|
2143 m_document->addLayerToView(singleLayerPane, m_timeRulerLayer);
|
Chris@145
|
2144 }
|
Chris@145
|
2145 m_document->addLayerToView(singleLayerPane, layer);
|
Chris@145
|
2146 }
|
Chris@145
|
2147 }
|
Chris@145
|
2148
|
Chris@145
|
2149 m_recentFiles.addFile(source.getLocation());
|
Chris@145
|
2150 return FileOpenSucceeded;
|
Chris@141
|
2151 }
|
Chris@141
|
2152
|
Chris@45
|
2153 void
|
Chris@45
|
2154 MainWindowBase::createPlayTarget()
|
Chris@45
|
2155 {
|
Chris@45
|
2156 if (m_playTarget) return;
|
Chris@45
|
2157
|
Chris@126
|
2158 QSettings settings;
|
Chris@126
|
2159 settings.beginGroup("Preferences");
|
Chris@126
|
2160 QString targetName = settings.value("audio-target", "").toString();
|
Chris@126
|
2161 settings.endGroup();
|
Chris@126
|
2162
|
Chris@126
|
2163 AudioTargetFactory *factory = AudioTargetFactory::getInstance();
|
Chris@126
|
2164
|
Chris@126
|
2165 factory->setDefaultCallbackTarget(targetName);
|
Chris@126
|
2166 m_playTarget = factory->createCallbackTarget(m_playSource);
|
Chris@126
|
2167
|
Chris@45
|
2168 if (!m_playTarget) {
|
Chris@104
|
2169 emit hideSplash();
|
Chris@126
|
2170
|
Chris@126
|
2171 if (factory->isAutoCallbackTarget(targetName)) {
|
Chris@128
|
2172 QMessageBox::warning
|
Chris@45
|
2173 (this, tr("Couldn't open audio device"),
|
Chris@126
|
2174 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
|
2175 QMessageBox::Ok);
|
Chris@126
|
2176 } else {
|
Chris@126
|
2177 QMessageBox::warning
|
Chris@126
|
2178 (this, tr("Couldn't open audio device"),
|
Chris@126
|
2179 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
|
2180 .arg(factory->getCallbackTargetDescription(targetName)),
|
Chris@126
|
2181 QMessageBox::Ok);
|
Chris@126
|
2182 }
|
Chris@45
|
2183 }
|
Chris@45
|
2184 }
|
Chris@45
|
2185
|
Chris@45
|
2186 WaveFileModel *
|
Chris@45
|
2187 MainWindowBase::getMainModel()
|
Chris@45
|
2188 {
|
Chris@45
|
2189 if (!m_document) return 0;
|
Chris@45
|
2190 return m_document->getMainModel();
|
Chris@45
|
2191 }
|
Chris@45
|
2192
|
Chris@45
|
2193 const WaveFileModel *
|
Chris@45
|
2194 MainWindowBase::getMainModel() const
|
Chris@45
|
2195 {
|
Chris@45
|
2196 if (!m_document) return 0;
|
Chris@45
|
2197 return m_document->getMainModel();
|
Chris@45
|
2198 }
|
Chris@45
|
2199
|
Chris@45
|
2200 void
|
Chris@45
|
2201 MainWindowBase::createDocument()
|
Chris@45
|
2202 {
|
Chris@45
|
2203 m_document = new Document;
|
Chris@45
|
2204
|
Chris@45
|
2205 connect(m_document, SIGNAL(layerAdded(Layer *)),
|
Chris@45
|
2206 this, SLOT(layerAdded(Layer *)));
|
Chris@45
|
2207 connect(m_document, SIGNAL(layerRemoved(Layer *)),
|
Chris@45
|
2208 this, SLOT(layerRemoved(Layer *)));
|
Chris@45
|
2209 connect(m_document, SIGNAL(layerAboutToBeDeleted(Layer *)),
|
Chris@45
|
2210 this, SLOT(layerAboutToBeDeleted(Layer *)));
|
Chris@45
|
2211 connect(m_document, SIGNAL(layerInAView(Layer *, bool)),
|
Chris@45
|
2212 this, SLOT(layerInAView(Layer *, bool)));
|
Chris@45
|
2213
|
Chris@45
|
2214 connect(m_document, SIGNAL(modelAdded(Model *)),
|
Chris@45
|
2215 this, SLOT(modelAdded(Model *)));
|
Chris@45
|
2216 connect(m_document, SIGNAL(mainModelChanged(WaveFileModel *)),
|
Chris@45
|
2217 this, SLOT(mainModelChanged(WaveFileModel *)));
|
Chris@45
|
2218 connect(m_document, SIGNAL(modelAboutToBeDeleted(Model *)),
|
Chris@45
|
2219 this, SLOT(modelAboutToBeDeleted(Model *)));
|
Chris@45
|
2220
|
Chris@78
|
2221 connect(m_document, SIGNAL(modelGenerationFailed(QString, QString)),
|
Chris@78
|
2222 this, SLOT(modelGenerationFailed(QString, QString)));
|
Chris@78
|
2223 connect(m_document, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@78
|
2224 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@78
|
2225 connect(m_document, SIGNAL(modelGenerationFailed(QString, QString)),
|
Chris@78
|
2226 this, SLOT(modelGenerationFailed(QString, QString)));
|
Chris@78
|
2227 connect(m_document, SIGNAL(modelRegenerationWarning(QString, QString, QString)),
|
Chris@78
|
2228 this, SLOT(modelRegenerationWarning(QString, QString, QString)));
|
Chris@78
|
2229 connect(m_document, SIGNAL(alignmentFailed(QString, QString)),
|
Chris@78
|
2230 this, SLOT(alignmentFailed(QString, QString)));
|
Chris@160
|
2231
|
Chris@160
|
2232 emit replacedDocument();
|
Chris@45
|
2233 }
|
Chris@45
|
2234
|
Chris@45
|
2235 bool
|
Chris@45
|
2236 MainWindowBase::saveSessionFile(QString path)
|
Chris@45
|
2237 {
|
Chris@217
|
2238 try {
|
Chris@217
|
2239
|
Chris@217
|
2240 TempWriteFile temp(path);
|
Chris@217
|
2241
|
Chris@217
|
2242 BZipFileDevice bzFile(temp.getTemporaryFilename());
|
Chris@217
|
2243 if (!bzFile.open(QIODevice::WriteOnly)) {
|
Chris@293
|
2244 cerr << "Failed to open session file \""
|
Chris@294
|
2245 << temp.getTemporaryFilename()
|
Chris@217
|
2246 << "\" for writing: "
|
Chris@293
|
2247 << bzFile.errorString() << endl;
|
Chris@217
|
2248 return false;
|
Chris@217
|
2249 }
|
Chris@217
|
2250
|
Chris@217
|
2251 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
Chris@217
|
2252
|
Chris@217
|
2253 QTextStream out(&bzFile);
|
Chris@432
|
2254 out.setCodec(QTextCodec::codecForName("UTF-8"));
|
Chris@226
|
2255 toXml(out, false);
|
Chris@217
|
2256 out.flush();
|
Chris@217
|
2257
|
Chris@217
|
2258 QApplication::restoreOverrideCursor();
|
Chris@217
|
2259
|
Chris@217
|
2260 if (!bzFile.isOK()) {
|
Chris@217
|
2261 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@217
|
2262 tr("<b>Save failed</b><p>Failed to write to file \"%1\": %2")
|
Chris@217
|
2263 .arg(path).arg(bzFile.errorString()));
|
Chris@217
|
2264 bzFile.close();
|
Chris@217
|
2265 return false;
|
Chris@217
|
2266 }
|
Chris@217
|
2267
|
Chris@217
|
2268 bzFile.close();
|
Chris@217
|
2269 temp.moveToTarget();
|
Chris@217
|
2270 return true;
|
Chris@217
|
2271
|
Chris@217
|
2272 } catch (FileOperationFailed &f) {
|
Chris@217
|
2273
|
Chris@217
|
2274 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@217
|
2275 tr("<b>Save failed</b><p>Failed to write to file \"%1\": %2")
|
Chris@217
|
2276 .arg(path).arg(f.what()));
|
Chris@45
|
2277 return false;
|
Chris@45
|
2278 }
|
Chris@45
|
2279 }
|
Chris@45
|
2280
|
Chris@224
|
2281 bool
|
Chris@224
|
2282 MainWindowBase::saveSessionTemplate(QString path)
|
Chris@224
|
2283 {
|
Chris@224
|
2284 try {
|
Chris@224
|
2285
|
Chris@224
|
2286 TempWriteFile temp(path);
|
Chris@224
|
2287
|
Chris@224
|
2288 QFile file(temp.getTemporaryFilename());
|
Chris@224
|
2289 if (!file.open(QIODevice::WriteOnly)) {
|
Chris@293
|
2290 cerr << "Failed to open session template file \""
|
Chris@294
|
2291 << temp.getTemporaryFilename()
|
Chris@224
|
2292 << "\" for writing: "
|
Chris@294
|
2293 << file.errorString() << endl;
|
Chris@224
|
2294 return false;
|
Chris@224
|
2295 }
|
Chris@224
|
2296
|
Chris@224
|
2297 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
Chris@224
|
2298
|
Chris@224
|
2299 QTextStream out(&file);
|
Chris@432
|
2300 out.setCodec(QTextCodec::codecForName("UTF-8"));
|
Chris@226
|
2301 toXml(out, true);
|
Chris@224
|
2302 out.flush();
|
Chris@224
|
2303
|
Chris@224
|
2304 QApplication::restoreOverrideCursor();
|
Chris@224
|
2305
|
Chris@224
|
2306 file.close();
|
Chris@224
|
2307 temp.moveToTarget();
|
Chris@224
|
2308 return true;
|
Chris@224
|
2309
|
Chris@224
|
2310 } catch (FileOperationFailed &f) {
|
Chris@224
|
2311
|
Chris@224
|
2312 QMessageBox::critical(this, tr("Failed to write file"),
|
Chris@224
|
2313 tr("<b>Save failed</b><p>Failed to write to file \"%1\": %2")
|
Chris@224
|
2314 .arg(path).arg(f.what()));
|
Chris@224
|
2315 return false;
|
Chris@224
|
2316 }
|
Chris@224
|
2317 }
|
Chris@224
|
2318
|
Chris@45
|
2319 void
|
Chris@226
|
2320 MainWindowBase::toXml(QTextStream &out, bool asTemplate)
|
Chris@45
|
2321 {
|
Chris@45
|
2322 QString indent(" ");
|
Chris@45
|
2323
|
Chris@45
|
2324 out << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
|
Chris@45
|
2325 out << "<!DOCTYPE sonic-visualiser>\n";
|
Chris@45
|
2326 out << "<sv>\n";
|
Chris@45
|
2327
|
Chris@226
|
2328 if (asTemplate) {
|
Chris@226
|
2329 m_document->toXmlAsTemplate(out, "", "");
|
Chris@226
|
2330 } else {
|
Chris@226
|
2331 m_document->toXml(out, "", "");
|
Chris@226
|
2332 }
|
Chris@45
|
2333
|
Chris@45
|
2334 out << "<display>\n";
|
Chris@45
|
2335
|
Chris@45
|
2336 out << QString(" <window width=\"%1\" height=\"%2\"/>\n")
|
Chris@45
|
2337 .arg(width()).arg(height());
|
Chris@45
|
2338
|
Chris@45
|
2339 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@45
|
2340
|
Chris@45
|
2341 Pane *pane = m_paneStack->getPane(i);
|
Chris@45
|
2342
|
Chris@45
|
2343 if (pane) {
|
Chris@45
|
2344 pane->toXml(out, indent);
|
Chris@45
|
2345 }
|
Chris@45
|
2346 }
|
Chris@45
|
2347
|
Chris@45
|
2348 out << "</display>\n";
|
Chris@45
|
2349
|
Chris@45
|
2350 m_viewManager->getSelection().toXml(out);
|
Chris@45
|
2351
|
Chris@45
|
2352 out << "</sv>\n";
|
Chris@45
|
2353 }
|
Chris@45
|
2354
|
Chris@45
|
2355 Pane *
|
Chris@45
|
2356 MainWindowBase::addPaneToStack()
|
Chris@45
|
2357 {
|
Chris@342
|
2358 cerr << "MainWindowBase::addPaneToStack()" << endl;
|
Chris@45
|
2359 AddPaneCommand *command = new AddPaneCommand(this);
|
Chris@45
|
2360 CommandHistory::getInstance()->addCommand(command);
|
Chris@57
|
2361 Pane *pane = command->getPane();
|
Chris@57
|
2362 return pane;
|
Chris@45
|
2363 }
|
Chris@45
|
2364
|
Chris@45
|
2365 void
|
Chris@45
|
2366 MainWindowBase::zoomIn()
|
Chris@45
|
2367 {
|
Chris@45
|
2368 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2369 if (currentPane) currentPane->zoom(true);
|
Chris@45
|
2370 }
|
Chris@45
|
2371
|
Chris@45
|
2372 void
|
Chris@45
|
2373 MainWindowBase::zoomOut()
|
Chris@45
|
2374 {
|
Chris@45
|
2375 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2376 if (currentPane) currentPane->zoom(false);
|
Chris@45
|
2377 }
|
Chris@45
|
2378
|
Chris@45
|
2379 void
|
Chris@45
|
2380 MainWindowBase::zoomToFit()
|
Chris@45
|
2381 {
|
Chris@45
|
2382 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2383 if (!currentPane) return;
|
Chris@45
|
2384
|
Chris@45
|
2385 Model *model = getMainModel();
|
Chris@45
|
2386 if (!model) return;
|
Chris@45
|
2387
|
Chris@434
|
2388 sv_frame_t start = model->getStartFrame();
|
Chris@434
|
2389 sv_frame_t end = model->getEndFrame();
|
Chris@60
|
2390 if (m_playSource) end = std::max(end, m_playSource->getPlayEndFrame());
|
Chris@366
|
2391 int pixels = currentPane->width();
|
Chris@366
|
2392
|
Chris@366
|
2393 int sw = currentPane->getVerticalScaleWidth();
|
Chris@45
|
2394 if (pixels > sw * 2) pixels -= sw * 2;
|
Chris@45
|
2395 else pixels = 1;
|
Chris@45
|
2396 if (pixels > 4) pixels -= 4;
|
Chris@45
|
2397
|
Chris@436
|
2398 int zoomLevel = int((end - start) / pixels);
|
Chris@150
|
2399 if (zoomLevel < 1) zoomLevel = 1;
|
Chris@45
|
2400
|
Chris@45
|
2401 currentPane->setZoomLevel(zoomLevel);
|
Chris@45
|
2402 currentPane->setCentreFrame((start + end) / 2);
|
Chris@45
|
2403 }
|
Chris@45
|
2404
|
Chris@45
|
2405 void
|
Chris@45
|
2406 MainWindowBase::zoomDefault()
|
Chris@45
|
2407 {
|
Chris@45
|
2408 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@302
|
2409 QSettings settings;
|
Chris@302
|
2410 settings.beginGroup("MainWindow");
|
Chris@302
|
2411 int zoom = settings.value("zoom-default", 1024).toInt();
|
Chris@302
|
2412 settings.endGroup();
|
Chris@302
|
2413 if (currentPane) currentPane->setZoomLevel(zoom);
|
Chris@45
|
2414 }
|
Chris@45
|
2415
|
Chris@45
|
2416 void
|
Chris@45
|
2417 MainWindowBase::scrollLeft()
|
Chris@45
|
2418 {
|
Chris@45
|
2419 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2420 if (currentPane) currentPane->scroll(false, false);
|
Chris@45
|
2421 }
|
Chris@45
|
2422
|
Chris@45
|
2423 void
|
Chris@45
|
2424 MainWindowBase::jumpLeft()
|
Chris@45
|
2425 {
|
Chris@45
|
2426 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2427 if (currentPane) currentPane->scroll(false, true);
|
Chris@45
|
2428 }
|
Chris@45
|
2429
|
Chris@45
|
2430 void
|
Chris@162
|
2431 MainWindowBase::peekLeft()
|
Chris@162
|
2432 {
|
Chris@162
|
2433 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@162
|
2434 if (currentPane) currentPane->scroll(false, false, false);
|
Chris@162
|
2435 }
|
Chris@162
|
2436
|
Chris@162
|
2437 void
|
Chris@45
|
2438 MainWindowBase::scrollRight()
|
Chris@45
|
2439 {
|
Chris@45
|
2440 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2441 if (currentPane) currentPane->scroll(true, false);
|
Chris@45
|
2442 }
|
Chris@45
|
2443
|
Chris@45
|
2444 void
|
Chris@45
|
2445 MainWindowBase::jumpRight()
|
Chris@45
|
2446 {
|
Chris@45
|
2447 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@45
|
2448 if (currentPane) currentPane->scroll(true, true);
|
Chris@45
|
2449 }
|
Chris@45
|
2450
|
Chris@45
|
2451 void
|
Chris@162
|
2452 MainWindowBase::peekRight()
|
Chris@162
|
2453 {
|
Chris@162
|
2454 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@162
|
2455 if (currentPane) currentPane->scroll(true, false, false);
|
Chris@162
|
2456 }
|
Chris@162
|
2457
|
Chris@162
|
2458 void
|
Chris@45
|
2459 MainWindowBase::showNoOverlays()
|
Chris@45
|
2460 {
|
Chris@45
|
2461 m_viewManager->setOverlayMode(ViewManager::NoOverlays);
|
Chris@45
|
2462 }
|
Chris@45
|
2463
|
Chris@45
|
2464 void
|
Chris@45
|
2465 MainWindowBase::showMinimalOverlays()
|
Chris@45
|
2466 {
|
Chris@335
|
2467 m_viewManager->setOverlayMode(ViewManager::StandardOverlays);
|
Chris@45
|
2468 }
|
Chris@45
|
2469
|
Chris@45
|
2470 void
|
Chris@45
|
2471 MainWindowBase::showAllOverlays()
|
Chris@45
|
2472 {
|
Chris@45
|
2473 m_viewManager->setOverlayMode(ViewManager::AllOverlays);
|
Chris@45
|
2474 }
|
Chris@45
|
2475
|
Chris@45
|
2476 void
|
Chris@211
|
2477 MainWindowBase::toggleTimeRulers()
|
Chris@211
|
2478 {
|
Chris@211
|
2479 bool haveRulers = false;
|
Chris@211
|
2480 bool someHidden = false;
|
Chris@211
|
2481
|
Chris@211
|
2482 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@211
|
2483
|
Chris@211
|
2484 Pane *pane = m_paneStack->getPane(i);
|
Chris@211
|
2485 if (!pane) continue;
|
Chris@211
|
2486
|
Chris@211
|
2487 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@211
|
2488
|
Chris@211
|
2489 Layer *layer = pane->getLayer(j);
|
Chris@211
|
2490 if (!dynamic_cast<TimeRulerLayer *>(layer)) continue;
|
Chris@211
|
2491
|
Chris@211
|
2492 haveRulers = true;
|
Chris@211
|
2493 if (layer->isLayerDormant(pane)) someHidden = true;
|
Chris@211
|
2494 }
|
Chris@211
|
2495 }
|
Chris@211
|
2496
|
Chris@211
|
2497 if (haveRulers) {
|
Chris@211
|
2498
|
Chris@211
|
2499 bool show = someHidden;
|
Chris@211
|
2500
|
Chris@211
|
2501 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@211
|
2502
|
Chris@211
|
2503 Pane *pane = m_paneStack->getPane(i);
|
Chris@211
|
2504 if (!pane) continue;
|
Chris@211
|
2505
|
Chris@211
|
2506 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@211
|
2507
|
Chris@211
|
2508 Layer *layer = pane->getLayer(j);
|
Chris@211
|
2509 if (!dynamic_cast<TimeRulerLayer *>(layer)) continue;
|
Chris@211
|
2510
|
Chris@211
|
2511 layer->showLayer(pane, show);
|
Chris@211
|
2512 }
|
Chris@211
|
2513 }
|
Chris@211
|
2514 }
|
Chris@211
|
2515 }
|
Chris@211
|
2516
|
Chris@211
|
2517 void
|
Chris@45
|
2518 MainWindowBase::toggleZoomWheels()
|
Chris@45
|
2519 {
|
Chris@45
|
2520 if (m_viewManager->getZoomWheelsEnabled()) {
|
Chris@45
|
2521 m_viewManager->setZoomWheelsEnabled(false);
|
Chris@45
|
2522 } else {
|
Chris@45
|
2523 m_viewManager->setZoomWheelsEnabled(true);
|
Chris@45
|
2524 }
|
Chris@45
|
2525 }
|
Chris@45
|
2526
|
Chris@45
|
2527 void
|
Chris@45
|
2528 MainWindowBase::togglePropertyBoxes()
|
Chris@45
|
2529 {
|
Chris@45
|
2530 if (m_paneStack->getLayoutStyle() == PaneStack::NoPropertyStacks) {
|
Chris@45
|
2531 if (Preferences::getInstance()->getPropertyBoxLayout() ==
|
Chris@45
|
2532 Preferences::VerticallyStacked) {
|
Chris@45
|
2533 m_paneStack->setLayoutStyle(PaneStack::PropertyStackPerPaneLayout);
|
Chris@45
|
2534 } else {
|
Chris@45
|
2535 m_paneStack->setLayoutStyle(PaneStack::SinglePropertyStackLayout);
|
Chris@45
|
2536 }
|
Chris@45
|
2537 } else {
|
Chris@45
|
2538 m_paneStack->setLayoutStyle(PaneStack::NoPropertyStacks);
|
Chris@45
|
2539 }
|
Chris@45
|
2540 }
|
Chris@45
|
2541
|
Chris@378
|
2542 QLabel *
|
Chris@378
|
2543 MainWindowBase::getStatusLabel() const
|
Chris@378
|
2544 {
|
Chris@378
|
2545 if (!m_statusLabel) {
|
Chris@378
|
2546 m_statusLabel = new QLabel();
|
Chris@378
|
2547 statusBar()->addWidget(m_statusLabel, 1);
|
Chris@378
|
2548 }
|
Chris@379
|
2549
|
Chris@379
|
2550 QList<QFrame *> frames = statusBar()->findChildren<QFrame *>();
|
Chris@379
|
2551 foreach (QFrame *f, frames) {
|
Chris@379
|
2552 f->setFrameStyle(QFrame::NoFrame);
|
Chris@379
|
2553 }
|
Chris@379
|
2554
|
Chris@378
|
2555 return m_statusLabel;
|
Chris@378
|
2556 }
|
Chris@378
|
2557
|
Chris@45
|
2558 void
|
Chris@45
|
2559 MainWindowBase::toggleStatusBar()
|
Chris@45
|
2560 {
|
Chris@45
|
2561 QSettings settings;
|
Chris@45
|
2562 settings.beginGroup("MainWindow");
|
Chris@45
|
2563 bool sb = settings.value("showstatusbar", true).toBool();
|
Chris@45
|
2564
|
Chris@45
|
2565 if (sb) {
|
Chris@45
|
2566 statusBar()->hide();
|
Chris@45
|
2567 } else {
|
Chris@45
|
2568 statusBar()->show();
|
Chris@45
|
2569 }
|
Chris@45
|
2570
|
Chris@45
|
2571 settings.setValue("showstatusbar", !sb);
|
Chris@45
|
2572
|
Chris@45
|
2573 settings.endGroup();
|
Chris@45
|
2574 }
|
Chris@45
|
2575
|
Chris@45
|
2576 void
|
Chris@256
|
2577 MainWindowBase::toggleCentreLine()
|
Chris@256
|
2578 {
|
Chris@256
|
2579 if (m_viewManager->shouldShowCentreLine()) {
|
Chris@256
|
2580 m_viewManager->setShowCentreLine(false);
|
Chris@256
|
2581 } else {
|
Chris@256
|
2582 m_viewManager->setShowCentreLine(true);
|
Chris@256
|
2583 }
|
Chris@256
|
2584 }
|
Chris@256
|
2585
|
Chris@256
|
2586 void
|
Chris@45
|
2587 MainWindowBase::preferenceChanged(PropertyContainer::PropertyName name)
|
Chris@45
|
2588 {
|
Chris@45
|
2589 if (name == "Property Box Layout") {
|
Chris@45
|
2590 if (m_paneStack->getLayoutStyle() != PaneStack::NoPropertyStacks) {
|
Chris@45
|
2591 if (Preferences::getInstance()->getPropertyBoxLayout() ==
|
Chris@45
|
2592 Preferences::VerticallyStacked) {
|
Chris@45
|
2593 m_paneStack->setLayoutStyle(PaneStack::PropertyStackPerPaneLayout);
|
Chris@45
|
2594 } else {
|
Chris@45
|
2595 m_paneStack->setLayoutStyle(PaneStack::SinglePropertyStackLayout);
|
Chris@45
|
2596 }
|
Chris@45
|
2597 }
|
Chris@45
|
2598 } else if (name == "Background Mode" && m_viewManager) {
|
Chris@45
|
2599 Preferences::BackgroundMode mode =
|
Chris@45
|
2600 Preferences::getInstance()->getBackgroundMode();
|
Chris@45
|
2601 if (mode == Preferences::BackgroundFromTheme) {
|
Chris@45
|
2602 m_viewManager->setGlobalDarkBackground(m_initialDarkBackground);
|
Chris@45
|
2603 } else if (mode == Preferences::DarkBackground) {
|
Chris@45
|
2604 m_viewManager->setGlobalDarkBackground(true);
|
Chris@45
|
2605 } else {
|
Chris@45
|
2606 m_viewManager->setGlobalDarkBackground(false);
|
Chris@45
|
2607 }
|
Chris@45
|
2608 }
|
Chris@45
|
2609 }
|
Chris@45
|
2610
|
Chris@45
|
2611 void
|
Chris@45
|
2612 MainWindowBase::play()
|
Chris@45
|
2613 {
|
Chris@45
|
2614 if (m_playSource->isPlaying()) {
|
Chris@45
|
2615 stop();
|
Chris@45
|
2616 } else {
|
Chris@45
|
2617 playbackFrameChanged(m_viewManager->getPlaybackFrame());
|
Chris@45
|
2618 m_playSource->play(m_viewManager->getPlaybackFrame());
|
Chris@45
|
2619 }
|
Chris@45
|
2620 }
|
Chris@45
|
2621
|
Chris@45
|
2622 void
|
Chris@45
|
2623 MainWindowBase::ffwd()
|
Chris@45
|
2624 {
|
Chris@45
|
2625 if (!getMainModel()) return;
|
Chris@45
|
2626
|
Chris@435
|
2627 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
Chris@45
|
2628 ++frame;
|
Chris@45
|
2629
|
Chris@85
|
2630 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2631 Layer *layer = getSnapLayer();
|
Chris@435
|
2632 sv_samplerate_t sr = getMainModel()->getSampleRate();
|
Chris@45
|
2633
|
Chris@45
|
2634 if (!layer) {
|
Chris@45
|
2635
|
Chris@45
|
2636 frame = RealTime::realTime2Frame
|
Chris@357
|
2637 (RealTime::frame2RealTime(frame, sr) + m_defaultFfwdRwdStep, sr);
|
Chris@435
|
2638 if (frame > getMainModel()->getEndFrame()) {
|
Chris@45
|
2639 frame = getMainModel()->getEndFrame();
|
Chris@45
|
2640 }
|
Chris@45
|
2641
|
Chris@45
|
2642 } else {
|
Chris@45
|
2643
|
Chris@366
|
2644 int resolution = 0;
|
Chris@166
|
2645 if (pane) frame = pane->alignFromReference(frame);
|
Chris@85
|
2646 if (layer->snapToFeatureFrame(m_paneStack->getCurrentPane(),
|
Chris@85
|
2647 frame, resolution, Layer::SnapRight)) {
|
Chris@85
|
2648 if (pane) frame = pane->alignToReference(frame);
|
Chris@85
|
2649 } else {
|
Chris@45
|
2650 frame = getMainModel()->getEndFrame();
|
Chris@45
|
2651 }
|
Chris@45
|
2652 }
|
Chris@45
|
2653
|
Chris@45
|
2654 if (frame < 0) frame = 0;
|
Chris@45
|
2655
|
Chris@45
|
2656 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@435
|
2657 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
2658 }
|
Chris@45
|
2659
|
Chris@45
|
2660 m_viewManager->setPlaybackFrame(frame);
|
Chris@166
|
2661
|
Chris@435
|
2662 if (frame == getMainModel()->getEndFrame() &&
|
Chris@166
|
2663 m_playSource &&
|
Chris@166
|
2664 m_playSource->isPlaying() &&
|
Chris@166
|
2665 !m_viewManager->getPlayLoopMode()) {
|
Chris@166
|
2666 stop();
|
Chris@166
|
2667 }
|
Chris@45
|
2668 }
|
Chris@45
|
2669
|
Chris@45
|
2670 void
|
Chris@45
|
2671 MainWindowBase::ffwdEnd()
|
Chris@45
|
2672 {
|
Chris@45
|
2673 if (!getMainModel()) return;
|
Chris@45
|
2674
|
Chris@139
|
2675 if (m_playSource &&
|
Chris@139
|
2676 m_playSource->isPlaying() &&
|
Chris@139
|
2677 !m_viewManager->getPlayLoopMode()) {
|
Chris@139
|
2678 stop();
|
Chris@139
|
2679 }
|
Chris@139
|
2680
|
Chris@435
|
2681 sv_frame_t frame = getMainModel()->getEndFrame();
|
Chris@45
|
2682
|
Chris@45
|
2683 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@45
|
2684 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
2685 }
|
Chris@45
|
2686
|
Chris@45
|
2687 m_viewManager->setPlaybackFrame(frame);
|
Chris@45
|
2688 }
|
Chris@45
|
2689
|
Chris@45
|
2690 void
|
Chris@166
|
2691 MainWindowBase::ffwdSimilar()
|
Chris@166
|
2692 {
|
Chris@166
|
2693 if (!getMainModel()) return;
|
Chris@166
|
2694
|
Chris@166
|
2695 Layer *layer = getSnapLayer();
|
Chris@166
|
2696 if (!layer) { ffwd(); return; }
|
Chris@166
|
2697
|
Chris@166
|
2698 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@435
|
2699 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
Chris@166
|
2700
|
Chris@366
|
2701 int resolution = 0;
|
Chris@166
|
2702 if (pane) frame = pane->alignFromReference(frame);
|
Chris@166
|
2703 if (layer->snapToSimilarFeature(m_paneStack->getCurrentPane(),
|
Chris@166
|
2704 frame, resolution, Layer::SnapRight)) {
|
Chris@166
|
2705 if (pane) frame = pane->alignToReference(frame);
|
Chris@166
|
2706 } else {
|
Chris@166
|
2707 frame = getMainModel()->getEndFrame();
|
Chris@166
|
2708 }
|
Chris@166
|
2709
|
Chris@166
|
2710 if (frame < 0) frame = 0;
|
Chris@166
|
2711
|
Chris@166
|
2712 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@435
|
2713 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@166
|
2714 }
|
Chris@166
|
2715
|
Chris@166
|
2716 m_viewManager->setPlaybackFrame(frame);
|
Chris@166
|
2717
|
Chris@435
|
2718 if (frame == getMainModel()->getEndFrame() &&
|
Chris@166
|
2719 m_playSource &&
|
Chris@166
|
2720 m_playSource->isPlaying() &&
|
Chris@166
|
2721 !m_viewManager->getPlayLoopMode()) {
|
Chris@166
|
2722 stop();
|
Chris@166
|
2723 }
|
Chris@166
|
2724 }
|
Chris@166
|
2725
|
Chris@166
|
2726 void
|
Chris@45
|
2727 MainWindowBase::rewind()
|
Chris@45
|
2728 {
|
Chris@45
|
2729 if (!getMainModel()) return;
|
Chris@45
|
2730
|
Chris@435
|
2731 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
Chris@45
|
2732 if (frame > 0) --frame;
|
Chris@45
|
2733
|
Chris@85
|
2734 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2735 Layer *layer = getSnapLayer();
|
Chris@435
|
2736 sv_samplerate_t sr = getMainModel()->getSampleRate();
|
Chris@45
|
2737
|
Chris@45
|
2738 // when rewinding during playback, we want to allow a period
|
Chris@45
|
2739 // following a rewind target point at which the rewind will go to
|
Chris@45
|
2740 // the prior point instead of the immediately neighbouring one
|
Chris@45
|
2741 if (m_playSource && m_playSource->isPlaying()) {
|
Chris@45
|
2742 RealTime ct = RealTime::frame2RealTime(frame, sr);
|
Chris@357
|
2743 ct = ct - RealTime::fromSeconds(0.15);
|
Chris@45
|
2744 if (ct < RealTime::zeroTime) ct = RealTime::zeroTime;
|
Chris@45
|
2745 frame = RealTime::realTime2Frame(ct, sr);
|
Chris@45
|
2746 }
|
Chris@45
|
2747
|
Chris@45
|
2748 if (!layer) {
|
Chris@45
|
2749
|
Chris@45
|
2750 frame = RealTime::realTime2Frame
|
Chris@357
|
2751 (RealTime::frame2RealTime(frame, sr) - m_defaultFfwdRwdStep, sr);
|
Chris@435
|
2752 if (frame < getMainModel()->getStartFrame()) {
|
Chris@45
|
2753 frame = getMainModel()->getStartFrame();
|
Chris@45
|
2754 }
|
Chris@45
|
2755
|
Chris@45
|
2756 } else {
|
Chris@45
|
2757
|
Chris@366
|
2758 int resolution = 0;
|
Chris@166
|
2759 if (pane) frame = pane->alignFromReference(frame);
|
Chris@85
|
2760 if (layer->snapToFeatureFrame(m_paneStack->getCurrentPane(),
|
Chris@85
|
2761 frame, resolution, Layer::SnapLeft)) {
|
Chris@85
|
2762 if (pane) frame = pane->alignToReference(frame);
|
Chris@85
|
2763 } else {
|
Chris@45
|
2764 frame = getMainModel()->getStartFrame();
|
Chris@45
|
2765 }
|
Chris@45
|
2766 }
|
Chris@45
|
2767
|
Chris@45
|
2768 if (frame < 0) frame = 0;
|
Chris@45
|
2769
|
Chris@45
|
2770 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@435
|
2771 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
2772 }
|
Chris@45
|
2773
|
Chris@45
|
2774 m_viewManager->setPlaybackFrame(frame);
|
Chris@45
|
2775 }
|
Chris@45
|
2776
|
Chris@45
|
2777 void
|
Chris@45
|
2778 MainWindowBase::rewindStart()
|
Chris@45
|
2779 {
|
Chris@45
|
2780 if (!getMainModel()) return;
|
Chris@45
|
2781
|
Chris@435
|
2782 sv_frame_t frame = getMainModel()->getStartFrame();
|
Chris@45
|
2783
|
Chris@45
|
2784 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@45
|
2785 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@45
|
2786 }
|
Chris@45
|
2787
|
Chris@45
|
2788 m_viewManager->setPlaybackFrame(frame);
|
Chris@45
|
2789 }
|
Chris@45
|
2790
|
Chris@166
|
2791 void
|
Chris@166
|
2792 MainWindowBase::rewindSimilar()
|
Chris@166
|
2793 {
|
Chris@166
|
2794 if (!getMainModel()) return;
|
Chris@166
|
2795
|
Chris@166
|
2796 Layer *layer = getSnapLayer();
|
Chris@166
|
2797 if (!layer) { rewind(); return; }
|
Chris@166
|
2798
|
Chris@166
|
2799 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@435
|
2800 sv_frame_t frame = m_viewManager->getPlaybackFrame();
|
Chris@166
|
2801
|
Chris@366
|
2802 int resolution = 0;
|
Chris@166
|
2803 if (pane) frame = pane->alignFromReference(frame);
|
Chris@166
|
2804 if (layer->snapToSimilarFeature(m_paneStack->getCurrentPane(),
|
Chris@166
|
2805 frame, resolution, Layer::SnapLeft)) {
|
Chris@166
|
2806 if (pane) frame = pane->alignToReference(frame);
|
Chris@166
|
2807 } else {
|
Chris@166
|
2808 frame = getMainModel()->getStartFrame();
|
Chris@166
|
2809 }
|
Chris@166
|
2810
|
Chris@166
|
2811 if (frame < 0) frame = 0;
|
Chris@166
|
2812
|
Chris@166
|
2813 if (m_viewManager->getPlaySelectionMode()) {
|
Chris@435
|
2814 frame = m_viewManager->constrainFrameToSelection(frame);
|
Chris@166
|
2815 }
|
Chris@166
|
2816
|
Chris@166
|
2817 m_viewManager->setPlaybackFrame(frame);
|
Chris@166
|
2818 }
|
Chris@166
|
2819
|
Chris@45
|
2820 Layer *
|
Chris@45
|
2821 MainWindowBase::getSnapLayer() const
|
Chris@45
|
2822 {
|
Chris@45
|
2823 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2824 if (!pane) return 0;
|
Chris@45
|
2825
|
Chris@45
|
2826 Layer *layer = pane->getSelectedLayer();
|
Chris@45
|
2827
|
Chris@45
|
2828 if (!dynamic_cast<TimeInstantLayer *>(layer) &&
|
Chris@45
|
2829 !dynamic_cast<TimeValueLayer *>(layer) &&
|
Chris@194
|
2830 !dynamic_cast<RegionLayer *>(layer) &&
|
Chris@45
|
2831 !dynamic_cast<TimeRulerLayer *>(layer)) {
|
Chris@45
|
2832
|
Chris@45
|
2833 layer = 0;
|
Chris@45
|
2834
|
Chris@45
|
2835 for (int i = pane->getLayerCount(); i > 0; --i) {
|
Chris@45
|
2836 Layer *l = pane->getLayer(i-1);
|
Chris@45
|
2837 if (dynamic_cast<TimeRulerLayer *>(l)) {
|
Chris@45
|
2838 layer = l;
|
Chris@45
|
2839 break;
|
Chris@45
|
2840 }
|
Chris@45
|
2841 }
|
Chris@45
|
2842 }
|
Chris@45
|
2843
|
Chris@45
|
2844 return layer;
|
Chris@45
|
2845 }
|
Chris@45
|
2846
|
Chris@45
|
2847 void
|
Chris@45
|
2848 MainWindowBase::stop()
|
Chris@45
|
2849 {
|
Chris@45
|
2850 m_playSource->stop();
|
Chris@45
|
2851
|
Chris@45
|
2852 if (m_paneStack && m_paneStack->getCurrentPane()) {
|
Chris@45
|
2853 updateVisibleRangeDisplay(m_paneStack->getCurrentPane());
|
Chris@45
|
2854 } else {
|
Chris@45
|
2855 m_myStatusMessage = "";
|
Chris@378
|
2856 getStatusLabel()->setText("");
|
Chris@45
|
2857 }
|
Chris@45
|
2858 }
|
Chris@45
|
2859
|
Chris@45
|
2860 MainWindowBase::AddPaneCommand::AddPaneCommand(MainWindowBase *mw) :
|
Chris@45
|
2861 m_mw(mw),
|
Chris@45
|
2862 m_pane(0),
|
Chris@45
|
2863 m_prevCurrentPane(0),
|
Chris@45
|
2864 m_added(false)
|
Chris@45
|
2865 {
|
Chris@45
|
2866 }
|
Chris@45
|
2867
|
Chris@45
|
2868 MainWindowBase::AddPaneCommand::~AddPaneCommand()
|
Chris@45
|
2869 {
|
Chris@45
|
2870 if (m_pane && !m_added) {
|
Chris@45
|
2871 m_mw->m_paneStack->deletePane(m_pane);
|
Chris@45
|
2872 }
|
Chris@45
|
2873 }
|
Chris@45
|
2874
|
Chris@45
|
2875 QString
|
Chris@45
|
2876 MainWindowBase::AddPaneCommand::getName() const
|
Chris@45
|
2877 {
|
Chris@45
|
2878 return tr("Add Pane");
|
Chris@45
|
2879 }
|
Chris@45
|
2880
|
Chris@45
|
2881 void
|
Chris@45
|
2882 MainWindowBase::AddPaneCommand::execute()
|
Chris@45
|
2883 {
|
Chris@45
|
2884 if (!m_pane) {
|
Chris@45
|
2885 m_prevCurrentPane = m_mw->m_paneStack->getCurrentPane();
|
Chris@45
|
2886 m_pane = m_mw->m_paneStack->addPane();
|
Chris@45
|
2887
|
Chris@45
|
2888 connect(m_pane, SIGNAL(contextHelpChanged(const QString &)),
|
Chris@45
|
2889 m_mw, SLOT(contextHelpChanged(const QString &)));
|
Chris@45
|
2890 } else {
|
Chris@45
|
2891 m_mw->m_paneStack->showPane(m_pane);
|
Chris@45
|
2892 }
|
Chris@45
|
2893
|
Chris@45
|
2894 m_mw->m_paneStack->setCurrentPane(m_pane);
|
Chris@45
|
2895 m_added = true;
|
Chris@45
|
2896 }
|
Chris@45
|
2897
|
Chris@45
|
2898 void
|
Chris@45
|
2899 MainWindowBase::AddPaneCommand::unexecute()
|
Chris@45
|
2900 {
|
Chris@45
|
2901 m_mw->m_paneStack->hidePane(m_pane);
|
Chris@45
|
2902 m_mw->m_paneStack->setCurrentPane(m_prevCurrentPane);
|
Chris@45
|
2903 m_added = false;
|
Chris@45
|
2904 }
|
Chris@45
|
2905
|
Chris@45
|
2906 MainWindowBase::RemovePaneCommand::RemovePaneCommand(MainWindowBase *mw, Pane *pane) :
|
Chris@45
|
2907 m_mw(mw),
|
Chris@45
|
2908 m_pane(pane),
|
Chris@409
|
2909 m_prevCurrentPane(0),
|
Chris@45
|
2910 m_added(true)
|
Chris@45
|
2911 {
|
Chris@45
|
2912 }
|
Chris@45
|
2913
|
Chris@45
|
2914 MainWindowBase::RemovePaneCommand::~RemovePaneCommand()
|
Chris@45
|
2915 {
|
Chris@45
|
2916 if (m_pane && !m_added) {
|
Chris@45
|
2917 m_mw->m_paneStack->deletePane(m_pane);
|
Chris@45
|
2918 }
|
Chris@45
|
2919 }
|
Chris@45
|
2920
|
Chris@45
|
2921 QString
|
Chris@45
|
2922 MainWindowBase::RemovePaneCommand::getName() const
|
Chris@45
|
2923 {
|
Chris@45
|
2924 return tr("Remove Pane");
|
Chris@45
|
2925 }
|
Chris@45
|
2926
|
Chris@45
|
2927 void
|
Chris@45
|
2928 MainWindowBase::RemovePaneCommand::execute()
|
Chris@45
|
2929 {
|
Chris@45
|
2930 m_prevCurrentPane = m_mw->m_paneStack->getCurrentPane();
|
Chris@45
|
2931 m_mw->m_paneStack->hidePane(m_pane);
|
Chris@45
|
2932 m_added = false;
|
Chris@45
|
2933 }
|
Chris@45
|
2934
|
Chris@45
|
2935 void
|
Chris@45
|
2936 MainWindowBase::RemovePaneCommand::unexecute()
|
Chris@45
|
2937 {
|
Chris@45
|
2938 m_mw->m_paneStack->showPane(m_pane);
|
Chris@45
|
2939 m_mw->m_paneStack->setCurrentPane(m_prevCurrentPane);
|
Chris@45
|
2940 m_added = true;
|
Chris@45
|
2941 }
|
Chris@45
|
2942
|
Chris@45
|
2943 void
|
Chris@45
|
2944 MainWindowBase::deleteCurrentPane()
|
Chris@45
|
2945 {
|
Chris@45
|
2946 CommandHistory::getInstance()->startCompoundOperation
|
Chris@45
|
2947 (tr("Delete Pane"), true);
|
Chris@45
|
2948
|
Chris@45
|
2949 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2950 if (pane) {
|
Chris@45
|
2951 while (pane->getLayerCount() > 0) {
|
Chris@45
|
2952 Layer *layer = pane->getLayer(0);
|
Chris@45
|
2953 if (layer) {
|
Chris@45
|
2954 m_document->removeLayerFromView(pane, layer);
|
Chris@45
|
2955 } else {
|
Chris@45
|
2956 break;
|
Chris@45
|
2957 }
|
Chris@45
|
2958 }
|
Chris@45
|
2959
|
Chris@45
|
2960 RemovePaneCommand *command = new RemovePaneCommand(this, pane);
|
Chris@45
|
2961 CommandHistory::getInstance()->addCommand(command);
|
Chris@45
|
2962 }
|
Chris@45
|
2963
|
Chris@45
|
2964 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@45
|
2965
|
Chris@45
|
2966 updateMenuStates();
|
Chris@45
|
2967 }
|
Chris@45
|
2968
|
Chris@45
|
2969 void
|
Chris@45
|
2970 MainWindowBase::deleteCurrentLayer()
|
Chris@45
|
2971 {
|
Chris@45
|
2972 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@45
|
2973 if (pane) {
|
Chris@45
|
2974 Layer *layer = pane->getSelectedLayer();
|
Chris@45
|
2975 if (layer) {
|
Chris@45
|
2976 m_document->removeLayerFromView(pane, layer);
|
Chris@45
|
2977 }
|
Chris@45
|
2978 }
|
Chris@45
|
2979 updateMenuStates();
|
Chris@45
|
2980 }
|
Chris@45
|
2981
|
Chris@45
|
2982 void
|
Chris@123
|
2983 MainWindowBase::editCurrentLayer()
|
Chris@123
|
2984 {
|
Chris@123
|
2985 Layer *layer = 0;
|
Chris@123
|
2986 Pane *pane = m_paneStack->getCurrentPane();
|
Chris@123
|
2987 if (pane) layer = pane->getSelectedLayer();
|
Chris@123
|
2988 if (!layer) return;
|
Chris@123
|
2989
|
Chris@123
|
2990 Model *model = layer->getModel();
|
Chris@123
|
2991 if (!model) return;
|
Chris@123
|
2992
|
Chris@124
|
2993 TabularModel *tabular = dynamic_cast<TabularModel *>(model);
|
Chris@124
|
2994 if (!tabular) {
|
Chris@124
|
2995 //!!! how to prevent this function from being active if not
|
Chris@124
|
2996 //appropriate model type? or will we ultimately support
|
Chris@124
|
2997 //tabular display for all editable models?
|
Chris@233
|
2998 SVDEBUG << "NOTE: Not a tabular model" << endl;
|
Chris@124
|
2999 return;
|
Chris@124
|
3000 }
|
Chris@124
|
3001
|
Chris@123
|
3002 if (m_layerDataDialogMap.find(layer) != m_layerDataDialogMap.end()) {
|
Chris@126
|
3003 if (!m_layerDataDialogMap[layer].isNull()) {
|
Chris@126
|
3004 m_layerDataDialogMap[layer]->show();
|
Chris@126
|
3005 m_layerDataDialogMap[layer]->raise();
|
Chris@126
|
3006 return;
|
Chris@126
|
3007 }
|
Chris@123
|
3008 }
|
Chris@123
|
3009
|
Chris@125
|
3010 QString title = layer->getLayerPresentationName();
|
Chris@125
|
3011
|
Chris@125
|
3012 ModelDataTableDialog *dialog = new ModelDataTableDialog(tabular, title, this);
|
Chris@128
|
3013 dialog->setAttribute(Qt::WA_DeleteOnClose);
|
Chris@128
|
3014
|
Chris@128
|
3015 connectLayerEditDialog(dialog);
|
Chris@123
|
3016
|
Chris@128
|
3017 m_layerDataDialogMap[layer] = dialog;
|
Chris@128
|
3018 m_viewDataDialogMap[pane].insert(dialog);
|
Chris@128
|
3019
|
Chris@128
|
3020 dialog->show();
|
Chris@128
|
3021 }
|
Chris@128
|
3022
|
Chris@128
|
3023 void
|
Chris@128
|
3024 MainWindowBase::connectLayerEditDialog(ModelDataTableDialog *dialog)
|
Chris@128
|
3025 {
|
Chris@123
|
3026 connect(m_viewManager,
|
Chris@435
|
3027 SIGNAL(globalCentreFrameChanged(sv_frame_t)),
|
Chris@123
|
3028 dialog,
|
Chris@435
|
3029 SLOT(userScrolledToFrame(sv_frame_t)));
|
Chris@127
|
3030
|
Chris@127
|
3031 connect(m_viewManager,
|
Chris@435
|
3032 SIGNAL(playbackFrameChanged(sv_frame_t)),
|
Chris@127
|
3033 dialog,
|
Chris@435
|
3034 SLOT(playbackScrolledToFrame(sv_frame_t)));
|
Chris@127
|
3035
|
Chris@123
|
3036 connect(dialog,
|
Chris@435
|
3037 SIGNAL(scrollToFrame(sv_frame_t)),
|
Chris@123
|
3038 m_viewManager,
|
Chris@435
|
3039 SLOT(setGlobalCentreFrame(sv_frame_t)));
|
Chris@129
|
3040
|
Chris@129
|
3041 connect(dialog,
|
Chris@435
|
3042 SIGNAL(scrollToFrame(sv_frame_t)),
|
Chris@129
|
3043 m_viewManager,
|
Chris@435
|
3044 SLOT(setPlaybackFrame(sv_frame_t)));
|
Chris@128
|
3045 }
|
Chris@123
|
3046
|
Chris@123
|
3047 void
|
Chris@73
|
3048 MainWindowBase::previousPane()
|
Chris@73
|
3049 {
|
Chris@73
|
3050 if (!m_paneStack) return;
|
Chris@73
|
3051
|
Chris@73
|
3052 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
3053 if (!currentPane) return;
|
Chris@73
|
3054
|
Chris@73
|
3055 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@73
|
3056 if (m_paneStack->getPane(i) == currentPane) {
|
Chris@73
|
3057 if (i == 0) return;
|
Chris@73
|
3058 m_paneStack->setCurrentPane(m_paneStack->getPane(i-1));
|
Chris@73
|
3059 updateMenuStates();
|
Chris@73
|
3060 return;
|
Chris@73
|
3061 }
|
Chris@73
|
3062 }
|
Chris@73
|
3063 }
|
Chris@73
|
3064
|
Chris@73
|
3065 void
|
Chris@73
|
3066 MainWindowBase::nextPane()
|
Chris@73
|
3067 {
|
Chris@73
|
3068 if (!m_paneStack) return;
|
Chris@73
|
3069
|
Chris@73
|
3070 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
3071 if (!currentPane) return;
|
Chris@73
|
3072
|
Chris@73
|
3073 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@73
|
3074 if (m_paneStack->getPane(i) == currentPane) {
|
Chris@73
|
3075 if (i == m_paneStack->getPaneCount()-1) return;
|
Chris@73
|
3076 m_paneStack->setCurrentPane(m_paneStack->getPane(i+1));
|
Chris@73
|
3077 updateMenuStates();
|
Chris@73
|
3078 return;
|
Chris@73
|
3079 }
|
Chris@73
|
3080 }
|
Chris@73
|
3081 }
|
Chris@73
|
3082
|
Chris@73
|
3083 void
|
Chris@73
|
3084 MainWindowBase::previousLayer()
|
Chris@73
|
3085 {
|
Chris@73
|
3086 if (!m_paneStack) return;
|
Chris@73
|
3087
|
Chris@73
|
3088 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
3089 if (!currentPane) return;
|
Chris@73
|
3090
|
Chris@403
|
3091 int count = currentPane->getLayerCount();
|
Chris@403
|
3092 if (count == 0) return;
|
Chris@403
|
3093
|
Chris@73
|
3094 Layer *currentLayer = currentPane->getSelectedLayer();
|
Chris@403
|
3095
|
Chris@403
|
3096 if (!currentLayer) {
|
Chris@403
|
3097 // The pane itself is current
|
Chris@403
|
3098 m_paneStack->setCurrentLayer
|
Chris@403
|
3099 (currentPane, currentPane->getFixedOrderLayer(count-1));
|
Chris@403
|
3100 } else {
|
Chris@403
|
3101 for (int i = 0; i < count; ++i) {
|
Chris@403
|
3102 if (currentPane->getFixedOrderLayer(i) == currentLayer) {
|
Chris@403
|
3103 if (i == 0) {
|
Chris@403
|
3104 m_paneStack->setCurrentLayer
|
Chris@403
|
3105 (currentPane, 0); // pane
|
Chris@403
|
3106 } else {
|
Chris@403
|
3107 m_paneStack->setCurrentLayer
|
Chris@403
|
3108 (currentPane, currentPane->getFixedOrderLayer(i-1));
|
Chris@403
|
3109 }
|
Chris@403
|
3110 break;
|
Chris@403
|
3111 }
|
Chris@73
|
3112 }
|
Chris@73
|
3113 }
|
Chris@403
|
3114
|
Chris@403
|
3115 updateMenuStates();
|
Chris@73
|
3116 }
|
Chris@73
|
3117
|
Chris@73
|
3118 void
|
Chris@73
|
3119 MainWindowBase::nextLayer()
|
Chris@73
|
3120 {
|
Chris@73
|
3121 if (!m_paneStack) return;
|
Chris@73
|
3122
|
Chris@73
|
3123 Pane *currentPane = m_paneStack->getCurrentPane();
|
Chris@73
|
3124 if (!currentPane) return;
|
Chris@73
|
3125
|
Chris@403
|
3126 int count = currentPane->getLayerCount();
|
Chris@403
|
3127 if (count == 0) return;
|
Chris@403
|
3128
|
Chris@73
|
3129 Layer *currentLayer = currentPane->getSelectedLayer();
|
Chris@403
|
3130
|
Chris@403
|
3131 if (!currentLayer) {
|
Chris@403
|
3132 // The pane itself is current
|
Chris@403
|
3133 m_paneStack->setCurrentLayer
|
Chris@403
|
3134 (currentPane, currentPane->getFixedOrderLayer(0));
|
Chris@403
|
3135 } else {
|
Chris@403
|
3136 for (int i = 0; i < count; ++i) {
|
Chris@403
|
3137 if (currentPane->getFixedOrderLayer(i) == currentLayer) {
|
Chris@403
|
3138 if (i == currentPane->getLayerCount()-1) {
|
Chris@403
|
3139 m_paneStack->setCurrentLayer
|
Chris@403
|
3140 (currentPane, 0); // pane
|
Chris@403
|
3141 } else {
|
Chris@403
|
3142 m_paneStack->setCurrentLayer
|
Chris@403
|
3143 (currentPane, currentPane->getFixedOrderLayer(i+1));
|
Chris@403
|
3144 }
|
Chris@403
|
3145 break;
|
Chris@403
|
3146 }
|
Chris@73
|
3147 }
|
Chris@73
|
3148 }
|
Chris@403
|
3149
|
Chris@403
|
3150 updateMenuStates();
|
Chris@73
|
3151 }
|
Chris@73
|
3152
|
Chris@73
|
3153 void
|
Chris@435
|
3154 MainWindowBase::playbackFrameChanged(sv_frame_t frame)
|
Chris@45
|
3155 {
|
Chris@45
|
3156 if (!(m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3157
|
Chris@187
|
3158 updatePositionStatusDisplays();
|
Chris@187
|
3159
|
Chris@45
|
3160 RealTime now = RealTime::frame2RealTime
|
Chris@45
|
3161 (frame, getMainModel()->getSampleRate());
|
Chris@45
|
3162
|
Chris@45
|
3163 if (now.sec == m_lastPlayStatusSec) return;
|
Chris@45
|
3164
|
Chris@45
|
3165 RealTime then = RealTime::frame2RealTime
|
Chris@45
|
3166 (m_playSource->getPlayEndFrame(), getMainModel()->getSampleRate());
|
Chris@45
|
3167
|
Chris@45
|
3168 QString nowStr;
|
Chris@45
|
3169 QString thenStr;
|
Chris@45
|
3170 QString remainingStr;
|
Chris@45
|
3171
|
Chris@45
|
3172 if (then.sec > 10) {
|
Chris@45
|
3173 nowStr = now.toSecText().c_str();
|
Chris@45
|
3174 thenStr = then.toSecText().c_str();
|
Chris@45
|
3175 remainingStr = (then - now).toSecText().c_str();
|
Chris@45
|
3176 m_lastPlayStatusSec = now.sec;
|
Chris@45
|
3177 } else {
|
Chris@45
|
3178 nowStr = now.toText(true).c_str();
|
Chris@45
|
3179 thenStr = then.toText(true).c_str();
|
Chris@45
|
3180 remainingStr = (then - now).toText(true).c_str();
|
Chris@45
|
3181 }
|
Chris@45
|
3182
|
Chris@45
|
3183 m_myStatusMessage = tr("Playing: %1 of %2 (%3 remaining)")
|
Chris@45
|
3184 .arg(nowStr).arg(thenStr).arg(remainingStr);
|
Chris@45
|
3185
|
Chris@378
|
3186 getStatusLabel()->setText(m_myStatusMessage);
|
Chris@45
|
3187 }
|
Chris@45
|
3188
|
Chris@45
|
3189 void
|
Chris@435
|
3190 MainWindowBase::globalCentreFrameChanged(sv_frame_t )
|
Chris@45
|
3191 {
|
Chris@45
|
3192 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3193 Pane *p = 0;
|
Chris@45
|
3194 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@45
|
3195 if (!p->getFollowGlobalPan()) return;
|
Chris@45
|
3196 updateVisibleRangeDisplay(p);
|
Chris@45
|
3197 }
|
Chris@45
|
3198
|
Chris@45
|
3199 void
|
Chris@435
|
3200 MainWindowBase::viewCentreFrameChanged(View *v, sv_frame_t frame)
|
Chris@45
|
3201 {
|
Chris@233
|
3202 // SVDEBUG << "MainWindowBase::viewCentreFrameChanged(" << v << "," << frame << ")" << endl;
|
Chris@123
|
3203
|
Chris@123
|
3204 if (m_viewDataDialogMap.find(v) != m_viewDataDialogMap.end()) {
|
Chris@123
|
3205 for (DataDialogSet::iterator i = m_viewDataDialogMap[v].begin();
|
Chris@123
|
3206 i != m_viewDataDialogMap[v].end(); ++i) {
|
Chris@127
|
3207 (*i)->userScrolledToFrame(frame);
|
Chris@123
|
3208 }
|
Chris@123
|
3209 }
|
Chris@45
|
3210 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3211 Pane *p = 0;
|
Chris@45
|
3212 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@45
|
3213 if (v == p) updateVisibleRangeDisplay(p);
|
Chris@45
|
3214 }
|
Chris@45
|
3215
|
Chris@45
|
3216 void
|
Chris@366
|
3217 MainWindowBase::viewZoomLevelChanged(View *v, int , bool )
|
Chris@45
|
3218 {
|
Chris@45
|
3219 if ((m_playSource && m_playSource->isPlaying()) || !getMainModel()) return;
|
Chris@45
|
3220 Pane *p = 0;
|
Chris@45
|
3221 if (!m_paneStack || !(p = m_paneStack->getCurrentPane())) return;
|
Chris@45
|
3222 if (v == p) updateVisibleRangeDisplay(p);
|
Chris@45
|
3223 }
|
Chris@45
|
3224
|
Chris@45
|
3225 void
|
Chris@45
|
3226 MainWindowBase::layerAdded(Layer *)
|
Chris@45
|
3227 {
|
Chris@233
|
3228 // SVDEBUG << "MainWindowBase::layerAdded(" << layer << ")" << endl;
|
Chris@45
|
3229 updateMenuStates();
|
Chris@45
|
3230 }
|
Chris@45
|
3231
|
Chris@45
|
3232 void
|
Chris@45
|
3233 MainWindowBase::layerRemoved(Layer *)
|
Chris@45
|
3234 {
|
Chris@233
|
3235 // SVDEBUG << "MainWindowBase::layerRemoved(" << layer << ")" << endl;
|
Chris@45
|
3236 updateMenuStates();
|
Chris@45
|
3237 }
|
Chris@45
|
3238
|
Chris@45
|
3239 void
|
Chris@45
|
3240 MainWindowBase::layerAboutToBeDeleted(Layer *layer)
|
Chris@45
|
3241 {
|
Chris@233
|
3242 // SVDEBUG << "MainWindowBase::layerAboutToBeDeleted(" << layer << ")" << endl;
|
Chris@123
|
3243
|
Chris@128
|
3244 removeLayerEditDialog(layer);
|
Chris@123
|
3245
|
Chris@47
|
3246 if (m_timeRulerLayer && (layer == m_timeRulerLayer)) {
|
Chris@293
|
3247 // cerr << "(this is the time ruler layer)" << endl;
|
Chris@45
|
3248 m_timeRulerLayer = 0;
|
Chris@45
|
3249 }
|
Chris@45
|
3250 }
|
Chris@45
|
3251
|
Chris@45
|
3252 void
|
Chris@45
|
3253 MainWindowBase::layerInAView(Layer *layer, bool inAView)
|
Chris@45
|
3254 {
|
Chris@233
|
3255 // SVDEBUG << "MainWindowBase::layerInAView(" << layer << "," << inAView << ")" << endl;
|
Chris@128
|
3256
|
Chris@128
|
3257 if (!inAView) removeLayerEditDialog(layer);
|
Chris@45
|
3258
|
Chris@45
|
3259 // Check whether we need to add or remove model from play source
|
Chris@45
|
3260 Model *model = layer->getModel();
|
Chris@45
|
3261 if (model) {
|
Chris@45
|
3262 if (inAView) {
|
Chris@45
|
3263 m_playSource->addModel(model);
|
Chris@45
|
3264 } else {
|
Chris@45
|
3265 bool found = false;
|
Chris@45
|
3266 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@45
|
3267 Pane *pane = m_paneStack->getPane(i);
|
Chris@45
|
3268 if (!pane) continue;
|
Chris@45
|
3269 for (int j = 0; j < pane->getLayerCount(); ++j) {
|
Chris@45
|
3270 Layer *pl = pane->getLayer(j);
|
Chris@183
|
3271 if (pl &&
|
Chris@183
|
3272 !dynamic_cast<TimeRulerLayer *>(pl) &&
|
Chris@183
|
3273 (pl->getModel() == model)) {
|
Chris@45
|
3274 found = true;
|
Chris@45
|
3275 break;
|
Chris@45
|
3276 }
|
Chris@45
|
3277 }
|
Chris@45
|
3278 if (found) break;
|
Chris@45
|
3279 }
|
Chris@173
|
3280 if (!found) {
|
Chris@173
|
3281 m_playSource->removeModel(model);
|
Chris@173
|
3282 }
|
Chris@45
|
3283 }
|
Chris@45
|
3284 }
|
Chris@45
|
3285
|
Chris@45
|
3286 updateMenuStates();
|
Chris@45
|
3287 }
|
Chris@45
|
3288
|
Chris@45
|
3289 void
|
Chris@128
|
3290 MainWindowBase::removeLayerEditDialog(Layer *layer)
|
Chris@128
|
3291 {
|
Chris@128
|
3292 if (m_layerDataDialogMap.find(layer) != m_layerDataDialogMap.end()) {
|
Chris@128
|
3293
|
Chris@128
|
3294 ModelDataTableDialog *dialog = m_layerDataDialogMap[layer];
|
Chris@128
|
3295
|
Chris@128
|
3296 for (ViewDataDialogMap::iterator vi = m_viewDataDialogMap.begin();
|
Chris@128
|
3297 vi != m_viewDataDialogMap.end(); ++vi) {
|
Chris@128
|
3298 vi->second.erase(dialog);
|
Chris@128
|
3299 }
|
Chris@128
|
3300
|
Chris@128
|
3301 m_layerDataDialogMap.erase(layer);
|
Chris@128
|
3302 delete dialog;
|
Chris@128
|
3303 }
|
Chris@128
|
3304 }
|
Chris@128
|
3305
|
Chris@128
|
3306 void
|
Chris@45
|
3307 MainWindowBase::modelAdded(Model *model)
|
Chris@45
|
3308 {
|
Chris@233
|
3309 // SVDEBUG << "MainWindowBase::modelAdded(" << model << ")" << endl;
|
gyorgyf@273
|
3310 std::cerr << "\nAdding model " << model->getTypeName() << " to playsource " << std::endl;
|
Chris@45
|
3311 m_playSource->addModel(model);
|
Chris@45
|
3312 }
|
Chris@45
|
3313
|
Chris@45
|
3314 void
|
Chris@45
|
3315 MainWindowBase::mainModelChanged(WaveFileModel *model)
|
Chris@45
|
3316 {
|
Chris@233
|
3317 // SVDEBUG << "MainWindowBase::mainModelChanged(" << model << ")" << endl;
|
Chris@45
|
3318 updateDescriptionLabel();
|
Chris@45
|
3319 if (model) m_viewManager->setMainModelSampleRate(model->getSampleRate());
|
Chris@360
|
3320 if (model && !m_playTarget && m_audioOutput) {
|
Chris@360
|
3321 createPlayTarget();
|
Chris@360
|
3322 }
|
Chris@45
|
3323 }
|
Chris@45
|
3324
|
Chris@45
|
3325 void
|
Chris@45
|
3326 MainWindowBase::modelAboutToBeDeleted(Model *model)
|
Chris@45
|
3327 {
|
Chris@233
|
3328 // SVDEBUG << "MainWindowBase::modelAboutToBeDeleted(" << model << ")" << endl;
|
Chris@45
|
3329 if (model == m_viewManager->getPlaybackModel()) {
|
Chris@45
|
3330 m_viewManager->setPlaybackModel(0);
|
Chris@45
|
3331 }
|
Chris@45
|
3332 m_playSource->removeModel(model);
|
Chris@45
|
3333 FFTDataServer::modelAboutToBeDeleted(model);
|
Chris@45
|
3334 }
|
Chris@45
|
3335
|
Chris@45
|
3336 void
|
Chris@55
|
3337 MainWindowBase::paneDeleteButtonClicked(Pane *pane)
|
Chris@55
|
3338 {
|
Chris@55
|
3339 bool found = false;
|
Chris@55
|
3340 for (int i = 0; i < m_paneStack->getPaneCount(); ++i) {
|
Chris@55
|
3341 if (m_paneStack->getPane(i) == pane) {
|
Chris@55
|
3342 found = true;
|
Chris@55
|
3343 break;
|
Chris@55
|
3344 }
|
Chris@55
|
3345 }
|
Chris@55
|
3346 if (!found) {
|
Chris@233
|
3347 SVDEBUG << "MainWindowBase::paneDeleteButtonClicked: Unknown pane "
|
Chris@229
|
3348 << pane << endl;
|
Chris@55
|
3349 return;
|
Chris@55
|
3350 }
|
Chris@55
|
3351
|
Chris@55
|
3352 CommandHistory::getInstance()->startCompoundOperation
|
Chris@55
|
3353 (tr("Delete Pane"), true);
|
Chris@55
|
3354
|
Chris@55
|
3355 while (pane->getLayerCount() > 0) {
|
Chris@55
|
3356 Layer *layer = pane->getLayer(0);
|
Chris@55
|
3357 if (layer) {
|
Chris@55
|
3358 m_document->removeLayerFromView(pane, layer);
|
Chris@55
|
3359 } else {
|
Chris@55
|
3360 break;
|
Chris@55
|
3361 }
|
Chris@55
|
3362 }
|
Chris@55
|
3363
|
Chris@55
|
3364 RemovePaneCommand *command = new RemovePaneCommand(this, pane);
|
Chris@55
|
3365 CommandHistory::getInstance()->addCommand(command);
|
Chris@55
|
3366
|
Chris@55
|
3367 CommandHistory::getInstance()->endCompoundOperation();
|
Chris@55
|
3368
|
Chris@55
|
3369 updateMenuStates();
|
Chris@55
|
3370 }
|
Chris@55
|
3371
|
Chris@55
|
3372 void
|
Chris@45
|
3373 MainWindowBase::pollOSC()
|
Chris@45
|
3374 {
|
Chris@45
|
3375 if (!m_oscQueue || m_oscQueue->isEmpty()) return;
|
Chris@233
|
3376 SVDEBUG << "MainWindowBase::pollOSC: have " << m_oscQueue->getMessagesAvailable() << " messages" << endl;
|
Chris@45
|
3377
|
Chris@45
|
3378 if (m_openingAudioFile) return;
|
Chris@45
|
3379
|
Chris@45
|
3380 OSCMessage message = m_oscQueue->readMessage();
|
Chris@45
|
3381
|
Chris@45
|
3382 if (message.getTarget() != 0) {
|
Chris@45
|
3383 return; //!!! for now -- this class is target 0, others not handled yet
|
Chris@45
|
3384 }
|
Chris@45
|
3385
|
Chris@45
|
3386 handleOSCMessage(message);
|
Chris@45
|
3387 }
|
Chris@45
|
3388
|
Chris@45
|
3389 void
|
Chris@45
|
3390 MainWindowBase::inProgressSelectionChanged()
|
Chris@45
|
3391 {
|
Chris@45
|
3392 Pane *currentPane = 0;
|
Chris@45
|
3393 if (m_paneStack) currentPane = m_paneStack->getCurrentPane();
|
justin@331
|
3394 if (currentPane) {
|
justin@331
|
3395 //cerr << "JTEST: mouse event on selection pane" << endl;
|
justin@331
|
3396 updateVisibleRangeDisplay(currentPane);
|
justin@331
|
3397 }
|
Chris@45
|
3398 }
|
Chris@45
|
3399
|
Chris@45
|
3400 void
|
Chris@45
|
3401 MainWindowBase::contextHelpChanged(const QString &s)
|
Chris@45
|
3402 {
|
Chris@378
|
3403 QLabel *lab = getStatusLabel();
|
Chris@375
|
3404
|
Chris@45
|
3405 if (s == "" && m_myStatusMessage != "") {
|
Chris@378
|
3406 if (lab->text() != m_myStatusMessage) {
|
Chris@378
|
3407 lab->setText(m_myStatusMessage);
|
Chris@375
|
3408 }
|
Chris@45
|
3409 return;
|
Chris@45
|
3410 }
|
Chris@375
|
3411
|
Chris@378
|
3412 lab->setText(s);
|
Chris@45
|
3413 }
|
Chris@45
|
3414
|
Chris@45
|
3415 void
|
Chris@45
|
3416 MainWindowBase::openHelpUrl(QString url)
|
Chris@45
|
3417 {
|
Chris@45
|
3418 // This method mostly lifted from Qt Assistant source code
|
Chris@45
|
3419
|
Chris@45
|
3420 QProcess *process = new QProcess(this);
|
Chris@45
|
3421 connect(process, SIGNAL(finished(int)), process, SLOT(deleteLater()));
|
Chris@45
|
3422
|
Chris@45
|
3423 QStringList args;
|
Chris@45
|
3424
|
Chris@45
|
3425 #ifdef Q_OS_MAC
|
Chris@45
|
3426 args.append(url);
|
Chris@45
|
3427 process->start("open", args);
|
Chris@45
|
3428 #else
|
Chris@45
|
3429 #ifdef Q_OS_WIN32
|
Chris@358
|
3430 QString pf(getenv("ProgramFiles"));
|
Chris@358
|
3431 QString command = pf + QString("\\Internet Explorer\\IEXPLORE.EXE");
|
Chris@358
|
3432
|
Chris@358
|
3433 args.append(url);
|
Chris@358
|
3434 process->start(command, args);
|
Chris@45
|
3435 #else
|
Chris@45
|
3436 if (!qgetenv("KDE_FULL_SESSION").isEmpty()) {
|
Chris@45
|
3437 args.append("exec");
|
Chris@45
|
3438 args.append(url);
|
Chris@45
|
3439 process->start("kfmclient", args);
|
Chris@45
|
3440 } else if (!qgetenv("BROWSER").isEmpty()) {
|
Chris@45
|
3441 args.append(url);
|
Chris@45
|
3442 process->start(qgetenv("BROWSER"), args);
|
Chris@45
|
3443 } else {
|
Chris@45
|
3444 args.append(url);
|
Chris@45
|
3445 process->start("firefox", args);
|
Chris@45
|
3446 }
|
Chris@45
|
3447 #endif
|
Chris@45
|
3448 #endif
|
Chris@45
|
3449 }
|
Chris@45
|
3450
|
Chris@180
|
3451
|