1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
1999-10-02 16:21:10 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-15 10:58:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insetlabel.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
#include "support/LOstream.h"
|
2000-05-19 16:46:01 +00:00
|
|
|
#include "lyx_gui_misc.h" //askForText
|
|
|
|
#include "support/lstrings.h" //frontStrip, strip
|
|
|
|
#include "lyxtext.h"
|
|
|
|
#include "buffer.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
#include "gettext.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "BufferView.h"
|
2001-06-27 14:10:35 +00:00
|
|
|
#include "support/lstrings.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
using std::ostream;
|
2000-05-19 16:46:01 +00:00
|
|
|
using std::vector;
|
|
|
|
using std::pair;
|
2000-04-04 00:19:15 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/* Label. Used to insert a label automatically */
|
|
|
|
|
|
|
|
|
2000-08-04 13:12:30 +00:00
|
|
|
InsetLabel::InsetLabel(InsetCommandParams const & p)
|
|
|
|
: InsetCommand(p)
|
|
|
|
{}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
vector<string> const InsetLabel::getLabelList() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-04-04 23:00:42 +00:00
|
|
|
return vector<string>(1, getContents());
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetLabel::edit(BufferView * bv, int, int, unsigned int)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-06-05 15:12:09 +00:00
|
|
|
if (bv->buffer()->isReadonly()) {
|
2000-05-19 16:46:01 +00:00
|
|
|
WarnReadonly(bv->buffer()->fileName());
|
|
|
|
return;
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-06-07 08:53:40 +00:00
|
|
|
pair<bool, string> result = askForText(_("Enter label:"), getContents());
|
2000-05-19 16:46:01 +00:00
|
|
|
if (result.first) {
|
|
|
|
string new_contents = frontStrip(strip(result.second));
|
|
|
|
if (!new_contents.empty() &&
|
2000-06-07 08:53:40 +00:00
|
|
|
getContents() != new_contents) {
|
2000-06-05 15:12:09 +00:00
|
|
|
bv->buffer()->markDirty();
|
2000-12-11 09:46:09 +00:00
|
|
|
bool flag = bv->ChangeRefsIfUnique(getContents(),
|
|
|
|
new_contents);
|
|
|
|
setContents(new_contents);
|
2001-06-25 00:06:33 +00:00
|
|
|
bv->text->redoParagraph(bv);
|
2000-05-19 16:46:01 +00:00
|
|
|
if (flag) {
|
|
|
|
bv->redraw();
|
2000-09-28 14:05:24 +00:00
|
|
|
bv->fitCursor(getLyXText(bv));
|
2000-05-19 16:46:01 +00:00
|
|
|
} else
|
2001-02-14 08:38:21 +00:00
|
|
|
bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
|
2000-05-19 16:46:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-12-07 00:44:53 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetLabel::latex(Buffer const *, ostream & os,
|
2000-04-19 01:42:55 +00:00
|
|
|
bool /*fragile*/, bool /*fs*/) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-12-07 00:44:53 +00:00
|
|
|
os << escape(getCommand());
|
1999-09-27 18:44:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetLabel::ascii(Buffer const *, ostream & os, int) const
|
2000-04-24 20:58:23 +00:00
|
|
|
{
|
|
|
|
os << "<" << getContents() << ">";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetLabel::linuxdoc(Buffer const *, ostream & os) const
|
2000-03-06 02:42:40 +00:00
|
|
|
{
|
|
|
|
os << "<label id=\"" << getContents() << "\" >";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetLabel::docBook(Buffer const *, ostream & os) const
|
2000-03-06 02:42:40 +00:00
|
|
|
{
|
2000-11-13 15:43:36 +00:00
|
|
|
os << "<anchor id=\"" << getContents() << "\" ></anchor>";
|
2000-03-06 02:42:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|