mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
c7db12d1ac
Fixed the output of label, that is an empty element. output footnotes. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3893 a592a061-630c-0410-9148-cb99ea01b6c8
103 lines
2.1 KiB
C
103 lines
2.1 KiB
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "insetlabel.h"
|
|
#include "support/LOstream.h"
|
|
#include "frontends/Alert.h"
|
|
#include "support/lstrings.h" //frontStrip, strip
|
|
#include "lyxtext.h"
|
|
#include "buffer.h"
|
|
#include "gettext.h"
|
|
#include "BufferView.h"
|
|
#include "support/lstrings.h"
|
|
|
|
using std::ostream;
|
|
using std::vector;
|
|
using std::pair;
|
|
|
|
/* Label. Used to insert a label automatically */
|
|
|
|
|
|
InsetLabel::InsetLabel(InsetCommandParams const & p, bool)
|
|
: InsetCommand(p)
|
|
{}
|
|
|
|
|
|
vector<string> const InsetLabel::getLabelList() const
|
|
{
|
|
return vector<string>(1, getContents());
|
|
}
|
|
|
|
|
|
void InsetLabel::edit(BufferView * bv, int, int, unsigned int)
|
|
{
|
|
pair<bool, string> result = Alert::askForText(_("Enter label:"), getContents());
|
|
if (result.first) {
|
|
string new_contents = frontStrip(strip(result.second));
|
|
if (!new_contents.empty() &&
|
|
getContents() != new_contents) {
|
|
bv->buffer()->markDirty();
|
|
bool flag = bv->ChangeRefsIfUnique(getContents(),
|
|
new_contents);
|
|
setContents(new_contents);
|
|
#if 0
|
|
bv->text->redoParagraph(bv);
|
|
if (flag) {
|
|
bv->redraw();
|
|
bv->fitCursor();
|
|
} else
|
|
bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
|
#else
|
|
bv->updateInset(this, !flag);
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void InsetLabel::edit(BufferView * bv, bool)
|
|
{
|
|
edit(bv, 0, 0, 0);
|
|
}
|
|
|
|
|
|
int InsetLabel::latex(Buffer const *, ostream & os,
|
|
bool /*fragile*/, bool /*fs*/) const
|
|
{
|
|
os << escape(getCommand());
|
|
return 0;
|
|
}
|
|
|
|
int InsetLabel::ascii(Buffer const *, ostream & os, int) const
|
|
{
|
|
os << "<" << getContents() << ">";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetLabel::linuxdoc(Buffer const *, ostream & os) const
|
|
{
|
|
os << "<label id=\"" << getContents() << "\" >";
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetLabel::docbook(Buffer const *, ostream & os) const
|
|
{
|
|
os << "<anchor id=\"" << getContents() << "\">";
|
|
return 0;
|
|
}
|