##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
Show More
PythonQtWrapper_QWebSettings.cpp
113 lines | 3.4 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QWebSettings.h"
#include <QVariant>
#include <qicon.h>
#include <qpixmap.h>
#include <qurl.h>
#include <qwebsettings.h>
void PythonQtWrapper_QWebSettings::static_QWebSettings_clearIconDatabase()
{
QWebSettings::clearIconDatabase();
}
QString PythonQtWrapper_QWebSettings::fontFamily(QWebSettings* theWrappedObject, QWebSettings::FontFamily which) const
{
return theWrappedObject->fontFamily(which);
}
int PythonQtWrapper_QWebSettings::fontSize(QWebSettings* theWrappedObject, QWebSettings::FontSize type) const
{
return theWrappedObject->fontSize(type);
}
QWebSettings* PythonQtWrapper_QWebSettings::static_QWebSettings_globalSettings()
{
return QWebSettings::globalSettings();
}
QString PythonQtWrapper_QWebSettings::static_QWebSettings_iconDatabasePath()
{
return QWebSettings::iconDatabasePath();
}
QIcon PythonQtWrapper_QWebSettings::static_QWebSettings_iconForUrl(const QUrl& url)
{
return QWebSettings::iconForUrl(url);
}
int PythonQtWrapper_QWebSettings::static_QWebSettings_maximumPagesInCache()
{
return QWebSettings::maximumPagesInCache();
}
void PythonQtWrapper_QWebSettings::resetAttribute(QWebSettings* theWrappedObject, QWebSettings::WebAttribute attr)
{
theWrappedObject->resetAttribute(attr);
}
void PythonQtWrapper_QWebSettings::resetFontFamily(QWebSettings* theWrappedObject, QWebSettings::FontFamily which)
{
theWrappedObject->resetFontFamily(which);
}
void PythonQtWrapper_QWebSettings::resetFontSize(QWebSettings* theWrappedObject, QWebSettings::FontSize type)
{
theWrappedObject->resetFontSize(type);
}
void PythonQtWrapper_QWebSettings::setAttribute(QWebSettings* theWrappedObject, QWebSettings::WebAttribute attr, bool on)
{
theWrappedObject->setAttribute(attr, on);
}
void PythonQtWrapper_QWebSettings::setFontFamily(QWebSettings* theWrappedObject, QWebSettings::FontFamily which, const QString& family)
{
theWrappedObject->setFontFamily(which, family);
}
void PythonQtWrapper_QWebSettings::setFontSize(QWebSettings* theWrappedObject, QWebSettings::FontSize type, int size)
{
theWrappedObject->setFontSize(type, size);
}
void PythonQtWrapper_QWebSettings::static_QWebSettings_setIconDatabasePath(const QString& location)
{
QWebSettings::setIconDatabasePath(location);
}
void PythonQtWrapper_QWebSettings::static_QWebSettings_setMaximumPagesInCache(int pages)
{
QWebSettings::setMaximumPagesInCache(pages);
}
void PythonQtWrapper_QWebSettings::static_QWebSettings_setObjectCacheCapacities(int cacheMinDeadCapacity, int cacheMaxDead, int totalCapacity)
{
QWebSettings::setObjectCacheCapacities(cacheMinDeadCapacity, cacheMaxDead, totalCapacity);
}
void PythonQtWrapper_QWebSettings::setUserStyleSheetUrl(QWebSettings* theWrappedObject, const QUrl& location)
{
theWrappedObject->setUserStyleSheetUrl(location);
}
void PythonQtWrapper_QWebSettings::static_QWebSettings_setWebGraphic(QWebSettings::WebGraphic type, const QPixmap& graphic)
{
QWebSettings::setWebGraphic(type, graphic);
}
bool PythonQtWrapper_QWebSettings::testAttribute(QWebSettings* theWrappedObject, QWebSettings::WebAttribute attr) const
{
return theWrappedObject->testAttribute(attr);
}
QUrl PythonQtWrapper_QWebSettings::userStyleSheetUrl(QWebSettings* theWrappedObject) const
{
return theWrappedObject->userStyleSheetUrl();
}
QPixmap PythonQtWrapper_QWebSettings::static_QWebSettings_webGraphic(QWebSettings::WebGraphic type)
{
return QWebSettings::webGraphic(type);
}