Mercurial > hg > svapp
comparison framework/MainWindowBase.h @ 347:b3609adae921 tony_integration
Merge from tonioni branch
author | Chris Cannam |
---|---|
date | Wed, 07 May 2014 15:12:35 +0100 |
parents | c837368b1faf 63dec7dc11cc |
children | 4969e7921931 |
comparison
equal
deleted
inserted
replaced
346:0e4332efcc7d | 347:b3609adae921 |
---|---|
151 void canSelectNextPane(bool); | 151 void canSelectNextPane(bool); |
152 void canSelectPreviousLayer(bool); | 152 void canSelectPreviousLayer(bool); |
153 void canSelectNextLayer(bool); | 153 void canSelectNextLayer(bool); |
154 void canSave(bool); | 154 void canSave(bool); |
155 void hideSplash(); | 155 void hideSplash(); |
156 void sessionLoaded(); | |
157 void audioFileLoaded(); | |
156 void replacedDocument(); | 158 void replacedDocument(); |
157 void activity(QString); | 159 void activity(QString); |
158 | 160 |
159 public slots: | 161 public slots: |
160 virtual void preferenceChanged(PropertyContainer::PropertyName); | 162 virtual void preferenceChanged(PropertyContainer::PropertyName); |
350 virtual Pane *addPane() { return m_mw->addPaneToStack(); } | 352 virtual Pane *addPane() { return m_mw->addPaneToStack(); } |
351 virtual void setWindowSize(int width, int height) { | 353 virtual void setWindowSize(int width, int height) { |
352 m_mw->resizeConstrained(QSize(width, height)); | 354 m_mw->resizeConstrained(QSize(width, height)); |
353 } | 355 } |
354 virtual void addSelection(int start, int end) { | 356 virtual void addSelection(int start, int end) { |
355 m_mw->m_viewManager->addSelection(Selection(start, end)); | 357 m_mw->m_viewManager->addSelectionQuietly(Selection(start, end)); |
356 } | 358 } |
357 protected: | 359 protected: |
358 MainWindowBase *m_mw; | 360 MainWindowBase *m_mw; |
359 }; | 361 }; |
360 | 362 |