kmail

filterlogdlg.h
1/*
2 This file is part of KMail.
3 Copyright (c) 2003 Andreas Gungl <a.gungl@gmx.de>
4
5 KMail is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License, version 2, as
7 published by the Free Software Foundation.
8
9 KMail is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
18 In addition, as a special exception, the copyright holders give
19 permission to link the code of this program with any edition of
20 the TQt library by Trolltech AS, Norway (or with modified versions
21 of TQt that use the same license as TQt), and distribute linked
22 combinations including the two. You must obey the GNU General
23 Public License in all respects for all of the code used other than
24 TQt. If you modify this file, you may extend this exception to
25 your version of the file, but you are not obligated to do so. If
26 you do not wish to do so, delete this exception statement from
27 your version.
28*/
29#ifndef KMAIL_FILTERLOGDLG_H
30#define KMAIL_FILTERLOGDLG_H
31
32#include <kdialogbase.h>
33
34class TQTextEdit;
35class TQCheckBox;
36class TQSpinBox;
37class TQGroupBox;
38
39namespace KMail {
40
48 class FilterLogDialog : public KDialogBase
49 {
50 TQ_OBJECT
51
52
53 public:
55 FilterLogDialog( TQWidget * parent );
56
57 protected slots:
58 void slotLogEntryAdded( TQString logEntry );
59 void slotLogShrinked();
60 void slotLogStateChanged();
61 void slotChangeLogDetail();
62 void slotSwitchLogState();
63 void slotChangeLogMemLimit( int value );
64
65 protected:
66 virtual void slotUser1();
67 virtual void slotUser2();
68
69 TQTextEdit * mTextEdit;
70 TQCheckBox * mLogActiveBox;
71 TQGroupBox * mLogDetailsBox;
72 TQCheckBox * mLogPatternDescBox;
73 TQCheckBox * mLogRuleEvaluationBox;
74 TQCheckBox * mLogPatternResultBox;
75 TQCheckBox * mLogFilterActionBox;
76 TQSpinBox * mLogMemLimitSpin;
77 };
78
79} // namespace KMail
80
81#endif // KMAIL_FILTERLOGDLG_H
KMail Filter Log Collector.
Definition: filterlogdlg.h:49
FilterLogDialog(TQWidget *parent)
constructor
folderdiaquotatab.h
Definition: aboutdata.cpp:40