refactoring (now _AppContext manages list of _AppWidgetContext, IpcConnection state...
[framework/osp/appwidget-service.git] / inc / FShell_AppWidgetPopupContext.h
1 //
2 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 /**
18  * @file        FShell_AppWidgetPopupContext.h
19  * @brief       This is the header file for the %_AppWidgetPopupContext class.
20  *
21  * This header file contains the declarations of the %_AppWidgetPopupContext class.
22  */
23
24 #ifndef _FSHELL_INTERNAL_APPWIDGET_POPUP_CONTEXT_H_
25 #define _FSHELL_INTERNAL_APPWIDGET_POPUP_CONTEXT_H_
26
27 #include "FShell_AppWidgetRemoteBuffer.h"
28
29 namespace Tizen { namespace Base  { namespace Collection
30 {
31 class HashMap;
32 }}}
33
34 namespace Tizen { namespace Shell { namespace App
35 {
36
37 class _AppWidgetPopupContext;
38
39 /**
40  * @class       _AppWidgetContext
41  * @brief       Context of a AppWidgetPopupProvider and it's AppWidgetPopup
42  */
43 class _AppWidgetPopupContext
44         :public Tizen::Base::Object
45         , public _IAppWidgetRemoteBufferEventListener
46 {
47 public:
48         _AppWidgetPopupContext(const _AppWidgetContext* pParent);
49         virtual ~_AppWidgetPopupContext(void);
50
51         // event handler
52         void OnPopupCreated(double x, double y, int width, int height);
53
54         // request from app
55         result SyncRemoteBuffer(void);
56         int AcquireRemoteBuffer(int w, int h) const;
57
58         // request to app
59         result SendPopupCreateRequest(double x, double y, int width, int height);
60         result SendPopupDestroyRequest(void);
61
62 private:
63 //      int GetClientId(void) const;
64         void OnPopupDestoyed(void);
65         virtual void OnTouchEventReceived(buffer_event event, double timestamp, double x, double y);
66
67 private:
68         const _AppWidgetContext* __pParent;
69         _AppWidgetRemoteBuffer* __pAppWidgetRemoteBuffer;
70
71 };      // class _AppWidgetPopupContext
72
73 }}}     // Tizen::Shell::App
74
75 #endif // _FSHELL_INTERNAL_APPWIDGET_POPUP_CONTEXT_H_