Remove popup dependency from wrt-commons
[platform/framework/web/wrt-plugins-common.git] / src / 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 {
30 const char YES_LABEL[] = "Yes";
31 const char NO_LABEL[] = "No";
32 const int POPUP_YES_VALUE = 1;
33 const int POPUP_NO_VALUE = 2;
34 } //anonymous
35
36 namespace Wrt {
37 namespace Popup {
38
39 void YesNoPopup::show(DPL::BinaryQueueAutoPtr data, WrtPopup* parent)
40 {
41     LogDebug("Entered");
42     std::string title = PopupSerializer::getStringArg(*data);
43     std::string message = PopupSerializer::getStringArg(*data);
44     Assert(data->Empty());
45     LogDebug("title: " << title << " message: " << message);
46
47     m_parent = parent;
48
49     Renderer::CtrlPopupPtr popup =
50         Renderer::PopupControllerSingleton::Instance().CreatePopup();
51
52     popup->SetTitle(title);
53     popup->Append(new Renderer::PopupObject::Label(message));
54
55     popup->Append(new Renderer::PopupObject::Button(YES_LABEL, POPUP_YES_VALUE));
56     popup->Append(new Renderer::PopupObject::Button(NO_LABEL, POPUP_NO_VALUE));
57
58     ListenForAnswer(popup);
59
60     Renderer::ShowPopupEventShort event(popup,
61                                         MakeAnswerCallback(
62                                             this,
63                                             &YesNoPopup::responseCallback));
64
65     CONTROLLER_POST_EVENT(Renderer::PopupController,
66                           event);
67
68     LogDebug("Exited");
69     return;
70 }
71
72 void YesNoPopup::responseCallback(const Renderer::AnswerCallbackData &answer)
73 {
74     bool result = (POPUP_YES_VALUE == answer.buttonAnswer);
75     DPL::BinaryQueue retValue;
76     PopupSerializer::appendArg(result, retValue);
77     m_parent->response(retValue);
78 }
79
80 } // Popup
81 } // Wrt