diff view/ViewManager.h @ 292:24fc90078754

* Add QuickTime file reader class -- totally untested, shouldn't even compile
author Chris Cannam
date Mon, 06 Aug 2007 14:37:59 +0000
parents 1a49bd0d8375
children 5636eeacc467
line wrap: on
line diff
--- a/view/ViewManager.h	Mon Jul 16 14:06:03 2007 +0000
+++ b/view/ViewManager.h	Mon Aug 06 14:37:59 2007 +0000
@@ -18,6 +18,7 @@
 
 #include <QObject>
 #include <QTimer>
+#include <QPalette>
 
 #include <map>
 
@@ -162,6 +163,9 @@
     void setZoomWheelsEnabled(bool enable);
     bool getZoomWheelsEnabled() const { return m_zoomWheelsEnabled; }
 
+    void setGlobalDarkBackground(bool dark);
+    bool getGlobalDarkBackground() const;
+
 signals:
     /** Emitted when user causes the global centre frame to change. */
     void globalCentreFrameChanged(unsigned long frame);
@@ -252,6 +256,9 @@
 
     OverlayMode m_overlayMode;
     bool m_zoomWheelsEnabled;
+
+    QPalette m_lightPalette;
+    QPalette m_darkPalette;
 };
 
 #endif