blob: b4122427e5c6b859deaec8449e41bd9e16fb3eec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/****************************************************************************
** Form interface generated from reading ui file 'clamscan.ui'
**
** Created: Sun Mar 13 19:55:35 2005
** by: The User Interface Compiler ($Id: klamscanoptions.h,v 1.1.1.1 2006/02/03 20:35:02 hoganrobert Exp $)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/
#ifndef KLAMSCANOPTIONS_H
#define KLAMSCANOPTIONS_H
#include <qvariant.h>
#include <qdialog.h>
class QVBoxLayout;
class QHBoxLayout;
class QGridLayout;
class QSpacerItem;
class QGroupBox;
class QLabel;
class QSpinBox;
class QCheckBox;
class QButtonGroup;
class KURLRequester;
class QPushButton;
class KConfig;
class KComboBox;
class KlamscanOptions : public QDialog
{
Q_OBJECT
public:
KlamscanOptions( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
~KlamscanOptions();
QGroupBox* Archive_Support;
QLabel* textLabel1_2_2;
QLabel* textLabel1_2;
QLabel* textLabel1_2_3;
QLabel* textLabel1;
QSpinBox* NoFilesToExtract;
QSpinBox* MBsToExtract;
QSpinBox* RecursionLevel;
QSpinBox* CompressionRatio;
QCheckBox* VirusLimitsExceeded;
QCheckBox* VirusEncrypted;
QButtonGroup* ArchiveTypes;
QCheckBox* ScanZip;
KURLRequester* ZipUsing;
QCheckBox* ScanRar;
KURLRequester* RarUsing;
QCheckBox* ScanArj;
KURLRequester* ArjUsing;
QCheckBox* ScanZoo;
KURLRequester* ZooUsing;
QCheckBox* ScanLzh;
KURLRequester* LzhUsing;
QCheckBox* ScanJar;
KURLRequester* JarUsing;
QCheckBox* ScanDeb;
KURLRequester* DebUsing;
QCheckBox* ScanTar;
KURLRequester* TarUsing;
QCheckBox* ScanTgz;
KURLRequester* TgzUsing;
QGroupBox* FileTypes;
QCheckBox* ScanMail;
QCheckBox* ScanHTML;
QCheckBox* ScanPE;
QCheckBox* ScanOle;
QCheckBox* VirusBroken;
QCheckBox* ExcludeQuarantine;
QPushButton* OK;
QPushButton* Cancel;
KConfig* config;
KComboBox* zipedit;
private:
void fetchSettings();
private slots:
void updateSettings();
protected slots:
virtual void languageChange();
};
#endif // KLAMSCANOPTIONS_H
|