2000-06-28 13:35:52 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2000-06-28 13:35:52 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2000-06-28 13:35:52 +00:00
|
|
|
* 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 "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"
|
2000-07-04 19:16:35 +00:00
|
|
|
#include "debug.h"
|
2000-06-28 13:35:52 +00:00
|
|
|
|
|
|
|
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();
|
2001-06-05 17:05:51 +00:00
|
|
|
font.setColor(LColor::collapsable);
|
2000-06-28 13:35:52 +00:00
|
|
|
setLabelFont(font);
|
2001-07-24 22:08:49 +00:00
|
|
|
#if 0
|
2000-06-28 13:35:52 +00:00
|
|
|
setAutoCollapse(false);
|
2001-07-24 22:08:49 +00:00
|
|
|
#endif
|
2000-06-28 13:35:52 +00:00
|
|
|
setInsetName("List");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetList::write(Buffer const * buf, ostream & os) const
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
|
|
|
os << getInsetName() << "\n";
|
2001-06-28 10:25:20 +00:00
|
|
|
InsetCollapsable::write(buf, os);
|
2000-06-28 13:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
string const InsetList::editMessage() const
|
2000-06-28 13:35:52 +00:00
|
|
|
{
|
|
|
|
return _("Opened List Inset");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetList::latex(Buffer const * buf,
|
2000-06-28 13:35:52 +00:00
|
|
|
ostream & os, bool fragile, bool fp) const
|
|
|
|
{
|
|
|
|
os << "\\footnote{%\n";
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int i = inset.latex(buf, os, fragile, fp);
|
2000-06-28 13:35:52 +00:00
|
|
|
os << "}%\n";
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-06-28 13:35:52 +00:00
|
|
|
return i + 2;
|
|
|
|
}
|