okular/pushbutton.cpp
Stephan Kulow cef9d1148f CVS_SILENT ported to Qt 2.0
svn path=/trunk/kdegraphics/kdvi/; revision=17396
1999-03-01 23:45:56 +00:00

37 lines
967 B
C++

/****************************************************************************
**
** An enhanced pushbutton.
**
** Copyright (C) 1997 by Markku Hihnala.
** This class is freely distributable under the GNU Public License.
**
*****************************************************************************/
#include "pushbutton.h"
#include <qtabdialog.h>
#include <qmultilinedit.h>
#include <qbuttongroup.h>
#include <qradiobutton.h>
#include <qlabel.h>
#include <qcombobox.h>
#include <qlayout.h>
#include <stdio.h>
#include <qstring.h>
#include <qpainter.h>
#include <qdrawutil.h>
PushButton::PushButton( QWidget * parent , const char * name )
: QPushButton( parent, name )
{
}
void PushButton::mousePressEvent ( QMouseEvent *e )
{
if ( e->button() == LeftButton )
QPushButton::mousePressEvent( e );
else if ( e->button() == RightButton )
emit button3Pressed( mapToGlobal( e->pos() ) );
// else if ( e->button() == MidButton )
// emit button2Pressed();
}