$$_COPYRIGHT_$

#ifndef $$_CLASSNAME_$_H
#define $$_CLASSNAME_$_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <qwidget.h>
#include <qevent.h>
#include <math.h>
#include <kfiledialog.h>
$$_INCLUDES_$
#include "vkwidget.h"
#include "vkvar.h"
#include "vkbox.h"
#include "vkerr.h"
#include "vkfunctions.h"

class $$_CLASSNAME_$ : public vkWidget
{
	Q_OBJECT
public:
	$$_CLASSNAME_$( vkWidget * ); //constructor for sub widgets
	$$_CLASSNAME_$( QWidget * ); //constructor for windows

public slots:
	//Event functions of the sub widgets:
$$_EVENTS_$


private:
	virtual void resizeEvent( QResizeEvent * );

	//Regional variables, consts
$$_VARCONST_$

	//User-defined functions:
$$_USER_$

	//Declaration of sub widgets:
$$_SUBDECLARE_$

	virtual void regComplete();
		//After registration of this: connections to child
		//events, default properties of childs, ...

	virtual void start();
		//After regComplete() - The LOAD event

	virtual void click();
		//The CLICK event

	vkBox *msg;
};

#endif //$$_CLASSNAME_$_H
