2001-11-26 10:19:58 +00:00
|
|
|
/**
|
|
|
|
* \file Alert_pimpl.h
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-11-26 10:19:58 +00:00
|
|
|
*
|
2002-12-01 22:59:25 +00:00
|
|
|
* \author John Levon
|
2002-09-05 14:10:50 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-11-26 10:19:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "debug.h"
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-11-26 10:19:58 +00:00
|
|
|
// GUI-specific implementations
|
2003-03-29 07:09:13 +00:00
|
|
|
|
|
|
|
int prompt_pimpl(string const & title, string const & question,
|
2003-04-27 16:40:50 +00:00
|
|
|
int default_button, int escape_button,
|
2003-03-29 07:09:13 +00:00
|
|
|
string const & b1, string const & b2, string const & b3);
|
|
|
|
|
2003-03-29 09:02:08 +00:00
|
|
|
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);
|
|
|
|
|
2001-11-26 10:19:58 +00:00
|
|
|
std::pair<bool, string> const askForText_pimpl(string const & msg, string const & dflt);
|