blob: 0b938505a5dc6cdd5832392b05a2b178534c0fb1 (
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
|
/*
* Copyright (C) 2004 Robert Hogan <robert at roberthogan dot net>
*/
#ifndef _ABOUTKLAMAV_H_
#define _ABOUTKLAMAV_H_
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tdeapplication.h>
#include <tdemainwindow.h>
class TDEHTMLPart;
class TQWidget;
class TQString;
/**
* This class serves as the main window for Aboutklamav. It handles the
* menus, toolbars, and status bars.
*
* @short Main window class
* @author $AUTHOR <$EMAIL>
* @version $APP_VERSION
*/
class Aboutklamav : public TQWidget
{
Q_OBJECT
public:
/**
* Default Constructor
*/
Aboutklamav(TQWidget *parent, const char *name=0);
/**
* Default Destructor
*/
virtual ~Aboutklamav();
private:
TDEHTMLPart* htmlpart;
/*
* Read text from file
*/
TQString loadFile( const TQString& file );
};
#endif // _Aboutklamav_H_
|