##// END OF EJS Templates
- added hasOwner method to manage ownership more nicely...
- added hasOwner method to manage ownership more nicely - added force flag to make delete() work - added check for hasOwner git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@51 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r15:ae998290bf19
Show More
PythonQtWrapper_QToolTip.h
30 lines | 912 B | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QTOOLTIP_H
#define PYTHONQTWRAPPER_QTOOLTIP_H
#include <qtooltip.h>
#include <QObject>
#include <QVariant>
#include <qfont.h>
#include <qpalette.h>
#include <qpoint.h>
#include <qrect.h>
#include <qwidget.h>
class PythonQtWrapper_QToolTip : public QObject
{ Q_OBJECT
public:
public slots:
void delete_QToolTip(QToolTip* obj) { delete obj; }
QFont static_QToolTip_font();
void static_QToolTip_hideText();
bool static_QToolTip_isVisible();
QPalette static_QToolTip_palette();
void static_QToolTip_setFont(const QFont& arg__1);
void static_QToolTip_setPalette(const QPalette& arg__1);
void static_QToolTip_showText(const QPoint& pos, const QString& text, QWidget* w = 0);
void static_QToolTip_showText(const QPoint& pos, const QString& text, QWidget* w, const QRect& rect);
QString static_QToolTip_text();
};
#endif // PYTHONQTWRAPPER_QTOOLTIP_H