Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_wearable / wrt-popup / wrt / popup-bin / YesNoPopup.cpp
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        YesNoPopup.cpp
18  * @author      Andrzej Surdej (a.surdej@samsung.com)
19  * @version     1.0
20  * @brief       Popup that contains 'Yes' and 'No' buttons. Inplementation
21  */
22
23 #include "YesNoPopup.h"
24 #include <memory>
25 #include <string.h>
26 #include "popup_manager.h"
27 #include "PopupSerializer.h"
28
29 namespace Wrt {
30 namespace Popup {
31 void YesNoPopup::show(DPL::BinaryQueueAutoPtr data, WrtPopup* parent)
32 {
33     LogDebug("Entered");
34     m_parent = parent;
35     Renderer::CtrlPopupPtr popup = createPopup(data);
36     ListenForAnswer(popup);
37
38     Renderer::ShowPopupEventShort event(popup,
39                                         MakeAnswerCallback(
40                                             this,
41                                             &YesNoPopup::responseCallback));
42
43     CONTROLLER_POST_EVENT(Renderer::PopupController,
44                           event);
45
46     LogDebug("Exited");
47     return;
48 }
49
50 void YesNoPopup::responseCallback(const Renderer::AnswerCallbackData &answer)
51 {
52     bool result = (POPUP_YES_VALUE == answer.buttonAnswer);
53     DPL::BinaryQueue retValue;
54     PopupSerializer::appendArg(true, retValue);
55     PopupSerializer::appendArg(result, retValue);
56     m_parent->response(retValue);
57 }
58
59 YesNoPopup::~YesNoPopup()
60 {}
61
62 Renderer::CtrlPopupPtr YesNoPopup::createPopup(DPL::BinaryQueueAutoPtr data)
63 {
64     std::string title = PopupSerializer::getStringArg(*data);
65     std::string message = PopupSerializer::getStringArg(*data);
66     Assert(data->Empty());
67     LogDebug("title: " << title << " message: " << message);
68     Renderer::CtrlPopupPtr popup =
69         Renderer::PopupControllerSingleton::Instance().CreatePopup();
70
71     popup->SetTitle(title);
72     popup->Append(new Renderer::PopupObject::Label(message));
73
74     popup->Append(new Renderer::PopupObject::Button(YES_LABEL, POPUP_YES_VALUE));
75     popup->Append(new Renderer::PopupObject::Button(NO_LABEL, POPUP_NO_VALUE));
76     return popup;
77 }
78 } // Popup
79 } // Wrt