2007-10-11 14:52:00 +00:00
|
|
|
/**
|
|
|
|
* \file InsetInfo.cpp
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Bo Peng
|
2018-08-05 07:51:12 +00:00
|
|
|
* \author Jürgen Spitzmüller
|
2007-10-11 14:52:00 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "InsetInfo.h"
|
2015-03-28 20:05:41 +00:00
|
|
|
#include "LyX.h"
|
2007-12-19 18:09:00 +00:00
|
|
|
#include "Buffer.h"
|
2007-10-11 14:52:00 +00:00
|
|
|
#include "BufferParams.h"
|
|
|
|
#include "BufferView.h"
|
2010-04-19 21:36:32 +00:00
|
|
|
#include "CutAndPaste.h"
|
2018-07-27 10:14:37 +00:00
|
|
|
#include "Font.h"
|
2007-10-11 14:52:00 +00:00
|
|
|
#include "FuncRequest.h"
|
2008-06-05 15:08:46 +00:00
|
|
|
#include "FuncStatus.h"
|
2008-06-05 03:41:35 +00:00
|
|
|
#include "InsetGraphics.h"
|
2007-10-11 14:52:00 +00:00
|
|
|
#include "InsetSpecialChar.h"
|
|
|
|
#include "KeyMap.h"
|
|
|
|
#include "LaTeXFeatures.h"
|
2018-07-25 09:00:00 +00:00
|
|
|
#include "Language.h"
|
2008-06-18 18:54:31 +00:00
|
|
|
#include "LayoutFile.h"
|
2015-03-25 20:26:32 +00:00
|
|
|
#include "Length.h"
|
2007-10-11 14:52:00 +00:00
|
|
|
#include "LyXAction.h"
|
2007-10-11 15:23:52 +00:00
|
|
|
#include "LyXRC.h"
|
2010-02-12 01:44:04 +00:00
|
|
|
#include "LyXVC.h"
|
2007-10-11 14:52:00 +00:00
|
|
|
#include "Lexer.h"
|
2018-07-27 10:14:37 +00:00
|
|
|
#include "Paragraph.h"
|
|
|
|
#include "ParIterator.h"
|
2007-10-11 14:52:00 +00:00
|
|
|
#include "ParagraphParameters.h"
|
2011-02-09 17:23:20 +00:00
|
|
|
#include "version.h"
|
2007-11-01 22:17:22 +00:00
|
|
|
|
2007-12-25 22:27:32 +00:00
|
|
|
#include "frontends/Application.h"
|
|
|
|
|
2015-03-12 23:38:05 +00:00
|
|
|
#include "support/convert.h"
|
2008-02-18 07:14:42 +00:00
|
|
|
#include "support/debug.h"
|
2007-11-01 22:17:22 +00:00
|
|
|
#include "support/docstream.h"
|
2008-05-24 10:15:52 +00:00
|
|
|
#include "support/docstring_list.h"
|
2008-06-18 18:54:31 +00:00
|
|
|
#include "support/ExceptionMessage.h"
|
2007-12-19 18:09:00 +00:00
|
|
|
#include "support/FileName.h"
|
2008-06-05 03:41:35 +00:00
|
|
|
#include "support/filetools.h"
|
2007-12-25 22:27:32 +00:00
|
|
|
#include "support/gettext.h"
|
2018-07-27 10:14:37 +00:00
|
|
|
#include "support/Messages.h"
|
2007-10-11 14:52:00 +00:00
|
|
|
#include "support/lstrings.h"
|
2015-03-25 20:26:32 +00:00
|
|
|
#include "support/qstring_helpers.h"
|
2011-07-14 17:00:35 +00:00
|
|
|
#include "support/Translator.h"
|
2007-10-11 14:52:00 +00:00
|
|
|
|
2008-03-06 21:50:27 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
2015-03-25 20:26:32 +00:00
|
|
|
#include <QtGui/QImage>
|
2018-08-05 07:51:12 +00:00
|
|
|
#include <QDate>
|
|
|
|
#include <QLocale>
|
2015-03-25 20:26:32 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2007-12-12 18:57:56 +00:00
|
|
|
using namespace lyx::support;
|
2007-10-11 14:52:00 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2008-09-30 14:11:40 +00:00
|
|
|
namespace {
|
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
typedef Translator<InsetInfoParams::info_type, string> NameTranslator;
|
2008-09-30 14:11:40 +00:00
|
|
|
|
|
|
|
NameTranslator const initTranslator()
|
2017-07-03 17:53:14 +00:00
|
|
|
{
|
2018-08-06 18:07:15 +00:00
|
|
|
NameTranslator translator(InsetInfoParams::UNKNOWN_INFO, "unknown");
|
|
|
|
|
|
|
|
translator.addPair(InsetInfoParams::SHORTCUTS_INFO, "shortcuts");
|
|
|
|
translator.addPair(InsetInfoParams::SHORTCUT_INFO, "shortcut");
|
|
|
|
translator.addPair(InsetInfoParams::LYXRC_INFO, "lyxrc");
|
|
|
|
translator.addPair(InsetInfoParams::PACKAGE_INFO, "package");
|
|
|
|
translator.addPair(InsetInfoParams::TEXTCLASS_INFO, "textclass");
|
|
|
|
translator.addPair(InsetInfoParams::MENU_INFO, "menu");
|
|
|
|
translator.addPair(InsetInfoParams::ICON_INFO, "icon");
|
|
|
|
translator.addPair(InsetInfoParams::BUFFER_INFO, "buffer");
|
|
|
|
translator.addPair(InsetInfoParams::LYX_INFO, "lyxinfo");
|
|
|
|
translator.addPair(InsetInfoParams::VCS_INFO, "vcs");
|
|
|
|
translator.addPair(InsetInfoParams::DATE_INFO, "date");
|
|
|
|
translator.addPair(InsetInfoParams::MODDATE_INFO, "moddate");
|
|
|
|
translator.addPair(InsetInfoParams::FIXDATE_INFO, "fixdate");
|
2018-08-07 10:14:45 +00:00
|
|
|
translator.addPair(InsetInfoParams::TIME_INFO, "time");
|
|
|
|
translator.addPair(InsetInfoParams::MODTIME_INFO, "modtime");
|
|
|
|
translator.addPair(InsetInfoParams::FIXTIME_INFO, "fixtime");
|
2008-09-30 14:11:40 +00:00
|
|
|
|
|
|
|
return translator;
|
|
|
|
}
|
2007-10-11 14:52:00 +00:00
|
|
|
|
2008-09-30 14:11:40 +00:00
|
|
|
/// The translator between the information type enum and corresponding string.
|
|
|
|
NameTranslator const & nameTranslator()
|
|
|
|
{
|
|
|
|
static NameTranslator const translator = initTranslator();
|
|
|
|
return translator;
|
|
|
|
}
|
|
|
|
|
2018-08-05 07:51:12 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
typedef Translator<InsetInfoParams::info_type, string> DefaultValueTranslator;
|
2018-08-05 07:51:12 +00:00
|
|
|
|
|
|
|
DefaultValueTranslator const initDVTranslator()
|
|
|
|
{
|
2018-08-06 18:07:15 +00:00
|
|
|
DefaultValueTranslator translator(InsetInfoParams::UNKNOWN_INFO, "");
|
|
|
|
|
|
|
|
translator.addPair(InsetInfoParams::SHORTCUTS_INFO, "info-insert");
|
|
|
|
translator.addPair(InsetInfoParams::SHORTCUT_INFO, "info-insert");
|
|
|
|
translator.addPair(InsetInfoParams::LYXRC_INFO, "user_name");
|
|
|
|
translator.addPair(InsetInfoParams::PACKAGE_INFO, "graphics");
|
|
|
|
translator.addPair(InsetInfoParams::TEXTCLASS_INFO, "article");
|
|
|
|
translator.addPair(InsetInfoParams::MENU_INFO, "info-insert");
|
|
|
|
translator.addPair(InsetInfoParams::ICON_INFO, "info-insert");
|
2018-08-07 10:14:45 +00:00
|
|
|
translator.addPair(InsetInfoParams::BUFFER_INFO, "name-noext");
|
2018-08-06 18:07:15 +00:00
|
|
|
translator.addPair(InsetInfoParams::LYX_INFO, "version");
|
|
|
|
translator.addPair(InsetInfoParams::VCS_INFO, "revision");
|
|
|
|
translator.addPair(InsetInfoParams::DATE_INFO, "loclong");
|
|
|
|
translator.addPair(InsetInfoParams::MODDATE_INFO, "loclong");
|
|
|
|
translator.addPair(InsetInfoParams::FIXDATE_INFO, "loclong");
|
2018-08-07 10:14:45 +00:00
|
|
|
translator.addPair(InsetInfoParams::TIME_INFO, "long");
|
|
|
|
translator.addPair(InsetInfoParams::MODTIME_INFO, "long");
|
|
|
|
translator.addPair(InsetInfoParams::FIXTIME_INFO, "long");
|
2018-08-05 07:51:12 +00:00
|
|
|
|
|
|
|
return translator;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The translator between the information type enum and some sensible default value.
|
|
|
|
DefaultValueTranslator const & defaultValueTranslator()
|
|
|
|
{
|
|
|
|
static DefaultValueTranslator const translator = initDVTranslator();
|
|
|
|
return translator;
|
|
|
|
}
|
|
|
|
|
2017-07-23 11:11:54 +00:00
|
|
|
} // namespace
|
2008-09-30 14:11:40 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// InsetInfoParams
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
InsetInfoParams infoparams;
|
|
|
|
|
|
|
|
namespace{
|
|
|
|
set<string> getTexFileList(string const & filename)
|
|
|
|
{
|
|
|
|
set<string> list;
|
|
|
|
FileName const file = libFileSearch(string(), filename);
|
|
|
|
if (file.empty())
|
|
|
|
return list;
|
|
|
|
|
|
|
|
// FIXME Unicode.
|
|
|
|
vector<docstring> doclist =
|
|
|
|
getVectorFromString(file.fileContents("UTF-8"), from_ascii("\n"));
|
|
|
|
|
|
|
|
// Normalise paths like /foo//bar ==> /foo/bar
|
|
|
|
for (auto doc : doclist) {
|
|
|
|
subst(doc, from_ascii("\r"), docstring());
|
|
|
|
while (contains(doc, from_ascii("//")))
|
|
|
|
subst(doc, from_ascii("//"), from_ascii("/"));
|
|
|
|
if (!doc.empty())
|
|
|
|
list.insert(removeExtension(onlyFileName(to_utf8(doc))));
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove duplicates
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
} // namespace anon
|
|
|
|
|
2018-08-07 10:14:45 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
docstring InsetInfoParams::getDate(string const iname, QDate const date) const
|
|
|
|
{
|
|
|
|
QLocale loc;
|
|
|
|
if (lang)
|
|
|
|
loc = QLocale(toqstr(lang->code()));
|
|
|
|
if (iname == "long")
|
|
|
|
return qstring_to_ucs4(loc.toString(date, QLocale::LongFormat));
|
|
|
|
else if (iname == "short")
|
|
|
|
return qstring_to_ucs4(loc.toString(date, QLocale::ShortFormat));
|
|
|
|
else if (iname == "ISO")
|
|
|
|
return qstring_to_ucs4(date.toString(Qt::ISODate));
|
|
|
|
else if (iname == "loclong")
|
|
|
|
return qstring_to_ucs4(loc.toString(date, toqstr(lang->dateFormat(0))));
|
|
|
|
else if (iname == "locmedium")
|
|
|
|
return qstring_to_ucs4(loc.toString(date, toqstr(lang->dateFormat(1))));
|
|
|
|
else if (iname == "locshort")
|
|
|
|
return qstring_to_ucs4(loc.toString(date, toqstr(lang->dateFormat(2))));
|
|
|
|
else
|
|
|
|
return qstring_to_ucs4(loc.toString(date, toqstr(iname)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-07 10:14:45 +00:00
|
|
|
docstring InsetInfoParams::getTime(string const iname, QTime const time) const
|
|
|
|
{
|
|
|
|
QLocale loc;
|
|
|
|
if (lang)
|
|
|
|
loc = QLocale(toqstr(lang->code()));
|
|
|
|
if (iname == "long")
|
|
|
|
return qstring_to_ucs4(loc.toString(time, QLocale::LongFormat));
|
|
|
|
else if (iname == "short")
|
|
|
|
return qstring_to_ucs4(loc.toString(time, QLocale::ShortFormat));
|
|
|
|
else if (iname == "ISO")
|
|
|
|
return qstring_to_ucs4(time.toString(Qt::ISODate));
|
|
|
|
else
|
|
|
|
return qstring_to_ucs4(loc.toString(time, toqstr(iname)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
vector<pair<string,docstring>> InsetInfoParams::getArguments(Buffer const * buf,
|
|
|
|
string const & itype) const
|
|
|
|
{
|
|
|
|
vector<pair<string,docstring>> result;
|
|
|
|
|
|
|
|
switch (nameTranslator().find(itype)) {
|
|
|
|
case UNKNOWN_INFO:
|
|
|
|
result.push_back(make_pair("invalid", _("Please select a valid type!")));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHORTCUT_INFO:
|
|
|
|
case SHORTCUTS_INFO:
|
|
|
|
case MENU_INFO:
|
|
|
|
case ICON_INFO: {
|
|
|
|
result.push_back(make_pair("custom", _("Custom")));
|
|
|
|
LyXAction::const_iterator fit = lyxaction.func_begin();
|
|
|
|
LyXAction::const_iterator const fen = lyxaction.func_end();
|
|
|
|
for (; fit != fen; ++fit) {
|
|
|
|
string const lfun = fit->first;
|
|
|
|
if (!lfun.empty())
|
|
|
|
result.push_back(make_pair(lfun, from_ascii(lfun)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LYXRC_INFO: {
|
|
|
|
result.push_back(make_pair("custom", _("Custom")));
|
|
|
|
set<string> rcs = lyxrc.getRCs();
|
|
|
|
for (auto const & rc : rcs)
|
|
|
|
result.push_back(make_pair(rc, from_ascii(rc)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case PACKAGE_INFO:
|
|
|
|
case TEXTCLASS_INFO: {
|
|
|
|
result.push_back(make_pair("custom", _("Custom")));
|
|
|
|
string const filename = (itype == "package") ? "styFiles.lst"
|
|
|
|
: "clsFiles.lst";
|
|
|
|
set<string> flist = getTexFileList(filename);
|
|
|
|
for (auto const & f : flist)
|
|
|
|
result.push_back(make_pair(f, from_utf8(f)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case BUFFER_INFO:
|
2018-08-07 10:14:45 +00:00
|
|
|
result.push_back(make_pair("name", _("File name (with extension)")));
|
|
|
|
result.push_back(make_pair("name-noext", _("File name (without extension)")));
|
2018-08-06 18:07:15 +00:00
|
|
|
result.push_back(make_pair("path", _("File path")));
|
|
|
|
result.push_back(make_pair("class", _("Used text class")));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VCS_INFO: {
|
|
|
|
if (!buf->lyxvc().inUse()) {
|
|
|
|
result.push_back(make_pair("invalid", _("No version control!")));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
result.push_back(make_pair("revision", _("Revision[[Version Control]]")));
|
|
|
|
result.push_back(make_pair("tree-revision", _("Tree revision")));
|
|
|
|
result.push_back(make_pair("author", _("Author")));
|
|
|
|
result.push_back(make_pair("date", _("Date")));
|
2018-08-07 13:24:40 +00:00
|
|
|
result.push_back(make_pair("time", _("Time[[of day]]")));
|
2018-08-06 18:07:15 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case LYX_INFO:
|
|
|
|
result.push_back(make_pair("version", _("LyX version")));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FIXDATE_INFO:
|
|
|
|
case DATE_INFO:
|
2018-08-07 10:14:45 +00:00
|
|
|
case MODDATE_INFO: {
|
2018-08-06 18:07:15 +00:00
|
|
|
string const dt = split(name, '@');
|
|
|
|
QDate date;
|
|
|
|
if (itype == "moddate")
|
|
|
|
date = QDateTime::fromTime_t(buf->fileName().lastModified()).date();
|
2018-08-07 10:56:43 +00:00
|
|
|
else if (itype == "fixdate" && !dt.empty()) {
|
|
|
|
QDate const gdate = QDate::fromString(toqstr(dt), Qt::ISODate);
|
|
|
|
date = (gdate.isValid()) ? gdate : QDate::currentDate();
|
|
|
|
} else
|
2018-08-06 18:07:15 +00:00
|
|
|
date = QDate::currentDate();
|
|
|
|
result.push_back(make_pair("long",getDate("long", date)));
|
|
|
|
result.push_back(make_pair("short", getDate("short", date)));
|
|
|
|
result.push_back(make_pair("loclong", getDate("loclong", date)));
|
|
|
|
result.push_back(make_pair("locmedium", getDate("locmedium", date)));
|
|
|
|
result.push_back(make_pair("locshort", getDate("locshort", date)));
|
|
|
|
result.push_back(make_pair("ISO", getDate("ISO", date)));
|
|
|
|
result.push_back(make_pair("yyyy", getDate("yyyy", date)));
|
|
|
|
result.push_back(make_pair("MMMM", getDate("MMMM", date)));
|
|
|
|
result.push_back(make_pair("MMM", getDate("MMM", date)));
|
|
|
|
result.push_back(make_pair("dddd", getDate("dddd", date)));
|
|
|
|
result.push_back(make_pair("ddd", getDate("ddd", date)));
|
|
|
|
result.push_back(make_pair("custom", _("Custom")));
|
|
|
|
break;
|
|
|
|
}
|
2018-08-07 10:14:45 +00:00
|
|
|
case FIXTIME_INFO:
|
|
|
|
case TIME_INFO:
|
|
|
|
case MODTIME_INFO: {
|
|
|
|
string const tt = split(name, '@');
|
|
|
|
QTime time;
|
|
|
|
if (itype == "modtime")
|
|
|
|
time = QDateTime::fromTime_t(buf->fileName().lastModified()).time();
|
2018-08-07 10:56:43 +00:00
|
|
|
else if (itype == "fixtime" && !tt.empty()) {
|
|
|
|
QTime const gtime = QTime::fromString(toqstr(tt), Qt::ISODate);
|
|
|
|
time = (gtime.isValid()) ? gtime : QTime::currentTime();
|
|
|
|
} else
|
2018-08-07 10:14:45 +00:00
|
|
|
time = QTime::currentTime();
|
|
|
|
result.push_back(make_pair("long",getTime("long", time)));
|
|
|
|
result.push_back(make_pair("short", getTime("short", time)));
|
|
|
|
result.push_back(make_pair("ISO", getTime("ISO", time)));
|
|
|
|
result.push_back(make_pair("custom", _("Custom")));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-08-06 18:07:15 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string InsetInfoParams::infoType() const
|
|
|
|
{
|
|
|
|
return nameTranslator().find(type);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-09-30 14:11:40 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// InsetInfo
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2017-07-03 17:53:14 +00:00
|
|
|
|
|
|
|
InsetInfo::InsetInfo(Buffer * buf, string const & name)
|
2018-08-06 18:07:15 +00:00
|
|
|
: InsetCollapsible(buf), initialized_(false)
|
2007-10-11 14:52:00 +00:00
|
|
|
{
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.type = InsetInfoParams::UNKNOWN_INFO;
|
|
|
|
params_.force_ltr = false;
|
2007-10-11 14:52:00 +00:00
|
|
|
setInfo(name);
|
2008-10-26 02:25:57 +00:00
|
|
|
status_ = Collapsed;
|
2007-10-11 14:52:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-06 03:25:36 +00:00
|
|
|
Inset * InsetInfo::editXY(Cursor & cur, int x, int y)
|
2007-10-11 14:52:00 +00:00
|
|
|
{
|
2010-01-31 01:44:49 +00:00
|
|
|
// do not allow the cursor to be set in this Inset
|
|
|
|
return Inset::editXY(cur, x, y);
|
2007-10-11 14:52:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-28 22:33:04 +00:00
|
|
|
docstring InsetInfo::layoutName() const
|
2008-06-06 04:10:42 +00:00
|
|
|
{
|
2018-08-06 18:07:15 +00:00
|
|
|
return from_ascii("Info:" + params_.infoType());
|
2008-06-06 04:10:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-04 09:57:37 +00:00
|
|
|
docstring InsetInfo::toolTip(BufferView const &, int, int) const
|
2008-06-04 07:15:43 +00:00
|
|
|
{
|
2018-07-29 16:28:18 +00:00
|
|
|
docstring result;
|
2018-08-06 18:07:15 +00:00
|
|
|
switch (nameTranslator().find(params_.infoType())) {
|
|
|
|
case InsetInfoParams::UNKNOWN_INFO:
|
2018-07-29 16:28:18 +00:00
|
|
|
result = _("Invalid information inset");
|
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::SHORTCUT_INFO:
|
2018-07-29 16:28:18 +00:00
|
|
|
result = bformat(_("The keybard shortcut for the function '%1$s'"),
|
2018-08-06 18:07:15 +00:00
|
|
|
from_utf8(params_.name));
|
2018-07-29 16:28:18 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::SHORTCUTS_INFO:
|
2018-07-29 16:28:18 +00:00
|
|
|
result = bformat(_("The keybard shortcuts for the function '%1$s'"),
|
2018-08-06 18:07:15 +00:00
|
|
|
from_utf8(params_.name));
|
2018-07-29 16:28:18 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::MENU_INFO:
|
2018-07-29 16:28:18 +00:00
|
|
|
result = bformat(_("The menu location for the function '%1$s'"),
|
2018-08-06 18:07:15 +00:00
|
|
|
from_utf8(params_.name));
|
2018-07-29 16:28:18 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::ICON_INFO:
|
2018-07-29 16:28:18 +00:00
|
|
|
result = bformat(_("The toolbar icon for the function '%1$s'"),
|
2018-08-06 18:07:15 +00:00
|
|
|
from_utf8(params_.name));
|
2018-07-29 16:28:18 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::LYXRC_INFO:
|
2018-07-29 16:28:18 +00:00
|
|
|
result = bformat(_("The preference setting for the preference key '%1$s'"),
|
2018-08-06 18:07:15 +00:00
|
|
|
from_utf8(params_.name));
|
2018-07-29 16:28:18 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::PACKAGE_INFO:
|
2018-07-29 16:28:18 +00:00
|
|
|
result = bformat(_("Availability of the LaTeX package '%1$s'"),
|
2018-08-06 18:07:15 +00:00
|
|
|
from_utf8(params_.name));
|
2018-07-29 16:28:18 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::TEXTCLASS_INFO:
|
2018-07-29 16:28:18 +00:00
|
|
|
result = bformat(_("Availability of the LaTeX class '%1$s'"),
|
2018-08-06 18:07:15 +00:00
|
|
|
from_utf8(params_.name));
|
2018-07-29 16:28:18 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::BUFFER_INFO:
|
|
|
|
if (params_.name == "name")
|
2018-08-07 10:14:45 +00:00
|
|
|
result = _("The name of this file (incl. extension)");
|
|
|
|
else if (params_.name == "name-noext")
|
|
|
|
result = _("The name of this file (without extension)");
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "path")
|
2018-07-30 15:02:28 +00:00
|
|
|
result = _("The path where this file is saved");
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "class")
|
2018-07-29 16:28:18 +00:00
|
|
|
result = _("The class this document uses");
|
2018-07-29 17:41:34 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::VCS_INFO:
|
|
|
|
if (params_.name == "revision")
|
2018-07-29 16:28:18 +00:00
|
|
|
result = _("Version control revision");
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "tree-revision")
|
2018-07-29 16:28:18 +00:00
|
|
|
result = _("Version control tree revision");
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "author")
|
2018-07-29 16:28:18 +00:00
|
|
|
result = _("Version control author");
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "date")
|
2018-07-29 16:28:18 +00:00
|
|
|
result = _("Version control date");
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "time")
|
2018-07-29 16:28:18 +00:00
|
|
|
result = _("Version control time");
|
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::LYX_INFO:
|
2018-07-29 16:28:18 +00:00
|
|
|
result = _("The current LyX version");
|
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::DATE_INFO:
|
2018-08-05 07:51:12 +00:00
|
|
|
result = _("The current date");
|
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::MODDATE_INFO:
|
2018-08-05 07:51:12 +00:00
|
|
|
result = _("The date of last save");
|
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::FIXDATE_INFO:
|
2018-08-05 07:51:12 +00:00
|
|
|
result = _("A static date");
|
|
|
|
break;
|
2018-08-07 10:14:45 +00:00
|
|
|
case InsetInfoParams::TIME_INFO:
|
|
|
|
result = _("The current time");
|
|
|
|
break;
|
|
|
|
case InsetInfoParams::MODTIME_INFO:
|
|
|
|
result = _("The time of last save");
|
|
|
|
break;
|
|
|
|
case InsetInfoParams::FIXTIME_INFO:
|
|
|
|
result = _("A static time");
|
|
|
|
break;
|
2018-07-29 16:28:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2008-06-04 07:15:43 +00:00
|
|
|
}
|
|
|
|
|
2007-10-11 14:52:00 +00:00
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetInfo::read(Lexer & lex)
|
2007-10-11 14:52:00 +00:00
|
|
|
{
|
|
|
|
string token;
|
|
|
|
while (lex.isOK()) {
|
|
|
|
lex.next();
|
|
|
|
token = lex.getString();
|
|
|
|
if (token == "type") {
|
|
|
|
lex.next();
|
|
|
|
token = lex.getString();
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.type = nameTranslator().find(token);
|
2007-10-11 14:52:00 +00:00
|
|
|
} else if (token == "arg") {
|
2008-10-23 13:12:19 +00:00
|
|
|
lex.next(true);
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.name = lex.getString();
|
2007-10-11 14:52:00 +00:00
|
|
|
} else if (token == "\\end_inset")
|
|
|
|
break;
|
2017-07-03 17:53:14 +00:00
|
|
|
}
|
2007-10-11 14:52:00 +00:00
|
|
|
if (token != "\\end_inset") {
|
|
|
|
lex.printError("Missing \\end_inset at this point");
|
|
|
|
throw ExceptionMessage(WarningException,
|
|
|
|
_("Missing \\end_inset at this point."),
|
|
|
|
from_utf8(token));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetInfo::write(ostream & os) const
|
2007-10-11 14:52:00 +00:00
|
|
|
{
|
2018-08-06 18:07:15 +00:00
|
|
|
os << "Info\ntype \"" << params_.infoType()
|
|
|
|
<< "\"\narg " << Lexer::quoteString(params_.name);
|
2007-10-11 14:52:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-30 11:15:05 +00:00
|
|
|
bool InsetInfo::validateModifyArgument(docstring const & arg) const
|
2008-06-06 08:01:59 +00:00
|
|
|
{
|
2008-08-03 22:14:04 +00:00
|
|
|
string type;
|
2018-08-05 07:51:12 +00:00
|
|
|
string name = trim(split(to_utf8(arg), type, ' '));
|
2010-04-17 13:34:13 +00:00
|
|
|
|
2008-08-03 22:14:04 +00:00
|
|
|
switch (nameTranslator().find(type)) {
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::UNKNOWN_INFO:
|
2008-08-03 22:14:04 +00:00
|
|
|
return false;
|
2010-04-17 13:34:13 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::SHORTCUT_INFO:
|
|
|
|
case InsetInfoParams::SHORTCUTS_INFO:
|
|
|
|
case InsetInfoParams::MENU_INFO: {
|
2008-08-03 22:14:04 +00:00
|
|
|
FuncRequest func = lyxaction.lookupFunc(name);
|
2010-04-09 19:00:42 +00:00
|
|
|
return func.action() != LFUN_UNKNOWN_ACTION;
|
2008-08-03 22:14:04 +00:00
|
|
|
}
|
2010-04-17 13:34:13 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::ICON_INFO: {
|
2015-12-11 07:51:37 +00:00
|
|
|
FuncCode const action = lyxaction.lookupFunc(name).action();
|
|
|
|
if (action == LFUN_UNKNOWN_ACTION) {
|
|
|
|
string dir = "images";
|
|
|
|
return !imageLibFileSearch(dir, name, "svgz,png").empty();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::LYXRC_INFO: {
|
2018-08-01 07:28:03 +00:00
|
|
|
set<string> rcs = lyxrc.getRCs();
|
|
|
|
return rcs.find(name) != rcs.end();
|
2008-08-03 22:14:04 +00:00
|
|
|
}
|
2010-04-17 13:34:13 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::PACKAGE_INFO:
|
|
|
|
case InsetInfoParams::TEXTCLASS_INFO:
|
2008-08-03 22:14:04 +00:00
|
|
|
return true;
|
2010-04-17 13:34:13 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::BUFFER_INFO:
|
2018-08-07 10:14:45 +00:00
|
|
|
return (name == "name" || name == "name-noext"
|
|
|
|
|| name == "path" || name == "class");
|
2018-07-29 17:41:34 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::VCS_INFO:
|
2018-07-29 17:41:34 +00:00
|
|
|
if (name == "revision" || name == "tree-revision"
|
|
|
|
|| name == "author" || name == "date" || name == "time")
|
2010-04-17 13:34:13 +00:00
|
|
|
return buffer().lyxvc().inUse();
|
|
|
|
return false;
|
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::LYX_INFO:
|
2010-04-17 13:04:41 +00:00
|
|
|
return name == "version";
|
2018-08-05 07:51:12 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::FIXDATE_INFO: {
|
2018-08-05 07:51:12 +00:00
|
|
|
string date;
|
|
|
|
string piece;
|
|
|
|
date = split(name, piece, '@');
|
|
|
|
if (!date.empty() && !QDate::fromString(toqstr(date), Qt::ISODate).isValid())
|
|
|
|
return false;
|
|
|
|
if (!piece.empty())
|
|
|
|
name = piece;
|
|
|
|
}
|
|
|
|
// fall through
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::DATE_INFO:
|
|
|
|
case InsetInfoParams::MODDATE_INFO: {
|
2018-08-05 07:51:12 +00:00
|
|
|
if (name == "long" || name == "short" || name == "ISO")
|
|
|
|
return true;
|
|
|
|
else {
|
|
|
|
QDate date = QDate::currentDate();
|
|
|
|
return !date.toString(toqstr(name)).isEmpty();
|
|
|
|
}
|
|
|
|
}
|
2018-08-07 10:14:45 +00:00
|
|
|
case InsetInfoParams::FIXTIME_INFO: {
|
|
|
|
string time;
|
|
|
|
string piece;
|
|
|
|
time = split(name, piece, '@');
|
|
|
|
if (!time.empty() && !QTime::fromString(toqstr(time), Qt::ISODate).isValid())
|
|
|
|
return false;
|
|
|
|
if (!piece.empty())
|
|
|
|
name = piece;
|
|
|
|
}
|
|
|
|
// fall through
|
|
|
|
case InsetInfoParams::TIME_INFO:
|
|
|
|
case InsetInfoParams::MODTIME_INFO: {
|
|
|
|
if (name == "long" || name == "short" || name == "ISO")
|
|
|
|
return true;
|
|
|
|
else {
|
|
|
|
QTime time = QTime::currentTime();
|
|
|
|
return !time.toString(toqstr(name)).isEmpty();
|
|
|
|
}
|
|
|
|
}
|
2008-08-03 22:14:04 +00:00
|
|
|
}
|
2010-04-17 13:34:13 +00:00
|
|
|
|
2008-08-03 22:14:04 +00:00
|
|
|
return false;
|
2008-06-06 08:01:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-05 15:08:46 +00:00
|
|
|
bool InsetInfo::showInsetDialog(BufferView * bv) const
|
|
|
|
{
|
2008-06-05 15:28:27 +00:00
|
|
|
bv->showDialog("info");
|
2008-06-05 15:08:46 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetInfo::getStatus(Cursor & cur, FuncRequest const & cmd,
|
|
|
|
FuncStatus & flag) const
|
|
|
|
{
|
2010-04-09 19:00:42 +00:00
|
|
|
switch (cmd.action()) {
|
2010-03-06 17:47:50 +00:00
|
|
|
case LFUN_INSET_SETTINGS:
|
2017-10-16 08:12:21 +00:00
|
|
|
return InsetCollapsible::getStatus(cur, cmd, flag);
|
2010-11-29 09:47:46 +00:00
|
|
|
|
2009-04-18 05:57:02 +00:00
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
2010-04-19 21:36:32 +00:00
|
|
|
case LFUN_INSET_COPY_AS:
|
2009-04-18 05:57:02 +00:00
|
|
|
flag.setEnabled(true);
|
|
|
|
return true;
|
2010-11-29 09:47:46 +00:00
|
|
|
|
2010-03-09 23:04:35 +00:00
|
|
|
case LFUN_INSET_MODIFY:
|
|
|
|
if (validateModifyArgument(cmd.argument())) {
|
|
|
|
flag.setEnabled(true);
|
2018-08-05 07:51:12 +00:00
|
|
|
string typestr;
|
|
|
|
string name = trim(split(to_utf8(cmd.argument()), typestr, ' '));
|
2018-08-06 18:07:15 +00:00
|
|
|
InsetInfoParams::info_type type = nameTranslator().find(typestr);
|
|
|
|
string origname = params_.name;
|
2018-08-07 10:14:45 +00:00
|
|
|
if (type == InsetInfoParams::FIXDATE_INFO
|
|
|
|
|| type == InsetInfoParams::FIXTIME_INFO)
|
2018-08-06 18:07:15 +00:00
|
|
|
split(params_.name, origname, '@');
|
|
|
|
flag.setOnOff(type == params_.type && name == origname);
|
2010-03-09 23:04:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
2010-04-18 23:35:59 +00:00
|
|
|
//fall through
|
2010-11-29 09:47:46 +00:00
|
|
|
|
2008-06-05 15:08:46 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-11 14:52:00 +00:00
|
|
|
void InsetInfo::doDispatch(Cursor & cur, FuncRequest & cmd)
|
|
|
|
{
|
2010-04-09 19:00:42 +00:00
|
|
|
switch (cmd.action()) {
|
2008-06-06 08:45:58 +00:00
|
|
|
case LFUN_INSET_MODIFY:
|
2010-11-29 09:47:46 +00:00
|
|
|
cur.recordUndo();
|
2008-06-06 08:45:58 +00:00
|
|
|
setInfo(to_utf8(cmd.argument()));
|
2017-12-28 19:41:47 +00:00
|
|
|
cur.forceBufferUpdate();
|
2017-10-03 21:28:35 +00:00
|
|
|
initialized_ = false;
|
2008-06-06 08:45:58 +00:00
|
|
|
break;
|
|
|
|
|
2010-04-19 21:36:32 +00:00
|
|
|
case LFUN_INSET_COPY_AS: {
|
|
|
|
cap::clearSelection();
|
|
|
|
Cursor copy(cur);
|
|
|
|
copy.pushBackward(*this);
|
|
|
|
copy.pit() = 0;
|
|
|
|
copy.pos() = 0;
|
|
|
|
copy.resetAnchor();
|
|
|
|
copy.pit() = copy.lastpit();
|
|
|
|
copy.pos() = copy.lastpos();
|
|
|
|
copy.setSelection();
|
|
|
|
cap::copySelection(copy);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-10-11 14:52:00 +00:00
|
|
|
default:
|
2017-10-16 08:12:21 +00:00
|
|
|
InsetCollapsible::doDispatch(cur, cmd);
|
2007-10-11 14:52:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetInfo::setInfo(string const & name)
|
|
|
|
{
|
|
|
|
if (name.empty())
|
|
|
|
return;
|
2018-08-05 07:51:12 +00:00
|
|
|
|
|
|
|
string saved_date_specifier;
|
|
|
|
// Store old date specifier for potential re-use
|
2018-08-06 18:07:15 +00:00
|
|
|
if (!params_.name.empty())
|
|
|
|
saved_date_specifier = split(params_.name, '@');
|
2007-10-11 14:52:00 +00:00
|
|
|
// info_type name
|
|
|
|
string type;
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.name = trim(split(name, type, ' '));
|
|
|
|
params_.type = nameTranslator().find(type);
|
|
|
|
if (params_.name.empty())
|
|
|
|
params_.name = defaultValueTranslator().find(params_.type);
|
|
|
|
if (params_.type == InsetInfoParams::FIXDATE_INFO) {
|
|
|
|
string const date_specifier = split(params_.name, '@');
|
2018-08-05 07:51:12 +00:00
|
|
|
// If an explicit new fix date is specified, use that
|
|
|
|
// Otherwise, use the old one or, if there is none,
|
|
|
|
// the current date
|
|
|
|
if (date_specifier.empty()) {
|
|
|
|
if (saved_date_specifier.empty())
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.name += "@" + fromqstr(QDate::currentDate().toString(Qt::ISODate));
|
2018-08-05 07:51:12 +00:00
|
|
|
else
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.name += "@" + saved_date_specifier;
|
2018-08-05 07:51:12 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-07 10:14:45 +00:00
|
|
|
else if (params_.type == InsetInfoParams::FIXTIME_INFO) {
|
|
|
|
string const time_specifier = split(params_.name, '@');
|
|
|
|
// If an explicit new fix time is specified, use that
|
|
|
|
// Otherwise, use the old one or, if there is none,
|
|
|
|
// the current time
|
|
|
|
if (time_specifier.empty()) {
|
|
|
|
if (saved_date_specifier.empty())
|
|
|
|
params_.name += "@" + fromqstr(QTime::currentTime().toString(Qt::ISODate));
|
|
|
|
else
|
|
|
|
params_.name += "@" + saved_date_specifier;
|
|
|
|
}
|
|
|
|
}
|
2007-10-11 14:52:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-27 10:14:37 +00:00
|
|
|
void InsetInfo::error(docstring const & err, Language const * lang)
|
2008-06-06 09:33:24 +00:00
|
|
|
{
|
2018-08-06 18:07:15 +00:00
|
|
|
setText(bformat(translateIfPossible(err, lang->code()), from_utf8(params_.name)),
|
2018-07-27 10:14:37 +00:00
|
|
|
Font(inherit_font, lang), false);
|
2008-06-06 09:33:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-27 10:14:37 +00:00
|
|
|
void InsetInfo::info(docstring const & err, Language const * lang)
|
2008-06-06 09:33:24 +00:00
|
|
|
{
|
2018-07-27 10:14:37 +00:00
|
|
|
setText(translateIfPossible(err, lang->code()),
|
|
|
|
Font(inherit_font, lang), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetInfo::setText(docstring const & str, Language const * lang)
|
|
|
|
{
|
|
|
|
setText(str, Font(inherit_font, lang), false);
|
2008-06-06 09:33:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-25 09:00:00 +00:00
|
|
|
bool InsetInfo::forceLTR() const
|
|
|
|
{
|
2018-08-06 18:07:15 +00:00
|
|
|
return params_.force_ltr;
|
2018-07-25 09:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-03 21:28:35 +00:00
|
|
|
void InsetInfo::updateBuffer(ParIterator const & it, UpdateType utype) {
|
2017-12-28 19:41:47 +00:00
|
|
|
// If the Buffer is a clone, then we neither need nor want to do any
|
|
|
|
// of what follows. We want, rather, just to inherit how things were
|
|
|
|
// in the original Buffer. This is especially important for VCS.
|
|
|
|
// Otherwise, we could in principle have different settings here
|
|
|
|
// than in the Buffer we were exporting.
|
|
|
|
if (buffer().isClone())
|
|
|
|
return;
|
|
|
|
|
2017-07-03 17:53:14 +00:00
|
|
|
BufferParams const & bp = buffer().params();
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.lang = it.paragraph().getFontSettings(bp, it.pos()).language();
|
2018-07-27 10:14:37 +00:00
|
|
|
Language const * tryguilang = languages.getFromCode(Messages::guiLanguage());
|
|
|
|
// Some info insets use the language of the GUI (if available)
|
2018-08-06 18:07:15 +00:00
|
|
|
Language const * guilang = tryguilang ? tryguilang : params_.lang;
|
2018-07-27 10:14:37 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.force_ltr = !params_.lang->rightToLeft();
|
2018-07-27 10:14:37 +00:00
|
|
|
// This is just to get the string into the po files
|
|
|
|
docstring gui;
|
2018-08-06 18:07:15 +00:00
|
|
|
switch (params_.type) {
|
|
|
|
case InsetInfoParams::UNKNOWN_INFO:
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("Unknown Info!");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("Unknown Info!"), params_.lang);
|
2017-10-03 21:28:35 +00:00
|
|
|
initialized_ = false;
|
2007-10-11 14:52:00 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::SHORTCUT_INFO:
|
|
|
|
case InsetInfoParams::SHORTCUTS_INFO: {
|
2017-12-28 19:41:47 +00:00
|
|
|
// shortcuts can change, so we need to re-do this each time
|
2018-08-06 18:07:15 +00:00
|
|
|
FuncRequest const func = lyxaction.lookupFunc(params_.name);
|
2010-04-09 19:00:42 +00:00
|
|
|
if (func.action() == LFUN_UNKNOWN_ACTION) {
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("Unknown action %1$s");
|
2018-08-06 18:07:15 +00:00
|
|
|
error(from_ascii("Unknown action %1$s"), params_.lang);
|
2008-06-06 09:33:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
KeyMap::Bindings bindings = theTopLevelKeymap().findBindings(func);
|
|
|
|
if (bindings.empty()) {
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("undefined");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("undefined"), params_.lang);
|
2008-06-06 09:33:24 +00:00
|
|
|
break;
|
2008-06-05 03:41:35 +00:00
|
|
|
}
|
2018-08-09 14:56:41 +00:00
|
|
|
docstring sequence;
|
2018-08-06 18:07:15 +00:00
|
|
|
if (params_.type == InsetInfoParams::SHORTCUT_INFO)
|
2018-08-09 14:56:41 +00:00
|
|
|
sequence = bindings.begin()->print(KeySequence::ForGui);
|
2008-06-06 09:33:24 +00:00
|
|
|
else
|
2018-08-09 14:56:41 +00:00
|
|
|
sequence = theTopLevelKeymap().printBindings(func, KeySequence::ForGui);
|
|
|
|
// QKeySequence returns special characters for keys on the mac
|
|
|
|
// Since these are not included in many fonts, we
|
|
|
|
// re-translate them to textual names (see #10641)
|
|
|
|
odocstringstream ods;
|
2018-08-09 15:23:05 +00:00
|
|
|
string const lcode = params_.lang->code();
|
2018-08-09 14:56:41 +00:00
|
|
|
for (size_t n = 0; n < sequence.size(); ++n) {
|
|
|
|
char_type const c = sequence[n];
|
|
|
|
switch(c) {
|
|
|
|
case 0x21b5://Return
|
|
|
|
gui = _("Return[[Key]]");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Return[[Key]]"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x21b9://Tab both directions (Win)
|
|
|
|
gui = _("Tab[[Key]]");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Tab[[Key]]"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x21de://Qt::Key_PageUp
|
|
|
|
gui = _("PgUp");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("PgUp"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x21df://Qt::Key_PageDown
|
|
|
|
gui = _("PgDown");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("PgDown"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x21e4://Qt::Key_Backtab
|
|
|
|
gui = _("Backtab");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Backtab"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x21e5://Qt::Key_Tab
|
|
|
|
gui = _("Tab");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Tab"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x21e7://Shift
|
|
|
|
gui = _("Shift");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Shift"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x21ea://Qt::Key_CapsLock
|
|
|
|
gui = _("CapsLock");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("CapsLock"), lcode);
|
|
|
|
break;
|
|
|
|
case 0x2303://Control
|
|
|
|
gui = _("Control[[Key]]");
|
|
|
|
ods << translateIfPossible(from_ascii("Control[[Key]]"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x2318://CMD
|
|
|
|
gui = _("Command[[Key]]");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Command[[Key]]"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x2324://Qt::Key_Enter
|
|
|
|
gui = _("Return[[Key]]");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Return[[Key]]"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x2325://Option key
|
|
|
|
gui = _("Option[[Key]]");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Option[[Key]]"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x2326://Qt::Key_Delete
|
|
|
|
gui = _("Delete[[Key]]");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Delete[[Key]]"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x232b://Qt::Key_Backspace
|
|
|
|
gui = _("Fn+Del");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Fn+Delete"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
case 0x238b://Qt::Key_Escape
|
|
|
|
gui = _("Esc");
|
2018-08-09 15:23:05 +00:00
|
|
|
ods << translateIfPossible(from_ascii("Esc"), lcode);
|
2018-08-09 14:56:41 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ods.put(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setText(ods.str(), guilang);
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.force_ltr = !guilang->rightToLeft() && !params_.lang->rightToLeft();
|
2008-06-05 03:41:35 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::LYXRC_INFO: {
|
2017-12-28 19:41:47 +00:00
|
|
|
// this information could change, if the preferences are changed,
|
2017-10-03 21:28:35 +00:00
|
|
|
// so we will recalculate each time through.
|
2007-10-11 15:23:52 +00:00
|
|
|
ostringstream oss;
|
2018-08-06 18:07:15 +00:00
|
|
|
if (params_.name.empty()) {
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("undefined");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("undefined"), params_.lang);
|
2010-04-23 11:46:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-10-03 21:28:35 +00:00
|
|
|
// FIXME this uses the serialization mechanism to get the info
|
|
|
|
// we want, which i guess works but is a bit strange.
|
2018-08-06 18:07:15 +00:00
|
|
|
lyxrc.write(oss, true, params_.name);
|
2007-10-11 15:23:52 +00:00
|
|
|
string result = oss.str();
|
2010-04-23 11:46:24 +00:00
|
|
|
if (result.size() < 2) {
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("undefined");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("undefined"), params_.lang);
|
2010-04-23 11:46:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
string::size_type loc = result.rfind("\n", result.size() - 2);
|
|
|
|
loc = loc == string::npos ? 0 : loc + 1;
|
2018-08-06 18:07:15 +00:00
|
|
|
if (result.size() < loc + params_.name.size() + 1
|
|
|
|
|| result.substr(loc + 1, params_.name.size()) != params_.name) {
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("undefined");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("undefined"), params_.lang);
|
2010-04-23 11:46:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// remove leading comments and \\name and space
|
2018-08-06 18:07:15 +00:00
|
|
|
result = result.substr(loc + params_.name.size() + 2);
|
2017-07-03 17:53:14 +00:00
|
|
|
|
2007-10-11 15:23:52 +00:00
|
|
|
// remove \n and ""
|
|
|
|
result = rtrim(result, "\n");
|
|
|
|
result = trim(result, "\"");
|
2018-08-07 12:57:44 +00:00
|
|
|
gui = _("not set");
|
|
|
|
if (result.empty())
|
|
|
|
result = "not set";
|
2018-08-06 18:07:15 +00:00
|
|
|
setText(from_utf8(result), params_.lang);
|
2007-10-11 15:23:52 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::PACKAGE_INFO:
|
2017-10-03 21:28:35 +00:00
|
|
|
// only need to do this once.
|
|
|
|
if (initialized_)
|
|
|
|
break;
|
2007-10-11 14:52:00 +00:00
|
|
|
// check in packages.lst
|
2018-08-06 18:07:15 +00:00
|
|
|
if (LaTeXFeatures::isAvailable(params_.name)) {
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("yes");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("yes"), params_.lang);
|
2018-07-27 10:14:37 +00:00
|
|
|
} else {
|
|
|
|
gui = _("no");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("no"), params_.lang);
|
2018-07-27 10:14:37 +00:00
|
|
|
}
|
2017-10-03 21:28:35 +00:00
|
|
|
initialized_ = true;
|
2007-10-11 14:52:00 +00:00
|
|
|
break;
|
2010-04-22 19:36:03 +00:00
|
|
|
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::TEXTCLASS_INFO: {
|
2017-12-28 19:41:47 +00:00
|
|
|
// the TextClass can change
|
2010-04-22 19:36:03 +00:00
|
|
|
LayoutFileList const & list = LayoutFileList::get();
|
|
|
|
bool available = false;
|
2018-08-06 18:07:15 +00:00
|
|
|
// params_.name is the class name
|
|
|
|
if (list.haveClass(params_.name))
|
|
|
|
available = list[params_.name].isTeXClassAvailable();
|
2018-07-27 10:14:37 +00:00
|
|
|
if (available) {
|
|
|
|
gui = _("yes");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("yes"), params_.lang);
|
2018-07-27 10:14:37 +00:00
|
|
|
} else {
|
|
|
|
gui = _("no");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("no"), params_.lang);
|
2018-07-27 10:14:37 +00:00
|
|
|
}
|
2007-10-11 14:52:00 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::MENU_INFO: {
|
2017-10-03 21:28:35 +00:00
|
|
|
// only need to do this once.
|
|
|
|
if (initialized_)
|
|
|
|
break;
|
2008-05-24 10:15:52 +00:00
|
|
|
docstring_list names;
|
2018-08-08 13:50:04 +00:00
|
|
|
FuncRequest func = lyxaction.lookupFunc(params_.name);
|
2010-04-09 19:00:42 +00:00
|
|
|
if (func.action() == LFUN_UNKNOWN_ACTION) {
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("Unknown action %1$s");
|
2018-08-06 18:07:15 +00:00
|
|
|
error(from_ascii("Unknown action %1$s"), params_.lang);
|
2007-10-11 15:14:11 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-08-08 13:50:04 +00:00
|
|
|
if (func.action() == LFUN_BUFFER_VIEW || func.action() == LFUN_BUFFER_UPDATE)
|
|
|
|
// The default output format is in the menu without argument,
|
|
|
|
// so strip it here.
|
|
|
|
if (func.argument() == from_ascii(buffer().params().getDefaultOutputFormat()))
|
|
|
|
func = FuncRequest(func.action());
|
2007-10-11 15:14:11 +00:00
|
|
|
// iterate through the menubackend to find it
|
2011-01-06 18:40:39 +00:00
|
|
|
if (!theApp()) {
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("Can't determine menu entry for action %1$s in batch mode");
|
2018-08-06 18:07:15 +00:00
|
|
|
error(from_ascii("Can't determine menu entry for action %1$s in batch mode"), params_.lang);
|
2018-08-08 13:05:58 +00:00
|
|
|
initialized_ = true;
|
2011-01-06 18:40:39 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-08-08 13:05:58 +00:00
|
|
|
// and we will not keep trying if we fail
|
|
|
|
initialized_ = theApp()->hasBufferView();
|
2008-03-06 21:50:27 +00:00
|
|
|
if (!theApp()->searchMenu(func, names)) {
|
2018-07-27 10:14:37 +00:00
|
|
|
gui = _("No menu entry for action %1$s");
|
2018-08-06 18:07:15 +00:00
|
|
|
error(from_ascii("No menu entry for action %1$s"), params_.lang);
|
2007-10-11 15:14:11 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-09-30 14:11:40 +00:00
|
|
|
// if found, return its path.
|
|
|
|
clear();
|
|
|
|
Paragraph & par = paragraphs().front();
|
2018-07-27 10:14:37 +00:00
|
|
|
Font const f(inherit_font, guilang);
|
2018-08-06 18:07:15 +00:00
|
|
|
params_.force_ltr = !guilang->rightToLeft();
|
2008-09-30 14:11:40 +00:00
|
|
|
//Font fu = f;
|
|
|
|
//fu.fontInfo().setUnderbar(FONT_ON);
|
2017-12-14 12:39:37 +00:00
|
|
|
for (docstring const & name : names) {
|
2007-10-11 15:14:11 +00:00
|
|
|
// do not insert > for the top level menu item
|
2017-12-14 12:39:37 +00:00
|
|
|
if (&name != &names.front())
|
2008-09-30 14:11:40 +00:00
|
|
|
par.insertInset(par.size(), new InsetSpecialChar(InsetSpecialChar::MENU_SEPARATOR),
|
2013-05-19 10:28:11 +00:00
|
|
|
f, Change(Change::UNCHANGED));
|
2008-09-30 14:11:40 +00:00
|
|
|
//FIXME: add proper underlines here. This
|
|
|
|
// involves rewriting searchMenu used above to
|
|
|
|
// return a vector of menus. If we do not do
|
|
|
|
// that, we might as well use below
|
|
|
|
// Paragraph::insert on each string (JMarc)
|
2017-12-14 12:39:37 +00:00
|
|
|
for (char_type c : name)
|
|
|
|
par.insertChar(par.size(), c, f, Change(Change::UNCHANGED));
|
2007-10-11 15:14:11 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::ICON_INFO: {
|
2017-10-03 21:28:35 +00:00
|
|
|
// only need to do this once.
|
|
|
|
if (initialized_)
|
|
|
|
break;
|
|
|
|
// and we will not keep trying if we fail
|
|
|
|
initialized_ = true;
|
2018-08-06 18:07:15 +00:00
|
|
|
FuncRequest func = lyxaction.lookupFunc(params_.name);
|
2011-01-06 18:40:39 +00:00
|
|
|
docstring icon_name = frontend::Application::iconName(func, true);
|
2015-03-24 01:58:45 +00:00
|
|
|
// FIXME: We should use the icon directly instead of
|
2008-09-30 14:11:40 +00:00
|
|
|
// going through FileName. The code below won't work
|
|
|
|
// if the icon is embedded in the executable through
|
|
|
|
// the Qt resource system.
|
2011-01-06 18:40:39 +00:00
|
|
|
// This is only a negligible performance problem:
|
|
|
|
// If the installed icon differs from the resource icon the
|
|
|
|
// installed one is preferred anyway, and all icons that are
|
|
|
|
// embedded in the resources are installed as well.
|
2008-06-05 08:49:19 +00:00
|
|
|
FileName file(to_utf8(icon_name));
|
2015-03-28 11:45:20 +00:00
|
|
|
if (file.onlyFileNameWithoutExt() == "unknown") {
|
|
|
|
string dir = "images";
|
2018-08-06 18:07:15 +00:00
|
|
|
FileName file2(imageLibFileSearch(dir, params_.name, "svgz,png"));
|
2015-03-28 11:45:20 +00:00
|
|
|
if (!file2.empty())
|
|
|
|
file = file2;
|
|
|
|
}
|
2008-06-05 08:49:19 +00:00
|
|
|
if (!file.exists())
|
2008-06-05 03:41:35 +00:00
|
|
|
break;
|
2015-03-25 20:26:32 +00:00
|
|
|
int percent_scale = 100;
|
2015-03-28 20:05:41 +00:00
|
|
|
if (use_gui) {
|
2015-03-31 14:03:16 +00:00
|
|
|
// Compute the scale factor for the icon such that its
|
2015-03-30 23:26:48 +00:00
|
|
|
// width on screen is equal to 1em in pixels.
|
|
|
|
// The scale factor is rounded to the integer nearest
|
|
|
|
// to the float value of the ratio 100*iconsize/imgsize.
|
2015-03-28 20:05:41 +00:00
|
|
|
int imgsize = QImage(toqstr(file.absFileName())).width();
|
|
|
|
if (imgsize > 0) {
|
|
|
|
int iconsize = Length(1, Length::EM).inPixels(1);
|
|
|
|
percent_scale = (100 * iconsize + imgsize / 2)/imgsize;
|
|
|
|
}
|
2015-03-25 20:26:32 +00:00
|
|
|
}
|
2009-11-08 15:53:21 +00:00
|
|
|
InsetGraphics * inset = new InsetGraphics(buffer_);
|
2008-06-05 03:41:35 +00:00
|
|
|
InsetGraphicsParams igp;
|
|
|
|
igp.filename = file;
|
2015-03-25 20:26:32 +00:00
|
|
|
igp.lyxscale = percent_scale;
|
|
|
|
igp.scale = string();
|
|
|
|
igp.width = Length(1, Length::EM);
|
2008-06-05 03:41:35 +00:00
|
|
|
inset->setParams(igp);
|
2008-09-30 14:11:40 +00:00
|
|
|
clear();
|
2018-08-06 18:07:15 +00:00
|
|
|
Font const f(inherit_font, params_.lang);
|
2013-05-19 10:28:11 +00:00
|
|
|
paragraphs().front().insertInset(0, inset, f,
|
2008-09-30 14:11:40 +00:00
|
|
|
Change(Change::UNCHANGED));
|
2008-06-05 03:41:35 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::BUFFER_INFO: {
|
2017-10-03 21:28:35 +00:00
|
|
|
// this could all change, so we will recalculate each time
|
2018-08-06 18:07:15 +00:00
|
|
|
if (params_.name == "name")
|
|
|
|
setText(from_utf8(buffer().fileName().onlyFileName()), params_.lang);
|
2018-08-07 10:14:45 +00:00
|
|
|
else if (params_.name == "name-noext")
|
|
|
|
setText(from_utf8(buffer().fileName().onlyFileNameWithoutExt()), params_.lang);
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "path")
|
|
|
|
setText(from_utf8(os::latex_path(buffer().filePath())), params_.lang);
|
|
|
|
else if (params_.name == "class")
|
|
|
|
setText(from_utf8(bp.documentClass().name()), params_.lang);
|
2018-07-29 17:41:34 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::VCS_INFO: {
|
2017-10-03 21:28:35 +00:00
|
|
|
// this information could change, in principle, so we will
|
|
|
|
// recalculate each time through
|
2010-04-17 13:24:32 +00:00
|
|
|
if (!buffer().lyxvc().inUse()) {
|
2018-08-01 07:28:03 +00:00
|
|
|
gui = _("No version control!");
|
2018-08-06 18:07:15 +00:00
|
|
|
info(from_ascii("No version control!"), params_.lang);
|
2010-04-17 13:24:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
LyXVC::RevisionInfo itype = LyXVC::Unknown;
|
2018-08-06 18:07:15 +00:00
|
|
|
if (params_.name == "revision")
|
2010-04-17 13:24:32 +00:00
|
|
|
itype = LyXVC::File;
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "tree-revision")
|
2010-04-17 13:24:32 +00:00
|
|
|
itype = LyXVC::Tree;
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "author")
|
2010-04-17 13:24:32 +00:00
|
|
|
itype = LyXVC::Author;
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "time")
|
2010-04-17 13:24:32 +00:00
|
|
|
itype = LyXVC::Time;
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.name == "date")
|
2010-04-17 13:24:32 +00:00
|
|
|
itype = LyXVC::Date;
|
|
|
|
string binfo = buffer().lyxvc().revisionInfo(itype);
|
2018-07-27 10:14:37 +00:00
|
|
|
if (binfo.empty()) {
|
|
|
|
gui = _("%1$s[[vcs data]] unknown");
|
2018-08-06 18:07:15 +00:00
|
|
|
error(from_ascii("%1$s[[vcs data]] unknown"), params_.lang);
|
2018-07-27 10:14:37 +00:00
|
|
|
} else
|
2018-08-06 18:07:15 +00:00
|
|
|
setText(from_utf8(binfo), params_.lang);
|
2007-12-19 18:09:00 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::LYX_INFO:
|
2017-10-03 21:28:35 +00:00
|
|
|
// only need to do this once.
|
|
|
|
if (initialized_)
|
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
if (params_.name == "version")
|
|
|
|
setText(from_ascii(lyx_version), params_.lang);
|
2017-10-03 21:28:35 +00:00
|
|
|
initialized_ = true;
|
2010-04-17 13:24:49 +00:00
|
|
|
break;
|
2018-08-06 18:07:15 +00:00
|
|
|
case InsetInfoParams::DATE_INFO:
|
|
|
|
case InsetInfoParams::MODDATE_INFO:
|
|
|
|
case InsetInfoParams::FIXDATE_INFO: {
|
|
|
|
string date_format = params_.name;
|
|
|
|
string const date_specifier = (params_.type == InsetInfoParams::FIXDATE_INFO
|
|
|
|
&& contains(params_.name, '@'))
|
|
|
|
? split(params_.name, date_format, '@') : string();
|
2018-08-05 07:51:12 +00:00
|
|
|
QDate date;
|
2018-08-06 18:07:15 +00:00
|
|
|
if (params_.type == InsetInfoParams::MODDATE_INFO)
|
2018-08-05 07:51:12 +00:00
|
|
|
date = QDateTime::fromTime_t(buffer().fileName().lastModified()).date();
|
2018-08-06 18:07:15 +00:00
|
|
|
else if (params_.type == InsetInfoParams::FIXDATE_INFO && !date_specifier.empty())
|
2018-08-05 07:51:12 +00:00
|
|
|
date = QDate::fromString(toqstr(date_specifier), Qt::ISODate);
|
|
|
|
else
|
|
|
|
date = QDate::currentDate();
|
2018-08-06 18:07:15 +00:00
|
|
|
setText(params_.getDate(date_format, date), params_.lang);
|
2018-08-07 10:14:45 +00:00
|
|
|
break;
|
2018-08-05 07:51:12 +00:00
|
|
|
}
|
2018-08-07 10:14:45 +00:00
|
|
|
case InsetInfoParams::TIME_INFO:
|
|
|
|
case InsetInfoParams::MODTIME_INFO:
|
|
|
|
case InsetInfoParams::FIXTIME_INFO: {
|
|
|
|
string time_format = params_.name;
|
|
|
|
string const time_specifier = (params_.type == InsetInfoParams::FIXTIME_INFO
|
|
|
|
&& contains(params_.name, '@'))
|
|
|
|
? split(params_.name, time_format, '@') : string();
|
|
|
|
QTime time;
|
|
|
|
if (params_.type == InsetInfoParams::MODTIME_INFO)
|
|
|
|
time = QDateTime::fromTime_t(buffer().fileName().lastModified()).time();
|
|
|
|
else if (params_.type == InsetInfoParams::FIXTIME_INFO && !time_specifier.empty())
|
|
|
|
time = QTime::fromString(toqstr(time_specifier), Qt::ISODate);
|
|
|
|
else
|
|
|
|
time = QTime::currentTime();
|
|
|
|
setText(params_.getTime(time_format, time), params_.lang);
|
|
|
|
break;
|
2007-10-11 14:52:00 +00:00
|
|
|
}
|
2018-08-07 10:14:45 +00:00
|
|
|
}
|
|
|
|
|
2018-07-27 10:14:37 +00:00
|
|
|
// Just to do something with that string
|
|
|
|
LYXERR(Debug::INFO, "info inset text: " << gui);
|
2017-10-16 08:12:21 +00:00
|
|
|
InsetCollapsible::updateBuffer(it, utype);
|
2007-10-11 14:52:00 +00:00
|
|
|
}
|
|
|
|
|
2008-06-05 15:08:46 +00:00
|
|
|
|
2011-10-29 14:48:55 +00:00
|
|
|
string InsetInfo::contextMenu(BufferView const &, int, int) const
|
2010-11-29 23:21:52 +00:00
|
|
|
{
|
2017-10-16 08:12:21 +00:00
|
|
|
//FIXME: We override the implementation of InsetCollapsible,
|
|
|
|
//because this inset is not a collapsible inset.
|
2010-11-29 23:21:52 +00:00
|
|
|
return contextMenuName();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-29 14:48:55 +00:00
|
|
|
string InsetInfo::contextMenuName() const
|
2008-06-05 15:08:46 +00:00
|
|
|
{
|
2011-10-29 14:48:55 +00:00
|
|
|
return "context-info";
|
2008-06-05 15:08:46 +00:00
|
|
|
}
|
|
|
|
|
2008-09-30 14:11:40 +00:00
|
|
|
|
2007-10-11 14:52:00 +00:00
|
|
|
} // namespace lyx
|