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-09-05 14:10:50 +00:00
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2002-05-23 09:21:32 +00:00
|
|
|
#include "Painter.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
#include "lyxfont.h"
|
|
|
|
#include "WorkArea.h"
|
2002-06-12 15:01:32 +00:00
|
|
|
#include "frontends/font_metrics.h"
|
|
|
|
|
|
|
|
using std::max;
|
|
|
|
|
|
|
|
Painter & 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);
|
|
|
|
return * this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
Painter & 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);
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
// Now a couple of trapezoids
|
|
|
|
int x1[4], y1[4];
|
2002-06-12 15:01:32 +00:00
|
|
|
|
2002-03-13 13:22:54 +00:00
|
|
|
x1[0] = x + d; y1[0] = y + d;
|
|
|
|
x1[1] = x + d; y1[1] = (y + h - d);
|
|
|
|
x1[2] = x; y1[2] = y + h;
|
2000-02-10 17:53:36 +00:00
|
|
|
x1[3] = x; y1[3] = y;
|
|
|
|
fillPolygon(x1, y1, 4, LColor::left);
|
|
|
|
|
2002-03-13 13:22:54 +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);
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
Painter & Painter::rectText(int x, int baseline,
|
|
|
|
string const & str,
|
|
|
|
LyXFont const & font,
|
|
|
|
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-06-12 15:01:32 +00:00
|
|
|
|
2002-07-09 16:23:20 +00:00
|
|
|
if (back != LColor::none) {
|
|
|
|
fillRectangle(x + 1, baseline - ascent + 1, width - 1,
|
|
|
|
ascent + descent - 1, back);
|
|
|
|
}
|
|
|
|
|
2002-09-11 03:02:02 +00:00
|
|
|
if (frame != LColor::none) {
|
|
|
|
rectangle(x, baseline - ascent, width, ascent + descent, frame);
|
|
|
|
}
|
|
|
|
|
2001-07-24 22:08:49 +00:00
|
|
|
text(x + 3, baseline, str, font);
|
2001-07-24 09:12:20 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
Painter & Painter::buttonText(int x, int baseline,
|
|
|
|
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-06-12 15:01:32 +00:00
|
|
|
|
2001-07-24 09:12:20 +00:00
|
|
|
button(x, baseline - ascent, width, descent + ascent);
|
|
|
|
text(x + 4, baseline, str, font);
|
|
|
|
return *this;
|
|
|
|
}
|
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);
|
|
|
|
|
|
|
|
if (height < 2) {
|
|
|
|
line(x, y + below, x + width, y + below, f.color());
|
|
|
|
} else {
|
|
|
|
fillRectangle(x, y + below, width, below + height,
|
|
|
|
f.color());
|
|
|
|
}
|
|
|
|
}
|