]> git.sesse.net Git - vlc/commitdiff
Replace the button to the right place.
authorRémi Duraffort <ivoire@videolan.org>
Sat, 9 Feb 2008 22:55:42 +0000 (22:55 +0000)
committerRémi Duraffort <ivoire@videolan.org>
Sat, 9 Feb 2008 22:55:42 +0000 (22:55 +0000)
modules/gui/qt4/dialogs/messages.cpp
modules/gui/qt4/dialogs/messages.hpp

index cf4294053a7dcf32ebd0c1f050d8aa3419191ddb..9be3a7abb6946b8f1bd2f4e49778a927f14f5869 100644 (file)
@@ -54,65 +54,79 @@ MessagesDialog::MessagesDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
 
     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
     closeButton->setDefault( true );
-    BUTTONACT( closeButton, close() );
+    clearButton = new QPushButton( qtr( "&Clear" ) );
+    saveLogButton = new QPushButton( qtr( "&Save as..." ) );
+
+    verbosityBox = new QSpinBox();
+    verbosityBox->setRange( 0, 2 );
+    verbosityBox->setValue( config_GetInt( p_intf, "verbose" ) );
+    verbosityBox->setWrapping( true );
+    verbosityBox->setMaximumWidth( 50 );
+
+    verbosityLabel = new QLabel( qtr( "Verbosity Level" ) );
+
 
     mainLayout->addWidget( mainTab, 0, 0, 1, 0 );
+    mainLayout->addWidget( verbosityLabel, 1, 0, 1, 1 );
+    mainLayout->addWidget( verbosityBox, 1, 1 );
+    mainLayout->addWidget( saveLogButton, 1, 3 );
+    mainLayout->addWidget( clearButton, 1, 4 );
     mainLayout->addWidget( closeButton, 1, 5 );
 
+    BUTTONACT( closeButton, close() );
+    BUTTONACT( clearButton, clear() );
+    BUTTONACT( saveLogButton, save() );
+    CONNECT( mainTab, currentChanged( int ), this, updateTab( int ) );
 
     /* Messages */
     QWidget     *msgWidget = new QWidget;
     QGridLayout *msgLayout = new QGridLayout( msgWidget );
 
-    QPushButton *clearButton = new QPushButton( qtr( "&Clear" ) );
-    QPushButton *saveLogButton = new QPushButton( qtr( "&Save as..." ) );
-
-    verbosityBox = new QSpinBox();
-    verbosityBox->setRange( 0, 2 );
-    verbosityBox->setValue( config_GetInt( p_intf, "verbose" ) );
-    verbosityBox->setWrapping( true );
-    verbosityBox->setMaximumWidth( 50 );
-
-    QLabel *verbosityLabel = new QLabel( qtr( "Verbosity Level" ) );
-
     messages = new QTextEdit();
     messages->setReadOnly( true );
     messages->setGeometry( 0, 0, 440, 600 );
     messages->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
 
     msgLayout->addWidget( messages, 0, 0, 1, 0 );
-    msgLayout->addWidget( verbosityLabel, 1, 0, 1, 1 );
-    msgLayout->addWidget( verbosityBox, 1, 1 );
-    msgLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ), 1, 2 );
-    msgLayout->addWidget( saveLogButton, 1, 3 );
-    msgLayout->addWidget( clearButton, 1, 4 );
-
-    BUTTONACT( clearButton, clear() );
-    BUTTONACT( saveLogButton, save() );
+    mainTab->addTab( msgWidget, qtr( "Messages" ) );
     ON_TIMEOUT( updateLog() );
 
-    mainTab->addTab( msgWidget, qtr( "Messages" ) );
 
-    /* Module tree */
+    /* Modules tree */
     QWidget     *treeWidget = new QWidget;
     QGridLayout *treeLayout = new QGridLayout( treeWidget );
 
     modulesTree = new QTreeWidget();
     modulesTree->header()->hide();
 
-    QPushButton *updateButton = new QPushButton( qtr( "&Update" ) );
-
     treeLayout->addWidget( modulesTree, 0, 0, 1, 0 );
-    treeLayout->addWidget( updateButton, 1, 6 );
-
-    BUTTONACT( updateButton, updateTree() );
-
     mainTab->addTab( treeWidget, qtr( "Modules tree" ) );
 
 
+    /* General action */
     readSettings( "Messages" );
 }
 
+void MessagesDialog::updateTab( int index )
+{
+    if( index == 1 )
+    {
+        verbosityLabel->hide();
+        verbosityBox->hide();
+        clearButton->hide();
+        saveLogButton->hide();
+        updateTree();
+    }
+    else
+    {
+        verbosityLabel->show();
+        verbosityBox->show();
+        clearButton->show();
+        saveLogButton->show();
+    }
+}
+
 void MessagesDialog::updateLog()
 {
     msg_subscription_t *p_sub = p_intf->p_sys->p_sub;
index 0beee109b613f9dd7581bc509608a6831f34661b..61f7dee352f7725049c1afe08625baa5fb5c0f7e 100644 (file)
@@ -56,15 +56,20 @@ private:
     MessagesDialog( intf_thread_t * );
     static MessagesDialog *instance;
     QSpinBox *verbosityBox;
+    QLabel *verbosityLabel;
     QTextEdit *messages;
     QTreeWidget *modulesTree;
+    QPushButton *clearButton;
+    QPushButton *saveLogButton;
+
 private slots:
+    void updateTab( int );
     void updateLog();
-    void updateTree();
     void close();
     void clear();
     bool save();
 private:
+    void updateTree();
     void buildTree( QTreeWidgetItem *, vlc_object_t * );
 };