]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/alert.h
Remove using directives from headers
[lyx.git] / src / frontends / alert.h
index 433369d1b9bdecd73ee0e9bdd4837182ae59839f..2be612acea3c0dade24081cee666dbf411a1bb2f 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef LYX_ALERT_H
 #define LYX_ALERT_H
 
-#include "support/docstring.h"
+#include "support/strfwd.h"
 
 
 namespace lyx {
@@ -32,7 +32,9 @@ namespace Alert {
  */
 int prompt(docstring const & title, docstring const & question,
           int default_button, int cancel_button,
-          docstring const & b1, docstring const & b2, docstring const & b3 = docstring());
+          docstring const & b1, docstring const & b2,
+          docstring const & b3 = empty_docstring(),
+          docstring const & b4 = empty_docstring());
 
 /**
  * Display a warning to the user. Title should be a short (general) summary.
@@ -46,8 +48,9 @@ void warning(docstring const & title, docstring const & message,
 /**
  * Display a warning to the user. Title should be a short (general) summary.
  * Only use this if the user cannot perform some remedial action.
+ * On some systems it is possible to show a backtrace.
  */
-void error(docstring const & title, docstring const & message);
+void error(docstring const & title, docstring const & message, bool backtrace = false);
 
 /**
  * Informational message. Use very very sparingly. That is, you must
@@ -62,7 +65,7 @@ void information(docstring const & title, docstring const & message);
  * (even empty string). dflt stands for default message in the dialog.
  */
 bool askForText(docstring & response, docstring const & msg,
-       docstring const & dflt = docstring());
+       docstring const & dflt = empty_docstring());
 
 } // namespace Alert
 } // namespace frontend