/* * Copyright (C) 2004 Robert Hogan */ #ifndef _ABOUTKLAMAV_H_ #define _ABOUTKLAMAV_H_ #ifdef HAVE_CONFIG_H #include #endif #include #include 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_