Popup cleaning
[platform/framework/web/wrt-plugins-common.git] / src / 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
36 class PopupInvoker
37 {
38 public:
39     class Exception
40     {
41       public:
42         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
43         DECLARE_EXCEPTION_TYPE(Base, PopupInvokerException)
44     };
45
46     PopupInvoker();
47     ~PopupInvoker();
48
49     bool askYesNo(const std::string &title, const std::string &message);
50
51 private:
52
53     void executePopup();
54
55     DPL::NamedInputPipe m_input;
56     DPL::NamedOutputPipe m_output;
57     const std::string m_inputName;
58     const std::string m_outputName;
59 };
60
61 } // Popup
62 } // Wrt
63
64 #endif