2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
9 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 * @file FWebCtrl_UserConfirmPopup.h
20 * @brief The file contains the definition of _UserConfirmPopup class.
23 #ifndef _FWEB_CTRL_INTERNAL_USER_CONFIRM_POPUP_H_
24 #define _FWEB_CTRL_INTERNAL_USER_CONFIRM_POPUP_H_
26 #include <unique_ptr.h>
28 #include <FBaseString.h>
29 #include "FWebCtrl_WebPopup.h"
31 namespace Tizen { namespace Ui { namespace Controls
36 namespace Tizen { namespace Web { namespace Controls
39 enum _UserConfirmPopupButtonId
42 ID_BUTTON_USER_CANCEL,
43 ID_BUTTON_USER_CERT_VIEW
48 USER_CONFIRM_USERMEDIA,
50 USER_PROTOCOL_HANDLER,
51 USER_CONFIRM_GEOLOCATION
54 class _UserConfirmPopup
62 _UserConfirmPopup(void);
67 virtual ~_UserConfirmPopup(void);
69 result Construct(_UserConfirmMode userConfirmMode, void* pEventInfo, bool sync = false);
71 virtual void OnActionPerformed(const Tizen::Ui::Control& source, int actionId);
74 _UserConfirmPopup(const _UserConfirmPopup&);
76 _UserConfirmPopup& operator =(const _UserConfirmPopup&);
78 Tizen::Base::String GetMessageFromPolicy(void);
80 void HandleUserAction(Eina_Bool allow);
82 void RegisterHandler(bool checkhandler, Eina_Bool allow);
83 result AddGeolocationDb(Ewk_Geolocation_Permission_Request* pPolicy, bool enable);
86 void* __pUserPolicyData;
87 _UserConfirmMode __userConfirmMode;
88 Tizen::Ui::Controls::CheckButton* __pCheckButton;
91 }; // _UserConfirmPopup
93 }}} // Tizen::Web::Controls
94 #endif // _FWEB_CTRL_INTERNAL_USER_CONFIRM_POPUP_H_