]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Alert_pimpl.C
Removed all redundant using directives from the source.
[lyx.git] / src / frontends / xforms / Alert_pimpl.C
1 /**
2  * \file xforms/Alert_pimpl.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "Alert_pimpl.h"
14
15 #include "forms_gettext.h"
16 #include "xforms_helpers.h"
17
18 #include "debug.h"
19 #include "gettext.h"
20
21 #include <boost/tuple/tuple.hpp>
22
23 #include "lyx_forms.h"
24
25 using std::make_pair;
26 using std::pair;
27
28
29 void warning_pimpl(string const &, string const & message)
30 {
31         fl_show_messages(formatted(message, 300).c_str());
32 }
33
34
35 void error_pimpl(string const &, string const & message)
36 {
37         fl_show_messages(formatted(message, 300).c_str());
38 }
39
40
41 void information_pimpl(string const &, string const & message)
42 {
43         fl_show_messages(formatted(message, 300).c_str());
44 }
45
46
47 int prompt_pimpl(string const &, string const & question,
48            int default_button, int /*escape_button*/,
49            string const & b1, string const & b2, string const & b3)
50 {
51         string b1label, b1sc;
52         string b2label, b2sc;
53         string b3label, b3sc;
54         boost::tie(b1label, b1sc) = parse_shortcut(b1);
55         boost::tie(b2label, b2sc) = parse_shortcut(b2);
56         boost::tie(b3label, b3sc) = parse_shortcut(b3);
57
58         if (b3.empty()) {
59                 fl_set_choices_shortcut(b1sc.c_str(), b2sc.c_str(), "");
60                 return fl_show_choices(formatted(question, 300).c_str(),
61                         2, b1label.c_str(), b2label.c_str(), "", default_button + 1) - 1;
62         } else {
63                 fl_set_choices_shortcut(b1sc.c_str(), b2sc.c_str(), b3sc.c_str());
64                 return fl_show_choices(formatted(question, 300).c_str(),
65                         3, b1label.c_str(), b2label.c_str(), b3label.c_str(),
66                         default_button + 1) - 1;
67         }
68 }
69
70
71 pair<bool, string> const askForText_pimpl(string const & msg, string const & dflt)
72 {
73         fl_set_resource("flInput.cancel.label", idex(_("Cancel|^[")).c_str());
74         fl_set_resource("flInput.ok.label", idex(_("OK|^M")).c_str());
75         fl_set_resource("flInput.clear.label", idex(_("Clear|#C")).c_str());
76         char const * tmp = fl_show_input(msg.c_str(), dflt.c_str());
77         if (tmp != 0)
78                 return make_pair<bool, string>(true, string(tmp));
79         else
80                 return make_pair<bool, string>(false, string());
81 }