Commit b83c1d09 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - lame attempt for the resizing of the interface.

parent 70027747
...@@ -83,11 +83,8 @@ public: ...@@ -83,11 +83,8 @@ public:
private: private:
QPalette plt; QPalette plt;
QLabel *label; QLabel *label;
QHBoxLayout *backgroundLayout;
virtual void resizeEvent( QResizeEvent *e ); virtual void resizeEvent( QResizeEvent *e );
virtual void contextMenuEvent( QContextMenuEvent *event ); virtual void contextMenuEvent( QContextMenuEvent *event );
int DrawBackground();
int CleanBackground();
intf_thread_t *p_intf; intf_thread_t *p_intf;
public slots: public slots:
void setArt( QString ); void setArt( QString );
...@@ -149,7 +146,7 @@ class ControlsWidget : public QFrame ...@@ -149,7 +146,7 @@ class ControlsWidget : public QFrame
public: public:
/* p_intf, advanced control visible or not, blingbling or not */ /* p_intf, advanced control visible or not, blingbling or not */
ControlsWidget( intf_thread_t *, bool, bool ); ControlsWidget( intf_thread_t *, bool, bool );
QSize sizeHint() const; // QSize sizeHint() const;
virtual ~ControlsWidget(); virtual ~ControlsWidget();
QPushButton *playlistButton; QPushButton *playlistButton;
...@@ -239,14 +236,16 @@ class QSignalMapper; ...@@ -239,14 +236,16 @@ class QSignalMapper;
class PLSelector; class PLSelector;
class PLPanel; class PLPanel;
class QPushButton; class QPushButton;
class QSettings;
class PlaylistWidget : public QSplitter class PlaylistWidget : public QSplitter
{ {
Q_OBJECT; Q_OBJECT;
public: public:
PlaylistWidget( intf_thread_t *_p_i ) ; PlaylistWidget( intf_thread_t *_p_i, QSettings *settings ) ;
virtual ~PlaylistWidget(); virtual ~PlaylistWidget();
QSize sizeHint() const; QSize sizeHint() const;
void saveSettings( QSettings *settings );
private: private:
PLSelector *selector; PLSelector *selector;
PLPanel *rightPanel; PLPanel *rightPanel;
...@@ -254,7 +253,7 @@ private: ...@@ -254,7 +253,7 @@ private:
QLabel *art; QLabel *art;
QString prevArt; QString prevArt;
protected: protected:
intf_thread_t *p_intf; intf_thread_t *p_intf;
private slots: private slots:
void setArt( QString ); void setArt( QString );
signals: signals:
......
...@@ -37,7 +37,8 @@ ...@@ -37,7 +37,8 @@
PlaylistDialog *PlaylistDialog::instance = NULL; PlaylistDialog *PlaylistDialog::instance = NULL;
PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf )
: QVLCMW( _p_intf )
{ {
QWidget *main = new QWidget( this ); QWidget *main = new QWidget( this );
setCentralWidget( main ); setCentralWidget( main );
...@@ -45,7 +46,7 @@ PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -45,7 +46,7 @@ PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) ); setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
QHBoxLayout *l = new QHBoxLayout( centralWidget() ); QHBoxLayout *l = new QHBoxLayout( centralWidget() );
PlaylistWidget *plw = new PlaylistWidget( p_intf ); PlaylistWidget *plw = new PlaylistWidget( p_intf, NULL );
l->addWidget( plw ); l->addWidget( plw );
readSettings( "playlist", QSize( 600,700 ) ); readSettings( "playlist", QSize( 600,700 ) );
......
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
class QSignalMapper; class QSignalMapper;
class PLSelector; class PLSelector;
class PLPanel; class PLPanel;
class QSettings;
class PlaylistDialog : public QVLCMW class PlaylistDialog : public QVLCMW
{ {
......
...@@ -96,9 +96,10 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -96,9 +96,10 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
bgWidget = NULL; videoWidget = NULL; playlistWidget = NULL; bgWidget = NULL; videoWidget = NULL; playlistWidget = NULL;
embeddedPlaylistWasActive = videoIsActive = false; embeddedPlaylistWasActive = videoIsActive = false;
input_name = ""; input_name = "";
playlistWidget = new PlaylistWidget( p_intf );
/* Ask for the network policy on first startup */ /**
* Ask for the network policy on FIRST STARTUP
*/
if( config_GetInt( p_intf, "privacy-ask") ) if( config_GetInt( p_intf, "privacy-ask") )
{ {
QList<ConfigControl *> controls; QList<ConfigControl *> controls;
...@@ -145,16 +146,15 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -145,16 +146,15 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
* UI and Widgets design * UI and Widgets design
**************************/ **************************/
setVLCWindowsTitle(); setVLCWindowsTitle();
dockPL = new QDockWidget( qtr("Playlist"), this ); handleMainUi( settings );
/* Create a Dock to get the playlist */ /* Create a Dock to get the playlist */
handleMainUi( settings ); dockPL = new QDockWidget( qtr("Playlist"), this );
dockPL->setAllowedAreas( Qt::LeftDockWidgetArea dockPL->setAllowedAreas( Qt::LeftDockWidgetArea
| Qt::RightDockWidgetArea | Qt::RightDockWidgetArea
| Qt::BottomDockWidgetArea ); | Qt::BottomDockWidgetArea );
dockPL->setFeatures( QDockWidget::AllDockWidgetFeatures ); dockPL->setFeatures( QDockWidget::AllDockWidgetFeatures );
dockPL->setWidget( playlistWidget ); dockPL->setWidget( playlistWidget );
addDockWidget( Qt::BottomDockWidgetArea, dockPL );
/* Menu Bar */ /* Menu Bar */
QVLCMenu::createMenuBar( this, p_intf, visualSelectorEnabled ); QVLCMenu::createMenuBar( this, p_intf, visualSelectorEnabled );
...@@ -222,8 +222,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -222,8 +222,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
/* Init input manager */ /* Init input manager */
MainInputManager::getInstance( p_intf ); MainInputManager::getInstance( p_intf );
ON_TIMEOUT( updateOnTimer() ); ON_TIMEOUT( updateOnTimer() );
// ON_TIMEOUT( debug() ); //ON_TIMEOUT( debug() );
/******************** /********************
* Various CONNECTs * * Various CONNECTs *
...@@ -284,6 +283,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -284,6 +283,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
CONNECT( this, askReleaseVideo( void * ), this, releaseVideoSlot( void * ) ); CONNECT( this, askReleaseVideo( void * ), this, releaseVideoSlot( void * ) );
CONNECT( dockPL, topLevelChanged( bool ), this, doComponentsUpdate() );
// DEBUG FIXME // DEBUG FIXME
hide(); hide();
updateGeometry(); updateGeometry();
...@@ -301,9 +301,10 @@ MainInterface::~MainInterface() ...@@ -301,9 +301,10 @@ MainInterface::~MainInterface()
vlc_object_release( p_playlist ); vlc_object_release( p_playlist );
} }
settings->setValue( "playlist-embedded", !dockPL->isFloating() ); settings->setValue( "playlist-floats", dockPL->isFloating() );
settings->setValue( "adv-controls", getControlsVisibilityStatus() & CONTROLS_ADVANCED ); settings->setValue( "adv-controls", getControlsVisibilityStatus() & CONTROLS_ADVANCED );
settings->setValue( "pos", pos() ); settings->setValue( "pos", pos() );
playlistWidget->saveSettings( settings );
settings->endGroup(); settings->endGroup();
delete settings; delete settings;
p_intf->b_interaction = VLC_FALSE; p_intf->b_interaction = VLC_FALSE;
...@@ -383,7 +384,6 @@ void MainInterface::handleMainUi( QSettings *settings ) ...@@ -383,7 +384,6 @@ void MainInterface::handleMainUi( QSettings *settings )
bgWidget->updateGeometry(); bgWidget->updateGeometry();
mainLayout->insertWidget( 0, bgWidget ); mainLayout->insertWidget( 0, bgWidget );
CONNECT( this, askBgWidgetToToggle(), bgWidget, toggle() ); CONNECT( this, askBgWidgetToToggle(), bgWidget, toggle() );
CONNECT( playlistWidget, artSet( QString ), bgWidget, setArt(QString) );
} }
if( videoEmbeddedFlag ) if( videoEmbeddedFlag )
...@@ -415,15 +415,16 @@ void MainInterface::privacyDialog( QList<ConfigControl *> controls ) ...@@ -415,15 +415,16 @@ void MainInterface::privacyDialog( QList<ConfigControl *> controls )
QGroupBox *blabla = new QGroupBox( qtr( "Privacy and Network Warning" ) ); QGroupBox *blabla = new QGroupBox( qtr( "Privacy and Network Warning" ) );
QGridLayout *blablaLayout = new QGridLayout( blabla ); QGridLayout *blablaLayout = new QGridLayout( blabla );
QLabel *text = new QLabel( qtr( QLabel *text = new QLabel( qtr(
"<p>The <i>VideoLAN Team</i> doesn't like when an application goes online without " "<p>The <i>VideoLAN Team</i> doesn't like when an application goes "
"authorisation.</p>\n " "online without authorisation.</p>\n "
"<p><i>VLC media player</i> can request limited information on " "<p><i>VLC media player</i> can request limited information on "
"Internet, espically to get CD Covers and songs metadata or to know " "Internet, espically to get CD Covers and songs metadata or to know "
"if updates are available.</p>\n" "if updates are available.</p>\n"
"<p><i>VLC media player</i> <b>DOES NOT</b> send or collect <b>ANY</b> information, even anonymously about your " "<p><i>VLC media player</i> <b>DOES NOT</b> send or collect <b>ANY</b> "
"information, even anonymously about your "
"usage.</p>\n" "usage.</p>\n"
"<p>Therefore please check the following options, the default being almost no " "<p>Therefore please check the following options, the default being "
"access on the web.</p>\n") ); "almost no access on the web.</p>\n") );
text->setWordWrap( true ); text->setWordWrap( true );
text->setTextFormat( Qt::RichText ); text->setTextFormat( Qt::RichText );
...@@ -476,6 +477,25 @@ void MainInterface::debug() ...@@ -476,6 +477,25 @@ void MainInterface::debug()
/********************************************************************** /**********************************************************************
* Handling of sizing of the components * Handling of sizing of the components
**********************************************************************/ **********************************************************************/
QSize MainInterface::sizeHint() const
{
msg_Dbg( p_intf, "Annoying debug to remove, main sizeHint was called %i %i ",
menuBar()->size().height(), menuBar()->size().width() );
QSize tempSize = controls->sizeHint() +
QSize( 100, menuBar()->size().height() + statusBar()->size().height() );
if( VISIBLE( bgWidget ) )
tempSize += bgWidget->sizeHint();
else if( videoIsActive )
tempSize += videoWidget->size();
if( !dockPL->isFloating() && dockPL->widget() )
tempSize += dockPL->widget()->size();
return tempSize;
}
#if 0 #if 0
void MainInterface::calculateInterfaceSize() void MainInterface::calculateInterfaceSize()
{ {
...@@ -563,8 +583,9 @@ void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x, ...@@ -563,8 +583,9 @@ void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x,
if( ret ) if( ret )
{ {
videoIsActive = true; videoIsActive = true;
bool bgWasVisible = false; bool bgWasVisible = false;
/* Did we have a bg */
if( VISIBLE( bgWidget) ) if( VISIBLE( bgWidget) )
{ {
bgWasVisible = true; bgWasVisible = true;
...@@ -655,9 +676,10 @@ void MainInterface::togglePlaylist() ...@@ -655,9 +676,10 @@ void MainInterface::togglePlaylist()
if( !playlistWidget ) if( !playlistWidget )
{ {
msg_Dbg( p_intf, "Creating a new playlist" ); msg_Dbg( p_intf, "Creating a new playlist" );
playlistWidget = new PlaylistWidget( p_intf ); playlistWidget = new PlaylistWidget( p_intf, settings );
if( bgWidget ) if( bgWidget )
CONNECT( playlistWidget, artSet( QString ), bgWidget, setArt(QString) ); CONNECT( playlistWidget, artSet( QString ),
bgWidget, setArt(QString) );
//FIXME //FIXME
/* playlistWidget->widgetSize = settings->value( "playlistSize", /* playlistWidget->widgetSize = settings->value( "playlistSize",
...@@ -671,12 +693,11 @@ void MainInterface::togglePlaylist() ...@@ -671,12 +693,11 @@ void MainInterface::togglePlaylist()
msg_Dbg( p_intf, "Creating a new playlist" ); msg_Dbg( p_intf, "Creating a new playlist" );
/* Make the playlist floating is requested. Default is not. */ /* Make the playlist floating is requested. Default is not. */
if( !(settings->value( "playlist-embedded", true )).toBool() ); if( settings->value( "playlist-floats", false ).toBool() );
{ {
msg_Dbg( p_intf, "we don't want it inside"); msg_Dbg( p_intf, "we don't want it inside");
//dockPL->setFloating( true ); dockPL->setFloating( true );
} }
} }
else else
{ {
...@@ -731,13 +752,13 @@ void MainInterface::toggleMinimalView() ...@@ -731,13 +752,13 @@ void MainInterface::toggleMinimalView()
/* Video widget cannot do this synchronously as it runs in another thread */ /* Video widget cannot do this synchronously as it runs in another thread */
/* Well, could it, actually ? Probably dangerous ... */ /* Well, could it, actually ? Probably dangerous ... */
#if 0
void MainInterface::doComponentsUpdate() void MainInterface::doComponentsUpdate()
{ {
calculateInterfaceSize(); msg_Dbg( p_intf, "trying" );
resize( mainSize );
resize( sizeHint() );
} }
#endif
void MainInterface::toggleAdvanced() void MainInterface::toggleAdvanced()
{ {
......
...@@ -72,6 +72,7 @@ public: ...@@ -72,6 +72,7 @@ public:
QSystemTrayIcon *getSysTray() { return sysTray; }; QSystemTrayIcon *getSysTray() { return sysTray; };
QMenu *getSysTrayMenu() { return systrayMenu; }; QMenu *getSysTrayMenu() { return systrayMenu; };
int getControlsVisibilityStatus(); int getControlsVisibilityStatus();
QSize sizeHint() const;
protected: protected:
// void resizeEvent( QResizeEvent * ); // void resizeEvent( QResizeEvent * );
void dropEvent( QDropEvent *); void dropEvent( QDropEvent *);
...@@ -96,7 +97,7 @@ private: ...@@ -96,7 +97,7 @@ private:
void handleMainUi( QSettings* ); void handleMainUi( QSettings* );
void handleSystray(); void handleSystray();
void doComponentsUpdate();
void createSystray(); void createSystray();
void privacyDialog( QList<ConfigControl *> controls ); void privacyDialog( QList<ConfigControl *> controls );
...@@ -143,7 +144,7 @@ public slots: ...@@ -143,7 +144,7 @@ public slots:
private slots: private slots:
void debug(); void debug();
void updateOnTimer(); void updateOnTimer();
void doComponentsUpdate();
void setStatus( int ); void setStatus( int );
void setRate( int ); void setRate( int );
void setName( QString ); void setName( QString );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment