2002-06-12 15:01:32 +00:00
|
|
|
/**
|
2007-04-26 04:02:55 +00:00
|
|
|
* \file Painter.cpp
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2002-06-12 15:01:32 +00:00
|
|
|
* \author unknown
|
2002-12-01 22:59:25 +00:00
|
|
|
* \author John Levon
|
2002-09-05 14:10:50 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-06-12 15:01:32 +00:00
|
|
|
*/
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
|
|
|
#include "frontends/FontMetrics.h"
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2007-04-26 17:34:20 +00:00
|
|
|
#include "Color.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "LyXFont.h"
|
2003-09-15 15:20:22 +00:00
|
|
|
|
2006-08-13 22:54:59 +00:00
|
|
|
using lyx::docstring;
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
using std::max;
|
2003-10-06 15:43:21 +00:00
|
|
|
using std::string;
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
2003-09-05 10:55:42 +00:00
|
|
|
|
2006-12-04 04:31:18 +00:00
|
|
|
void Painter::button(int x, int y, int w, int h, bool mouseHover)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
2006-12-04 04:31:18 +00:00
|
|
|
if (mouseHover)
|
2007-04-26 17:34:20 +00:00
|
|
|
fillRectangle(x, y, w, h, Color::buttonhoverbg);
|
2006-12-04 04:31:18 +00:00
|
|
|
else
|
2007-04-26 17:34:20 +00:00
|
|
|
fillRectangle(x, y, w, h, Color::buttonbg);
|
2000-02-10 17:53:36 +00:00
|
|
|
buttonFrame(x, y, w, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-04-07 20:20:15 +00:00
|
|
|
void Painter::buttonFrame(int x, int y, int w, int h)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
2007-04-26 17:34:20 +00:00
|
|
|
line(x, y, x, y + h - 1, Color::buttonframe);
|
|
|
|
line(x - 1 + w, y, x - 1 + w, y + h - 1, Color::buttonframe);
|
|
|
|
line(x, y - 1, x - 1 + w, y - 1, Color::buttonframe);
|
|
|
|
line(x, y + h - 1, x - 1 + w, y + h - 1, Color::buttonframe);
|
2000-02-10 17:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
void Painter::rectText(int x, int y,
|
2006-08-13 22:54:59 +00:00
|
|
|
docstring const & str,
|
2002-06-12 15:01:32 +00:00
|
|
|
LyXFont const & font,
|
2007-04-26 17:34:20 +00:00
|
|
|
Color_color back,
|
|
|
|
Color_color frame)
|
2001-07-24 09:12:20 +00:00
|
|
|
{
|
|
|
|
int width;
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2006-10-11 17:24:46 +00:00
|
|
|
FontMetrics const & fm = theFontMetrics(font);
|
2006-10-07 16:15:06 +00:00
|
|
|
fm.rectText(str, width, ascent, descent);
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2007-04-26 17:34:20 +00:00
|
|
|
if (back != Color::none)
|
2004-11-30 01:59:49 +00:00
|
|
|
fillRectangle(x + 1, y - ascent + 1, width - 1,
|
2002-07-09 16:23:20 +00:00
|
|
|
ascent + descent - 1, back);
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2007-04-26 17:34:20 +00:00
|
|
|
if (frame != Color::none)
|
2004-11-30 01:59:49 +00:00
|
|
|
rectangle(x, y - ascent, width, ascent + descent, frame);
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
text(x + 3, y, str, font);
|
2001-07-24 09:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-04 04:31:18 +00:00
|
|
|
void Painter::buttonText(int x, int y, docstring const & str,
|
|
|
|
LyXFont const & font, bool mouseHover)
|
2001-07-24 09:12:20 +00:00
|
|
|
{
|
|
|
|
int width;
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2006-10-11 17:24:46 +00:00
|
|
|
FontMetrics const & fm = theFontMetrics(font);
|
2006-10-07 16:15:06 +00:00
|
|
|
fm.buttonText(str, width, ascent, descent);
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2006-12-04 04:31:18 +00:00
|
|
|
button(x, y - ascent, width, descent + ascent, mouseHover);
|
2006-12-07 16:26:17 +00:00
|
|
|
text(x + 3, y - 1, str, font);
|
2001-07-24 09:12:20 +00:00
|
|
|
}
|
2002-06-12 15:01:32 +00:00
|
|
|
|
|
|
|
|
2007-04-01 09:14:08 +00:00
|
|
|
int Painter::preeditText(int x, int y, char_type c,
|
|
|
|
LyXFont const & font, preedit_style style)
|
|
|
|
{
|
|
|
|
LyXFont temp_font = font;
|
|
|
|
FontMetrics const & fm = theFontMetrics(font);
|
|
|
|
int ascent = fm.maxAscent();
|
|
|
|
int descent = fm.maxDescent();
|
|
|
|
int height = ascent + descent;
|
|
|
|
int width = fm.width(c);
|
|
|
|
|
|
|
|
switch (style) {
|
|
|
|
case preedit_default:
|
|
|
|
// default unselecting mode.
|
2007-04-26 17:34:20 +00:00
|
|
|
fillRectangle(x, y - height + 1, width, height, Color::background);
|
2007-04-01 09:14:08 +00:00
|
|
|
dashedUnderline(font, x, y - descent + 1, width);
|
|
|
|
break;
|
|
|
|
case preedit_selecting:
|
|
|
|
// We are in selecting mode: white text on black background.
|
2007-04-26 17:34:20 +00:00
|
|
|
fillRectangle(x, y - height + 1, width, height, Color::black);
|
|
|
|
temp_font.setColor(Color::white);
|
2007-04-01 09:14:08 +00:00
|
|
|
break;
|
|
|
|
case preedit_cursor:
|
|
|
|
// The character comes with a cursor.
|
2007-04-26 17:34:20 +00:00
|
|
|
fillRectangle(x, y - height + 1, width, height, Color::background);
|
2007-04-01 09:14:08 +00:00
|
|
|
underline(font, x, y - descent + 1, width);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
text(x, y - descent + 1, c, temp_font);
|
|
|
|
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
void Painter::underline(LyXFont const & f, int x, int y, int width)
|
|
|
|
{
|
2006-10-11 17:24:46 +00:00
|
|
|
FontMetrics const & fm = theFontMetrics(f);
|
2006-10-07 16:15:06 +00:00
|
|
|
|
|
|
|
int const below = max(fm.maxDescent() / 2, 2);
|
|
|
|
int const height = max((fm.maxDescent() / 4) - 1, 1);
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
if (height < 2)
|
2002-06-12 15:01:32 +00:00
|
|
|
line(x, y + below, x + width, y + below, f.color());
|
2004-11-30 01:59:49 +00:00
|
|
|
else
|
|
|
|
fillRectangle(x, y + below, width, below + height, f.color());
|
2002-06-12 15:01:32 +00:00
|
|
|
}
|
2006-06-20 08:39:16 +00:00
|
|
|
|
2007-04-01 09:14:08 +00:00
|
|
|
|
|
|
|
void Painter::dashedUnderline(LyXFont const & f, int x, int y, int width)
|
|
|
|
{
|
|
|
|
FontMetrics const & fm = theFontMetrics(f);
|
|
|
|
|
|
|
|
int const below = max(fm.maxDescent() / 2, 2);
|
|
|
|
int height = max((fm.maxDescent() / 4) - 1, 1);
|
|
|
|
|
|
|
|
if (height >= 2)
|
|
|
|
height += below;
|
|
|
|
|
|
|
|
for (int n = 0; n < height; ++n)
|
|
|
|
line(x, y + below + n, x + width, y + below + n, f.color(), line_onoffdash);
|
|
|
|
}
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|