]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/main_interface.hpp
Win32: fix Win7's taskbar buttons
[vlc] / modules / gui / qt4 / main_interface.hpp
index 2a441d0c246d9ca05088a66ca1358135284669ab..95be81ea6e66555788c2a1966b62f3ba9668be59 100644 (file)
@@ -97,6 +97,9 @@ public:
 
 protected:
     void dropEventPlay( QDropEvent *, bool);
+#ifdef WIN32
+    bool winEvent( MSG *, long * );
+#endif
     virtual void dropEvent( QDropEvent *);
     virtual void dragEnterEvent( QDragEnterEvent * );
     virtual void dragMoveEvent( QDragMoveEvent * );
@@ -171,6 +174,7 @@ private:
 #ifdef WIN32
     HIMAGELIST himl;
     LPTASKBARLIST3 p_taskbl;
+    UINT taskbar_wmsg;
     void createTaskBarButtons();
 #endif
     void createPlaylist( bool );
@@ -222,6 +226,9 @@ signals:
     void askUpdate();
     void minimalViewToggled( bool );
     void fullscreenInterfaceToggled( bool );
+    void playPauseSignal();
+    void prevSignal();
+    void nextSignal();
 };
 
 #endif