]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/errors.cpp
Revert "qt4 - Make errors dialog Application Modal."
[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  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * ( at your option ) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "dialogs/errors.hpp"
29
30 #include <QTextCursor>
31 #include <QTextEdit>
32 #include <QCheckBox>
33 #include <QGridLayout>
34 #include <QDialogButtonBox>
35 #include <QPushButton>
36
37 ErrorsDialog *ErrorsDialog::instance = NULL;
38
39 ErrorsDialog::ErrorsDialog( QWidget *parent, intf_thread_t *_p_intf )
40              : QVLCDialog( parent, _p_intf )
41 {
42     setWindowTitle( qtr( "Errors" ) );
43     resize( 500 , 300 );
44
45     QGridLayout *layout = new QGridLayout( this );
46
47     QDialogButtonBox *buttonBox = new QDialogButtonBox;
48     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
49     QPushButton *clearButton = new QPushButton( qtr( "&Clear" ) );
50     buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
51     buttonBox->addButton( clearButton, QDialogButtonBox::ActionRole );
52
53     messages = new QTextEdit();
54     messages->setReadOnly( true );
55     messages->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
56     stopShowing = new QCheckBox( qtr( "Hide future errors" ) );
57
58     layout->addWidget( messages, 0, 0, 1, 3 );
59     layout->addWidget( stopShowing, 1, 0 );
60     layout->addItem( new QSpacerItem( 200, 20, QSizePolicy::Expanding ), 2,0 );
61     layout->addWidget( buttonBox, 2, 2 );
62
63     CONNECT( buttonBox, accepted(), this, close() );
64     BUTTONACT( clearButton, clear() );
65     BUTTONACT( stopShowing, dontShow() );
66 }
67
68 void ErrorsDialog::addError( const QString& title, const QString& text )
69 {
70     add( true, title, text );
71 }
72
73 /*void ErrorsDialog::addWarning( QString title, QString text )
74 {
75     add( false, title, text );
76 }*/
77
78 void ErrorsDialog::add( bool error, const QString& title, const QString& text )
79 {
80     if( stopShowing->isChecked() ) return;
81     messages->textCursor().movePosition( QTextCursor::End );
82     messages->setTextColor( error ? "red" : "yellow" );
83     messages->insertPlainText( title + QString( ":\n" ) );
84     messages->setTextColor( "black" );
85     messages->insertPlainText( text + QString( "\n" ) );
86     messages->ensureCursorVisible();
87     show();
88 }
89
90 void ErrorsDialog::close()
91 {
92     hide();
93 }
94
95 void ErrorsDialog::clear()
96 {
97     messages->clear();
98 }
99
100 void ErrorsDialog::dontShow()
101 {
102     if( stopShowing->isChecked() )
103     {
104         config_PutInt( p_intf, "qt-show-errors", 0 );
105     }
106 }