1
mirror of https://code.videolan.org/videolan/vlc synced 2024-08-31 06:46:39 +02:00

Qt4: change messages-dialog to use msg_SubscriptionSetVerbosity

This commit is contained in:
Ilkka Ollakka 2010-07-13 19:57:16 +03:00
parent 14d8d88c6c
commit ef39893fa2
2 changed files with 9 additions and 4 deletions

View File

@ -147,6 +147,8 @@ MessagesDialog::MessagesDialog( intf_thread_t *_p_intf)
CONNECT( mainTab, currentChanged( int ),
this, updateTab( int ) );
CONNECT(vbobjectsEdit, editingFinished(), this, updateConfig());
CONNECT( verbosityBox, valueChanged( int ),
this, changeVerbosity( int ) );
/* General action */
readSettings( "Messages", QSize( 600, 450 ) );
@ -156,6 +158,7 @@ MessagesDialog::MessagesDialog( intf_thread_t *_p_intf)
cbData = new msg_cb_data_t;
cbData->self = this;
sub = msg_Subscribe( p_intf->p_libvlc, MsgCallback, cbData );
changeVerbosity( verbosityBox->value() );
}
MessagesDialog::~MessagesDialog()
@ -165,6 +168,11 @@ MessagesDialog::~MessagesDialog()
delete cbData;
};
void MessagesDialog::changeVerbosity( int verbosity )
{
msg_SubscriptionSetVerbosity( sub , verbosity );
}
void MessagesDialog::updateTab( int index )
{
/* Second tab : modules tree */
@ -223,10 +231,6 @@ void MessagesDialog::updateConfig()
void MessagesDialog::sinkMessage( msg_item_t *item )
{
if ((item->i_type == VLC_MSG_WARN && verbosityBox->value() < 1)
|| (item->i_type == VLC_MSG_DBG && verbosityBox->value() < 2 ))
return;
/* Copy selected text to the clipboard */
if( messages->textCursor().hasSelection() )
messages->copy();

View File

@ -64,6 +64,7 @@ private slots:
void clearOrUpdate();
bool save();
void updateConfig();
void changeVerbosity( int );
private:
void clear();
void updateTree();