Popup cleaning
[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 <dpl/popup/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 using namespace DPL::Popup;
40
41 void YesNoPopup::show(DPL::BinaryQueueAutoPtr data, WrtPopup* parent)
42 {
43     LogDebug("Entered");
44     std::string title = PopupSerializer::getStringArg(*data);
45     std::string message = PopupSerializer::getStringArg(*data);
46     Assert(data->Empty());
47     LogDebug("title: " << title << " message: " << message);
48
49     m_parent = parent;
50
51     CtrlPopupPtr popup = PopupControllerSingleton::Instance().CreatePopup();
52
53     popup->SetTitle(title);
54     popup->Append(new PopupObject::Label(message));
55
56     popup->Append(new PopupObject::Button(YES_LABEL, POPUP_YES_VALUE));
57     popup->Append(new PopupObject::Button(NO_LABEL, POPUP_NO_VALUE));
58
59     ListenForAnswer(popup);
60
61     ShowPopupEventShort event(popup,
62                               MakeAnswerCallback(
63                                      this,
64                                      &YesNoPopup::responseCallback));
65
66     CONTROLLER_POST_EVENT(PopupController,
67                           event);
68
69     LogDebug("Exited");
70     return;
71 }
72
73 void YesNoPopup::responseCallback(const DPL::Popup::AnswerCallbackData &answer)
74 {
75     bool result = (POPUP_YES_VALUE == answer.buttonAnswer);
76     DPL::BinaryQueue retValue;
77     PopupSerializer::appendArg(result, retValue);
78     m_parent->response(retValue);
79 }
80
81 } // Popup
82 } // Wrt