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