##// 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.cpp
69 lines | 1.9 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QButtonGroup.h"
#include <QVariant>
#include <qabstractbutton.h>
#include <qbuttongroup.h>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qobject.h>
QButtonGroup* PythonQtWrapper_QButtonGroup::new_QButtonGroup(QObject* parent)
{
return new QButtonGroup(parent); }
void PythonQtWrapper_QButtonGroup::addButton(QButtonGroup* theWrappedObject, QAbstractButton* arg__1)
{
theWrappedObject->addButton(arg__1);
}
void PythonQtWrapper_QButtonGroup::addButton(QButtonGroup* theWrappedObject, QAbstractButton* arg__1, int id)
{
theWrappedObject->addButton(arg__1, id);
}
QAbstractButton* PythonQtWrapper_QButtonGroup::button(QButtonGroup* theWrappedObject, int id) const
{
return theWrappedObject->button(id);
}
QList<QAbstractButton* > PythonQtWrapper_QButtonGroup::buttons(QButtonGroup* theWrappedObject) const
{
return theWrappedObject->buttons();
}
QAbstractButton* PythonQtWrapper_QButtonGroup::checkedButton(QButtonGroup* theWrappedObject) const
{
return theWrappedObject->checkedButton();
}
int PythonQtWrapper_QButtonGroup::checkedId(QButtonGroup* theWrappedObject) const
{
return theWrappedObject->checkedId();
}
bool PythonQtWrapper_QButtonGroup::exclusive(QButtonGroup* theWrappedObject) const
{
return theWrappedObject->exclusive();
}
int PythonQtWrapper_QButtonGroup::id(QButtonGroup* theWrappedObject, QAbstractButton* button) const
{
return theWrappedObject->id(button);
}
void PythonQtWrapper_QButtonGroup::removeButton(QButtonGroup* theWrappedObject, QAbstractButton* arg__1)
{
theWrappedObject->removeButton(arg__1);
}
void PythonQtWrapper_QButtonGroup::setExclusive(QButtonGroup* theWrappedObject, bool arg__1)
{
theWrappedObject->setExclusive(arg__1);
}
void PythonQtWrapper_QButtonGroup::setId(QButtonGroup* theWrappedObject, QAbstractButton* button, int id)
{
theWrappedObject->setId(button, id);
}