mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a6444784dc
- 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
31 lines
923 B
C++
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);
|