##// 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.cpp
54 lines | 1.1 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QToolTip.h"
#include <QVariant>
#include <qfont.h>
#include <qpalette.h>
#include <qpoint.h>
#include <qrect.h>
#include <qwidget.h>
QFont PythonQtWrapper_QToolTip::static_QToolTip_font()
{
return QToolTip::font();
}
void PythonQtWrapper_QToolTip::static_QToolTip_hideText()
{
QToolTip::hideText();
}
bool PythonQtWrapper_QToolTip::static_QToolTip_isVisible()
{
return QToolTip::isVisible();
}
QPalette PythonQtWrapper_QToolTip::static_QToolTip_palette()
{
return QToolTip::palette();
}
void PythonQtWrapper_QToolTip::static_QToolTip_setFont(const QFont& arg__1)
{
QToolTip::setFont(arg__1);
}
void PythonQtWrapper_QToolTip::static_QToolTip_setPalette(const QPalette& arg__1)
{
QToolTip::setPalette(arg__1);
}
void PythonQtWrapper_QToolTip::static_QToolTip_showText(const QPoint& pos, const QString& text, QWidget* w)
{
QToolTip::showText(pos, text, w);
}
void PythonQtWrapper_QToolTip::static_QToolTip_showText(const QPoint& pos, const QString& text, QWidget* w, const QRect& rect)
{
QToolTip::showText(pos, text, w, rect);
}
QString PythonQtWrapper_QToolTip::static_QToolTip_text()
{
return QToolTip::text();
}