##// END OF EJS Templates
added builtin support for variants etc., this will replace the direct includes in PythonQt...
added builtin support for variants etc., this will replace the direct includes in PythonQt git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@129 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r93:7b53f64eae84
Show More
PythonQtWrapper_QTextTableCell.cpp
90 lines | 2.5 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QTextTableCell.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QTextCursor>
#include <QTextFrame>
#include <QVariant>
#include <qtextcursor.h>
#include <qtextformat.h>
#include <qtexttable.h>
QTextTableCell* PythonQtWrapper_QTextTableCell::new_QTextTableCell()
{
return new QTextTableCell(); }
QTextTableCell* PythonQtWrapper_QTextTableCell::new_QTextTableCell(const QTextTableCell& o)
{
return new QTextTableCell(o); }
QTextFrame::iterator PythonQtWrapper_QTextTableCell::end(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->end());
}
int PythonQtWrapper_QTextTableCell::rowSpan(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->rowSpan());
}
QTextFrame::iterator PythonQtWrapper_QTextTableCell::begin(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->begin());
}
int PythonQtWrapper_QTextTableCell::row(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->row());
}
bool PythonQtWrapper_QTextTableCell::isValid(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->isValid());
}
QTextCharFormat PythonQtWrapper_QTextTableCell::format(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->format());
}
int PythonQtWrapper_QTextTableCell::column(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->column());
}
QTextCursor PythonQtWrapper_QTextTableCell::lastCursorPosition(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->lastCursorPosition());
}
int PythonQtWrapper_QTextTableCell::columnSpan(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->columnSpan());
}
int PythonQtWrapper_QTextTableCell::lastPosition(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->lastPosition());
}
int PythonQtWrapper_QTextTableCell::firstPosition(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->firstPosition());
}
bool PythonQtWrapper_QTextTableCell::operator_equal(QTextTableCell* theWrappedObject, const QTextTableCell& other) const
{
return ( (*theWrappedObject)== other);
}
void PythonQtWrapper_QTextTableCell::setFormat(QTextTableCell* theWrappedObject, const QTextCharFormat& format)
{
( theWrappedObject->setFormat(format));
}
QTextCursor PythonQtWrapper_QTextTableCell::firstCursorPosition(QTextTableCell* theWrappedObject) const
{
return ( theWrappedObject->firstCursorPosition());
}