Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_mobile / wrt-popup / wrt / popup-runner / PopupInvoker.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 #ifndef WRT_POPUP_INVOKER_H
18 #define WRT_POPUP_INVOKER_H
19
20 #include <string>
21
22 #include <dpl/named_input_pipe.h>
23 #include <dpl/named_output_pipe.h>
24
25 /*
26  *
27  * Example usage:
28  *
29  * bool result = PopupInvoker().askYesNo("title", "message");
30  *
31  */
32
33 namespace Wrt {
34 namespace Popup {
35 enum PopupResponse {
36     NO_DO_REMEMBER,
37     NO_DONT_REMEMBER,
38     YES_DONT_REMEMBER,
39     YES_DO_REMEMBER
40 };
41
42 class PopupInvoker
43 {
44   public:
45     class Exception
46     {
47       public:
48         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
49         DECLARE_EXCEPTION_TYPE(Base, PopupInvokerException)
50     };
51
52     PopupInvoker();
53     ~PopupInvoker();
54
55     bool askYesNo(const std::string &title, const std::string &message);
56     void showInfo(const std::string &title,
57                   const std::string &message,
58                   const std::string &buttonLabel = std::string("OK"));
59     PopupResponse askYesNoCheckbox(const std::string& title,
60                                    const std::string& message,
61                                    const std::string& checkboxLabel);
62
63   private:
64
65     void executePopup();
66
67     DPL::NamedInputPipe m_input;
68     DPL::NamedOutputPipe m_output;
69     std::string m_inputName;
70     std::string m_outputName;
71 };
72 } // Popup
73 } // Wrt
74
75 #endif