]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/alert.h
Clearer message when about to discard an unsaved document entirely.
[lyx.git] / src / frontends / alert.h
index b96ca1e1d876740672061b6a63538945940160a5..8770053fbaa3c77dd812e602e6a97abfdcf2e1e6 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef LYX_ALERT_H
 #define LYX_ALERT_H
 
-#include "support/docstring.h"
+#include "support/strfwd.h"
 
 
 namespace lyx {
@@ -33,14 +33,16 @@ 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 & b4 = docstring());
+          docstring const & b3 = empty_docstring(),
+          docstring const & b4 = empty_docstring());
 
 /**
  * Display a warning to the user. Title should be a short (general) summary.
  * Only use this if the user cannot perform some remedial action.
  * \p askshowagain will display a check box where the user can turn off the
  * warning for future cases. Ponder carefully if this is feasible.
+ *
+ * The console output takes care of converting any Qt html to plain text.
  */
 void warning(docstring const & title, docstring const & message,
             bool const & askshowagain = false);
@@ -49,6 +51,8 @@ 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.
+ *
+ * The console output takes care of converting any Qt html to plain text.
  */
 void error(docstring const & title, docstring const & message, bool backtrace = false);
 
@@ -65,7 +69,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