lyx_mirror/src/frontends/Alert_pimpl.h
Lars Gullik Bjønnes 897436efbb Whitespace cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18550 a592a061-630c-0410-9148-cb99ea01b6c8
2007-05-28 22:27:45 +00:00

34 lines
872 B
C++

// -*- C++ -*-
/**
* \file Alert_pimpl.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
// GUI-specific implementations
#include "support/docstring.h"
#include <utility>
namespace lyx {
int prompt_pimpl(docstring const & title, docstring const & question,
int default_button, int escape_button,
docstring const & b1,
docstring const & b2,
docstring const & b3);
void warning_pimpl(docstring const & title, docstring const & warning);
void error_pimpl(docstring const & title, docstring const & warning);
void information_pimpl(docstring const & title, docstring const & warning);
std::pair<bool, docstring> const askForText_pimpl(docstring const & msg, docstring const & dflt);
} // namespace lyx