##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QUndoStack.h
58 lines | 2.1 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QUNDOSTACK_H
#define PYTHONQTWRAPPER_QUNDOSTACK_H
#include <qundostack.h>
#include <QObject>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 #include <PythonQt.h>
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <QVariant>
#include <qaction.h>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qobject.h>
#include <qundostack.h>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 class PythonQtShell_QUndoStack : public QUndoStack
{
public:
PythonQtShell_QUndoStack(QObject* parent = 0):QUndoStack(parent),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QUndoStack : public QObject
{ Q_OBJECT
public:
public slots:
QUndoStack* new_QUndoStack(QObject* parent = 0);
void delete_QUndoStack(QUndoStack* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 const QUndoCommand* command(QUndoStack* theWrappedObject, int index) const;
florianlink
upgraded wrappers to current generator version...
r28 QAction* createUndoAction(QUndoStack* theWrappedObject, QObject* parent, const QString& prefix = QString()) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool isActive(QUndoStack* theWrappedObject) const;
bool canRedo(QUndoStack* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 int index(QUndoStack* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void push(QUndoStack* theWrappedObject, QUndoCommand* cmd);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 int count(QUndoStack* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QString redoText(QUndoStack* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 int cleanIndex(QUndoStack* theWrappedObject) const;
void clear(QUndoStack* theWrappedObject);
florianlink
recreated wrappers to match current python qt version...
r73 QAction* createRedoAction(QUndoStack* theWrappedObject, QObject* parent, const QString& prefix = QString()) const;
florianlink
upgraded wrappers to current generator version...
r28 int undoLimit(QUndoStack* theWrappedObject) const;
bool isClean(QUndoStack* theWrappedObject) const;
void setUndoLimit(QUndoStack* theWrappedObject, int limit);
florianlink
recreated wrappers to match current python qt version...
r73 bool canUndo(QUndoStack* theWrappedObject) const;
void beginMacro(QUndoStack* theWrappedObject, const QString& text);
void endMacro(QUndoStack* theWrappedObject);
QString undoText(QUndoStack* theWrappedObject) const;
QString text(QUndoStack* theWrappedObject, int idx) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QUNDOSTACK_H