]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/main_interface.hpp
bgWidget fix. Close #1743
[vlc] / modules / gui / qt4 / main_interface.hpp
index 82c84a8fb2c599870906f1c06eefdce71e51a70b..b4d25f3ebbeaa92ebc28d1a61d013cd2290dff31 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * 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-2007 the VideoLAN team
+ * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
+ *          Jean-Baptiste Kempf <jb@videolan.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 #ifndef _MAIN_INTERFACE_H_
 #define _MAIN_INTERFACE_H_
 
-#include <vlc/intf.h>
+#include "qt4.hpp"
 #include "util/qvlcframe.hpp"
+#include "components/preferences_widgets.hpp"
 
-class InputManager;
+#include <vlc_aout.h>
+
+#include <QSystemTrayIcon>
+
+class QSettings;
 class QCloseEvent;
-class InputSlider;
+class QKeyEvent;
+class QLabel;
+class QEvent;
+class InputManager;
+class VideoWidget;
+class BackgroundWidget;
+class PlaylistWidget;
+class VisualSelector;
+class AdvControlsWidget;
+class ControlsWidget;
+class FullscreenControllerWidget;
+class SpeedControlWidget;
+class QMenu;
+class QSize;
+//class QDockWidet;
+class QProgressBar;
 
-class MainInterface : public QVLCFrame
+enum{
+    CONTROLS_HIDDEN = 0x0,
+    CONTROLS_VISIBLE = 0x1,
+    CONTROLS_ADVANCED = 0x2
+};
+
+class MainInterface : public QVLCMW
 {
     Q_OBJECT;
+
+    friend class VolumeClickHandler;
+    friend class InteractionDialog;
+
 public:
     MainInterface( intf_thread_t *);
     virtual ~MainInterface();
-    void init();
+
+    /* Video requests from core */
+    void *requestVideo( vout_thread_t *p_nvout, int *pi_x,
+                        int *pi_y, unsigned int *pi_width,
+                        unsigned int *pi_height );
+    void releaseVideo( vout_thread_t *, void * );
+    int controlVideo( void *p_window, int i_query, va_list args );
+
+    void requestLayoutUpdate();
+
+    /* Getters */
+    QSystemTrayIcon *getSysTray() { return sysTray; };
+    QMenu *getSysTrayMenu() { return systrayMenu; };
+    int getControlsVisibilityStatus();
+
+#if 0    /* Sizehint() */
+    QSize sizeHint() const;
+#endif
 protected:
+//    void resizeEvent( QResizeEvent * );
+    void dropEvent( QDropEvent *);
+    void dragEnterEvent( QDragEnterEvent * );
+    void dragMoveEvent( QDragMoveEvent * );
+    void dragLeaveEvent( QDragLeaveEvent * );
     void closeEvent( QCloseEvent *);
+
 private:
-    InputManager *main_input_manager;
-    InputSlider *slider;
-    /// Main input associated to the playlist
-    input_thread_t *p_input;
+    QSettings           *settings;
+    QSystemTrayIcon     *sysTray;
+    QMenu               *systrayMenu;
+    QString              input_name;
+    QVBoxLayout         *mainLayout;
+    ControlsWidget      *controls;
+    FullscreenControllerWidget *fullscreenControls;
+    QMenu               *speedControlMenu;
+    SpeedControlWidget  *speedControl;
+    QProgressBar        *pgBar;
+
+    void handleMainUi( QSettings* );
+    void askForPrivacy();
+    int  privacyDialog( QList<ConfigControl *> controls );
+
+    /* Systray */
+    void handleSystray();
+    void createSystray();
+
+    void createStatusBar();
+    void initSystray();
+
+    /* Video */
+    VideoWidget         *videoWidget;
+    //    QSize                savedVideoSize;
+
+    BackgroundWidget    *bgWidget;
+    VisualSelector      *visualSelector;
+    PlaylistWidget      *playlistWidget;
+//    QDockWidget         *dockPL;
+
+    bool                 videoIsActive; ///< Having a video now / THEMIM->hasV
+    bool                 videoEmbeddedFlag; ///< Want an external Video Window
+    bool                 playlistVisible; ///< Is the playlist visible ?
+    bool                 visualSelectorEnabled;
+    bool                 notificationEnabled; /// Systray Notifications
+    bool                 b_remainingTime; /* Show elapsed or remaining time */
+    bool                 bgWasVisible;
+    int                  i_visualmode; ///< Visual Mode
+
+    input_thread_t      *p_input;    ///< Main input associated to the playlist
+
+    /* Status Bar */
+    QLabel              *timeLabel;
+    QLabel              *speedLabel;
+    QLabel              *nameLabel;
+
+    virtual void customEvent( QEvent *);
+    virtual void keyPressEvent( QKeyEvent *);
+    virtual void wheelEvent( QWheelEvent * );
+
+public slots:
+    void undockPlaylist();
+    void toggleMinimalView();
+    void togglePlaylist();
+    void toggleUpdateSystrayMenu();
+    void toggleAdvanced();
+    void toggleFullScreen();
+
+    /* Manage the Video Functions from the vout threads */
+    void releaseVideoSlot( void * );
+
 private slots:
+    void debug();
     void updateOnTimer();
+    void doComponentsUpdate();
+    void setStatus( int );
+    void setRate( int );
+    void setName( QString );
+    void setVLCWindowsTitle( QString title = "" );
+    void setDisplayPosition( float, int, int );
+    void toggleTimeDisplay();
+#if 0
+    void visual();
+#endif
+    void handleSystrayClick( QSystemTrayIcon::ActivationReason );
+    void updateSystrayTooltipName( QString );
+    void updateSystrayTooltipStatus( int );
+    void showSpeedMenu( QPoint );
 signals:
-    void inputChanged( input_thread_t *);
+    void askReleaseVideo( void * );
+    void askVideoToResize( unsigned int, unsigned int );
+    void askVideoToToggle();
+    void askBgWidgetToToggle();
+    void askUpdate();
 };
 
 #endif