##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QToolTip.cpp
57 lines | 1.3 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());
}