##// 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_QWebSettings.cpp
116 lines | 3.6 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QWebSettings.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qicon.h>
#include <qpixmap.h>
#include <qurl.h>
#include <qwebsettings.h>
void PythonQtWrapper_QWebSettings::setUserStyleSheetUrl(QWebSettings* theWrappedObject, const QUrl& location)
{
( theWrappedObject->setUserStyleSheetUrl(location));
}
void PythonQtWrapper_QWebSettings::resetAttribute(QWebSettings* theWrappedObject, QWebSettings::WebAttribute attr)
{
( theWrappedObject->resetAttribute(attr));
}
void PythonQtWrapper_QWebSettings::static_QWebSettings_setMaximumPagesInCache(int pages)
{
(QWebSettings::setMaximumPagesInCache(pages));
}
void PythonQtWrapper_QWebSettings::static_QWebSettings_clearIconDatabase()
{
(QWebSettings::clearIconDatabase());
}
void PythonQtWrapper_QWebSettings::static_QWebSettings_setWebGraphic(QWebSettings::WebGraphic type, const QPixmap& graphic)
{
(QWebSettings::setWebGraphic(type, graphic));
}
QPixmap PythonQtWrapper_QWebSettings::static_QWebSettings_webGraphic(QWebSettings::WebGraphic type)
{
return (QWebSettings::webGraphic(type));
}
void PythonQtWrapper_QWebSettings::setFontSize(QWebSettings* theWrappedObject, QWebSettings::FontSize type, int size)
{
( theWrappedObject->setFontSize(type, size));
}
void PythonQtWrapper_QWebSettings::resetFontFamily(QWebSettings* theWrappedObject, QWebSettings::FontFamily which)
{
( theWrappedObject->resetFontFamily(which));
}
void PythonQtWrapper_QWebSettings::setAttribute(QWebSettings* theWrappedObject, QWebSettings::WebAttribute attr, bool on)
{
( theWrappedObject->setAttribute(attr, on));
}
void PythonQtWrapper_QWebSettings::static_QWebSettings_setObjectCacheCapacities(int cacheMinDeadCapacity, int cacheMaxDead, int totalCapacity)
{
(QWebSettings::setObjectCacheCapacities(cacheMinDeadCapacity, cacheMaxDead, totalCapacity));
}
void PythonQtWrapper_QWebSettings::resetFontSize(QWebSettings* theWrappedObject, QWebSettings::FontSize type)
{
( theWrappedObject->resetFontSize(type));
}
void PythonQtWrapper_QWebSettings::static_QWebSettings_setIconDatabasePath(const QString& location)
{
(QWebSettings::setIconDatabasePath(location));
}
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());
}
bool PythonQtWrapper_QWebSettings::testAttribute(QWebSettings* theWrappedObject, QWebSettings::WebAttribute attr) const
{
return ( theWrappedObject->testAttribute(attr));
}
QString PythonQtWrapper_QWebSettings::fontFamily(QWebSettings* theWrappedObject, QWebSettings::FontFamily which) const
{
return ( theWrappedObject->fontFamily(which));
}
void PythonQtWrapper_QWebSettings::setFontFamily(QWebSettings* theWrappedObject, QWebSettings::FontFamily which, const QString& family)
{
( theWrappedObject->setFontFamily(which, family));
}
QUrl PythonQtWrapper_QWebSettings::userStyleSheetUrl(QWebSettings* theWrappedObject) const
{
return ( theWrappedObject->userStyleSheetUrl());
}
QIcon PythonQtWrapper_QWebSettings::static_QWebSettings_iconForUrl(const QUrl& url)
{
return (QWebSettings::iconForUrl(url));
}
int PythonQtWrapper_QWebSettings::static_QWebSettings_maximumPagesInCache()
{
return (QWebSettings::maximumPagesInCache());
}