]> git.lyx.org Git - lyx.git/blob - src/frontends/Alert_pimpl.h
kill Alert::alert()
[lyx.git] / src / frontends / Alert_pimpl.h
1 /**
2  * \file Alert_pimpl.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include "debug.h"
12
13 // GUI-specific implementations
14
15 int prompt_pimpl(string const & title, string const & question,
16            int default_button,
17            string const & b1, string const & b2, string const & b3);
18
19 void warning_pimpl(string const & title, string const & warning);
20 void error_pimpl(string const & title, string const & warning);
21 void information_pimpl(string const & title, string const & warning);
22
23 std::pair<bool, string> const askForText_pimpl(string const & msg, string const & dflt);