Mercurial > hg > svcore
diff base/Preferences.h @ 372:d31b4ccb7ddb
* Update remaining editable layers to support proper realignment on copy/paste
* Permit pasting when no suitable layer is current: create a new layer on paste
* Add preference for showing the splash screen or not
* Rename spectrogram smoothing prefs (partly following Craig's suggestions)
author | Chris Cannam |
---|---|
date | Wed, 06 Feb 2008 14:15:09 +0000 |
parents | 048b21bc9891 |
children | 98077b21a9e1 |
line wrap: on
line diff
--- a/base/Preferences.h Wed Feb 06 12:49:49 2008 +0000 +++ b/base/Preferences.h Wed Feb 06 14:15:09 2008 +0000 @@ -69,6 +69,8 @@ }; BackgroundMode getBackgroundMode() const { return m_backgroundMode; } + bool getShowSplash() const { return m_showSplash; } + public slots: virtual void setProperty(const PropertyName &, int); @@ -82,6 +84,7 @@ void setResampleOnLoad(bool); void setBackgroundMode(BackgroundMode mode); void setViewFontSize(int size); + void setShowSplash(bool); private: Preferences(); // may throw DirectoryCreationFailed @@ -99,6 +102,7 @@ bool m_resampleOnLoad; int m_viewFontSize; BackgroundMode m_backgroundMode; + bool m_showSplash; }; #endif