563a0defac2722173f9f43faaceb133811f0716f
[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 _AppWidgetContext;
38
39 class _AppWidgetPopupContext
40         :public Tizen::Base::Object
41         , public _IAppWidgetRemoteBufferEventListener
42 {
43 public:
44         _AppWidgetPopupContext(const _AppWidgetContext* pParent);
45         virtual ~_AppWidgetPopupContext(void);
46
47         // event handler
48         void OnPopupCreated(double x, double y, int width, int height);
49
50         // request from app
51         result SyncRemoteBuffer(void);
52         int AcquireRemoteBuffer(int w, int h) const;
53
54         // request to app
55         result SendPopupCreateRequest(double x, double y, int width, int height);
56         result SendPopupDestroyRequest(void);
57
58 private:
59         int GetClientId(void) const;
60         void OnPopupDestoyed(void);
61         virtual void OnTouchEventReceived(buffer_event event, double timestamp, double x, double y);
62
63 private:
64         const _AppWidgetContext* __pParent;
65         _AppWidgetRemoteBuffer* __pAppWidgetRemoteBuffer;
66
67 };      // class _AppWidgetPopupContext
68
69 }}}     // Tizen::Shell::App
70
71 #endif // _FSHELL_INTERNAL_APPWIDGET_POPUP_CONTEXT_H_