lyx_mirror/src/frontends/Alert_pimpl.h
Abdelrazak Younes a6444784dc A bunch of conversion to docstring.
- bformat(): contributed by Georg Beaum
- Alert::XXX
- error(): in SpellBase, ispell, psell, aspell, buffer, etc.
- message(), message signal
- displayMessage(), setMessage,
- ErrorItems
- prettyName()
- makeDisplayPath()

and maybe some more...


- etc... 

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14970 a592a061-630c-0410-9148-cb99ea01b6c8
2006-09-11 08:54:10 +00:00

31 lines
923 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>
#include <string>
int prompt_pimpl(lyx::docstring const & title, lyx::docstring const & question,
int default_button, int escape_button,
lyx::docstring const & b1,
lyx::docstring const & b2,
lyx::docstring const & b3);
void warning_pimpl(lyx::docstring const & title, lyx::docstring const & warning);
void error_pimpl(lyx::docstring const & title, lyx::docstring const & warning);
void information_pimpl(lyx::docstring const & title, lyx::docstring const & warning);
std::pair<bool, lyx::docstring> const askForText_pimpl(lyx::docstring const & msg, lyx::docstring const & dflt);