|
|
/* ****************************************************************************** * File Name : pushbutton.h - application header file * Created on : Monday, July 8, 2002 * Product id : KitClasses version 1.0 - KInterDev Add-on Classes for KDE * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * Copyright : © 2002 by Bruce Hunt Supporting Cast * Email : SuppCast@users.sourceforge.net * Web site : http://kinterdev.sourceforge.net ****************************************************************************** * This program is being provided under the LICENSING terms and conditions as * specified in the file "COPYING" which has been included with this software * package. This program is distributed WITHOUT ANY WARRANTY, without even the * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ****************************************************************************** * M o d i f i c a t i o n L o g * *****************************************************************************/ #ifndef KIT_PUSHBUTTON_H #define KIT_PUSHBUTTON_H #include/** * A KPushButton that returns it's pointer when clicked * * @author Bruce Hunt */ class KitPushButton : public KPushButton { Q_OBJECT public: KitPushButton( QWidget * parent, const char * name=0 ); KitPushButton( const QString & text, QWidget * parent, const char * name=0 ); KitPushButton( const QIconSet & icon, const QString & text, QWidget * parent, const char * name=0 ); ~KitPushButton(); signals: /** * Emits the pointer of the button when clicked */ void clicked( KPushButton * button ); private slots: void clicked(); }; #endif
Generated by: bhunt on Lurch on Sun Nov 24 02:45:27 2002, using kdoc 2.0a54. |