]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/main_interface.hpp
move a few global variables into the appropriate class.
[vlc] / modules / gui / qt4 / main_interface.hpp
index 2f9e5bb285513697d84f867abaf118b70509273c..c7da3cb48c9570efb6dadd414c944125099a7304 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * main_interface.hpp : Main Interface
  ****************************************************************************
- * Copyright (C) 2000-2005 the VideoLAN team
- * $Id: wxwidgets.cpp 15731 2006-05-25 14:43:53Z zorglub $
+ * Copyright (C) 2006 the VideoLAN team
+ * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
  *
 #ifndef _MAIN_INTERFACE_H_
 #define _MAIN_INTERFACE_H_
 
-#include <vlc/intf.h>
+#include "qt4.hpp"
+#include <vlc_aout.h>
+#include "ui/main_interface.h"
 #include "util/qvlcframe.hpp"
 
-class InputManager;
+#include <QSize>
+
+class QSettings;
 class QCloseEvent;
+class QKeyEvent;
+class QLabel;
+class QEvent;
+class InputManager;
 class InputSlider;
+class VideoWidget;
+class BackgroundWidget;
+class PlaylistWidget;
+class VolumeClickHandler;
+class VisualSelector;
+class ControlsWidget;
 
-class MainInterface : public QVLCFrame
+class MainInterface : public QVLCMW
 {
     Q_OBJECT;
 public:
     MainInterface( intf_thread_t *);
     virtual ~MainInterface();
+    void *requestVideo( vout_thread_t *p_nvout, int *pi_x,
+                        int *pi_y, unsigned int *pi_width,
+                        unsigned int *pi_height );
+    void releaseVideo( void *);
+    int controlVideo( void *p_window, int i_query, va_list args );
 protected:
+    void resizeEvent( QResizeEvent * );
+    void dropEvent( QDropEvent *);
+    void dragEnterEvent( QDragEnterEvent * );
+    void dragMoveEvent( QDragMoveEvent * );
+    void dragLeaveEvent( QDragLeaveEvent * );
     void closeEvent( QCloseEvent *);
+    Ui::MainInterfaceUI ui;
+    friend class VolumeClickHandler;
 private:
-    InputManager *main_input_manager;
-    InputSlider *slider;
-    /// Main input associated to the playlist
-    input_thread_t *p_input;
+    QSettings *settings;
+    QSize mainSize, addSize;
+
+    bool need_components_update;
+    void calculateInterfaceSize();
+    void handleMainUi( QSettings* );
+    void doComponentsUpdate();
+
+    /* Video */
+    VideoWidget         *videoWidget;
+    virtual void keyPressEvent( QKeyEvent *);
+
+    bool embeddedPlaylistWasActive;
+    bool videoIsActive;
+    QSize savedVideoSize;
+
+
+    BackgroundWidget    *bgWidget;
+    VisualSelector      *visualSelector;
+    ControlsWidget      *advControls;
+    PlaylistWidget      *playlistWidget;
+
+    bool                 playlistEmbeddedFlag;
+    bool                 videoEmbeddedFlag;
+    bool                 alwaysVideoFlag;
+    bool                 advControlsEnabled;
+    bool                 visualSelectorEnabled;
+
+    InputManager        *main_input_manager;
+    InputSlider         *slider;
+    input_thread_t      *p_input;    ///< Main input associated to the playlist
+
+    QLabel              *timeLabel;
+    QLabel              *nameLabel;
+
+    void customEvent( QEvent *);
+public slots:
+    void undockPlaylist();
 private slots:
+    void setNavigation( int );
+    void setStatus( int );
+    void setName( QString );
+    void setDisplay( float, int, int );
     void updateOnTimer();
-signals:
-    void inputChanged( input_thread_t *);
+    void play();
+    void stop();
+    void prev();
+    void next();
+    void playlist();
+    void visual();
+    void advanced();
+    void updateVolume( int sliderVolume );
+};
+
+
+class VolumeClickHandler : public QObject
+{
+public:
+    VolumeClickHandler( intf_thread_t *_p_intf, MainInterface *_m ) :QObject(_m)
+    {m = _m; p_intf = _p_intf; }
+    virtual ~VolumeClickHandler() {};
+    bool eventFilter( QObject *obj, QEvent *e )
+    {
+        if (e->type() == QEvent::MouseButtonPress )
+        {
+            aout_VolumeMute( p_intf, NULL );
+            return true;
+        }
+        return false;
+    }
+private:
+    MainInterface *m;
+    intf_thread_t *p_intf;
 };
 
 #endif