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
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-02-21 09:20:18 +00:00
|
|
|
*/
|
2003-10-21 16:15:14 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "insetbibitem.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "buffer.h"
|
|
|
|
#include "BufferView.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "funcrequest.h"
|
2003-09-16 13:43:30 +00:00
|
|
|
#include "lyxfont.h"
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "lyxlex.h"
|
2003-09-06 17:23:08 +00:00
|
|
|
#include "paragraph.h"
|
2003-02-21 09:20:18 +00:00
|
|
|
|
|
|
|
#include "frontends/font_metrics.h"
|
|
|
|
|
|
|
|
#include "support/lstrings.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
#include "support/tostr.h"
|
2003-02-21 09:20:18 +00:00
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::prefixIs;
|
|
|
|
using lyx::support::strToInt;
|
2003-02-21 09:20:18 +00:00
|
|
|
|
|
|
|
using std::max;
|
2003-10-06 15:43:21 +00:00
|
|
|
using std::string;
|
2003-07-25 17:11:25 +00:00
|
|
|
using std::auto_ptr;
|
2003-02-21 09:20:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
int InsetBibitem::key_counter = 0;
|
2003-06-28 01:23:11 +00:00
|
|
|
string const key_prefix = "key-";
|
2003-02-21 09:20:18 +00:00
|
|
|
|
2003-05-16 07:44:00 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
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()
|
|
|
|
{
|
2003-08-05 08:07:07 +00:00
|
|
|
InsetCommandMailer("bibitem", *this).hideDialog();
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
auto_ptr<InsetBase> InsetBibitem::clone() const
|
2003-02-21 09:20:18 +00:00
|
|
|
{
|
|
|
|
InsetBibitem * b = new InsetBibitem(params());
|
|
|
|
b->setCounter(counter);
|
2003-07-25 17:11:25 +00:00
|
|
|
return auto_ptr<InsetBase>(b);
|
2003-02-21 09:20:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-17 18:01:15 +00:00
|
|
|
dispatch_result
|
|
|
|
InsetBibitem::priv_dispatch(FuncRequest const & cmd,
|
|
|
|
idx_type & idx, pos_type & pos)
|
2003-02-26 19:28:38 +00:00
|
|
|
{
|
2003-03-07 21:44:48 +00:00
|
|
|
switch (cmd.action) {
|
2003-05-16 07:44:00 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_EDIT:
|
|
|
|
InsetCommandMailer("bibitem", *this).showDialog(cmd.view());
|
|
|
|
return DISPATCHED;
|
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
case LFUN_INSET_MODIFY: {
|
|
|
|
InsetCommandParams p;
|
|
|
|
InsetCommandMailer::string2params(cmd.argument, p);
|
|
|
|
if (p.getCmdName().empty())
|
2003-05-16 07:44:00 +00:00
|
|
|
return DISPATCHED;
|
2003-03-07 21:44:48 +00:00
|
|
|
setParams(p);
|
2003-08-27 13:51:18 +00:00
|
|
|
cmd.view()->updateInset(this);
|
2003-03-25 21:27:07 +00:00
|
|
|
cmd.view()->fitCursor();
|
2003-05-16 07:44:00 +00:00
|
|
|
return DISPATCHED;
|
2003-03-07 21:44:48 +00:00
|
|
|
}
|
2003-05-16 07:44:00 +00:00
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
default:
|
2003-10-17 18:01:15 +00:00
|
|
|
return InsetCommand::priv_dispatch(cmd, idx, pos);
|
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)
|
2003-08-28 07:41:31 +00:00
|
|
|
void InsetBibitem::write(Buffer const &, std::ostream & os) const
|
2003-02-21 09:20:18 +00:00
|
|
|
{
|
|
|
|
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)
|
2003-08-28 07:41:31 +00:00
|
|
|
void InsetBibitem::read(Buffer const &, LyXLex & lex)
|
2003-02-21 09:20:18 +00:00
|
|
|
{
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
string const InsetBibitem::getScreenLabel(Buffer const &) const
|
2003-02-21 09:20:18 +00:00
|
|
|
{
|
|
|
|
return getContents() + " [" + getBibLabel() + ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ale070405 This function maybe shouldn't be here. We'll fix this at 0.13.
|
2003-07-25 17:11:25 +00:00
|
|
|
int bibitemMaxWidth(BufferView * bv, LyXFont const &)
|
2003-02-21 09:20:18 +00:00
|
|
|
{
|
|
|
|
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)
|
2003-09-09 09:47:59 +00:00
|
|
|
ParagraphList::iterator it = bv->buffer()->paragraphs().begin();
|
|
|
|
ParagraphList::iterator end = bv->buffer()->paragraphs().end();
|
2003-02-21 09:20:18 +00:00
|
|
|
for (; it != end; ++it) {
|
|
|
|
if (it->bibitem()) {
|
2003-07-18 07:47:07 +00:00
|
|
|
#warning metrics broken!
|
|
|
|
int const wx = it->bibitem()->width();
|
2003-02-21 09:20:18 +00:00
|
|
|
if (wx > w)
|
|
|
|
w = wx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ale070405
|
2003-08-28 07:41:31 +00:00
|
|
|
string const bibitemWidest(Buffer const & buffer)
|
2003-02-21 09:20:18 +00:00
|
|
|
{
|
|
|
|
int w = 0;
|
|
|
|
// Does look like a hack? It is! (but will change at 0.13)
|
|
|
|
|
2003-05-27 22:41:04 +00:00
|
|
|
InsetBibitem const * bitem = 0;
|
2003-02-21 09:20:18 +00:00
|
|
|
LyXFont font;
|
|
|
|
|
2003-09-09 09:47:59 +00:00
|
|
|
ParagraphList::const_iterator it = buffer.paragraphs().begin();
|
|
|
|
ParagraphList::const_iterator end = buffer.paragraphs().end();
|
2003-05-28 06:47:15 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
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";
|
|
|
|
}
|