Merge branch working into tizen
[platform/framework/web/wrt.git] / src / view / webkit / view_logic_message_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    view_logic_message_support.h
18  * @author  Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @author  Yunchan Cho (yunchan.cho@samsung.com)
20  * @brief   View logic message support - declaration
21  */
22 #ifndef VIEW_LOGIC_MESSAGE_SUPPORT_H_
23 #define VIEW_LOGIC_MESSAGE_SUPPORT_H_
24
25 #include <EWebKit2.h>
26 #include <dpl/string.h>
27 #include <js_overlay_types.h>
28
29 namespace ViewLogicMessageSupport {
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 void shutdown(Ewk_Context* ewkContext);
38 void setCustomProperties(
39     Ewk_Context* ewkContext,
40     double* scale = NULL,
41     const char* encodedBundle = NULL,
42     const char* theme = NULL);
43 void dispatchJavaScriptEvent(
44     Ewk_Context* ewkContext,
45     WrtPlugins::W3C::CustomEventType eventType,
46     void* data);
47 void setXwindowHandle(Ewk_Context* ewkContext, const unsigned int handle);
48 void setViewmodes(Ewk_Context* ewkContext, const char* msg);
49 } // namespace ViewLogicMessageSupport
50
51 #endif // VIEW_LOGIC_MESSAGE_SUPPORT_H_