mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
0b1b6dfa4e
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@891 a592a061-630c-0410-9148-cb99ea01b6c8
43 lines
810 B
C
43 lines
810 B
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2000 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "insetfootlike.h"
|
|
#include "lyxfont.h"
|
|
#include "buffer.h"
|
|
#include "lyxtext.h"
|
|
#include "support/LOstream.h"
|
|
|
|
using std::ostream;
|
|
using std::endl;
|
|
|
|
InsetFootlike::InsetFootlike()
|
|
: InsetCollapsable()
|
|
{
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
font.decSize();
|
|
font.decSize();
|
|
font.setColor(LColor::footnote);
|
|
setLabelFont(font);
|
|
setAutoCollapse(false);
|
|
}
|
|
|
|
|
|
void InsetFootlike::Write(Buffer const * buf, ostream & os) const
|
|
{
|
|
os << getInsetName() << "\n";
|
|
InsetCollapsable::Write(buf, os);
|
|
}
|