59fd854250bea7ab3c3056448bfbe93b30d6e073
[framework/web/wrt-commons.git] / modules / popup / include / dpl / popup / popup.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (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://www.apache.org/licenses/LICENSE-2.0
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  * @file        popup.h
18  * @author      Lukasz Wrzosek (l.wrzosek@samsung.com)
19  * @version     1.0
20  * @brief       This is popup inteface declaration
21  */
22
23 #ifndef WRT_SRC_POPUP_POPUP_H_
24 #define WRT_SRC_POPUP_POPUP_H_
25
26 #include <dpl/enable_shared_from_this.h>
27 #include <dpl/shared_ptr.h>
28 #include <dpl/assert.h>
29 #include <dpl/log/log.h>
30 #include <string>
31 #include <dpl/optional.h>
32 #include <dpl/popup/popup_object.h>
33 #include <dpl/event/nested_loop.h>
34
35 namespace DPL {
36 namespace Popup {
37
38 struct AnswerCallbackData
39 {
40     int buttonAnswer;
41     DPL::Optional<std::string> password;
42     bool chackState;
43     DPL::Event::LoopHandle loopHandle;
44 };
45
46 class PopupManager;
47 class IPopup;
48 typedef DPL::SharedPtr<IPopup> IPopupPtr;
49
50 class IPopup : protected DPL::EnableSharedFromThis<IPopup>
51 {
52   public:
53     virtual void SetTitle(const std::string &title) = 0;
54     /*The object is deleted automatically after rendered */
55     virtual void Append(PopupObject::IPopupObject *object) = 0;
56
57   protected:
58     typedef void (*PopupCallbackType)(const AnswerCallbackData& answer,
59                                       void *data);
60     virtual void Show(PopupCallbackType callback,
61             void* data) = 0;
62     virtual ~IPopup()
63     {
64     }
65
66   private:
67     friend class PopupManager;
68     friend class DPL::SharedPtr<IPopup>;
69 };
70
71 } // namespace Popup
72 } // namespace DPL
73
74 #endif //WRT_SRC_POPUP_POPUP_H_