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