Update wrt-plugins-common_0.3.53
[framework/web/wrt-plugins-common.git] / src / 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
31 class WindowPropertySupport
32 {
33   public:
34       float getScale() const;
35       std::string getBundle() const;
36       std::string getTheme() const;
37       JSGlobalContextRef getJSContext() const;
38
39       void setScaleToNavigatorProperty(const double scale);
40       void setBundleToWindowProperty(const char* bundle);
41       void setBundleToNavigatorProperty(const char* bundle);
42       void setThemeToNavigatorProperty(const char* theme);
43
44       explicit WindowPropertySupport(JSGlobalContextRef m_context);
45       ~WindowPropertySupport();
46       
47   private: 
48       float m_scale;
49       std::string m_bundle; // string of base64 encoded bundle
50       std::string m_theme;
51       JSGlobalContextRef m_context;
52
53       void setPropertyToWindow(const char* propertyName, JSValueRef jsValue);
54       void setPropertyToNavigator(const char* propertyName, JSValueRef jsValue);
55 };
56
57 } // namespace PluginModule
58
59 #endif // _PLUGIN_LOGIC_PROPERTY_SUPPORT_H_