]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/main_interface.hpp
Fix the qt-pl-showflags tooltip
[vlc] / modules / gui / qt4 / main_interface.hpp
index 5eb9437988ab6fedf9006b7896c4c8e31c57e6e4..6aabaf9b313419dc71198d80bb60383fb797c7ee 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 "ui/main_interface.h"
+
+#include "qt4.hpp"
 #include "util/qvlcframe.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 QMenu;
+class QSize;
 
 class MainInterface : public QVLCMW
 {
@@ -38,27 +54,87 @@ class MainInterface : public QVLCMW
 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 );
 
-    virtual QSize sizeHint() const;
-
-    int i_saved_width, i_saved_height;
-
+    QSystemTrayIcon *getSysTray() { return sysTray; };
+    QMenu *getSysTrayMenu() { return systrayMenu; };
 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:
-    VideoWidget *videoWidget;
-    InputManager *main_input_manager;
-    InputSlider *slider;
-    /// Main input associated to the playlist
-    input_thread_t *p_input;
-    Ui::MainInterfaceUI ui;
+    QSettings *settings;
+    QSize mainSize, addSize;
+    QSystemTrayIcon *sysTray;
+    QMenu *systrayMenu;
+    QString input_name;
+    QVBoxLayout *mainLayout;
+    ControlsWidget *controls;
+
+    bool need_components_update;
+    void calculateInterfaceSize();
+    void handleMainUi( QSettings* );
+    void handleSystray();
+    void doComponentsUpdate();
+    void createSystray();
+
+    /* Video */
+    VideoWidget         *videoWidget;
+    virtual void keyPressEvent( QKeyEvent *);
+    virtual void wheelEvent( QWheelEvent * );
+
+    bool embeddedPlaylistWasActive;
+    bool videoIsActive;
+    QSize savedVideoSize;
+
+
+    BackgroundWidget    *bgWidget;
+    VisualSelector      *visualSelector;
+    AdvControlsWidget      *advControls;
+    PlaylistWidget      *playlistWidget;
+
+    bool                 playlistEmbeddedFlag;
+    bool                 videoEmbeddedFlag;
+    bool                 alwaysVideoFlag;
+    bool                 advControlsEnabled;
+    bool                 visualSelectorEnabled;
+
+    InputManager        *main_input_manager;
+    input_thread_t      *p_input;    ///< Main input associated to the playlist
+
+    QLabel              *timeLabel;
+    QLabel              *speedLabel;
+    QLabel              *nameLabel;
+
+    void customEvent( QEvent *);
+public slots:
+    void undockPlaylist();
+    void toggleMenus();
+    void playlist();
+    void toggleUpdateSystrayMenu();
 private slots:
+    void setStatus( int );
+    void setName( QString );
+    void setVLCWindowsTitle( QString title = "" );
     void setDisplay( float, int, int );
     void updateOnTimer();
-    void play();
-    void stop();
-    void prev();
-    void next();
+    void visual();
+    void advanced();
+    void handleSystrayClick(  QSystemTrayIcon::ActivationReason );
+    void updateSystrayMenu( int );
+    void updateSystrayTooltipName( QString );
+    void updateSystrayTooltipStatus( int );
+    void showSpeedMenu( QPoint );
+    void showTimeMenu( QPoint );
 };
 
 #endif