##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
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();
}