##// END OF EJS Templates
started to update/improve docs...
started to update/improve docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@68 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r32:ae159b178ea0
Show More
PythonQtWrapper_QTextTableCell.cpp
90 lines | 2.4 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); }
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();
}
int PythonQtWrapper_QTextTableCell::columnSpan(QTextTableCell* theWrappedObject) const
{
return theWrappedObject->columnSpan();
}
int PythonQtWrapper_QTextTableCell::lastPosition(QTextTableCell* theWrappedObject) const
{
return theWrappedObject->lastPosition();
}
QTextCursor PythonQtWrapper_QTextTableCell::lastCursorPosition(QTextTableCell* theWrappedObject) const
{
return theWrappedObject->lastCursorPosition();
}
QTextFrame::iterator PythonQtWrapper_QTextTableCell::end(QTextTableCell* theWrappedObject) const
{
return theWrappedObject->end();
}
int PythonQtWrapper_QTextTableCell::firstPosition(QTextTableCell* theWrappedObject) const
{
return theWrappedObject->firstPosition();
}
QTextCursor PythonQtWrapper_QTextTableCell::firstCursorPosition(QTextTableCell* theWrappedObject) const
{
return theWrappedObject->firstCursorPosition();
}
int PythonQtWrapper_QTextTableCell::row(QTextTableCell* theWrappedObject) const
{
return theWrappedObject->row();
}
QTextFrame::iterator PythonQtWrapper_QTextTableCell::begin(QTextTableCell* theWrappedObject) const
{
return theWrappedObject->begin();
}
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);
}
int PythonQtWrapper_QTextTableCell::rowSpan(QTextTableCell* theWrappedObject) const
{
return theWrappedObject->rowSpan();
}