##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
Show More
PythonQtWrapper_QButtonGroup.h
34 lines | 1.3 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QBUTTONGROUP_H
#define PYTHONQTWRAPPER_QBUTTONGROUP_H
#include <qbuttongroup.h>
#include <QObject>
#include <QVariant>
#include <qabstractbutton.h>
#include <qbuttongroup.h>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qobject.h>
class PythonQtWrapper_QButtonGroup : public QObject
{ Q_OBJECT
public:
public slots:
QButtonGroup* new_QButtonGroup(QObject* parent = 0);
void delete_QButtonGroup(QButtonGroup* obj) { delete obj; }
void addButton(QButtonGroup* theWrappedObject, QAbstractButton* arg__1);
void addButton(QButtonGroup* theWrappedObject, QAbstractButton* arg__1, int id);
QAbstractButton* button(QButtonGroup* theWrappedObject, int id) const;
QList<QAbstractButton* > buttons(QButtonGroup* theWrappedObject) const;
QAbstractButton* checkedButton(QButtonGroup* theWrappedObject) const;
int checkedId(QButtonGroup* theWrappedObject) const;
bool exclusive(QButtonGroup* theWrappedObject) const;
int id(QButtonGroup* theWrappedObject, QAbstractButton* button) const;
void removeButton(QButtonGroup* theWrappedObject, QAbstractButton* arg__1);
void setExclusive(QButtonGroup* theWrappedObject, bool arg__1);
void setId(QButtonGroup* theWrappedObject, QAbstractButton* button, int id);
};
#endif // PYTHONQTWRAPPER_QBUTTONGROUP_H