##// 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_QTextTableCell.h
39 lines | 1.5 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QTEXTTABLECELL_H
#define PYTHONQTWRAPPER_QTEXTTABLECELL_H
#include <qtexttable.h>
#include <QObject>
#include <PythonQt.h>
#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 end(QTextTableCell* theWrappedObject) const;
int rowSpan(QTextTableCell* theWrappedObject) const;
QTextFrame::iterator begin(QTextTableCell* theWrappedObject) const;
int row(QTextTableCell* theWrappedObject) const;
bool isValid(QTextTableCell* theWrappedObject) const;
QTextCharFormat format(QTextTableCell* theWrappedObject) const;
int column(QTextTableCell* theWrappedObject) const;
QTextCursor lastCursorPosition(QTextTableCell* theWrappedObject) const;
int columnSpan(QTextTableCell* theWrappedObject) const;
int lastPosition(QTextTableCell* theWrappedObject) const;
int firstPosition(QTextTableCell* theWrappedObject) const;
bool operator_equal(QTextTableCell* theWrappedObject, const QTextTableCell& other) const;
void setFormat(QTextTableCell* theWrappedObject, const QTextCharFormat& format);
QTextCursor firstCursorPosition(QTextTableCell* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QTEXTTABLECELL_H