/****************************************************************************** $Id$**** Copyright (C) 1992-1998 Troll Tech AS. All rights reserved.**** This file is part of an example program for Qt. This example** program may be used, distributed and modified without limitation.*******************************************************************************/#ifndef HELLO_H#define HELLO_H#include <qwidget.h>classHello:publicQWidget{Q_OBJECTpublic:Hello(constchar*text,QWidget*parent=0,constchar*name=0);signals:voidclicked();protected:voidmouseReleaseEvent(QMouseEvent*);voidpaintEvent(QPaintEvent*);privateslots:voidanimate();private:QStringt;intb;};#endif