##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

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