00001 #ifndef __VIEWPOPUPACTION_H
00002 #define __VIEWPOPUPACTION_H
00003
00004 #include <qaction.h>
00005
00012 class ViewPopupAction : public QAction {
00013 Q_OBJECT
00014 public:
00015 ViewPopupAction( const QString &text,
00016 const QString &menuText,
00017 int accel,
00018 QObject *parent,
00019 const char *name=0,
00020 bool toggle=false );
00021
00022 public slots:
00023 void actSelected( ) {
00024 emit selected( this );
00025 }
00026
00027
00028 signals:
00029 void selected( ViewPopupAction * );
00030
00031 };
00032
00033 #endif
00034
00035
00036