]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/errors.cpp
Warnings/Errors dialog
[vlc] / modules / gui / qt4 / dialogs / errors.cpp
1 /*****************************************************************************
2  * errors.cpp : Errors
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id: Errors.cpp 16024 2006-07-13 13:51:05Z xtophe $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include "dialogs/errors.hpp"
25 #include "qt4.hpp"
26
27 #include <QTextCursor>
28 #include <QTextEdit>
29 #include <QCheckBox>
30 #include <QGridLayout>
31 #include <QPushButton>
32
33 ErrorsDialog *ErrorsDialog::instance = NULL;
34
35 ErrorsDialog::ErrorsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
36 {
37     setWindowTitle( _("Errors" ) );
38     resize( 500 , 200 );
39
40     QGridLayout *layout = new QGridLayout( this );
41     QPushButton *closeButton = new QPushButton(qtr("&Close"));
42     QPushButton *clearButton = new QPushButton(qtr("&Clear"));
43     messages = new QTextEdit();
44     messages->setReadOnly( true );
45     messages->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
46     stopShowing = new QCheckBox( qtr( "Don't show further errors") );
47
48     layout->addWidget( messages, 0, 0, 1, 3 );
49     layout->addWidget( stopShowing, 1, 0 );
50     layout->addItem( new QSpacerItem( 200, 20, QSizePolicy::Expanding ), 2,0 );
51     layout->addWidget( clearButton, 2, 1 );
52     layout->addWidget( closeButton, 2, 2 );
53
54     connect( closeButton, SIGNAL( clicked() ), this, SLOT( onClose() ));
55     connect( clearButton, SIGNAL( clicked() ), this, SLOT( onClear() ));
56     connect( stopShowing, SIGNAL( clicked() ), this, SLOT( dontShow() ) );
57 }
58
59 void ErrorsDialog::addError( QString title, QString text )
60 {
61     add( true, title, text );
62 }
63
64 void ErrorsDialog::addWarning( QString title, QString text )
65 {
66     add( false, title, text );
67 }
68
69 void ErrorsDialog::add( bool error, QString title, QString text )
70 {
71     if( stopShowing->isChecked() ) return;
72     messages->textCursor().movePosition( QTextCursor::End );
73     messages->setTextColor( error ? "red" : "yellow" );
74     messages->insertPlainText( title + QString( ":\n" ));
75     messages->setTextColor( "black" );
76     messages->insertPlainText( text + QString( "\n" ) );
77     messages->ensureCursorVisible();
78     show();
79 }
80
81 void ErrorsDialog::onClose()
82 {
83     hide();
84 }
85
86 void ErrorsDialog::onClear()
87 {
88     messages->clear();
89 }
90
91 void ErrorsDialog::dontShow()
92 {
93     if( stopShowing->isChecked() )
94     {
95         config_PutInt( p_intf, "qt-show-errors", 0 );
96     }
97 }