]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/input_manager.hpp
Redesigned the window to make it look more Mac-like and much smaller by adding a...
[vlc] / modules / gui / qt4 / input_manager.hpp
index b3ae1dea3b48774afda11206e47a29a1d0f4f861..07a21261d1730ca9f603b02ba534d5989f196c48 100644 (file)
@@ -28,7 +28,7 @@
 # include "config.h"
 #endif
 
-#include <vlc/vlc.h>
+#include <vlc_common.h>
 #include <vlc_input.h>
 
 #include "qt4.hpp"
@@ -42,6 +42,9 @@ static int const ItemStateChanged_Type = QEvent::User + IMEventType + 3;
 static int const ItemTitleChanged_Type = QEvent::User + IMEventType + 4;
 static int const ItemRateChanged_Type  = QEvent::User + IMEventType + 5;
 static int const VolumeChanged_Type    = QEvent::User + IMEventType + 6;
+static int const FullscreenControlShow_Type = QEvent::User + IMEventType + 7;
+static int const FullscreenControlHide_Type = QEvent::User + IMEventType + 8;
+static int const FullscreenControlPlanHide_Type = QEvent::User + IMEventType + 9;
 
 class IMEvent : public QEvent
 {
@@ -113,6 +116,8 @@ signals:
     /// Play/pause status
     void statusChanged( int );
     void artChanged( QString );
+    /// Controll of fullscreen controller
+    void inputUnset();
 #ifdef ZVBI_COMPILED
     void teletextEnabled( bool );
 #endif