Apply to remove download listener before deleting _WebImpl
[framework/osp/web.git] / src / controls / FWebCtrl_AuthConfirmPopup.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_AuthConfirmPopup.h
20  * @brief       The file contains the definition of _AuthConfirmPopup class.
21  */
22
23 #ifndef _FWEB_CTRL_INTERNAL_AUTH_CONFIRM_POPUP_H_
24 #define _FWEB_CTRL_INTERNAL_AUTH_CONFIRM_POPUP_H_
25
26 #include <unique_ptr.h>
27 #include <FBaseString.h>
28 #include "FWebCtrl_WebPopup.h"
29
30 namespace Tizen { namespace Ui
31 {
32 class IActionEventListener;
33 }} // Tizen::Ui
34
35 namespace Tizen { namespace Ui { namespace Controls
36 {
37 class EditField;
38 }}} // Tizen::Ui::Controls
39
40 namespace Tizen { namespace Web { namespace Controls
41 {
42 class AuthenticationChallenge;
43
44
45 enum _AuthPopupButtonId
46 {
47         ID_BUTTON_AUTH_PROCESS,
48         ID_BUTTON_AUTH_CANCEL
49 };
50
51
52 class _AuthConfirmPopup
53         : public _WebPopup
54 {
55
56 public:
57         /**
58          * Constructor
59          */
60         _AuthConfirmPopup(void);
61
62         /**
63          * Destructor
64          */
65         virtual ~_AuthConfirmPopup(void);
66
67         result Construct(const Tizen::Base::String& host, const Tizen::Base::String& realm, AuthenticationChallenge* pAuth);
68
69         virtual void OnActionPerformed(const Tizen::Ui::Control& source, int actionId);
70
71 private:
72         _AuthConfirmPopup(const _AuthConfirmPopup&);
73
74         _AuthConfirmPopup& operator =(const _AuthConfirmPopup&);
75
76 private:
77         Tizen::Ui::Controls::EditField* __pIdEditField;
78         Tizen::Ui::Controls::EditField* __pPwdEditField;
79         AuthenticationChallenge* __pAuthHandler;
80 }; // _AuthConfirmPopup
81
82 }}} // Tizen::Web::Controls
83 #endif // _FWEB_CTRL_AUTH_COMMON_POPUP_H_