##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QTextTableFormat.cpp
83 lines | 2.4 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QTextTableFormat.cpp
#include "PythonQtWrapper_QTextTableFormat.h"
#include <QVariant>
#include <qbrush.h>
#include <qcolor.h>
#include <qpen.h>
#include <qtextformat.h>
#include <qvector.h>
QTextTableFormat* PythonQtWrapper_QTextTableFormat::new_QTextTableFormat()
{
return new QTextTableFormat(); }
Qt::Alignment PythonQtWrapper_QTextTableFormat::alignment(QTextTableFormat* theWrappedObject) const
{
return theWrappedObject->alignment();
}
qreal PythonQtWrapper_QTextTableFormat::cellPadding(QTextTableFormat* theWrappedObject) const
{
return theWrappedObject->cellPadding();
}
qreal PythonQtWrapper_QTextTableFormat::cellSpacing(QTextTableFormat* theWrappedObject) const
{
return theWrappedObject->cellSpacing();
}
void PythonQtWrapper_QTextTableFormat::clearColumnWidthConstraints(QTextTableFormat* theWrappedObject)
{
theWrappedObject->clearColumnWidthConstraints();
}
QVector<QTextLength > PythonQtWrapper_QTextTableFormat::columnWidthConstraints(QTextTableFormat* theWrappedObject) const
{
return theWrappedObject->columnWidthConstraints();
}
int PythonQtWrapper_QTextTableFormat::columns(QTextTableFormat* theWrappedObject) const
{
return theWrappedObject->columns();
}
int PythonQtWrapper_QTextTableFormat::headerRowCount(QTextTableFormat* theWrappedObject) const
{
return theWrappedObject->headerRowCount();
}
bool PythonQtWrapper_QTextTableFormat::isValid(QTextTableFormat* theWrappedObject) const
{
return theWrappedObject->isValid();
}
void PythonQtWrapper_QTextTableFormat::setAlignment(QTextTableFormat* theWrappedObject, Qt::Alignment alignment)
{
theWrappedObject->setAlignment(alignment);
}
void PythonQtWrapper_QTextTableFormat::setCellPadding(QTextTableFormat* theWrappedObject, qreal padding)
{
theWrappedObject->setCellPadding(padding);
}
void PythonQtWrapper_QTextTableFormat::setCellSpacing(QTextTableFormat* theWrappedObject, qreal spacing)
{
theWrappedObject->setCellSpacing(spacing);
}
void PythonQtWrapper_QTextTableFormat::setColumnWidthConstraints(QTextTableFormat* theWrappedObject, const QVector<QTextLength >& constraints)
{
theWrappedObject->setColumnWidthConstraints(constraints);
}
void PythonQtWrapper_QTextTableFormat::setColumns(QTextTableFormat* theWrappedObject, int columns)
{
theWrappedObject->setColumns(columns);
}
void PythonQtWrapper_QTextTableFormat::setHeaderRowCount(QTextTableFormat* theWrappedObject, int count)
{
theWrappedObject->setHeaderRowCount(count);
}