[vlc-devel] commit: Qt: cosmetic on Main_Interface. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Tue Dec 30 13:21:10 CET 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Dec 29 20:17:47 2008 +0100| [62dc9260f91522c2d478fc44d9100997d7cc85f4] | committer: Jean-Baptiste Kempf
Qt: cosmetic on Main_Interface.
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=62dc9260f91522c2d478fc44d9100997d7cc85f4
---
modules/gui/qt4/main_interface.cpp | 5 ++---
modules/gui/qt4/main_interface.hpp | 16 +++++++---------
2 files changed, 9 insertions(+), 12 deletions(-)
diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp
index 88c0ef5..895de7b 100644
--- a/modules/gui/qt4/main_interface.cpp
+++ b/modules/gui/qt4/main_interface.cpp
@@ -151,15 +151,14 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
**************************/
/* Connect the input manager to the GUI elements it manages */
-
/**
* Connects on nameChanged()
* Those connects are not merged because different options can trigger
* them down.
*/
/* Naming in the controller statusbar */
- CONNECT( THEMIM->getIM(), nameChanged( QString ), this,
- setName( QString ) );
+ CONNECT( THEMIM->getIM(), nameChanged( QString ),
+ this, setName( QString ) );
/* and in the systray */
if( sysTray )
{
diff --git a/modules/gui/qt4/main_interface.hpp b/modules/gui/qt4/main_interface.hpp
index 061ce9c..c0e3974 100644
--- a/modules/gui/qt4/main_interface.hpp
+++ b/modules/gui/qt4/main_interface.hpp
@@ -66,7 +66,6 @@ class MainInterface : public QVLCMW
{
Q_OBJECT;
- friend class VolumeClickHandler;
friend class InteractionDialog;
friend class PlaylistWidget;
@@ -87,7 +86,8 @@ public:
int getControlsVisibilityStatus();
/* Sizehint() */
- QSize sizeHint() const;
+ virtual QSize sizeHint() const;
+
protected:
// void resizeEvent( QResizeEvent * );
void dropEvent( QDropEvent *);
@@ -105,8 +105,6 @@ private:
QVBoxLayout *mainLayout;
ControlsWidget *controls;
FullscreenControllerWidget *fullscreenControls;
- QMenu *speedControlMenu;
- SpeedControlWidget *speedControl;
void handleMainUi( QSettings* );
void askForPrivacy();
@@ -115,9 +113,9 @@ private:
/* Systray */
void handleSystray();
void createSystray();
+ void initSystray();
void createStatusBar();
- void initSystray();
/* Video */
VideoWidget *videoWidget;
@@ -126,13 +124,13 @@ private:
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 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;
- int i_visualmode; ///< Visual Mode
+ int i_visualmode; ///< Visual Mode
pl_dock_e i_pl_dock;
bool isDocked() { return ( i_pl_dock != PL_UNDOCKED ); }
More information about the vlc-devel
mailing list