Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_wearable / wrt-popup / wrt / popup-bin / renderer / 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 <memory>
27 #include <dpl/assert.h>
28 #include <dpl/log/log.h>
29 #include <string>
30 #include <dpl/optional_typedefs.h>
31 #include "popup_object.h"
32
33 namespace Wrt {
34 namespace Popup {
35 namespace Renderer {
36 struct AnswerCallbackData
37 {
38     int buttonAnswer;
39     DPL::OptionalStdString password;
40     bool chackState;
41 };
42
43 class PopupManager;
44 class IPopup;
45 typedef std::shared_ptr<IPopup> IPopupPtr;
46
47 class IPopup : public std::enable_shared_from_this<IPopup>
48 {
49   public:
50     virtual void SetTitle(const std::string &title) = 0;
51     /*The object is deleted automatically after rendered */
52     virtual void Append(PopupObject::IPopupObject *object) = 0;
53
54   protected:
55     typedef void (*PopupCallbackType)(const AnswerCallbackData& answer,
56                                       void *data);
57     virtual void Show(PopupCallbackType callback,
58                       void* data) = 0;
59     virtual ~IPopup()
60     {}
61
62   private:
63     friend class PopupManager;
64     friend class std::shared_ptr<IPopup>;
65 };
66 }
67 } // namespace Popup
68 } // namespace Wrt
69
70 #endif //WRT_SRC_POPUP_POPUP_H_