]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Alert.C
namespace grfx -> lyx::graphics
[lyx.git] / src / frontends / Alert.C
index 51e96f9e3c975074ed392b2c834819e02a751c18..f11661a8aaa2a6dfacb1e6e87ddb090ba0f627c6 100644 (file)
@@ -13,7 +13,7 @@
 #include "Alert.h"
 
 #include "debug.h"
-#include "lyxrc.h"
+#include "lyx_gui.h"
 
 #include "Alert_pimpl.h"
 
@@ -22,11 +22,12 @@ using std::pair;
 using std::make_pair;
 
 int Alert::prompt(string const & title, string const & question,
-           int default_button,
+           int default_button, int escape_button,
           string const & b1, string const & b2, string const & b3)
 {
-       if (lyxrc.use_gui)
-               return prompt_pimpl(title, question, default_button, b1, b2, b3);
+       if (lyx_gui::use_gui)
+               return prompt_pimpl(title, question,
+                       default_button, escape_button, b1, b2, b3);
 
        lyxerr << title << endl;
        lyxerr << "----------------------------------------" << endl;
@@ -43,7 +44,7 @@ int Alert::prompt(string const & title, string const & question,
 
 void Alert::warning(string const & title, string const & message)
 {
-       if (lyxrc.use_gui)
+       if (lyx_gui::use_gui)
                return warning_pimpl(title, message);
 
        lyxerr << "Warning: " << title << endl;
@@ -54,7 +55,7 @@ void Alert::warning(string const & title, string const & message)
 
 void Alert::error(string const & title, string const & message)
 {
-       if (lyxrc.use_gui)
+       if (lyx_gui::use_gui)
                return error_pimpl(title, message);
 
        lyxerr << "Error: " << title << endl;
@@ -65,7 +66,7 @@ void Alert::error(string const & title, string const & message)
 
 void Alert::information(string const & title, string const & message)
 {
-       if (lyxrc.use_gui)
+       if (lyx_gui::use_gui)
                return information_pimpl(title, message);
 
        lyxerr << title << endl;
@@ -77,7 +78,7 @@ void Alert::information(string const & title, string const & message)
 pair<bool, string> const Alert::askForText(string const & msg,
                                           string const & dflt)
 {
-       if (!lyxrc.use_gui) {
+       if (!lyx_gui::use_gui) {
                lyxerr << "----------------------------------------" << endl
                       << msg << endl
                       << "Assuming answer is " << dflt