]> git.lyx.org Git - lyx.git/blob - src/frontends/Alert_pimpl.h
some tabular fixes for the problems reported by Helge
[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 <utility>
15 #include <string>
16
17
18 int prompt_pimpl(std::string const & title, std::string const & question,
19                  int default_button, int escape_button,
20                  std::string const & b1,
21                  std::string const & b2,
22                  std::string const & b3);
23
24 void warning_pimpl(std::string const & title, std::string const & warning);
25 void error_pimpl(std::string const & title, std::string const & warning);
26 void information_pimpl(std::string const & title, std::string const & warning);
27
28 std::pair<bool, std::string> const askForText_pimpl(std::string const & msg, std::string const & dflt);