lyx_mirror/src/insets/insetcite.C
Dekel Tsur 6b971d39b2 Add Ascii method to InsetCitation
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2026 a592a061-630c-0410-9148-cb99ea01b6c8
2001-05-27 17:51:16 +00:00

71 lines
1.5 KiB
C

// -*- C++ -*-
/* This file is part of*
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2000 The LyX Team.
*
* ====================================================== */
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "insetcite.h"
#include "BufferView.h"
#include "LyXView.h"
#include "frontends/Dialogs.h"
#include "support/lstrings.h"
InsetCitation::InsetCitation(InsetCommandParams const & p)
: InsetCommand(p)
{}
string const InsetCitation::getScreenLabel() const
{
string keys(getContents());
// If keys is "too long" then only print out the first few tokens
string label;
if (contains(keys, ",")) {
// Final comma allows while loop to cover all keys
keys = frontStrip(split(keys, label, ',')) + ",";
string::size_type const maxSize = 40;
while (contains( keys, "," )) {
string key;
keys = frontStrip(split(keys, key, ','));
string::size_type size = label.size() + 2 + key.size();
if (size >= maxSize) {
label += ", ...";
break;
}
label += ", " + key;
}
} else {
label = keys;
}
if (!getOptions().empty())
label += ", " + getOptions();
return "[" + label + "]";
}
void InsetCitation::Edit(BufferView * bv, int, int, unsigned int)
{
bv->owner()->getDialogs()->showCitation(this);
}
int InsetCitation::Ascii(Buffer const *, ostream & os, int) const
{
os << "[" << getContents() << "]";
return 0;
}