2000-06-28 13:35:52 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1998 The LyX Team.
|
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insetlist.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include "lyxfont.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "Painter.h"
|
|
|
|
#include "lyxtext.h"
|
2000-07-04 11:30:07 +00:00
|
|
|
#include "insets/insettext.h"
|
2000-06-28 13:35:52 +00:00
|
|
|
#include "support/LOstream.h"
|
|
|
|
|
|
|
|
using std::ostream;
|
|
|
|
using std::endl;
|
|
|
|
|
|
|
|
// This class is _far_ from finished. I hope that we can have a inset to
|
|
|
|
// handle the different lists that we have. It should also be possible
|
|
|
|
// to create new lists on the fly.
|
|
|
|
// Currently LyX only supports: itemize, enumerate, description and
|
|
|
|
// lyxlist. All support for these should be moved to this class and other
|
|
|
|
// helper classes.
|
|
|
|
// It is also possible that we will need a baseclass and subclasses for
|
|
|
|
// different types of lists. (and should they be collapsable?)
|
|
|
|
//
|
|
|
|
// Lgb
|
|
|
|
|
|
|
|
InsetList::InsetList()
|
|
|
|
: InsetCollapsable()
|
|
|
|
{
|
|
|
|
setLabel(_("list"));
|
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
font.decSize();
|
|
|
|
font.decSize();
|
|
|
|
font.setColor(LColor::footnote);
|
|
|
|
setLabelFont(font);
|
|
|
|
setAutoCollapse(false);
|
|
|
|
setInsetName("List");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetList::Write(Buffer const * buf, ostream & os) const
|
|
|
|
{
|
|
|
|
os << getInsetName() << "\n";
|
|
|
|
InsetCollapsable::Write(buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Inset * InsetList::Clone() const
|
|
|
|
{
|
|
|
|
InsetList * result = new InsetList;
|
2000-07-04 11:30:07 +00:00
|
|
|
result->inset->init(inset);
|
2000-06-28 13:35:52 +00:00
|
|
|
|
|
|
|
result->collapsed = collapsed;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char const * InsetList::EditMessage() const
|
|
|
|
{
|
|
|
|
return _("Opened List Inset");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int InsetList::Latex(Buffer const * buf,
|
|
|
|
ostream & os, bool fragile, bool fp) const
|
|
|
|
{
|
|
|
|
os << "\\footnote{%\n";
|
|
|
|
|
2000-07-04 11:30:07 +00:00
|
|
|
int i = inset->Latex(buf, os, fragile, fp);
|
2000-06-28 13:35:52 +00:00
|
|
|
os << "}%\n";
|
|
|
|
|
|
|
|
return i + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-04 11:30:07 +00:00
|
|
|
bool InsetList::InsertInset(BufferView * bv, Inset * in)
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2000-07-04 11:30:07 +00:00
|
|
|
if (!InsertInsetAllowed(in))
|
2000-06-28 13:35:52 +00:00
|
|
|
return false;
|
|
|
|
|
2000-07-04 11:30:07 +00:00
|
|
|
return inset->InsertInset(bv, in);
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-04 11:30:07 +00:00
|
|
|
bool InsetList::InsertInsetAllowed(Inset * in) const
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
2000-07-04 11:30:07 +00:00
|
|
|
if ((in->LyxCode() == Inset::FOOT_CODE) ||
|
|
|
|
(in->LyxCode() == Inset::MARGIN_CODE)) {
|
2000-06-28 13:35:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-07-04 11:30:07 +00:00
|
|
|
#if 0
|
2000-06-28 13:35:52 +00:00
|
|
|
LyXFont InsetList::GetDrawFont(BufferView * bv,LyXParagraph * p, int pos) const
|
|
|
|
{
|
|
|
|
LyXFont fn = getLyXText(bv)->GetFont(bv->buffer(), p, pos);
|
|
|
|
fn.decSize().decSize();
|
|
|
|
return fn;
|
|
|
|
}
|
2000-07-04 11:30:07 +00:00
|
|
|
#endif
|