00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _SeExprEdPopupDocumentation_h_
00011 #define _SeExprEdPopupDocumentation_h_
00012
00013 #include <QtGui/QWidget>
00014
00015 class QLabel;
00016 class SeExprEdPopupDocumentation:public QWidget
00017 {
00018 Q_OBJECT;
00019
00020 public:
00021 QLabel* label;
00022 SeExprEdPopupDocumentation(QWidget* parent,const QPoint& cr,const QString& msg);
00023
00024 protected:
00025 void mousePressEvent ( QMouseEvent * event );
00026 };
00027
00028 #endif