]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/errors.cpp
qt4/dialogs: svn:keywords set to Id
[vlc] / modules / gui / qt4 / dialogs / errors.cpp
1 /*****************************************************************************
2  * errors.cpp : Errors
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
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( qtr( "Errors" ) );
38     resize( 500 , 200 );
39
40     setWindowModality( Qt::ApplicationModal );
41
42     QGridLayout *layout = new QGridLayout( this );
43     QPushButton *closeButton = new QPushButton(qtr("&Close"));
44     QPushButton *clearButton = new QPushButton(qtr("&Clear"));
45     messages = new QTextEdit();
46     messages->setReadOnly( true );
47     messages->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
48     stopShowing = new QCheckBox( qtr( "Hide future errors") );
49
50     layout->addWidget( messages, 0, 0, 1, 3 );
51     layout->addWidget( stopShowing, 1, 0 );
52     layout->addItem( new QSpacerItem( 200, 20, QSizePolicy::Expanding ), 2,0 );
53     layout->addWidget( clearButton, 2, 1 );
54     layout->addWidget( closeButton, 2, 2 );
55
56     BUTTONACT( closeButton, close() );
57     BUTTONACT( clearButton, clear() );
58     BUTTONACT( stopShowing, dontShow() );
59 }
60
61 void ErrorsDialog::addError( QString title, QString text )
62 {
63     add( true, title, text );
64 }
65
66 void ErrorsDialog::addWarning( QString title, QString text )
67 {
68     add( false, title, text );
69 }
70
71 void ErrorsDialog::add( bool error, QString title, QString text )
72 {
73     if( stopShowing->isChecked() ) return;
74     messages->textCursor().movePosition( QTextCursor::End );
75     messages->setTextColor( error ? "red" : "yellow" );
76     messages->insertPlainText( title + QString( ":\n" ));
77     messages->setTextColor( "black" );
78     messages->insertPlainText( text + QString( "\n" ) );
79     messages->ensureCursorVisible();
80     show();
81 }
82
83 void ErrorsDialog::close()
84 {
85     hide();
86 }
87
88 void ErrorsDialog::clear()
89 {
90     messages->clear();
91 }
92
93 void ErrorsDialog::dontShow()
94 {
95     if( stopShowing->isChecked() )
96     {
97         config_PutInt( p_intf, "qt-show-errors", 0 );
98     }
99 }