File indexing completed on 2024-05-12 16:09:07

0001 class pyqtSignal():
0002  def connect(self, targetSignal): pass
0003  def emit(self, *args): pass
0004 from QtCore import *
0005 
0006 from QtWidgets import *
0007 
0008 import datetime
0009 
0010 class QWebDatabase():
0011     """"""
0012     def __init__(self, other):
0013         '''void QWebDatabase.__init__(QWebDatabase other)'''
0014     def removeAllDatabases(self):
0015         '''static void QWebDatabase.removeAllDatabases()'''
0016     def removeDatabase(self, db):
0017         '''static void QWebDatabase.removeDatabase(QWebDatabase db)'''
0018     def origin(self):
0019         '''QWebSecurityOrigin QWebDatabase.origin()'''
0020         return QWebSecurityOrigin()
0021     def fileName(self):
0022         '''str QWebDatabase.fileName()'''
0023         return str()
0024     def size(self):
0025         '''int QWebDatabase.size()'''
0026         return int()
0027     def expectedSize(self):
0028         '''int QWebDatabase.expectedSize()'''
0029         return int()
0030     def displayName(self):
0031         '''str QWebDatabase.displayName()'''
0032         return str()
0033     def name(self):
0034         '''str QWebDatabase.name()'''
0035         return str()
0036 
0037 
0038 class QWebElement():
0039     """"""
0040     # Enum QWebElement.StyleResolveStrategy
0041     InlineStyle = 0
0042     CascadedStyle = 0
0043     ComputedStyle = 0
0044 
0045     def __init__(self):
0046         '''void QWebElement.__init__()'''
0047     def __init__(self):
0048         '''QWebElement QWebElement.__init__()'''
0049         return QWebElement()
0050     def render(self, painter):
0051         '''void QWebElement.render(QPainter painter)'''
0052     def render(self, painter, clip):
0053         '''void QWebElement.render(QPainter painter, QRect clip)'''
0054     def setStyleProperty(self, name, value):
0055         '''void QWebElement.setStyleProperty(str name, str value)'''
0056     def styleProperty(self, name, strategy):
0057         '''str QWebElement.styleProperty(str name, QWebElement.StyleResolveStrategy strategy)'''
0058         return str()
0059     def evaluateJavaScript(self, scriptSource):
0060         '''QVariant QWebElement.evaluateJavaScript(str scriptSource)'''
0061         return QVariant()
0062     def removeAllChildren(self):
0063         '''void QWebElement.removeAllChildren()'''
0064     def removeFromDocument(self):
0065         '''void QWebElement.removeFromDocument()'''
0066     def takeFromDocument(self):
0067         '''QWebElement QWebElement.takeFromDocument()'''
0068         return QWebElement()
0069     def clone(self):
0070         '''QWebElement QWebElement.clone()'''
0071         return QWebElement()
0072     def replace(self, markup):
0073         '''void QWebElement.replace(str markup)'''
0074     def replace(self, element):
0075         '''void QWebElement.replace(QWebElement element)'''
0076     def encloseWith(self, markup):
0077         '''void QWebElement.encloseWith(str markup)'''
0078     def encloseWith(self, element):
0079         '''void QWebElement.encloseWith(QWebElement element)'''
0080     def encloseContentsWith(self, element):
0081         '''void QWebElement.encloseContentsWith(QWebElement element)'''
0082     def encloseContentsWith(self, markup):
0083         '''void QWebElement.encloseContentsWith(str markup)'''
0084     def prependOutside(self, markup):
0085         '''void QWebElement.prependOutside(str markup)'''
0086     def prependOutside(self, element):
0087         '''void QWebElement.prependOutside(QWebElement element)'''
0088     def appendOutside(self, markup):
0089         '''void QWebElement.appendOutside(str markup)'''
0090     def appendOutside(self, element):
0091         '''void QWebElement.appendOutside(QWebElement element)'''
0092     def prependInside(self, markup):
0093         '''void QWebElement.prependInside(str markup)'''
0094     def prependInside(self, element):
0095         '''void QWebElement.prependInside(QWebElement element)'''
0096     def appendInside(self, markup):
0097         '''void QWebElement.appendInside(str markup)'''
0098     def appendInside(self, element):
0099         '''void QWebElement.appendInside(QWebElement element)'''
0100     def webFrame(self):
0101         '''QWebFrame QWebElement.webFrame()'''
0102         return QWebFrame()
0103     def document(self):
0104         '''QWebElement QWebElement.document()'''
0105         return QWebElement()
0106     def previousSibling(self):
0107         '''QWebElement QWebElement.previousSibling()'''
0108         return QWebElement()
0109     def nextSibling(self):
0110         '''QWebElement QWebElement.nextSibling()'''
0111         return QWebElement()
0112     def lastChild(self):
0113         '''QWebElement QWebElement.lastChild()'''
0114         return QWebElement()
0115     def firstChild(self):
0116         '''QWebElement QWebElement.firstChild()'''
0117         return QWebElement()
0118     def parent(self):
0119         '''QWebElement QWebElement.parent()'''
0120         return QWebElement()
0121     def namespaceUri(self):
0122         '''str QWebElement.namespaceUri()'''
0123         return str()
0124     def localName(self):
0125         '''str QWebElement.localName()'''
0126         return str()
0127     def prefix(self):
0128         '''str QWebElement.prefix()'''
0129         return str()
0130     def tagName(self):
0131         '''str QWebElement.tagName()'''
0132         return str()
0133     def geometry(self):
0134         '''QRect QWebElement.geometry()'''
0135         return QRect()
0136     def setFocus(self):
0137         '''void QWebElement.setFocus()'''
0138     def hasFocus(self):
0139         '''bool QWebElement.hasFocus()'''
0140         return bool()
0141     def toggleClass(self, name):
0142         '''void QWebElement.toggleClass(str name)'''
0143     def removeClass(self, name):
0144         '''void QWebElement.removeClass(str name)'''
0145     def addClass(self, name):
0146         '''void QWebElement.addClass(str name)'''
0147     def hasClass(self, name):
0148         '''bool QWebElement.hasClass(str name)'''
0149         return bool()
0150     def classes(self):
0151         '''list-of-str QWebElement.classes()'''
0152         return [str()]
0153     def attributeNames(self, namespaceUri = str()):
0154         '''list-of-str QWebElement.attributeNames(str namespaceUri = str())'''
0155         return [str()]
0156     def hasAttributes(self):
0157         '''bool QWebElement.hasAttributes()'''
0158         return bool()
0159     def removeAttributeNS(self, namespaceUri, name):
0160         '''void QWebElement.removeAttributeNS(str namespaceUri, str name)'''
0161     def removeAttribute(self, name):
0162         '''void QWebElement.removeAttribute(str name)'''
0163     def hasAttributeNS(self, namespaceUri, name):
0164         '''bool QWebElement.hasAttributeNS(str namespaceUri, str name)'''
0165         return bool()
0166     def hasAttribute(self, name):
0167         '''bool QWebElement.hasAttribute(str name)'''
0168         return bool()
0169     def attributeNS(self, namespaceUri, name, defaultValue = str()):
0170         '''str QWebElement.attributeNS(str namespaceUri, str name, str defaultValue = str())'''
0171         return str()
0172     def attribute(self, name, defaultValue = str()):
0173         '''str QWebElement.attribute(str name, str defaultValue = str())'''
0174         return str()
0175     def setAttributeNS(self, namespaceUri, name, value):
0176         '''void QWebElement.setAttributeNS(str namespaceUri, str name, str value)'''
0177     def setAttribute(self, name, value):
0178         '''void QWebElement.setAttribute(str name, str value)'''
0179     def toInnerXml(self):
0180         '''str QWebElement.toInnerXml()'''
0181         return str()
0182     def setInnerXml(self, markup):
0183         '''void QWebElement.setInnerXml(str markup)'''
0184     def toOuterXml(self):
0185         '''str QWebElement.toOuterXml()'''
0186         return str()
0187     def setOuterXml(self, markup):
0188         '''void QWebElement.setOuterXml(str markup)'''
0189     def toPlainText(self):
0190         '''str QWebElement.toPlainText()'''
0191         return str()
0192     def setPlainText(self, text):
0193         '''void QWebElement.setPlainText(str text)'''
0194     def findFirst(self, selectorQuery):
0195         '''QWebElement QWebElement.findFirst(str selectorQuery)'''
0196         return QWebElement()
0197     def findAll(self, selectorQuery):
0198         '''QWebElementCollection QWebElement.findAll(str selectorQuery)'''
0199         return QWebElementCollection()
0200     def isNull(self):
0201         '''bool QWebElement.isNull()'''
0202         return bool()
0203     def __ne__(self, o):
0204         '''bool QWebElement.__ne__(QWebElement o)'''
0205         return bool()
0206     def __eq__(self, o):
0207         '''bool QWebElement.__eq__(QWebElement o)'''
0208         return bool()
0209 
0210 
0211 class QWebElementCollection():
0212     """"""
0213     def __init__(self):
0214         '''void QWebElementCollection.__init__()'''
0215     def __init__(self, contextElement, query):
0216         '''void QWebElementCollection.__init__(QWebElement contextElement, str query)'''
0217     def __init__(self):
0218         '''QWebElementCollection QWebElementCollection.__init__()'''
0219         return QWebElementCollection()
0220     def toList(self):
0221         '''list-of-QWebElement QWebElementCollection.toList()'''
0222         return [QWebElement()]
0223     def last(self):
0224         '''QWebElement QWebElementCollection.last()'''
0225         return QWebElement()
0226     def first(self):
0227         '''QWebElement QWebElementCollection.first()'''
0228         return QWebElement()
0229     def __getitem__(self, i):
0230         '''QWebElement QWebElementCollection.__getitem__(int i)'''
0231         return QWebElement()
0232     def at(self, i):
0233         '''QWebElement QWebElementCollection.at(int i)'''
0234         return QWebElement()
0235     def __len__(self):
0236         ''' QWebElementCollection.__len__()'''
0237         return ()
0238     def count(self):
0239         '''int QWebElementCollection.count()'''
0240         return int()
0241     def append(self, collection):
0242         '''void QWebElementCollection.append(QWebElementCollection collection)'''
0243     def __iadd__(self, other):
0244         '''QWebElementCollection QWebElementCollection.__iadd__(QWebElementCollection other)'''
0245         return QWebElementCollection()
0246     def __add__(self, other):
0247         '''QWebElementCollection QWebElementCollection.__add__(QWebElementCollection other)'''
0248         return QWebElementCollection()
0249 
0250 
0251 class QWebHistoryItem():
0252     """"""
0253     def __init__(self, other):
0254         '''void QWebHistoryItem.__init__(QWebHistoryItem other)'''
0255     def isValid(self):
0256         '''bool QWebHistoryItem.isValid()'''
0257         return bool()
0258     def setUserData(self, userData):
0259         '''void QWebHistoryItem.setUserData(QVariant userData)'''
0260     def userData(self):
0261         '''QVariant QWebHistoryItem.userData()'''
0262         return QVariant()
0263     def icon(self):
0264         '''QIcon QWebHistoryItem.icon()'''
0265         return QIcon()
0266     def lastVisited(self):
0267         '''QDateTime QWebHistoryItem.lastVisited()'''
0268         return QDateTime()
0269     def title(self):
0270         '''str QWebHistoryItem.title()'''
0271         return str()
0272     def url(self):
0273         '''QUrl QWebHistoryItem.url()'''
0274         return QUrl()
0275     def originalUrl(self):
0276         '''QUrl QWebHistoryItem.originalUrl()'''
0277         return QUrl()
0278 
0279 
0280 class QWebHistory():
0281     """"""
0282     def setMaximumItemCount(self, count):
0283         '''void QWebHistory.setMaximumItemCount(int count)'''
0284     def maximumItemCount(self):
0285         '''int QWebHistory.maximumItemCount()'''
0286         return int()
0287     def currentItemIndex(self):
0288         '''int QWebHistory.currentItemIndex()'''
0289         return int()
0290     def __len__(self):
0291         ''' QWebHistory.__len__()'''
0292         return ()
0293     def count(self):
0294         '''int QWebHistory.count()'''
0295         return int()
0296     def itemAt(self, i):
0297         '''QWebHistoryItem QWebHistory.itemAt(int i)'''
0298         return QWebHistoryItem()
0299     def forwardItem(self):
0300         '''QWebHistoryItem QWebHistory.forwardItem()'''
0301         return QWebHistoryItem()
0302     def currentItem(self):
0303         '''QWebHistoryItem QWebHistory.currentItem()'''
0304         return QWebHistoryItem()
0305     def backItem(self):
0306         '''QWebHistoryItem QWebHistory.backItem()'''
0307         return QWebHistoryItem()
0308     def goToItem(self, item):
0309         '''void QWebHistory.goToItem(QWebHistoryItem item)'''
0310     def forward(self):
0311         '''void QWebHistory.forward()'''
0312     def back(self):
0313         '''void QWebHistory.back()'''
0314     def canGoForward(self):
0315         '''bool QWebHistory.canGoForward()'''
0316         return bool()
0317     def canGoBack(self):
0318         '''bool QWebHistory.canGoBack()'''
0319         return bool()
0320     def forwardItems(self, maxItems):
0321         '''list-of-QWebHistoryItem QWebHistory.forwardItems(int maxItems)'''
0322         return [QWebHistoryItem()]
0323     def backItems(self, maxItems):
0324         '''list-of-QWebHistoryItem QWebHistory.backItems(int maxItems)'''
0325         return [QWebHistoryItem()]
0326     def items(self):
0327         '''list-of-QWebHistoryItem QWebHistory.items()'''
0328         return [QWebHistoryItem()]
0329     def clear(self):
0330         '''void QWebHistory.clear()'''
0331 
0332 
0333 class QWebHistoryInterface(QObject):
0334     """"""
0335     def __init__(self, parent = None):
0336         '''void QWebHistoryInterface.__init__(QObject parent = None)'''
0337     def addHistoryEntry(self, url):
0338         '''abstract void QWebHistoryInterface.addHistoryEntry(str url)'''
0339     def historyContains(self, url):
0340         '''abstract bool QWebHistoryInterface.historyContains(str url)'''
0341         return bool()
0342     def defaultInterface(self):
0343         '''static QWebHistoryInterface QWebHistoryInterface.defaultInterface()'''
0344         return QWebHistoryInterface()
0345     def setDefaultInterface(self, defaultInterface):
0346         '''static void QWebHistoryInterface.setDefaultInterface(QWebHistoryInterface defaultInterface)'''
0347 
0348 
0349 class QWebPluginFactory(QObject):
0350     """"""
0351     # Enum QWebPluginFactory.Extension
0352 
0353     def __init__(self, parent = None):
0354         '''void QWebPluginFactory.__init__(QObject parent = None)'''
0355     def supportsExtension(self, extension):
0356         '''bool QWebPluginFactory.supportsExtension(QWebPluginFactory.Extension extension)'''
0357         return bool()
0358     def extension(self, extension, option = None, output = None):
0359         '''bool QWebPluginFactory.extension(QWebPluginFactory.Extension extension, QWebPluginFactory.ExtensionOption option = None, QWebPluginFactory.ExtensionReturn output = None)'''
0360         return bool()
0361     def create(self, mimeType, url, argumentNames, argumentValues):
0362         '''abstract QObject QWebPluginFactory.create(str mimeType, QUrl url, list-of-str argumentNames, list-of-str argumentValues)'''
0363         return QObject()
0364     def refreshPlugins(self):
0365         '''void QWebPluginFactory.refreshPlugins()'''
0366     def plugins(self):
0367         '''abstract list-of-QWebPluginFactory.Plugin QWebPluginFactory.plugins()'''
0368         return [QWebPluginFactory.Plugin()]
0369     class Plugin():
0370         """"""
0371         description = None # str - member
0372         mimeTypes = None # list-of-QWebPluginFactory.MimeType - member
0373         name = None # str - member
0374         def __init__(self):
0375             '''void QWebPluginFactory.Plugin.__init__()'''
0376         def __init__(self):
0377             '''QWebPluginFactory.Plugin QWebPluginFactory.Plugin.__init__()'''
0378             return QWebPluginFactory.Plugin()
0379     class MimeType():
0380         """"""
0381         description = None # str - member
0382         fileExtensions = None # list-of-str - member
0383         name = None # str - member
0384         def __init__(self):
0385             '''void QWebPluginFactory.MimeType.__init__()'''
0386         def __init__(self):
0387             '''QWebPluginFactory.MimeType QWebPluginFactory.MimeType.__init__()'''
0388             return QWebPluginFactory.MimeType()
0389         def __ne__(self, other):
0390             '''bool QWebPluginFactory.MimeType.__ne__(QWebPluginFactory.MimeType other)'''
0391             return bool()
0392         def __eq__(self, other):
0393             '''bool QWebPluginFactory.MimeType.__eq__(QWebPluginFactory.MimeType other)'''
0394             return bool()
0395     class ExtensionReturn():
0396         """"""
0397         def __init__(self):
0398             '''void QWebPluginFactory.ExtensionReturn.__init__()'''
0399         def __init__(self):
0400             '''QWebPluginFactory.ExtensionReturn QWebPluginFactory.ExtensionReturn.__init__()'''
0401             return QWebPluginFactory.ExtensionReturn()
0402     class ExtensionOption():
0403         """"""
0404         def __init__(self):
0405             '''void QWebPluginFactory.ExtensionOption.__init__()'''
0406         def __init__(self):
0407             '''QWebPluginFactory.ExtensionOption QWebPluginFactory.ExtensionOption.__init__()'''
0408             return QWebPluginFactory.ExtensionOption()
0409 
0410 
0411 class QWebSecurityOrigin():
0412     """"""
0413     # Enum QWebSecurityOrigin.SubdomainSetting
0414     AllowSubdomains = 0
0415     DisallowSubdomains = 0
0416 
0417     def __init__(self, url):
0418         '''void QWebSecurityOrigin.__init__(QUrl url)'''
0419     def __init__(self, other):
0420         '''void QWebSecurityOrigin.__init__(QWebSecurityOrigin other)'''
0421     def removeAccessWhitelistEntry(self, scheme, host, subdomainSetting):
0422         '''void QWebSecurityOrigin.removeAccessWhitelistEntry(str scheme, str host, QWebSecurityOrigin.SubdomainSetting subdomainSetting)'''
0423     def addAccessWhitelistEntry(self, scheme, host, subdomainSetting):
0424         '''void QWebSecurityOrigin.addAccessWhitelistEntry(str scheme, str host, QWebSecurityOrigin.SubdomainSetting subdomainSetting)'''
0425     def setApplicationCacheQuota(self, quota):
0426         '''void QWebSecurityOrigin.setApplicationCacheQuota(int quota)'''
0427     def localSchemes(self):
0428         '''static list-of-str QWebSecurityOrigin.localSchemes()'''
0429         return [str()]
0430     def removeLocalScheme(self, scheme):
0431         '''static void QWebSecurityOrigin.removeLocalScheme(str scheme)'''
0432     def addLocalScheme(self, scheme):
0433         '''static void QWebSecurityOrigin.addLocalScheme(str scheme)'''
0434     def databases(self):
0435         '''list-of-QWebDatabase QWebSecurityOrigin.databases()'''
0436         return [QWebDatabase()]
0437     def setDatabaseQuota(self, quota):
0438         '''void QWebSecurityOrigin.setDatabaseQuota(int quota)'''
0439     def databaseQuota(self):
0440         '''int QWebSecurityOrigin.databaseQuota()'''
0441         return int()
0442     def databaseUsage(self):
0443         '''int QWebSecurityOrigin.databaseUsage()'''
0444         return int()
0445     def port(self):
0446         '''int QWebSecurityOrigin.port()'''
0447         return int()
0448     def host(self):
0449         '''str QWebSecurityOrigin.host()'''
0450         return str()
0451     def scheme(self):
0452         '''str QWebSecurityOrigin.scheme()'''
0453         return str()
0454     def allOrigins(self):
0455         '''static list-of-QWebSecurityOrigin QWebSecurityOrigin.allOrigins()'''
0456         return [QWebSecurityOrigin()]
0457 
0458 
0459 class QWebSettings():
0460     """"""
0461     # Enum QWebSettings.ThirdPartyCookiePolicy
0462     AlwaysAllowThirdPartyCookies = 0
0463     AlwaysBlockThirdPartyCookies = 0
0464     AllowThirdPartyWithExistingCookies = 0
0465 
0466     # Enum QWebSettings.FontSize
0467     MinimumFontSize = 0
0468     MinimumLogicalFontSize = 0
0469     DefaultFontSize = 0
0470     DefaultFixedFontSize = 0
0471 
0472     # Enum QWebSettings.WebGraphic
0473     MissingImageGraphic = 0
0474     MissingPluginGraphic = 0
0475     DefaultFrameIconGraphic = 0
0476     TextAreaSizeGripCornerGraphic = 0
0477     InputSpeechButtonGraphic = 0
0478     SearchCancelButtonGraphic = 0
0479     SearchCancelButtonPressedGraphic = 0
0480 
0481     # Enum QWebSettings.WebAttribute
0482     AutoLoadImages = 0
0483     JavascriptEnabled = 0
0484     JavaEnabled = 0
0485     PluginsEnabled = 0
0486     PrivateBrowsingEnabled = 0
0487     JavascriptCanOpenWindows = 0
0488     JavascriptCanCloseWindows = 0
0489     JavascriptCanAccessClipboard = 0
0490     DeveloperExtrasEnabled = 0
0491     LinksIncludedInFocusChain = 0
0492     ZoomTextOnly = 0
0493     PrintElementBackgrounds = 0
0494     OfflineStorageDatabaseEnabled = 0
0495     OfflineWebApplicationCacheEnabled = 0
0496     LocalStorageDatabaseEnabled = 0
0497     LocalStorageEnabled = 0
0498     LocalContentCanAccessRemoteUrls = 0
0499     DnsPrefetchEnabled = 0
0500     XSSAuditingEnabled = 0
0501     AcceleratedCompositingEnabled = 0
0502     SpatialNavigationEnabled = 0
0503     LocalContentCanAccessFileUrls = 0
0504     TiledBackingStoreEnabled = 0
0505     FrameFlatteningEnabled = 0
0506     SiteSpecificQuirksEnabled = 0
0507     WebGLEnabled = 0
0508     HyperlinkAuditingEnabled = 0
0509     CSSRegionsEnabled = 0
0510     CSSGridLayoutEnabled = 0
0511     ScrollAnimatorEnabled = 0
0512     CaretBrowsingEnabled = 0
0513     NotificationsEnabled = 0
0514     WebAudioEnabled = 0
0515     Accelerated2dCanvasEnabled = 0
0516 
0517     # Enum QWebSettings.FontFamily
0518     StandardFont = 0
0519     FixedFont = 0
0520     SerifFont = 0
0521     SansSerifFont = 0
0522     CursiveFont = 0
0523     FantasyFont = 0
0524 
0525     def cssMediaType(self):
0526         '''str QWebSettings.cssMediaType()'''
0527         return str()
0528     def setCSSMediaType(self):
0529         '''str QWebSettings.setCSSMediaType()'''
0530         return str()
0531     def thirdPartyCookiePolicy(self):
0532         '''QWebSettings.ThirdPartyCookiePolicy QWebSettings.thirdPartyCookiePolicy()'''
0533         return QWebSettings.ThirdPartyCookiePolicy()
0534     def setThirdPartyCookiePolicy(self):
0535         '''QWebSettings.ThirdPartyCookiePolicy QWebSettings.setThirdPartyCookiePolicy()'''
0536         return QWebSettings.ThirdPartyCookiePolicy()
0537     def enablePersistentStorage(self, path = str()):
0538         '''static void QWebSettings.enablePersistentStorage(str path = str())'''
0539     def clearMemoryCaches(self):
0540         '''static void QWebSettings.clearMemoryCaches()'''
0541     def localStoragePath(self):
0542         '''str QWebSettings.localStoragePath()'''
0543         return str()
0544     def setLocalStoragePath(self, path):
0545         '''void QWebSettings.setLocalStoragePath(str path)'''
0546     def offlineWebApplicationCacheQuota(self):
0547         '''static int QWebSettings.offlineWebApplicationCacheQuota()'''
0548         return int()
0549     def setOfflineWebApplicationCacheQuota(self, maximumSize):
0550         '''static void QWebSettings.setOfflineWebApplicationCacheQuota(int maximumSize)'''
0551     def offlineWebApplicationCachePath(self):
0552         '''static str QWebSettings.offlineWebApplicationCachePath()'''
0553         return str()
0554     def setOfflineWebApplicationCachePath(self, path):
0555         '''static void QWebSettings.setOfflineWebApplicationCachePath(str path)'''
0556     def defaultTextEncoding(self):
0557         '''str QWebSettings.defaultTextEncoding()'''
0558         return str()
0559     def setDefaultTextEncoding(self, encoding):
0560         '''void QWebSettings.setDefaultTextEncoding(str encoding)'''
0561     def offlineStorageDefaultQuota(self):
0562         '''static int QWebSettings.offlineStorageDefaultQuota()'''
0563         return int()
0564     def setOfflineStorageDefaultQuota(self, maximumSize):
0565         '''static void QWebSettings.setOfflineStorageDefaultQuota(int maximumSize)'''
0566     def offlineStoragePath(self):
0567         '''static str QWebSettings.offlineStoragePath()'''
0568         return str()
0569     def setOfflineStoragePath(self, path):
0570         '''static void QWebSettings.setOfflineStoragePath(str path)'''
0571     def setObjectCacheCapacities(self, cacheMinDeadCapacity, cacheMaxDead, totalCapacity):
0572         '''static void QWebSettings.setObjectCacheCapacities(int cacheMinDeadCapacity, int cacheMaxDead, int totalCapacity)'''
0573     def maximumPagesInCache(self):
0574         '''static int QWebSettings.maximumPagesInCache()'''
0575         return int()
0576     def setMaximumPagesInCache(self, pages):
0577         '''static void QWebSettings.setMaximumPagesInCache(int pages)'''
0578     def webGraphic(self, type):
0579         '''static QPixmap QWebSettings.webGraphic(QWebSettings.WebGraphic type)'''
0580         return QPixmap()
0581     def setWebGraphic(self, type, graphic):
0582         '''static void QWebSettings.setWebGraphic(QWebSettings.WebGraphic type, QPixmap graphic)'''
0583     def iconForUrl(self, url):
0584         '''static QIcon QWebSettings.iconForUrl(QUrl url)'''
0585         return QIcon()
0586     def clearIconDatabase(self):
0587         '''static void QWebSettings.clearIconDatabase()'''
0588     def iconDatabasePath(self):
0589         '''static str QWebSettings.iconDatabasePath()'''
0590         return str()
0591     def setIconDatabasePath(self, location):
0592         '''static void QWebSettings.setIconDatabasePath(str location)'''
0593     def userStyleSheetUrl(self):
0594         '''QUrl QWebSettings.userStyleSheetUrl()'''
0595         return QUrl()
0596     def setUserStyleSheetUrl(self, location):
0597         '''void QWebSettings.setUserStyleSheetUrl(QUrl location)'''
0598     def resetAttribute(self, attr):
0599         '''void QWebSettings.resetAttribute(QWebSettings.WebAttribute attr)'''
0600     def testAttribute(self, attr):
0601         '''bool QWebSettings.testAttribute(QWebSettings.WebAttribute attr)'''
0602         return bool()
0603     def setAttribute(self, attr, on):
0604         '''void QWebSettings.setAttribute(QWebSettings.WebAttribute attr, bool on)'''
0605     def resetFontSize(self, type):
0606         '''void QWebSettings.resetFontSize(QWebSettings.FontSize type)'''
0607     def fontSize(self, type):
0608         '''int QWebSettings.fontSize(QWebSettings.FontSize type)'''
0609         return int()
0610     def setFontSize(self, type, size):
0611         '''void QWebSettings.setFontSize(QWebSettings.FontSize type, int size)'''
0612     def resetFontFamily(self, which):
0613         '''void QWebSettings.resetFontFamily(QWebSettings.FontFamily which)'''
0614     def fontFamily(self, which):
0615         '''str QWebSettings.fontFamily(QWebSettings.FontFamily which)'''
0616         return str()
0617     def setFontFamily(self, which, family):
0618         '''void QWebSettings.setFontFamily(QWebSettings.FontFamily which, str family)'''
0619     def globalSettings(self):
0620         '''static QWebSettings QWebSettings.globalSettings()'''
0621         return QWebSettings()
0622 
0623 
0624 def qWebKitMinorVersion():
0625     '''static int qWebKitMinorVersion()'''
0626     return int()
0627 
0628 def qWebKitMajorVersion():
0629     '''static int qWebKitMajorVersion()'''
0630     return int()
0631 
0632 def qWebKitVersion():
0633     '''static str qWebKitVersion()'''
0634     return str()
0635