| 1 | /*
|
|---|
| 2 | Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
|
|---|
| 3 |
|
|---|
| 4 | This library is free software; you can redistribute it and/or
|
|---|
| 5 | modify it under the terms of the GNU Library General Public
|
|---|
| 6 | License as published by the Free Software Foundation; either
|
|---|
| 7 | version 2 of the License, or (at your option) any later version.
|
|---|
| 8 |
|
|---|
| 9 | This library is distributed in the hope that it will be useful,
|
|---|
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|---|
| 12 | Library General Public License for more details.
|
|---|
| 13 |
|
|---|
| 14 | You should have received a copy of the GNU Library General Public License
|
|---|
| 15 | along with this library; see the file COPYING.LIB. If not, write to
|
|---|
| 16 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|---|
| 17 | Boston, MA 02110-1301, USA.
|
|---|
| 18 | */
|
|---|
| 19 |
|
|---|
| 20 | #ifndef QWEBSETTINGS_H
|
|---|
| 21 | #define QWEBSETTINGS_H
|
|---|
| 22 |
|
|---|
| 23 | #include "qwebkitglobal.h"
|
|---|
| 24 |
|
|---|
| 25 | #include <QtCore/qstring.h>
|
|---|
| 26 | #include <QtGui/qpixmap.h>
|
|---|
| 27 | #include <QtGui/qicon.h>
|
|---|
| 28 | #include <QtCore/qshareddata.h>
|
|---|
| 29 |
|
|---|
| 30 | namespace WebCore {
|
|---|
| 31 | class Settings;
|
|---|
| 32 | }
|
|---|
| 33 |
|
|---|
| 34 | class QWebPage;
|
|---|
| 35 | class QWebPluginDatabase;
|
|---|
| 36 | class QWebSettingsPrivate;
|
|---|
| 37 | QT_BEGIN_NAMESPACE
|
|---|
| 38 | class QUrl;
|
|---|
| 39 | QT_END_NAMESPACE
|
|---|
| 40 |
|
|---|
| 41 | class QWEBKIT_EXPORT QWebSettings {
|
|---|
| 42 | public:
|
|---|
| 43 | enum FontFamily {
|
|---|
| 44 | StandardFont,
|
|---|
| 45 | FixedFont,
|
|---|
| 46 | SerifFont,
|
|---|
| 47 | SansSerifFont,
|
|---|
| 48 | CursiveFont,
|
|---|
| 49 | FantasyFont
|
|---|
| 50 | };
|
|---|
| 51 | enum WebAttribute {
|
|---|
| 52 | AutoLoadImages,
|
|---|
| 53 | JavascriptEnabled,
|
|---|
| 54 | JavaEnabled,
|
|---|
| 55 | PluginsEnabled,
|
|---|
| 56 | PrivateBrowsingEnabled,
|
|---|
| 57 | JavascriptCanOpenWindows,
|
|---|
| 58 | JavascriptCanAccessClipboard,
|
|---|
| 59 | DeveloperExtrasEnabled,
|
|---|
| 60 | LinksIncludedInFocusChain,
|
|---|
| 61 | ZoomTextOnly,
|
|---|
| 62 | PrintElementBackgrounds,
|
|---|
| 63 | OfflineStorageDatabaseEnabled,
|
|---|
| 64 | OfflineWebApplicationCacheEnabled,
|
|---|
| 65 | LocalStorageEnabled,
|
|---|
| 66 | #if defined(QT_DEPRECATED) || defined(qdoc)
|
|---|
| 67 | LocalStorageDatabaseEnabled = LocalStorageEnabled,
|
|---|
| 68 | #endif
|
|---|
| 69 | LocalContentCanAccessRemoteUrls,
|
|---|
| 70 | DnsPrefetchEnabled,
|
|---|
| 71 | XSSAuditingEnabled,
|
|---|
| 72 | AcceleratedCompositingEnabled,
|
|---|
| 73 | SpatialNavigationEnabled,
|
|---|
| 74 | LocalContentCanAccessFileUrls,
|
|---|
| 75 | TiledBackingStoreEnabled,
|
|---|
| 76 | FrameFlatteningEnabled,
|
|---|
| 77 | SiteSpecificQuirksEnabled
|
|---|
|
|---|