2002-06-12 15:01:32 +00:00
|
|
|
/**
|
|
|
|
* \file Painter.C
|
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>
|
|
|
|
|
2002-05-23 09:21:32 +00:00
|
|
|
#include "Painter.h"
|
2003-09-05 10:55:42 +00:00
|
|
|
#include "font_metrics.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
#include "WorkArea.h"
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2003-09-15 15:20:22 +00:00
|
|
|
#include "LColor.h"
|
|
|
|
#include "lyxfont.h"
|
|
|
|
|
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
|
|
|
|
2003-09-05 10:55:42 +00:00
|
|
|
|
2004-04-07 20:20:15 +00:00
|
|
|
void Painter::button(int x, int y, int w, int h)
|
2000-02-10 17:53:36 +00:00
|
|
|
{
|
|
|
|
fillRectangle(x, y, w, h, LColor::buttonbg);
|
|
|
|
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
|
|
|
{
|
|
|
|
// Width of a side of the button
|
2002-06-12 15:01:32 +00:00
|
|
|
int const d = 2;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
fillRectangle(x, y, w, d, LColor::top);
|
2002-06-12 15:01:32 +00:00
|
|
|
fillRectangle(x, (y + h - d), w, d, LColor::bottom);
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
// Now a couple of trapezoids
|
|
|
|
int x1[4], y1[4];
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2002-03-13 13:22:54 +00:00
|
|
|
x1[0] = x + d; y1[0] = y + d;
|
2004-11-30 01:59:49 +00:00
|
|
|
x1[1] = x + d; y1[1] = y + h - d;
|
|
|
|
x1[2] = x; y1[2] = y + h;
|
|
|
|
x1[3] = x; y1[3] = y;
|
2000-02-10 17:53:36 +00:00
|
|
|
fillPolygon(x1, y1, 4, LColor::left);
|
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
x1[0] = x + w - d; y1[0] = y + d;
|
|
|
|
x1[1] = x + w - d; y1[1] = y + h - d;
|
|
|
|
x1[2] = x + w; y1[2] = y + h - d;
|
|
|
|
x1[3] = x + w; y1[3] = y;
|
2000-02-10 17:53:36 +00:00
|
|
|
fillPolygon(x1, y1, 4, LColor::right);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
void Painter::rectText(int x, int y,
|
2002-12-01 22:59:25 +00:00
|
|
|
string const & str,
|
2002-06-12 15:01:32 +00:00
|
|
|
LyXFont const & font,
|
2003-09-18 11:48:11 +00:00
|
|
|
LColor_color back,
|
|
|
|
LColor_color frame)
|
2001-07-24 09:12:20 +00:00
|
|
|
{
|
|
|
|
int width;
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-05-24 14:34:32 +00:00
|
|
|
font_metrics::rectText(str, font, width, ascent, descent);
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
if (back != LColor::none)
|
|
|
|
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
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
if (frame != LColor::none)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
void Painter::buttonText(int x, int y, string const & str, LyXFont const & font)
|
2001-07-24 09:12:20 +00:00
|
|
|
{
|
|
|
|
int width;
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-05-24 14:34:32 +00:00
|
|
|
font_metrics::buttonText(str, font, width, ascent, descent);
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
button(x, y - ascent, width, descent + ascent);
|
|
|
|
text(x + 4, y, str, font);
|
2001-07-24 09:12:20 +00:00
|
|
|
}
|
2002-06-12 15:01:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
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);
|
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
|
|
|
}
|