]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/main_interface.hpp
Qt: no popup menu over the status bar and menu bar
[vlc] / modules / gui / qt4 / main_interface.hpp
index 1c26716f3d3e40e46ff3a060b4ef06ff20bb472e..3fd00aecb27510e9ce3a600b808b05e607b1da5e 100644 (file)
@@ -1,10 +1,11 @@
 /*****************************************************************************
  * main_interface.hpp : Main Interface
  ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
+ * Copyright (C) 2006-2008 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_
+#ifndef QVLC_MAIN_INTERFACE_H_
+#define QVLC_MAIN_INTERFACE_H_
+
+#include "qt4.hpp"
 
-#include <vlc/intf.h>
-#include <vlc/aout.h>
-#include "ui/main_interface.h"
 #include "util/qvlcframe.hpp"
+#include "components/preferences_widgets.hpp" /* First Start */
+
+#include <QSystemTrayIcon>
 
+class QSettings;
 class QCloseEvent;
+class QKeyEvent;
 class QLabel;
+class QEvent;
 class InputManager;
-class InputSlider;
 class VideoWidget;
-class VolumeClickHandler;
+class BackgroundWidget;
+class PlaylistWidget;
+class VisualSelector;
+class AdvControlsWidget;
+class ControlsWidget;
+class InputControlsWidget;
+class FullscreenControllerWidget;
+class SpeedControlWidget;
+class QMenu;
+class QSize;
+class DialogHandler;
+
+enum {
+    CONTROLS_VISIBLE = 0x1,
+    CONTROLS_HIDDEN = 0x2,
+    CONTROLS_ADVANCED = 0x4,
+};
+
+typedef enum pl_dock_e {
+    PL_UNDOCKED,
+    PL_BOTTOM,
+    PL_RIGHT,
+    PL_LEFT
+} pl_dock_e;
+
 class MainInterface : public QVLCMW
 {
     Q_OBJECT;
+
+    friend class PlaylistWidget;
+
 public:
     MainInterface( intf_thread_t *);
     virtual ~MainInterface();
 
-    void resizeEvent( QResizeEvent * );
+    /* Video requests from core */
+    WId 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( int i_query, va_list args );
+
+    /* Getters */
+    QSystemTrayIcon *getSysTray() { return sysTray; };
+    QMenu *getSysTrayMenu() { return systrayMenu; };
+    int getControlsVisibilityStatus();
 
-    QSize videoSize, addSize;
+    /* Sizehint() */
+    virtual QSize sizeHint() const;
 
 protected:
+//    void resizeEvent( QResizeEvent * );
+    void dropEvent( QDropEvent *);
+    void dropEventPlay( QDropEvent *, bool);
+    void dragEnterEvent( QDragEnterEvent * );
+    void dragMoveEvent( QDragMoveEvent * );
+    void dragLeaveEvent( QDragLeaveEvent * );
     void closeEvent( QCloseEvent *);
-    Ui::MainInterfaceUI ui;
-    friend class VolumeClickHandler;
+
 private:
-    VideoWidget *videoWidget;
-    InputManager *main_input_manager;
-    QLabel *timeLabel;
-    QLabel *nameLabel;
-    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;
+    InputControlsWidget *inputC;
+    FullscreenControllerWidget *fullscreenControls;
+    DialogHandler       *dialogHandler;
+
+    void handleMainUi( QSettings* );
+    void askForPrivacy();
+    int  privacyDialog( QList<ConfigControl *> *controls );
+
+    /* Systray */
+    void handleSystray();
+    void createSystray();
+    void initSystray();
+
+    void createStatusBar();
+
+    /* Video */
+    VideoWidget         *videoWidget;
+
+    BackgroundWidget    *bgWidget;
+    VisualSelector      *visualSelector;
+    PlaylistWidget      *playlistWidget;
+
+    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                 bgWasVisible;
+    bool                 b_keep_size;         ///< persistent resizeable window
+    QSize                mainBasedSize;       ///< based Wnd (normal mode only)
+    QSize                mainVideoSize;       ///< Wnd with video (all modes)
+    int                  i_visualmode;        ///< Visual Mode
+    pl_dock_e            i_pl_dock;
+    bool                 isDocked() { return ( i_pl_dock != PL_UNDOCKED ); }
+
+    /* Status Bar */
+    QLabel              *nameLabel;
+    QLabel              *cryptedLabel;
+
+    virtual void customEvent( QEvent *);
+    virtual void keyPressEvent( QKeyEvent *);
+    virtual void wheelEvent( QWheelEvent * );
+    virtual void resizeEvent( QResizeEvent * event );
+
+public slots:
+    void undockPlaylist();
+    void dockPlaylist( pl_dock_e i_pos = PL_BOTTOM );
+    void toggleMinimalView( bool );
+    void togglePlaylist();
+    void toggleUpdateSystrayMenu();
+    void toggleAdvanced();
+    void toggleFullScreen();
+    void toggleFSC();
+    void popupMenu( const QPoint& );
+
+    /* Manage the Video Functions from the vout threads */
+    void releaseVideoSlot( void );
+
 private slots:
-    void setStatus( int );
+    void debug();
+    void doComponentsUpdate();
     void setName( QString );
-    void setDisplay( float, int, int );
-    void updateOnTimer();
-    void play();
-    void stop();
-    void prev();
-    void next();
-    void updateVolume( int sliderVolume );
-};
-
+    void setVLCWindowsTitle( QString title = "" );
+#if 0
+    void visual();
+#endif
+    void handleSystrayClick( QSystemTrayIcon::ActivationReason );
+    void updateSystrayTooltipName( QString );
+    void updateSystrayTooltipStatus( int );
 
-class VolumeClickHandler : public QObject
-{
-public:
-    VolumeClickHandler( MainInterface *_m ) :QObject(_m) {m = _m; }
-    virtual ~VolumeClickHandler() {};
-    bool eventFilter( QObject *obj, QEvent *e )
-    {
-        if (e->type() == QEvent::MouseButtonPress )
-        {
-            if( obj->objectName() == "volLowLabel" )
-            {
-                m->ui.volumeSlider->setValue( 0 );
-            }
-            else
-                m->ui.volumeSlider->setValue( 100 );
-            return true;
-        }
-        return false;
-    }
-private:
-    MainInterface *m;
+    void showCryptedLabel( bool );
+signals:
+    void askReleaseVideo( );
+    void askVideoToResize( unsigned int, unsigned int );
+    void askVideoToShow( unsigned int, unsigned int );
+    void askVideoToToggle();
+    void askBgWidgetToToggle();
+    void askUpdate();
+    void minimalViewToggled( bool );
+    void fullscreenInterfaceToggled( bool );
 };
 
 #endif