##// 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_QTextTableCell.h
37 lines | 1.5 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QTEXTTABLECELL_H
#define PYTHONQTWRAPPER_QTEXTTABLECELL_H
#include <qtexttable.h>
#include <QObject>
#include <QTextCursor>
#include <QTextFrame>
#include <QVariant>
#include <qtextcursor.h>
#include <qtextformat.h>
#include <qtexttable.h>
class PythonQtWrapper_QTextTableCell : public QObject
{ Q_OBJECT
public:
public slots:
QTextTableCell* new_QTextTableCell();
QTextTableCell* new_QTextTableCell(const QTextTableCell& o);
void delete_QTextTableCell(QTextTableCell* obj) { delete obj; }
QTextFrame::iterator begin(QTextTableCell* theWrappedObject) const;
int column(QTextTableCell* theWrappedObject) const;
int columnSpan(QTextTableCell* theWrappedObject) const;
QTextFrame::iterator end(QTextTableCell* theWrappedObject) const;
QTextCursor firstCursorPosition(QTextTableCell* theWrappedObject) const;
int firstPosition(QTextTableCell* theWrappedObject) const;
QTextCharFormat format(QTextTableCell* theWrappedObject) const;
bool isValid(QTextTableCell* theWrappedObject) const;
QTextCursor lastCursorPosition(QTextTableCell* theWrappedObject) const;
int lastPosition(QTextTableCell* theWrappedObject) const;
bool operator_equal(QTextTableCell* theWrappedObject, const QTextTableCell& other) const;
int row(QTextTableCell* theWrappedObject) const;
int rowSpan(QTextTableCell* theWrappedObject) const;
void setFormat(QTextTableCell* theWrappedObject, const QTextCharFormat& format);
};
#endif // PYTHONQTWRAPPER_QTEXTTABLECELL_H