d4eac7301fecf0987a3741bcdf00896f181997ad
[framework/osp/appwidget-service.git] / inc / FShell_AppWidgetContextBase.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.1 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://floralicense.org/license/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        FShell_AppWidgetContextBase.h
20  * @brief       This is the header file for the _AppWidgetContextBase class.
21  *
22  * This header file contains the declarations of the _AppWidgetContextBase class.
23  */
24
25 #ifndef _FSHELL_INTERNAL_APPWIDGET_CONTEXT_BASE_H_
26 #define _FSHELL_INTERNAL_APPWIDGET_CONTEXT_BASE_H_
27
28 #include <provider.h>
29
30 #include <FAppTypes.h>
31 #include <FBaseObject.h>
32 #include <FBaseColHashMap.h>
33
34 #define APPWIDGET_PROVIDER_ID_ENABLE true
35
36 typedef struct _bundle_t bundle;//TODO move code to osp-appfw
37
38 namespace Tizen { namespace Shell  { namespace App
39 {
40
41 class _AppWidgetContextBase:
42         public Tizen::Base::Object
43 {
44 protected:
45         enum _AppWidgetProviderState
46         {
47                 INVALID = 0,
48                 RUNNING,
49                 SUSPENDED,
50         };
51
52 public:
53         _AppWidgetContextBase(target_type type, const Tizen::Base::String& userInfo, const Tizen::Base::String& providerId, const Tizen::Base::String& instanceId, int width, int height, int priority);
54         virtual ~_AppWidgetContextBase();
55
56         virtual void OnPopupCreated(double x, double y, int width, int height) = 0;
57         virtual void OnPopupDestoyed(void) = 0;
58
59         virtual result SendTouchEvent(buffer_event event, double timestamp, double x, double y) = 0;
60
61         void SetIpcClientId(int clientId);
62         bool HasValidClientId(void) const;
63         // for buffered appWidget
64         int GetSharedMemId(int w, int h);
65         result ReleaseSharedMem(void);
66
67         void Suspend(void);
68
69 protected:
70         bool IsRunning(void) const;
71         bool IsSharedMemCreated(void) const;
72
73         virtual Tizen::Base::Collection::HashMap* CreateRequestArgs(void) = 0;
74         result SendRequestToApp(const Tizen::App::AppId& appId, const Tizen::Base::String& operation, Tizen::Base::Collection::HashMap* pArgs);
75
76 public:
77         target_type __type;
78         Tizen::Base::String __userInfo;
79         Tizen::Base::String __appId;
80         Tizen::Base::String __providerName;
81         Tizen::Base::String __providerId;
82         Tizen::Base::String __instanceId;
83         int __width;
84         int __height;
85         int __priority;
86
87 protected:
88         bool __isForeground;// LB only?
89         int __ipcClientId;
90
91 private:
92         struct livebox_buffer *__buffer_info;
93         void *__buffer;
94         _AppWidgetProviderState __providerState;
95 };
96
97 class _AppWidgetRequestHelper
98 {
99 public:
100         static result SendRequestToApp(const Tizen::App::AppId& appId, const Tizen::Base::String& operation, Tizen::Base::Collection::HashMap* pArgs);
101 //      static result AddStrArrayToBundle(bundle* b, const char* key, const Tizen::Base::Collection::IList* pList);
102 //      static result ExtractPackageIdAndExecutableName(Tizen::App::AppId inAppId, Tizen::Base::String& outPackageId, Tizen::Base::String& outExecutableName);
103 };
104
105 extern const wchar_t ARG_KEY_INSTANCE_ID[];
106 extern const wchar_t ARG_KEY_PROVIDER_NAME[];
107 extern const wchar_t ARG_KEY_USER_INFO[];
108 extern const wchar_t ARG_KEY_X[];
109 extern const wchar_t ARG_KEY_Y[];
110 extern const wchar_t ARG_KEY_WIDTH[];
111 extern const wchar_t ARG_KEY_HEIGHT[];
112 extern const wchar_t ARG_KEY_POPUP_WIDTH[];
113 extern const wchar_t ARG_KEY_POPUP_HEIGHT[];
114 extern const wchar_t ARG_KEY_ARGUMENT[];
115 extern const wchar_t ARG_KEY_EVENT_TYPE[];
116 extern const wchar_t ARG_KEY_TIME_STAMP[];
117
118 } /* namespace App */
119 } /* namespace AppWidget */
120 } /* namespace Samsung */
121 #endif // _FSHELL_INTERNAL_APPWIDGET_CONTEXT_BASE_H_