##// END OF EJS Templates
added builtin support for variants etc., this will replace the direct includes in PythonQt...
added builtin support for variants etc., this will replace the direct includes in PythonQt git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@129 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r93:7b53f64eae84
Show More
PythonQtWrapper_QToolTip.h
32 lines | 935 B | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QTOOLTIP_H
#define PYTHONQTWRAPPER_QTOOLTIP_H
#include <qtooltip.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qfont.h>
#include <qpalette.h>
#include <qpoint.h>
#include <qrect.h>
#include <qwidget.h>
class PythonQtWrapper_QToolTip : public QObject
{ Q_OBJECT
public:
public slots:
void delete_QToolTip(QToolTip* obj) { delete obj; }
void static_QToolTip_hideText();
bool static_QToolTip_isVisible();
void static_QToolTip_setPalette(const QPalette& arg__1);
void static_QToolTip_showText(const QPoint& pos, const QString& text, QWidget* w, const QRect& rect);
QFont static_QToolTip_font();
void static_QToolTip_setFont(const QFont& arg__1);
void static_QToolTip_showText(const QPoint& pos, const QString& text, QWidget* w = 0);
QPalette static_QToolTip_palette();
QString static_QToolTip_text();
};
#endif // PYTHONQTWRAPPER_QTOOLTIP_H