]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/Alert_pimpl.C
Lots and lots of little trivial bits.
[lyx.git] / src / frontends / qt2 / Alert_pimpl.C
1 /**
2  * \file qt2/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 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include <qmessagebox.h>
18 #include <qlabel.h>
19 #include <qlineedit.h>
20 #include "ui/QAskForTextDialog.h"
21
22 #include <algorithm>
23
24 #include <gettext.h>
25
26 #include "Alert.h"
27 #include "Alert_pimpl.h"
28
29 using std::pair;
30 using std::make_pair;
31
32 void alert_pimpl(string const & s1, string const & s2, string const & s3)
33 {
34         QMessageBox::warning(0, "LyX", (s1 + "\n" + "\n" + s2 + "\n" + s3).c_str());
35 }
36
37
38 bool askQuestion_pimpl(string const & s1, string const & s2, string const & s3)
39 {
40         return !(QMessageBox::information(0, "LyX", (s1 + "\n" + s2 + "\n" + s3).c_str(),
41                 _("&Yes"), _("&No"), 0, 1));
42 }
43
44
45 int askConfirmation_pimpl(string const & s1, string const & s2, string const & s3)
46 {
47         return (QMessageBox::information(0, "LyX", (s1 + "\n" + s2 + "\n" + s3).c_str(),
48                 _("&Yes"), _("&No"), _("&Cancel"), 0, 2)) + 1;
49 }
50
51
52 pair<bool, string> const askForText_pimpl(string const & msg, string const & dflt)
53 {
54         string title = _("LyX: ");
55         title += msg;
56
57         QAskForTextDialog d(0, title.c_str(), true);
58         // less than ideal !
59         d.askLA->setText((string("&") + msg).c_str());
60         d.askLE->setText(dflt.c_str());
61         d.askLE->setFocus();
62         int ret = d.exec();
63
64         d.hide();
65
66         if (ret)
67                 return make_pair<bool, string>(true, d.askLE->text().latin1());
68         else
69                 return make_pair<bool, string>(false, string());
70 }