initial import
[vuplus_webkit] / Source / WebKit2 / UIProcess / qt / qwkpreferences.h
1 /*
2     Copyright (C) 2010 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 QWKPREFERENCES_H
21 #define QWKPREFERENCES_H
22
23 #include "qwebkitglobal.h"
24
25 class QWKPreferencesPrivate;
26
27 class QWEBKIT_EXPORT QWKPreferences {
28 public:
29     enum FontFamily {
30         StandardFont,
31         FixedFont,
32         SerifFont,
33         SansSerifFont,
34         CursiveFont,
35         FantasyFont
36     };
37
38     enum WebAttribute {
39         AutoLoadImages,
40         JavascriptEnabled,
41         PluginsEnabled,
42         OfflineWebApplicationCacheEnabled,
43         LocalStorageEnabled,
44         XSSAuditingEnabled,
45         FrameFlatteningEnabled,
46         PrivateBrowsingEnabled,
47         DeveloperExtrasEnabled,
48         DnsPrefetchEnabled
49     };
50
51     enum FontSize {
52         MinimumFontSize,
53         DefaultFontSize,
54         DefaultFixedFontSize
55     };
56
57     static QWKPreferences* sharedPreferences();
58
59     void setFontFamily(FontFamily which, const QString& family);
60     QString fontFamily(FontFamily which) const;
61
62     void setAttribute(WebAttribute attr, bool on);
63     bool testAttribute(WebAttribute attr) const;
64
65     void setFontSize(FontSize type, int size);
66     int fontSize(FontSize type) const;
67
68 private:
69     Q_DISABLE_COPY(QWKPreferences)
70
71     QWKPreferences();
72     ~QWKPreferences();
73
74     QWKPreferencesPrivate *d;
75
76     friend class QWKPreferencesPrivate;
77 };
78
79 #endif // QWKPREFERENCES_H