lyx_mirror/src/insets/insetpagebreak.C
Lars Gullik Bjønnes c46b7d8955 Merge the unicode branch into trunk.
- src/support/unicode.[Ch]: new files with functions for converting
  to and fro ucs4, ucs2 and utf8.
- src/support/docstring.h: specialization of basic_string that
  holds a uint32_t internally.
- Several functions changed to use char_type instead of char or unsigned char.
- Qt3 and Qt4 sends ucs2 on to core
- Gtk sends ucs4 on to core
- Read and write utf-8 .lyx files.
- font_metrics and painter updated to handle ucs4 chars as input.
- Quite a bit of ugly compability code, conversion string->docstring, etc.
- Have fun...


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14661 a592a061-630c-0410-9148-cb99ea01b6c8
2006-08-13 22:54:59 +00:00

109 lines
2.0 KiB
C

/**
* \file insetpagebreak.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "insetpagebreak.h"
#include "debug.h"
#include "LColor.h"
#include "lyxtext.h"
#include "metricsinfo.h"
#include "gettext.h"
#include "frontends/Painter.h"
#include "frontends/font_metrics.h"
using lyx::docstring;
using lyx::frontend::Painter;
using std::endl;
using std::ostream;
void InsetPagebreak::read(Buffer const &, LyXLex &)
{
/* Nothing to read */
}
void InsetPagebreak::write(Buffer const &, ostream & os) const
{
os << "\n\\newpage\n";
}
void InsetPagebreak::metrics(MetricsInfo & mi, Dimension & dim) const
{
dim.asc = defaultRowHeight();
dim.des = defaultRowHeight();
dim.wid = mi.base.textwidth;
dim_ = dim;
}
void InsetPagebreak::draw(PainterInfo & pi, int x, int y) const
{
static std::string const label = _("Page Break");
LyXFont font;
font.setColor(LColor::pagebreak);
font.decSize();
int w = 0;
int a = 0;
int d = 0;
docstring dlab(label.begin(), label.end());
font_metrics::rectText(dlab, font, w, a, d);
int const text_start = int(x + (dim_.wid - w) / 2);
int const text_end = text_start + w;
pi.pain.rectText(text_start, y + d, dlab, font,
LColor::none, LColor::none);
pi.pain.line(x, y, text_start, y,
LColor::pagebreak, Painter::line_onoffdash);
pi.pain.line(text_end, y, int(x + dim_.wid), y,
LColor::pagebreak, Painter::line_onoffdash);
}
int InsetPagebreak::latex(Buffer const &, ostream & os,
OutputParams const &) const
{
os << "\\newpage{}";
return 0;
}
int InsetPagebreak::plaintext(Buffer const &, ostream & os,
OutputParams const &) const
{
os << '\n';
return 0;
}
int InsetPagebreak::linuxdoc(Buffer const &, std::ostream & os,
OutputParams const &) const
{
os << '\n';
return 0;
}
int InsetPagebreak::docbook(Buffer const &, std::ostream & os,
OutputParams const &) const
{
os << '\n';
return 0;
}