alert popup change to modal less - async
[framework/osp/web.git] / src / controls / FWebCtrl_UserConfirmPopup.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (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://www.apache.org/licenses/LICENSE-2.0
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        FWebCtrl_UserConfirmPopup.h
20  * @brief       The file contains the definition of _UserConfirmPopup class.
21  */
22
23 #ifndef _FWEB_CTRL_INTERNAL_USER_CONFIRM_POPUP_H_
24 #define _FWEB_CTRL_INTERNAL_USER_CONFIRM_POPUP_H_
25
26 #include <unique_ptr.h>
27 #include <EWebKit2.h>
28 #include <FBaseString.h>
29 #include "FWebCtrl_WebPopup.h"
30
31 namespace Tizen { namespace Ui { namespace Controls
32 {
33 class CheckButton;
34 }}}
35
36 namespace Tizen { namespace Web { namespace Controls
37 {
38
39 enum _UserConfirmPopupButtonId
40 {
41         ID_BUTTON_USER_ALLOW,
42         ID_BUTTON_USER_CANCEL,
43         ID_BUTTON_USER_CERT_VIEW
44 };
45
46 enum _UserConfirmMode
47 {
48         USER_CONFIRM_USERMEDIA,
49         USER_CONTENT_HANDLER,
50         USER_PROTOCOL_HANDLER,
51         USER_CONFIRM_GEOLOCATION,
52         USER_CONFIRM_NOTIFICATION,
53         USER_SCRIPT_ALERT
54 };
55
56 class _UserConfirmPopup
57         : public _WebPopup
58 {
59
60 public:
61         /**
62          * Constructor
63          */
64         _UserConfirmPopup(void);
65
66         /**
67          * Destructor
68          */
69         virtual ~_UserConfirmPopup(void);
70
71         result Construct(_UserConfirmMode userConfirmMode, void* pEventInfo, bool sync = false, Tizen::Base::String msg = L"");
72
73         virtual void OnActionPerformed(const Tizen::Ui::Control& source, int actionId);
74
75 private:
76         _UserConfirmPopup(const _UserConfirmPopup&);
77
78         _UserConfirmPopup& operator =(const _UserConfirmPopup&);
79
80         Tizen::Base::String GetMessageFromPolicy(void);
81
82         void HandleUserAction(Eina_Bool allow);
83
84         void RegisterHandler(bool checkhandler, Eina_Bool allow);
85         result AddGeolocationDb(Ewk_Geolocation_Permission_Request* pPolicy, bool enable);
86
87 private:
88         void* __pUserPolicyData;
89         _UserConfirmMode __userConfirmMode;
90         Tizen::Ui::Controls::CheckButton* __pCheckButton;
91
92         bool __sync;
93 }; // _UserConfirmPopup
94
95 }}} // Tizen::Web::Controls
96 #endif // _FWEB_CTRL_INTERNAL_USER_CONFIRM_POPUP_H_