##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QWhatsThis.cpp
41 lines | 960 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_enterWhatsThisMode()
{
QWhatsThis::enterWhatsThisMode();
}
bool PythonQtWrapper_QWhatsThis::static_QWhatsThis_inWhatsThisMode()
{
return QWhatsThis::inWhatsThisMode();
}
QAction* PythonQtWrapper_QWhatsThis::static_QWhatsThis_createAction(QObject* parent)
{
return QWhatsThis::createAction(parent);
}
void PythonQtWrapper_QWhatsThis::static_QWhatsThis_hideText()
{
QWhatsThis::hideText();
}
void PythonQtWrapper_QWhatsThis::static_QWhatsThis_leaveWhatsThisMode()
{
QWhatsThis::leaveWhatsThisMode();
}
void PythonQtWrapper_QWhatsThis::static_QWhatsThis_showText(const QPoint& pos, const QString& text, QWidget* w)
{
QWhatsThis::showText(pos, text, w);
}