]> git.lyx.org Git - lyx.git/blob - src/frontends/Alert_pimpl.h
Rename .C ==> .cpp for files in src/frontends, part two
[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 // GUI-specific implementations
13
14 #include "support/docstring.h"
15
16 #include <utility>
17
18
19 namespace lyx {
20
21 int prompt_pimpl(docstring const & title, docstring const & question,
22                  int default_button, int escape_button,
23                  docstring const & b1,
24                  docstring const & b2,
25                  docstring const & b3);
26
27 void warning_pimpl(docstring const & title, docstring const & warning);
28 void error_pimpl(docstring const & title, docstring const & warning);
29 void information_pimpl(docstring const & title, docstring const & warning);
30
31 std::pair<bool, docstring> const askForText_pimpl(docstring const & msg, docstring const & dflt);
32
33 } // namespace lyx
34