mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
c46b7d8955
- 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
101 lines
2.0 KiB
C
101 lines
2.0 KiB
C
/**
|
|
* \file Painter.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author unknown
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "Painter.h"
|
|
#include "font_metrics.h"
|
|
|
|
#include "LColor.h"
|
|
#include "lyxfont.h"
|
|
|
|
using lyx::docstring;
|
|
|
|
using std::max;
|
|
using std::string;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
void Painter::button(int x, int y, int w, int h)
|
|
{
|
|
fillRectangle(x, y, w, h, LColor::buttonbg);
|
|
buttonFrame(x, y, w, h);
|
|
}
|
|
|
|
|
|
void Painter::buttonFrame(int x, int y, int w, int h)
|
|
{
|
|
// Width of a side of the button
|
|
int const d = 2;
|
|
|
|
fillRectangle(x, y, w, d, LColor::top);
|
|
fillRectangle(x, y + h - d, w, d, LColor::bottom);
|
|
|
|
for (int i = 0 ; i < d ; ++i) {
|
|
line(x + i, y + i,
|
|
x + i, y + h - 1 - i, LColor::left);
|
|
line(x + w - 1 - i, y + i + 1,
|
|
x + w - 1 - i, y + h - 1 - i, LColor::right);
|
|
}
|
|
}
|
|
|
|
|
|
void Painter::rectText(int x, int y,
|
|
docstring const & str,
|
|
LyXFont const & font,
|
|
LColor_color back,
|
|
LColor_color frame)
|
|
{
|
|
int width;
|
|
int ascent;
|
|
int descent;
|
|
|
|
font_metrics::rectText(str, font, width, ascent, descent);
|
|
|
|
if (back != LColor::none)
|
|
fillRectangle(x + 1, y - ascent + 1, width - 1,
|
|
ascent + descent - 1, back);
|
|
|
|
if (frame != LColor::none)
|
|
rectangle(x, y - ascent, width, ascent + descent, frame);
|
|
|
|
text(x + 3, y, str, font);
|
|
}
|
|
|
|
|
|
void Painter::buttonText(int x, int y, docstring const & str, LyXFont const & font)
|
|
{
|
|
int width;
|
|
int ascent;
|
|
int descent;
|
|
|
|
font_metrics::buttonText(str, font, width, ascent, descent);
|
|
|
|
button(x, y - ascent, width, descent + ascent);
|
|
text(x + 4, y, str, font);
|
|
}
|
|
|
|
|
|
void Painter::underline(LyXFont const & f, int x, int y, int width)
|
|
{
|
|
int const below = max(font_metrics::maxDescent(f) / 2, 2);
|
|
int const height = max((font_metrics::maxDescent(f) / 4) - 1, 1);
|
|
|
|
if (height < 2)
|
|
line(x, y + below, x + width, y + below, f.color());
|
|
else
|
|
fillRectangle(x, y + below, width, below + height, f.color());
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|