mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +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
104 lines
2.4 KiB
C
104 lines
2.4 KiB
C
/**
|
|
* \file qt4/Alert_pimpl.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "Alert_pimpl.h"
|
|
#include "Alert.h"
|
|
|
|
#include "ui/QAskForTextUi.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include <QApplication>
|
|
#include <QMessageBox>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QDialog>
|
|
#include <QInputDialog>
|
|
|
|
#include <algorithm>
|
|
|
|
using lyx::support::bformat;
|
|
using lyx::docstring;
|
|
|
|
using std::pair;
|
|
using std::make_pair;
|
|
|
|
|
|
int prompt_pimpl(docstring const & tit, docstring const & question,
|
|
int default_button, int cancel_button,
|
|
docstring const & b1, docstring const & b2, docstring const & b3)
|
|
{
|
|
docstring const title = bformat(_("LyX: %1$s"), tit);
|
|
|
|
// FIXME replace that with theApp->gui()->currentView()
|
|
int res = QMessageBox::information(qApp->focusWidget(),
|
|
toqstr(title),
|
|
toqstr(formatted(question)),
|
|
toqstr(b1),
|
|
toqstr(b2),
|
|
b3.empty() ? QString::null : toqstr(b3),
|
|
default_button, cancel_button);
|
|
|
|
// Qt bug: can return -1 on cancel or WM close, despite the docs.
|
|
if (res == -1)
|
|
res = cancel_button;
|
|
return res;
|
|
}
|
|
|
|
|
|
void warning_pimpl(docstring const & tit, docstring const & message)
|
|
{
|
|
docstring const title = bformat(_("LyX: %1$s"), tit);
|
|
QMessageBox::warning(qApp->focusWidget(),
|
|
toqstr(title),
|
|
toqstr(formatted(message)));
|
|
}
|
|
|
|
|
|
void error_pimpl(docstring const & tit, docstring const & message)
|
|
{
|
|
docstring const title = bformat(_("LyX: %1$s"), tit);
|
|
QMessageBox::critical(qApp->focusWidget(),
|
|
toqstr(title),
|
|
toqstr(formatted(message)));
|
|
}
|
|
|
|
|
|
void information_pimpl(docstring const & tit, docstring const & message)
|
|
{
|
|
docstring const title = bformat(_("LyX: %1$s"), tit);
|
|
QMessageBox::information(qApp->focusWidget(),
|
|
toqstr(title),
|
|
toqstr(formatted(message)));
|
|
}
|
|
|
|
|
|
pair<bool, docstring> const
|
|
askForText_pimpl(docstring const & msg, docstring const & dflt)
|
|
{
|
|
docstring const title = bformat(_("LyX: %1$s"), msg);
|
|
|
|
bool ok;
|
|
QString text = QInputDialog::getText(qApp->focusWidget(),
|
|
toqstr(title),
|
|
toqstr(lyx::char_type('&') + msg),
|
|
QLineEdit::Normal,
|
|
toqstr(dflt), &ok);
|
|
|
|
if (ok && !text.isEmpty())
|
|
return make_pair<bool, docstring>(true, qstring_to_ucs4(text));
|
|
else
|
|
return make_pair<bool, docstring>(false, docstring());
|
|
}
|