comparison src/MainWindow.h @ 364:f5a4c4283b93

adding no spectrogram and no sonification options
author matthiasm
date Tue, 15 Jul 2014 15:42:21 +0100
parents 0f72797ecdef
children 09aaceb76251
comparison
equal deleted inserted replaced
363:3143b069c60a 364:f5a4c4283b93
25 class MainWindow : public MainWindowBase 25 class MainWindow : public MainWindowBase
26 { 26 {
27 Q_OBJECT 27 Q_OBJECT
28 28
29 public: 29 public:
30 MainWindow(bool withAudioOutput = true); 30 MainWindow(bool withAudioOutput = true, bool withSonification = true, bool withSpectrogram = true);
31 virtual ~MainWindow(); 31 virtual ~MainWindow();
32 32
33 signals: 33 signals:
34 void canExportPitchTrack(bool); 34 void canExportPitchTrack(bool);
35 void canExportNotes(bool); 35 void canExportNotes(bool);
231 KeyReference *m_keyReference; 231 KeyReference *m_keyReference;
232 VersionTester *m_versionTester; 232 VersionTester *m_versionTester;
233 233
234 int m_selectionAnchor; 234 int m_selectionAnchor;
235 235
236 bool m_withSonification;
237 bool m_withSpectrogram;
238
236 Analyser::FrequencyRange m_pendingConstraint; 239 Analyser::FrequencyRange m_pendingConstraint;
237 240
238 QString exportToSVL(QString path, Layer *layer); 241 QString exportToSVL(QString path, Layer *layer);
239 FileOpenStatus importPitchLayer(FileSource source); 242 FileOpenStatus importPitchLayer(FileSource source);
240 243