]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Alert_pimpl.h
Martin's changes to the Note inset.
[lyx.git] / src / frontends / Alert_pimpl.h
index 788fcd239f0b770e9e607198605295862f7380d2..7c500f2e1281f305829d96d9de4618a88790c4e9 100644 (file)
@@ -1,8 +1,9 @@
 /**
  * \file Alert_pimpl.h
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author John Levon 
+ * \author John Levon
  *
  * Full author contact details are available in file CREDITS
  */
 #include "debug.h"
 
 // GUI-specific implementations
-void alert_pimpl(string const & s1, string const & s2, string const & s3);
-bool askQuestion_pimpl(string const & s1, string const & s2, string const & s3);
-int askConfirmation_pimpl(string const & s1, string const & s2, string const & s3);
+
+int prompt_pimpl(string const & title, string const & question,
+           int default_button, int escape_button,
+          string const & b1, string const & b2, string const & b3);
+
+void warning_pimpl(string const & title, string const & warning);
+void error_pimpl(string const & title, string const & warning);
+void information_pimpl(string const & title, string const & warning);
+
 std::pair<bool, string> const askForText_pimpl(string const & msg, string const & dflt);