/*************************************************************************** * Copyright (C) 2003 by Martin Galpin * * martin@nemohackers.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * ***************************************************************************/ #ifndef _KUAKEPUSHBUTTON_H_ #define _KUAKEPUSHBUTTON_H_ #include class KPopupMenu; class Kuake; class KuakePushButton : public KPushButton { public: KuakePushButton(Kuake* parent = 0, const char* name = 0); ~KuakePushButton(); protected: virtual void mousePressEvent (QMouseEvent* e); //virtual void mouseMoveEvent (QMouseEvent* e); //virtual void paintEvent (QPaintEvent* e); //virtual void leaveEvent (QEvent* e); public slots: private: Kuake* _parent; }; #endif