okular/pushbutton.h
Stephan Kulow 56047b2b0b imported kdvi
svn path=/trunk/kdegraphics/kdvi/; revision=2139
1997-10-18 11:34:02 +00:00

34 lines
644 B
C++

/****************************************************************************
**
** 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 <qpushbt.h>
#include <qpopmenu.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