lyx_mirror/src/frontends/alert.cpp
Bo Peng e36fba33ab Last (?) batch of renames:
src/frontends/Alert.h src/frontends/alert.h
src/frontends/Alert.cpp src/frontends/alert.cpp
src/frontends/Alert_pimpl.cpp src/frontends/alert_pimpl.cpp
src/frontends/qt4/Alert_pimpl.cpp src/frontends/qt4/alert_pimpl.cpp
src/frontends/controllers/ButtonPolicies.cpp src/frontends/controllers/ButtonPolicy.cpp
src/frontends/controllers/ButtonPolicies.h src/frontends/controllers/ButtonPolicy.h
src/insets/InsetEnv.cpp src/insets/InsetEnvironment.cpp
src/insets/InsetEnv.h src/insets/InsetEnvironment.h
src/mathed/MathMacroTable.h src/mathed/MacroTable.h
src/mathed/MathMacroTable.cpp src/mathed/MacroTable.cpp
src/lyx_cb.h src/callback.h
src/lyx_cb.cpp src/callback.cpp
src/UpdateFlags.h src/update_flags.h


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18076 a592a061-630c-0410-9148-cb99ea01b6c8
2007-04-28 20:44:46 +00:00

105 lines
2.4 KiB
C++

/**
* \file alert.cpp
* 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.
*/
#include <config.h>
#include "alert.h"
#include "Alert_pimpl.h"
#include "debug.h"
#include "LyX.h" // for lyx::use_gui
using std::endl;
using std::make_pair;
using std::pair;
using std::string;
namespace lyx {
namespace frontend {
int Alert::prompt(docstring const & title, docstring const & question,
int default_button, int escape_button,
docstring const & b1, docstring const & b2, docstring const & b3)
{
if (!use_gui || lyxerr.debugging()) {
lyxerr << to_utf8(title) << '\n'
<< "----------------------------------------\n"
<< to_utf8(question) << endl;
lyxerr << "Assuming answer is ";
switch (default_button) {
case 0: lyxerr << to_utf8(b1) << endl;
case 1: lyxerr << to_utf8(b2) << endl;
case 2: lyxerr << to_utf8(b3) << endl;
}
if (!use_gui)
return default_button;
}
return prompt_pimpl(title, question,
default_button, escape_button, b1, b2, b3);
}
void Alert::warning(docstring const & title, docstring const & message)
{
lyxerr << "Warning: " << to_utf8(title) << '\n'
<< "----------------------------------------\n"
<< to_utf8(message) << endl;
if (use_gui)
warning_pimpl(title, message);
}
void Alert::error(docstring const & title, docstring const & message)
{
lyxerr << "Error: " << to_utf8(title) << '\n'
<< "----------------------------------------\n"
<< to_utf8(message) << endl;
if (use_gui)
error_pimpl(title, message);
}
void Alert::information(docstring const & title, docstring const & message)
{
if (!use_gui || lyxerr.debugging())
lyxerr << to_utf8(title) << '\n'
<< "----------------------------------------\n"
<< to_utf8(message) << endl;
if (use_gui)
information_pimpl(title, message);
}
pair<bool, docstring> const Alert::askForText(docstring const & msg,
docstring const & dflt)
{
if (!use_gui || lyxerr.debugging()) {
lyxerr << "----------------------------------------\n"
<< to_utf8(msg) << '\n'
<< "Assuming answer is " << to_utf8(dflt) << '\n'
<< "----------------------------------------" << endl;
if (!use_gui)
return make_pair<bool, docstring>(true, dflt);
}
return askForText_pimpl(msg, dflt);
}
} // namespace frontend
} // namespace lyx