1
/* This file is part of the KDE libraries
2
Copyright (C) 1997 Matthias Kalle Dalheimer (kalle@kde.org)
4
This library is free software; you can redistribute it and/or
5
modify it under the terms of the GNU Library General Public
6
License as published by the Free Software Foundation; either
7
version 2 of the License, or (at your option) any later version.
9
This library is distributed in the hope that it will be useful,
10
but WITHOUT ANY WARRANTY; without even the implied warranty of
11
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
Library General Public License for more details.
14
You should have received a copy of the GNU Library General Public License
15
along with this library; see the file COPYING.LIB. If not, write to
16
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17
Boston, MA 02110-1301, USA.
22
#include "kabstractdebugdialog.h"
34
* Control debug/warning/error/fatal output of KDE applications
36
* This dialog allows control of debugging output for all KDE apps.
38
* @author Kalle Dalheimer (kalle@kde.org)
40
class KDebugDialog : public KAbstractDebugDialog
45
KDebugDialog( QStringList areaList, QWidget *parent=0, const char *name=0, bool modal=true );
46
virtual ~KDebugDialog();
51
void slotDebugAreaChanged( const QString & );
52
void slotDestinationChanged(int);
55
QComboBox* pDebugAreas;
56
QGroupBox* pInfoGroup;
58
QComboBox* pInfoCombo;
63
QGroupBox* pWarnGroup;
65
QComboBox* pWarnCombo;
70
QGroupBox* pErrorGroup;
72
QComboBox* pErrorCombo;
74
QLineEdit* pErrorFile;
76
QLineEdit* pErrorShow;
77
QGroupBox* pFatalGroup;
79
QComboBox* pFatalCombo;
81
QLineEdit* pFatalFile;
83
QLineEdit* pFatalShow;
85
QCheckBox* pAbortFatal;
88
// Disallow assignment and copy-construction
89
KDebugDialog( const KDebugDialog& );
90
KDebugDialog& operator= ( const KDebugDialog& );