##// 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_QTextFragment.cpp
62 lines | 1.7 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QTextFragment.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qtextformat.h>
#include <qtextobject.h>
QTextFragment* PythonQtWrapper_QTextFragment::new_QTextFragment()
{
return new QTextFragment(); }
QTextFragment* PythonQtWrapper_QTextFragment::new_QTextFragment(const QTextFragment& o)
{
return new QTextFragment(o); }
bool PythonQtWrapper_QTextFragment::contains(QTextFragment* theWrappedObject, int position) const
{
return ( theWrappedObject->contains(position));
}
int PythonQtWrapper_QTextFragment::charFormatIndex(QTextFragment* theWrappedObject) const
{
return ( theWrappedObject->charFormatIndex());
}
bool PythonQtWrapper_QTextFragment::operator_less(QTextFragment* theWrappedObject, const QTextFragment& o) const
{
return ( (*theWrappedObject)< o);
}
int PythonQtWrapper_QTextFragment::length(QTextFragment* theWrappedObject) const
{
return ( theWrappedObject->length());
}
bool PythonQtWrapper_QTextFragment::operator_equal(QTextFragment* theWrappedObject, const QTextFragment& o) const
{
return ( (*theWrappedObject)== o);
}
bool PythonQtWrapper_QTextFragment::isValid(QTextFragment* theWrappedObject) const
{
return ( theWrappedObject->isValid());
}
int PythonQtWrapper_QTextFragment::position(QTextFragment* theWrappedObject) const
{
return ( theWrappedObject->position());
}
QString PythonQtWrapper_QTextFragment::text(QTextFragment* theWrappedObject) const
{
return ( theWrappedObject->text());
}
QTextCharFormat PythonQtWrapper_QTextFragment::charFormat(QTextFragment* theWrappedObject) const
{
return ( theWrappedObject->charFormat());
}