##// END OF EJS Templates
started to update/improve docs...
started to update/improve docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@68 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r32:ae159b178ea0
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();
}