Merge "[CherryPick] [EFL][Qt][WK2] Fixed position elements are not always fixed"...
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / WebPreferences.h
1 /*
2  * Copyright (C) 2010, 2011 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #ifndef WebPreferences_h
27 #define WebPreferences_h
28
29 #include "APIObject.h"
30 #include "FontSmoothingLevel.h"
31 #include "WebPreferencesStore.h"
32 #include <wtf/HashSet.h>
33 #include <wtf/PassRefPtr.h>
34 #include <wtf/RefPtr.h>
35
36 #define DECLARE_PREFERENCE_GETTER_AND_SETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
37     void set##KeyUpper(const Type& value); \
38     Type KeyLower() const;
39
40 namespace WebKit {
41
42 class WebPageGroup;
43
44 class WebPreferences : public APIObject {
45 public:
46     static const Type APIType = TypePreferences;
47
48     static PassRefPtr<WebPreferences> create()
49     {
50         return adoptRef(new WebPreferences);
51     }
52     static PassRefPtr<WebPreferences> create(const String& identifier)
53     {
54         return adoptRef(new WebPreferences(identifier));
55     }
56
57     static PassRefPtr<WebPreferences> create(const WebPreferences& other)
58     {
59         return adoptRef(new WebPreferences(other));
60     }
61
62     virtual ~WebPreferences();
63
64     void addPageGroup(WebPageGroup*);
65     void removePageGroup(WebPageGroup*);
66
67     const WebPreferencesStore& store() const { return m_store; }
68
69 #define DECLARE_PREFERENCE_GETTER_AND_SETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
70     void set##KeyUpper(const Type& value); \
71     Type KeyLower() const; \
72
73     FOR_EACH_WEBKIT_PREFERENCE(DECLARE_PREFERENCE_GETTER_AND_SETTERS)
74
75 #undef DECLARE_PREFERENCE_GETTER_AND_SETTERS
76
77     // Exposed for WebKitTestRunner use only.
78     void forceUpdate() { update(); }
79
80 private:
81     WebPreferences();
82     WebPreferences(const String& identifier);
83     WebPreferences(const WebPreferences&);
84
85     void platformInitializeStore();
86
87     virtual Type type() const { return APIType; }
88
89     void update();
90
91     void updateStringValueForKey(const String& key, const String& value);
92     void updateBoolValueForKey(const String& key, bool value);
93     void updateUInt32ValueForKey(const String& key, uint32_t value);
94     void updateDoubleValueForKey(const String& key, double value);
95     void platformUpdateStringValueForKey(const String& key, const String& value);
96     void platformUpdateBoolValueForKey(const String& key, bool value);
97     void platformUpdateUInt32ValueForKey(const String& key, uint32_t value);
98     void platformUpdateDoubleValueForKey(const String& key, double value);
99
100     HashSet<WebPageGroup*> m_pageGroups;
101     WebPreferencesStore m_store;
102     String m_identifier;
103 };
104
105 } // namespace WebKit
106
107 #endif // WebPreferences_h