##// END OF EJS Templates
- added hasOwner method to manage ownership more nicely...
- added hasOwner method to manage ownership more nicely - added force flag to make delete() work - added check for hasOwner git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@51 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r15:ae998290bf19
Show More
PythonQtWrapper_QTextBrowser.cpp
120 lines | 3.1 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QTextBrowser.h"
#include <QTextEdit>
#include <QVariant>
#include <qaction.h>
#include <qbitmap.h>
#include <qbytearray.h>
#include <qcolor.h>
#include <qcoreevent.h>
#include <qcursor.h>
#include <qevent.h>
#include <qfont.h>
#include <qicon.h>
#include <qinputcontext.h>
#include <qkeysequence.h>
#include <qlayout.h>
#include <qlist.h>
#include <qlocale.h>
#include <qmenu.h>
#include <qmimedata.h>
#include <qobject.h>
#include <qpaintdevice.h>
#include <qpaintengine.h>
#include <qpainter.h>
#include <qpalette.h>
#include <qpoint.h>
#include <qprinter.h>
#include <qrect.h>
#include <qregion.h>
#include <qscrollbar.h>
#include <qsize.h>
#include <qsizepolicy.h>
#include <qstringlist.h>
#include <qstyle.h>
#include <qtextbrowser.h>
#include <qtextcursor.h>
#include <qtextdocument.h>
#include <qtextformat.h>
#include <qurl.h>
#include <qwidget.h>
QTextBrowser* PythonQtWrapper_QTextBrowser::new_QTextBrowser(QWidget* parent)
{
return new QTextBrowser(parent); }
int PythonQtWrapper_QTextBrowser::backwardHistoryCount(QTextBrowser* theWrappedObject) const
{
return theWrappedObject->backwardHistoryCount();
}
void PythonQtWrapper_QTextBrowser::clearHistory(QTextBrowser* theWrappedObject)
{
theWrappedObject->clearHistory();
}
int PythonQtWrapper_QTextBrowser::forwardHistoryCount(QTextBrowser* theWrappedObject) const
{
return theWrappedObject->forwardHistoryCount();
}
QString PythonQtWrapper_QTextBrowser::historyTitle(QTextBrowser* theWrappedObject, int arg__1) const
{
return theWrappedObject->historyTitle(arg__1);
}
QUrl PythonQtWrapper_QTextBrowser::historyUrl(QTextBrowser* theWrappedObject, int arg__1) const
{
return theWrappedObject->historyUrl(arg__1);
}
bool PythonQtWrapper_QTextBrowser::isBackwardAvailable(QTextBrowser* theWrappedObject) const
{
return theWrappedObject->isBackwardAvailable();
}
bool PythonQtWrapper_QTextBrowser::isForwardAvailable(QTextBrowser* theWrappedObject) const
{
return theWrappedObject->isForwardAvailable();
}
QVariant PythonQtWrapper_QTextBrowser::loadResource(QTextBrowser* theWrappedObject, int type, const QUrl& name)
{
return theWrappedObject->loadResource(type, name);
}
bool PythonQtWrapper_QTextBrowser::openExternalLinks(QTextBrowser* theWrappedObject) const
{
return theWrappedObject->openExternalLinks();
}
bool PythonQtWrapper_QTextBrowser::openLinks(QTextBrowser* theWrappedObject) const
{
return theWrappedObject->openLinks();
}
QStringList PythonQtWrapper_QTextBrowser::searchPaths(QTextBrowser* theWrappedObject) const
{
return theWrappedObject->searchPaths();
}
void PythonQtWrapper_QTextBrowser::setOpenExternalLinks(QTextBrowser* theWrappedObject, bool open)
{
theWrappedObject->setOpenExternalLinks(open);
}
void PythonQtWrapper_QTextBrowser::setOpenLinks(QTextBrowser* theWrappedObject, bool open)
{
theWrappedObject->setOpenLinks(open);
}
void PythonQtWrapper_QTextBrowser::setSearchPaths(QTextBrowser* theWrappedObject, const QStringList& paths)
{
theWrappedObject->setSearchPaths(paths);
}
QUrl PythonQtWrapper_QTextBrowser::source(QTextBrowser* theWrappedObject) const
{
return theWrappedObject->source();
}