Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_mobile / plugin-loading / plugin_property_support.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file    plugin_property_support.h
18  * @author  Yunchan Cho (yunchan.cho@samsung.com)
19  * @version 1.0
20  * @brief
21  */
22
23 #ifndef _PLUGIN_LOGIC_PROPERTY_SUPPORT_H_
24 #define _PLUGIN_LOGIC_PROPERTY_SUPPORT_H_
25
26 #include <string>
27 #include <JavaScriptCore/JavaScript.h>
28
29 namespace PluginModule {
30 class WindowPropertySupport
31 {
32   public:
33     float getScale() const;
34     std::string getBundle() const;
35     std::string getTheme() const;
36     JSGlobalContextRef getJSContext() const;
37
38     void setScaleToNavigatorProperty(const double scale);
39     void setBundleToWindowProperty(const char* bundle);
40     void setThemeToNavigatorProperty(const char* theme);
41
42     explicit WindowPropertySupport(JSGlobalContextRef m_context);
43     ~WindowPropertySupport();
44
45   private:
46     float m_scale;
47     std::string m_bundle;   // string of base64 encoded bundle
48     std::string m_theme;
49     JSGlobalContextRef m_context;
50
51     void setPropertyToWindow(const char* propertyName, JSValueRef jsValue);
52     void setPropertyToNavigator(const char* propertyName, JSValueRef jsValue);
53 };
54 } // namespace PluginModule
55
56 #endif // _PLUGIN_LOGIC_PROPERTY_SUPPORT_H_