diff options
Diffstat (limited to 'src/welcome.h')
-rwxr-xr-x | src/welcome.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/welcome.h b/src/welcome.h new file mode 100755 index 0000000..0b93850 --- /dev/null +++ b/src/welcome.h @@ -0,0 +1,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_ |