mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
cd424d7853
Create new files for each output format. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8046 a592a061-630c-0410-9148-cb99ea01b6c8
77 lines
1.6 KiB
C
77 lines
1.6 KiB
C
/**
|
|
* \file insetlist.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
#include <config.h>
|
|
|
|
#include "insetlist.h"
|
|
#include "insets/insettext.h"
|
|
|
|
#include "BufferView.h"
|
|
#include "debug.h"
|
|
#include "gettext.h"
|
|
#include "lyxfont.h"
|
|
#include "lyxtext.h"
|
|
|
|
#include "support/std_ostream.h"
|
|
|
|
using std::endl;
|
|
using std::ostream;
|
|
|
|
|
|
// 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::collapsable);
|
|
setLabelFont(font);
|
|
#if 0
|
|
setAutoCollapse(false);
|
|
#endif
|
|
setInsetName("List");
|
|
}
|
|
|
|
|
|
void InsetList::write(Buffer const * buf, ostream & os) const
|
|
{
|
|
os << getInsetName() << "\n";
|
|
InsetCollapsable::write(buf, os);
|
|
}
|
|
|
|
|
|
string const InsetList::editMessage() const
|
|
{
|
|
return _("Opened List Inset");
|
|
}
|
|
|
|
|
|
int InsetList::latex(Buffer const * buf, ostream & os,
|
|
OutputParams const & runparams) const
|
|
{
|
|
os << "\\footnote{%\n";
|
|
|
|
int i = inset.latex(buf, os, runparams);
|
|
os << "}%\n";
|
|
|
|
return i + 2;
|
|
}
|