##// END OF EJS Templates
added experimental compacting to avoid generation of hundreds of files that all include the same stuff...
added experimental compacting to avoid generation of hundreds of files that all include the same stuff git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@128 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r92:f97ec94c87a9
Show More
PythonQtWrapper_QWhatsThis.cpp
41 lines | 984 B | text/x-c | CppLexer
#include "PythonQtWrapper_QWhatsThis.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qaction.h>
#include <qobject.h>
#include <qpoint.h>
#include <qwidget.h>
void PythonQtWrapper_QWhatsThis::static_QWhatsThis_hideText()
{
(QWhatsThis::hideText());
}
bool PythonQtWrapper_QWhatsThis::static_QWhatsThis_inWhatsThisMode()
{
return (QWhatsThis::inWhatsThisMode());
}
void PythonQtWrapper_QWhatsThis::static_QWhatsThis_showText(const QPoint& pos, const QString& text, QWidget* w)
{
(QWhatsThis::showText(pos, text, w));
}
QAction* PythonQtWrapper_QWhatsThis::static_QWhatsThis_createAction(QObject* parent)
{
return (QWhatsThis::createAction(parent));
}
void PythonQtWrapper_QWhatsThis::static_QWhatsThis_enterWhatsThisMode()
{
(QWhatsThis::enterWhatsThisMode());
}
void PythonQtWrapper_QWhatsThis::static_QWhatsThis_leaveWhatsThisMode()
{
(QWhatsThis::leaveWhatsThisMode());
}