You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
klamav/src/welcome.h

55 lines
874 B

/*
* 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
{
TQ_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_