]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/alert.h
move spellchecker backend change action to actOnUpdatedPrefs where it belongs to...
[lyx.git] / src / frontends / alert.h
index b4e123731c0878cfb4d303578fbf20bb1c2a422d..4f052342974b9e48d1646214b208a06daaf6c4a9 100644 (file)
@@ -32,13 +32,18 @@ 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 = docstring(),
+          docstring const & b4 = 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.
  */
-void warning(docstring const & title, docstring const & message);
+void warning(docstring const & title, docstring const & message,
+            bool const & askshowagain = false);
 
 /**
  * Display a warning to the user. Title should be a short (general) summary.