2006-03-05 17:24:44 +00:00
|
|
|
/**
|
2007-11-14 00:04:00 +00:00
|
|
|
* \file qt4/GuiAlert.cpp
|
2006-03-05 17:24:44 +00:00
|
|
|
* 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>
|
|
|
|
|
2007-04-28 20:44:46 +00:00
|
|
|
#include "alert.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-01-23 12:38:20 +00:00
|
|
|
#include "frontends/Application.h"
|
|
|
|
|
2007-11-13 23:21:29 +00:00
|
|
|
#include "qt_helpers.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "LyX.h" // for lyx::use_gui
|
|
|
|
#include "ui_AskForTextUi.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
|
2007-11-13 23:21:29 +00:00
|
|
|
#include "support/docstring.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QInputDialog>
|
|
|
|
|
2007-11-27 22:19:36 +00:00
|
|
|
#include <iomanip>
|
|
|
|
|
2007-11-13 23:21:29 +00:00
|
|
|
using std::endl;
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
2007-11-14 00:04:00 +00:00
|
|
|
namespace frontend {
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2007-11-13 23:00:36 +00:00
|
|
|
using support::bformat;
|
|
|
|
|
2007-09-15 15:42:22 +00:00
|
|
|
static docstring const formatted(docstring const & text)
|
2006-10-24 15:01:07 +00:00
|
|
|
{
|
2007-09-15 15:42:22 +00:00
|
|
|
const int w = 80;
|
|
|
|
docstring sout;
|
|
|
|
|
|
|
|
if (text.empty())
|
|
|
|
return sout;
|
|
|
|
|
2007-11-13 23:00:36 +00:00
|
|
|
size_t curpos = 0;
|
2007-09-15 15:42:22 +00:00
|
|
|
docstring line;
|
|
|
|
|
2007-11-13 23:00:36 +00:00
|
|
|
while (true) {
|
|
|
|
size_t const nxtpos1 = text.find(' ', curpos);
|
|
|
|
size_t const nxtpos2 = text.find('\n', curpos);
|
|
|
|
size_t const nxtpos = std::min(nxtpos1, nxtpos2);
|
2007-09-15 15:42:22 +00:00
|
|
|
|
|
|
|
docstring const word =
|
|
|
|
nxtpos == docstring::npos ?
|
|
|
|
text.substr(curpos) :
|
|
|
|
text.substr(curpos, nxtpos - curpos);
|
|
|
|
|
|
|
|
bool const newline = (nxtpos2 != docstring::npos &&
|
|
|
|
nxtpos2 < nxtpos1);
|
|
|
|
|
|
|
|
docstring const line_plus_word =
|
|
|
|
line.empty() ? word : line + char_type(' ') + word;
|
|
|
|
|
|
|
|
// FIXME: make w be size_t
|
|
|
|
if (int(line_plus_word.length()) >= w) {
|
|
|
|
sout += line + char_type('\n');
|
|
|
|
if (newline) {
|
|
|
|
sout += word + char_type('\n');
|
|
|
|
line.erase();
|
|
|
|
} else {
|
|
|
|
line = word;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (newline) {
|
|
|
|
sout += line_plus_word + char_type('\n');
|
|
|
|
line.erase();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (!line.empty())
|
|
|
|
line += char_type(' ');
|
|
|
|
line += word;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nxtpos == docstring::npos) {
|
|
|
|
if (!line.empty())
|
|
|
|
sout += line;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
curpos = nxtpos + 1;
|
2006-10-24 15:01:07 +00:00
|
|
|
}
|
|
|
|
|
2007-09-15 15:42:22 +00:00
|
|
|
return sout;
|
|
|
|
}
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
2007-11-14 00:04:00 +00:00
|
|
|
namespace Alert {
|
|
|
|
|
|
|
|
int prompt(docstring const & title0, docstring const & question,
|
|
|
|
int default_button, int cancel_button,
|
|
|
|
docstring const & b1, docstring const & b2, docstring const & b3)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-11-14 00:04:00 +00:00
|
|
|
if (!use_gui || lyxerr.debugging()) {
|
|
|
|
lyxerr << to_utf8(title0) << '\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;
|
|
|
|
}
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-11-14 00:04:00 +00:00
|
|
|
docstring const title = bformat(_("LyX: %1$s"), title0);
|
2006-10-24 15:01:07 +00:00
|
|
|
|
2006-12-21 20:29:15 +00:00
|
|
|
// For some reason, sometimes Qt uses an hourglass or watch cursor when
|
|
|
|
// displaying the alert. Hence, we ask for the standard cursor shape.
|
|
|
|
// This call has no effect if the cursor has not been overridden.
|
|
|
|
qApp->changeOverrideCursor(Qt::ArrowCursor);
|
|
|
|
|
2007-11-18 20:36:52 +00:00
|
|
|
// FIXME replace that with guiApp->currentView()
|
2007-09-15 15:42:22 +00:00
|
|
|
int res = QMessageBox::information(qApp->focusWidget(),
|
2006-03-05 17:24:44 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-14 00:04:00 +00:00
|
|
|
void warning(docstring const & title0, docstring const & message)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-11-14 00:04:00 +00:00
|
|
|
lyxerr << "Warning: " << to_utf8(title0) << '\n'
|
|
|
|
<< "----------------------------------------\n"
|
|
|
|
<< to_utf8(message) << endl;
|
|
|
|
|
|
|
|
if (!use_gui)
|
|
|
|
return;
|
|
|
|
|
|
|
|
docstring const title = bformat(_("LyX: %1$s"), title0);
|
2006-10-24 15:01:07 +00:00
|
|
|
|
2007-01-23 12:38:20 +00:00
|
|
|
if (theApp() == 0) {
|
|
|
|
int argc = 1;
|
|
|
|
char * argv[1];
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
QMessageBox::warning(0,
|
|
|
|
toqstr(title),
|
|
|
|
toqstr(formatted(message)));
|
|
|
|
return;
|
|
|
|
}
|
2007-09-15 15:42:22 +00:00
|
|
|
QMessageBox::warning(qApp->focusWidget(),
|
2006-03-05 17:24:44 +00:00
|
|
|
toqstr(title),
|
|
|
|
toqstr(formatted(message)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-14 00:04:00 +00:00
|
|
|
void error(docstring const & title0, docstring const & message)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-11-14 00:04:00 +00:00
|
|
|
lyxerr << "Error: " << to_utf8(title0) << '\n'
|
|
|
|
<< "----------------------------------------\n"
|
|
|
|
<< to_utf8(message) << endl;
|
|
|
|
|
|
|
|
if (!use_gui)
|
|
|
|
return;
|
|
|
|
|
|
|
|
docstring const title = bformat(_("LyX: %1$s"), title0);
|
2007-01-23 12:38:20 +00:00
|
|
|
if (theApp() == 0) {
|
|
|
|
int argc = 1;
|
|
|
|
char * argv[1];
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
QMessageBox::critical(0,
|
|
|
|
toqstr(title),
|
|
|
|
toqstr(formatted(message)));
|
|
|
|
return;
|
|
|
|
}
|
2007-09-15 15:42:22 +00:00
|
|
|
QMessageBox::critical(qApp->focusWidget(),
|
2006-03-05 17:24:44 +00:00
|
|
|
toqstr(title),
|
|
|
|
toqstr(formatted(message)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-14 00:04:00 +00:00
|
|
|
void information(docstring const & title0, docstring const & message)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-11-14 00:04:00 +00:00
|
|
|
if (!use_gui || lyxerr.debugging())
|
|
|
|
lyxerr << to_utf8(title0) << '\n'
|
|
|
|
<< "----------------------------------------\n"
|
|
|
|
<< to_utf8(message) << endl;
|
|
|
|
|
|
|
|
if (!use_gui)
|
|
|
|
return;
|
|
|
|
|
|
|
|
docstring const title = bformat(_("LyX: %1$s"), title0);
|
2007-09-15 15:42:22 +00:00
|
|
|
QMessageBox::information(qApp->focusWidget(),
|
2006-03-05 17:24:44 +00:00
|
|
|
toqstr(title),
|
|
|
|
toqstr(formatted(message)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-14 00:04:00 +00:00
|
|
|
bool askForText(docstring & response, docstring const & msg,
|
2007-11-13 23:00:36 +00:00
|
|
|
docstring const & dflt)
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
2007-11-14 00:04:00 +00:00
|
|
|
if (!use_gui || lyxerr.debugging()) {
|
|
|
|
lyxerr << "----------------------------------------\n"
|
|
|
|
<< to_utf8(msg) << '\n'
|
|
|
|
<< "Assuming answer is " << to_utf8(dflt) << '\n'
|
|
|
|
<< "----------------------------------------" << endl;
|
|
|
|
if (!use_gui) {
|
|
|
|
response = dflt;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-11 08:54:10 +00:00
|
|
|
docstring const title = bformat(_("LyX: %1$s"), msg);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
bool ok;
|
2006-08-17 08:37:26 +00:00
|
|
|
QString text = QInputDialog::getText(qApp->focusWidget(),
|
2006-03-05 17:24:44 +00:00
|
|
|
toqstr(title),
|
2007-04-25 16:39:21 +00:00
|
|
|
toqstr(char_type('&') + msg),
|
2006-03-05 17:24:44 +00:00
|
|
|
QLineEdit::Normal,
|
|
|
|
toqstr(dflt), &ok);
|
|
|
|
|
2007-11-13 23:00:36 +00:00
|
|
|
if (ok && !text.isEmpty()) {
|
|
|
|
response = qstring_to_ucs4(text);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
response.clear();
|
|
|
|
return false;
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
2007-11-13 23:21:29 +00:00
|
|
|
} // namespace Alert
|
2007-11-14 00:04:00 +00:00
|
|
|
} // namespace frontend
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|