2003-02-21 09:20:18 +00:00
|
|
|
/**
|
|
|
|
* \file insetbibitem.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
|
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "insetbibitem.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "BufferView.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "funcrequest.h"
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "lyxlex.h"
|
|
|
|
|
|
|
|
#include "frontends/font_metrics.h"
|
|
|
|
|
2003-05-13 14:36:24 +00:00
|
|
|
#include "support/tostr.h"
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
|
|
|
|
|
|
|
using std::max;
|
|
|
|
|
|
|
|
|
|
|
|
int InsetBibitem::key_counter = 0;
|
|
|
|
const string key_prefix = "key-";
|
|
|
|
|
|
|
|
InsetBibitem::InsetBibitem(InsetCommandParams const & p)
|
|
|
|
: InsetCommand(p), counter(1)
|
|
|
|
{
|
|
|
|
if (getContents().empty())
|
|
|
|
setContents(key_prefix + tostr(++key_counter));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
InsetBibitem::~InsetBibitem()
|
|
|
|
{
|
|
|
|
InsetCommandMailer mailer("bibitem", *this);
|
|
|
|
mailer.hideDialog();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
Inset * InsetBibitem::clone(Buffer const &, bool) const
|
|
|
|
{
|
|
|
|
InsetBibitem * b = new InsetBibitem(params());
|
|
|
|
b->setCounter(counter);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-26 19:28:38 +00:00
|
|
|
dispatch_result InsetBibitem::localDispatch(FuncRequest const & cmd)
|
|
|
|
{
|
2003-03-07 21:44:48 +00:00
|
|
|
Inset::RESULT result = UNDISPATCHED;
|
|
|
|
|
|
|
|
switch (cmd.action) {
|
|
|
|
case LFUN_INSET_MODIFY: {
|
|
|
|
InsetCommandParams p;
|
|
|
|
InsetCommandMailer::string2params(cmd.argument, p);
|
|
|
|
if (p.getCmdName().empty())
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (view() && p.getContents() != params().getContents()) {
|
|
|
|
view()->ChangeCitationsIfUnique(params().getContents(),
|
|
|
|
p.getContents());
|
|
|
|
}
|
|
|
|
|
|
|
|
setParams(p);
|
2003-03-19 14:45:22 +00:00
|
|
|
cmd.view()->updateInset(this);
|
2003-03-25 21:27:07 +00:00
|
|
|
|
|
|
|
// We need to do a redraw because the maximum
|
|
|
|
// InsetBibitem width could have changed
|
|
|
|
#warning please check you mean repaint() not update(),
|
|
|
|
#warning and whether the repaint() is needed at all
|
|
|
|
cmd.view()->repaint();
|
|
|
|
cmd.view()->fitCursor();
|
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
result = DISPATCHED;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
result = InsetCommand::localDispatch(cmd);
|
2003-02-26 19:28:38 +00:00
|
|
|
}
|
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
return result;
|
2003-02-26 19:28:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
void InsetBibitem::setCounter(int c)
|
|
|
|
{
|
|
|
|
counter = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// I'm sorry but this is still necessary because \bibitem is used also
|
|
|
|
// as a LyX 2.x command, and lyxlex is not enough smart to understand
|
|
|
|
// real LaTeX commands. Yes, that could be fixed, but would be a waste
|
|
|
|
// of time cause LyX3 won't use lyxlex anyway. (ale)
|
|
|
|
void InsetBibitem::write(Buffer const *, std::ostream & os) const
|
|
|
|
{
|
|
|
|
os << "\n\\bibitem ";
|
|
|
|
if (!getOptions().empty())
|
|
|
|
os << '[' << getOptions() << ']';
|
|
|
|
os << '{' << getContents() << "}\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This is necessary here because this is written without begin_inset
|
|
|
|
// This should be changed!!! (Jug)
|
|
|
|
void InsetBibitem::read(Buffer const *, LyXLex & lex)
|
|
|
|
{
|
|
|
|
if (lex.eatLine()) {
|
|
|
|
scanCommand(lex.getString());
|
|
|
|
} else {
|
|
|
|
lex.printError("InsetCommand: Parse error: `$$Token'");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prefixIs(getContents(), key_prefix)) {
|
|
|
|
int key = strToInt(getContents().substr(key_prefix.length()));
|
|
|
|
key_counter = max(key_counter, key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const InsetBibitem::getBibLabel() const
|
|
|
|
{
|
|
|
|
return getOptions().empty() ? tostr(counter) : getOptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const InsetBibitem::getScreenLabel(Buffer const *) const
|
|
|
|
{
|
|
|
|
return getContents() + " [" + getBibLabel() + ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-10 22:12:07 +00:00
|
|
|
void InsetBibitem::edit(BufferView * bv, int, int, mouse_button::state)
|
2003-02-21 09:20:18 +00:00
|
|
|
{
|
2003-02-25 14:51:38 +00:00
|
|
|
InsetCommandMailer mailer("bibitem", *this);
|
2003-03-10 22:12:07 +00:00
|
|
|
mailer.showDialog(bv);
|
2003-02-21 09:20:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetBibitem::edit(BufferView * bv, bool)
|
|
|
|
{
|
|
|
|
edit(bv, 0, 0, mouse_button::none);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
|
|
|
|
int bibitemMaxWidth(BufferView * bv, LyXFont const & font)
|
|
|
|
{
|
|
|
|
int w = 0;
|
|
|
|
// Ha, now we are mainly at 1.2.0 and it is still here (Jug)
|
|
|
|
// Does look like a hack? It is! (but will change at 0.13)
|
|
|
|
ParagraphList::iterator it = bv->buffer()->paragraphs.begin();
|
|
|
|
ParagraphList::iterator end = bv->buffer()->paragraphs.end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
if (it->bibitem()) {
|
|
|
|
int const wx = it->bibitem()->width(bv, font);
|
|
|
|
if (wx > w)
|
|
|
|
w = wx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ale070405
|
|
|
|
string const bibitemWidest(Buffer const * buffer)
|
|
|
|
{
|
|
|
|
int w = 0;
|
|
|
|
// Does look like a hack? It is! (but will change at 0.13)
|
|
|
|
|
|
|
|
InsetBibitem * bitem = 0;
|
|
|
|
LyXFont font;
|
|
|
|
|
|
|
|
ParagraphList::iterator it = buffer->paragraphs.begin();
|
|
|
|
ParagraphList::iterator end = buffer->paragraphs.end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
if (it->bibitem()) {
|
|
|
|
int const wx =
|
|
|
|
font_metrics::width(it->bibitem()->getBibLabel(),
|
|
|
|
font);
|
|
|
|
if (wx > w) {
|
|
|
|
w = wx;
|
|
|
|
bitem = it->bibitem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bitem && !bitem->getBibLabel().empty())
|
|
|
|
return bitem->getBibLabel();
|
|
|
|
|
|
|
|
return "99";
|
|
|
|
}
|