##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QTextBlock.cpp
161 lines | 4.1 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QTextBlock.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QTextBlock>
#include <QVariant>
#include <qtextdocument.h>
#include <qtextformat.h>
#include <qtextlayout.h>
#include <qtextlist.h>
#include <qtextobject.h>
QTextBlock* PythonQtWrapper_QTextBlock::new_QTextBlock()
{
return new QTextBlock(); }
QTextBlock* PythonQtWrapper_QTextBlock::new_QTextBlock(const QTextBlock& o)
{
return new QTextBlock(o); }
bool PythonQtWrapper_QTextBlock::isValid(QTextBlock* theWrappedObject) const
{
return theWrappedObject->isValid();
}
bool PythonQtWrapper_QTextBlock::operator_less(QTextBlock* theWrappedObject, const QTextBlock& o) const
{
return (*theWrappedObject)< o;
}
QTextBlock PythonQtWrapper_QTextBlock::previous(QTextBlock* theWrappedObject) const
{
return theWrappedObject->previous();
}
bool PythonQtWrapper_QTextBlock::operator_equal(QTextBlock* theWrappedObject, const QTextBlock& o) const
{
return (*theWrappedObject)== o;
}
void PythonQtWrapper_QTextBlock::setUserData(QTextBlock* theWrappedObject, QTextBlockUserData* data)
{
theWrappedObject->setUserData(data);
}
int PythonQtWrapper_QTextBlock::revision(QTextBlock* theWrappedObject) const
{
return theWrappedObject->revision();
}
int PythonQtWrapper_QTextBlock::blockNumber(QTextBlock* theWrappedObject) const
{
return theWrappedObject->blockNumber();
}
QTextBlock PythonQtWrapper_QTextBlock::next(QTextBlock* theWrappedObject) const
{
return theWrappedObject->next();
}
QTextBlockUserData* PythonQtWrapper_QTextBlock::userData(QTextBlock* theWrappedObject) const
{
return theWrappedObject->userData();
}
int PythonQtWrapper_QTextBlock::blockFormatIndex(QTextBlock* theWrappedObject) const
{
return theWrappedObject->blockFormatIndex();
}
QTextLayout* PythonQtWrapper_QTextBlock::layout(QTextBlock* theWrappedObject) const
{
return theWrappedObject->layout();
}
int PythonQtWrapper_QTextBlock::position(QTextBlock* theWrappedObject) const
{
return theWrappedObject->position();
}
QString PythonQtWrapper_QTextBlock::text(QTextBlock* theWrappedObject) const
{
return theWrappedObject->text();
}
QTextBlockFormat PythonQtWrapper_QTextBlock::blockFormat(QTextBlock* theWrappedObject) const
{
return theWrappedObject->blockFormat();
}
QTextBlock::iterator PythonQtWrapper_QTextBlock::begin(QTextBlock* theWrappedObject) const
{
return theWrappedObject->begin();
}
void PythonQtWrapper_QTextBlock::clearLayout(QTextBlock* theWrappedObject)
{
theWrappedObject->clearLayout();
}
void PythonQtWrapper_QTextBlock::setUserState(QTextBlock* theWrappedObject, int state)
{
theWrappedObject->setUserState(state);
}
QTextBlock::iterator PythonQtWrapper_QTextBlock::end(QTextBlock* theWrappedObject) const
{
return theWrappedObject->end();
}
int PythonQtWrapper_QTextBlock::userState(QTextBlock* theWrappedObject) const
{
return theWrappedObject->userState();
}
const QTextDocument* PythonQtWrapper_QTextBlock::document(QTextBlock* theWrappedObject) const
{
return theWrappedObject->document();
}
bool PythonQtWrapper_QTextBlock::isVisible(QTextBlock* theWrappedObject) const
{
return theWrappedObject->isVisible();
}
int PythonQtWrapper_QTextBlock::charFormatIndex(QTextBlock* theWrappedObject) const
{
return theWrappedObject->charFormatIndex();
}
bool PythonQtWrapper_QTextBlock::contains(QTextBlock* theWrappedObject, int position) const
{
return theWrappedObject->contains(position);
}
void PythonQtWrapper_QTextBlock::setRevision(QTextBlock* theWrappedObject, int rev)
{
theWrappedObject->setRevision(rev);
}
void PythonQtWrapper_QTextBlock::setVisible(QTextBlock* theWrappedObject, bool visible)
{
theWrappedObject->setVisible(visible);
}
int PythonQtWrapper_QTextBlock::length(QTextBlock* theWrappedObject) const
{
return theWrappedObject->length();
}
QTextList* PythonQtWrapper_QTextBlock::textList(QTextBlock* theWrappedObject) const
{
return theWrappedObject->textList();
}
QTextCharFormat PythonQtWrapper_QTextBlock::charFormat(QTextBlock* theWrappedObject) const
{
return theWrappedObject->charFormat();
}