mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
043298544c
Rename frontStrip to ltrim Add new trim function. modify source for this change. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4801 a592a061-630c-0410-9148-cb99ea01b6c8
95 lines
1.9 KiB
C
95 lines
1.9 KiB
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1998 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "insetnote.h"
|
|
#include "gettext.h"
|
|
#include "lyxfont.h"
|
|
#include "language.h"
|
|
#include "buffer.h"
|
|
#include "BufferView.h"
|
|
#include "lyxtext.h"
|
|
#include "insets/insettext.h"
|
|
#include "support/LOstream.h"
|
|
#include "support/lstrings.h"
|
|
#include "debug.h"
|
|
|
|
using std::ostream;
|
|
|
|
|
|
void InsetNote::init()
|
|
{
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
font.decSize();
|
|
font.setColor(LColor::note);
|
|
setLabelFont(font);
|
|
setBackgroundColor(LColor::notebg);
|
|
setLabel(_("note"));
|
|
setInsetName("Note");
|
|
}
|
|
|
|
|
|
InsetNote::InsetNote(BufferParams const & bp)
|
|
: InsetCollapsable(bp)
|
|
{
|
|
init();
|
|
}
|
|
|
|
|
|
InsetNote::InsetNote(InsetNote const & in, bool same_id)
|
|
: InsetCollapsable(in, same_id)
|
|
{
|
|
init();
|
|
}
|
|
|
|
|
|
Inset * InsetNote::clone(Buffer const &, bool same_id) const
|
|
{
|
|
return new InsetNote(*const_cast<InsetNote *>(this), same_id);
|
|
}
|
|
|
|
|
|
// This constructor is used for reading old InsetInfo
|
|
InsetNote::InsetNote(Buffer const * buf, string const & contents,
|
|
bool collapsed)
|
|
: InsetCollapsable(buf->params, collapsed)
|
|
{
|
|
init();
|
|
|
|
Paragraph * par = inset.paragraph();
|
|
LyXFont font(LyXFont::ALL_INHERIT, buf->params.language);
|
|
|
|
// Since XForms doesn't support RTL, we can assume that old notes
|
|
// in RTL documents are written in English.
|
|
if (font.language()->RightToLeft())
|
|
font.setLanguage(default_language);
|
|
|
|
lyx::pos_type pos = 0;
|
|
buf->insertStringAsLines(par, pos, font, rtrim(contents, "\n"));
|
|
}
|
|
|
|
|
|
string const InsetNote::editMessage() const
|
|
{
|
|
return _("Opened Note Inset");
|
|
}
|
|
|
|
|
|
void InsetNote::write(Buffer const *buf, ostream & os) const
|
|
{
|
|
os << getInsetName() << "\n";
|
|
InsetCollapsable::write(buf, os);
|
|
}
|