48896456b2cf5e7a4a34d3bb7aacb69fc0e4bfab
[platform/framework/web/wrt.git] / src / view / webkit / bundles / plugin_module_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_module_support.h
18  * @author  Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @author  Yunchan Cho (yunchan.cho@samsung.com)
20  * @brief   Plugin module support for Webkit2 - declaration.
21  */
22 #ifndef WRT_SRC_VIEW_WEBKIT2_PLUGIN_MODULE_SUPPORT_H_
23 #define WRT_SRC_VIEW_WEBKIT2_PLUGIN_MODULE_SUPPORT_H_
24
25 #include <EWebKit2.h>
26 #include <dpl/string.h>
27 #include <js_overlay_types.h>
28
29 namespace PluginModuleSupport {
30 void init(Ewk_Context* ewkContext,
31           const std::string& tizenId);
32 void start(Ewk_Context* ewkContext,
33            const DPL::String& tizenId,
34            double scale,
35            const char *encodedBundle,
36            const char *theme,
37            bool encrypted);
38 void shutdown(Ewk_Context* ewkContext);
39
40 void suspend(Ewk_Context* ewkContext);
41 void resume(Ewk_Context* ewkContext);
42
43 void setCustomProperties(
44         Ewk_Context* ewkContext,
45         double* scale = NULL,
46         const char* encodedBundle = NULL,
47         const char* theme = NULL);
48 void dispatchJavaScriptEvent(
49         Ewk_Context* ewkContext,
50         WrtPlugins::W3C::CustomEventType eventType,
51         void* data);
52 } // namespace PluginModuleSupport
53
54 #endif /* WRT_SRC_VIEW_WEBKIT2_PLUGIN_MODULE_SUPPORT_H_ */