mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
4dbe411ba9
Add an assertion in Inset::dispatch that checks that buffer() == *cur.buffer() git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30540 a592a061-630c-0410-9148-cb99ea01b6c8
229 lines
5.1 KiB
C++
229 lines
5.1 KiB
C++
/**
|
|
* \file InsetLabel.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "InsetLabel.h"
|
|
|
|
#include "InsetRef.h"
|
|
|
|
#include "buffer_funcs.h"
|
|
#include "Buffer.h"
|
|
#include "BufferView.h"
|
|
#include "CutAndPaste.h"
|
|
#include "DispatchResult.h"
|
|
#include "FuncRequest.h"
|
|
#include "FuncStatus.h"
|
|
#include "InsetIterator.h"
|
|
#include "LyXFunc.h"
|
|
#include "output_xhtml.h"
|
|
#include "ParIterator.h"
|
|
#include "sgml.h"
|
|
#include "Text.h"
|
|
#include "TocBackend.h"
|
|
|
|
#include "frontends/alert.h"
|
|
|
|
#include "support/convert.h"
|
|
#include "support/gettext.h"
|
|
#include "support/lstrings.h"
|
|
#include "support/lyxalgo.h"
|
|
|
|
using namespace std;
|
|
using namespace lyx::support;
|
|
|
|
namespace lyx {
|
|
|
|
|
|
InsetLabel::InsetLabel(InsetCommandParams const & p)
|
|
: InsetCommand(p, "label")
|
|
{}
|
|
|
|
|
|
void InsetLabel::initView()
|
|
{
|
|
updateCommand(getParam("name"));
|
|
}
|
|
|
|
|
|
void InsetLabel::updateCommand(docstring const & new_label, bool updaterefs)
|
|
{
|
|
docstring const old_label = getParam("name");
|
|
docstring label = new_label;
|
|
int i = 1;
|
|
while (buffer().insetLabel(label)) {
|
|
label = new_label + '-' + convert<docstring>(i);
|
|
++i;
|
|
}
|
|
|
|
if (label != new_label) {
|
|
// Warn the user that the label has been changed to something else.
|
|
frontend::Alert::warning(_("Label names must be unique!"),
|
|
bformat(_("The label %1$s already exists,\n"
|
|
"it will be changed to %2$s."), new_label, label));
|
|
}
|
|
|
|
buffer().undo().beginUndoGroup();
|
|
setParam("name", label);
|
|
|
|
if (updaterefs) {
|
|
Buffer::References & refs = buffer().references(old_label);
|
|
Buffer::References::iterator it = refs.begin();
|
|
Buffer::References::iterator end = refs.end();
|
|
for (; it != end; ++it) {
|
|
buffer().undo().recordUndo(it->second);
|
|
it->first->setParam("reference", label);
|
|
}
|
|
}
|
|
buffer().undo().endUndoGroup();
|
|
|
|
// We need an update of the Buffer reference cache. This is achieved by
|
|
// updateLabels().
|
|
buffer().updateLabels();
|
|
}
|
|
|
|
|
|
ParamInfo const & InsetLabel::findInfo(string const & /* cmdName */)
|
|
{
|
|
static ParamInfo param_info_;
|
|
if (param_info_.empty())
|
|
param_info_.add("name", ParamInfo::LATEX_REQUIRED);
|
|
return param_info_;
|
|
}
|
|
|
|
|
|
docstring InsetLabel::screenLabel() const
|
|
{
|
|
return screen_label_;
|
|
}
|
|
|
|
|
|
void InsetLabel::updateLabels(ParIterator const &)
|
|
{
|
|
docstring const & label = getParam("name");
|
|
if (buffer().insetLabel(label)) {
|
|
// Problem: We already have an InsetLabel with the same name!
|
|
screen_label_ = _("DUPLICATE: ") + label;
|
|
return;
|
|
}
|
|
buffer().setInsetLabel(label, this);
|
|
screen_label_ = label;
|
|
}
|
|
|
|
|
|
void InsetLabel::addToToc(DocIterator const & cpit)
|
|
{
|
|
docstring const & label = getParam("name");
|
|
Toc & toc = buffer().tocBackend().toc("label");
|
|
if (buffer().insetLabel(label) != this) {
|
|
toc.push_back(TocItem(cpit, 0, screen_label_));
|
|
return;
|
|
}
|
|
toc.push_back(TocItem(cpit, 0, screen_label_));
|
|
Buffer::References const & refs = buffer().references(label);
|
|
Buffer::References::const_iterator it = refs.begin();
|
|
Buffer::References::const_iterator end = refs.end();
|
|
for (; it != end; ++it) {
|
|
DocIterator const ref_pit(it->second);
|
|
toc.push_back(TocItem(ref_pit, 1, it->first->screenLabel()));
|
|
}
|
|
}
|
|
|
|
|
|
bool InsetLabel::getStatus(Cursor & cur, FuncRequest const & cmd,
|
|
FuncStatus & status) const
|
|
{
|
|
bool enabled;
|
|
switch (cmd.action) {
|
|
case LFUN_LABEL_INSERT_AS_REF:
|
|
case LFUN_LABEL_COPY_AS_REF:
|
|
enabled = true;
|
|
break;
|
|
default:
|
|
return InsetCommand::getStatus(cur, cmd, status);
|
|
}
|
|
|
|
status.setEnabled(enabled);
|
|
return true;
|
|
}
|
|
|
|
|
|
void InsetLabel::doDispatch(Cursor & cur, FuncRequest & cmd)
|
|
{
|
|
switch (cmd.action) {
|
|
|
|
case LFUN_INSET_MODIFY: {
|
|
InsetCommandParams p(LABEL_CODE);
|
|
// FIXME UNICODE
|
|
InsetCommand::string2params("label", to_utf8(cmd.argument()), p);
|
|
if (p.getCmdName().empty()) {
|
|
cur.noUpdate();
|
|
break;
|
|
}
|
|
if (p["name"] != params()["name"])
|
|
updateCommand(p["name"]);
|
|
break;
|
|
}
|
|
|
|
case LFUN_LABEL_COPY_AS_REF: {
|
|
InsetCommandParams p(REF_CODE, "ref");
|
|
p["reference"] = getParam("name");
|
|
cap::clearSelection();
|
|
cap::copyInset(cur, new InsetRef(buffer(), p), getParam("name"));
|
|
break;
|
|
}
|
|
|
|
case LFUN_LABEL_INSERT_AS_REF: {
|
|
InsetCommandParams p(REF_CODE, "ref");
|
|
p["reference"] = getParam("name");
|
|
string const data = InsetCommand::params2string("ref", p);
|
|
lyx::dispatch(FuncRequest(LFUN_INSET_INSERT, data));
|
|
break;
|
|
}
|
|
|
|
default:
|
|
InsetCommand::doDispatch(cur, cmd);
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
int InsetLabel::latex(odocstream & os, OutputParams const &) const
|
|
{
|
|
os << escape(getCommand());
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetLabel::plaintext(odocstream & os, OutputParams const &) const
|
|
{
|
|
docstring const str = getParam("name");
|
|
os << '<' << str << '>';
|
|
return 2 + str.size();
|
|
}
|
|
|
|
|
|
int InsetLabel::docbook(odocstream & os, OutputParams const & runparams) const
|
|
{
|
|
os << "<!-- anchor id=\""
|
|
<< sgml::cleanID(buffer(), runparams, getParam("name"))
|
|
<< "\" -->";
|
|
return 0;
|
|
}
|
|
|
|
|
|
docstring InsetLabel::xhtml(odocstream & os, OutputParams const &) const
|
|
{
|
|
os << "<a name=\"" << html::htmlize(getParam("name")) << "\"></a>";
|
|
return docstring();
|
|
}
|
|
|
|
} // namespace lyx
|