##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QActionGroup.h
33 lines | 1.1 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QACTIONGROUP_H
#define PYTHONQTWRAPPER_QACTIONGROUP_H
#include <qactiongroup.h>
#include <QObject>
#include <QVariant>
#include <qaction.h>
#include <qactiongroup.h>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qicon.h>
#include <qlist.h>
#include <qobject.h>
class PythonQtWrapper_QActionGroup : public QObject
{ Q_OBJECT
public:
public slots:
QActionGroup* new_QActionGroup(QObject* parent);
void delete_QActionGroup(QActionGroup* obj) { delete obj; }
QList<QAction* > actions(QActionGroup* theWrappedObject) const;
QAction* addAction(QActionGroup* theWrappedObject, QAction* a);
QAction* addAction(QActionGroup* theWrappedObject, const QIcon& icon, const QString& text);
QAction* addAction(QActionGroup* theWrappedObject, const QString& text);
QAction* checkedAction(QActionGroup* theWrappedObject) const;
bool isEnabled(QActionGroup* theWrappedObject) const;
bool isExclusive(QActionGroup* theWrappedObject) const;
bool isVisible(QActionGroup* theWrappedObject) const;
void removeAction(QActionGroup* theWrappedObject, QAction* a);
};
#endif // PYTHONQTWRAPPER_QACTIONGROUP_H