upload tizen1.0 source
[framework/web/wrt-security.git] / popup_process / 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 PopupProcess {
37 using namespace DPL::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     CtrlPopupPtr popup = PopupControllerSingleton::Instance().CreatePopup();
50
51     popup->SetTitle(title);
52     popup->Append(new PopupObject::Label(message));
53
54     popup->Append(new PopupObject::Button(YES_LABEL, POPUP_YES_VALUE));
55     popup->Append(new PopupObject::Button(NO_LABEL, POPUP_NO_VALUE));
56
57     ListenForAnswer(popup);
58
59      //nested loop is not used here
60     ShowPopupEvent event(popup,
61                          MakeAnswerCallback(
62                                 this,
63                                 &YesNoPopup::responseCallback),
64                                 DPL::Event::UNDEFINED_LOOP_HANDLE);
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 } // PopupProcess
82