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.
33 lines
650 B
33 lines
650 B
/**************************************************************************** |
|
** |
|
** An enhanced pushbutton. |
|
** |
|
** Copyright (C) 1997 by Markku Hihnala. |
|
** This class is freely distributable under the GNU Public License. |
|
** |
|
*****************************************************************************/ |
|
|
|
#ifndef PUSHBUTTON_H |
|
#define PUSHBUTTON_H |
|
|
|
#include <qpushbutton.h> |
|
#include <qpopupmenu.h> |
|
|
|
class PushButton: public QPushButton |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
PushButton( QWidget * parent = 0, const char * name = 0 ); |
|
|
|
signals: |
|
void button3Pressed( QPoint ); |
|
|
|
protected: |
|
void mousePressEvent ( QMouseEvent *); |
|
|
|
private: |
|
QPopupMenu* menu; |
|
}; |
|
|
|
#endif
|
|
|