00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #include "SeExprEdPopupDocumentation.h"
00011 #include <QtGui/QLabel>
00012 #include <QtGui/QHBoxLayout>
00013
00014 SeExprEdPopupDocumentation::SeExprEdPopupDocumentation(QWidget* parent,const QPoint& placecr,const QString& msg)
00015 {
00016 Q_UNUSED(parent);
00017 label=new QLabel(msg);
00018 QHBoxLayout* layout=new QHBoxLayout;
00019 setLayout(layout);
00020 layout->addWidget(label);
00021
00022 setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint | Qt::CustomizeWindowHint |Qt::X11BypassWindowManagerHint );
00023 setFocusPolicy(Qt::NoFocus);
00024 move(placecr);
00025 raise();
00026 show();
00027 }
00028
00029 void SeExprEdPopupDocumentation::
00030 mousePressEvent ( QMouseEvent * event )
00031 {
00032 Q_UNUSED(event);
00033 hide();
00034 }