X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2FPainter.C;h=74fe2b78f0818ace169cfe027c5fb47db20e827d;hb=2f1d525ee1d41bc20adbfe766a9c5d90469aa4b2;hp=e79505e8c93d285f82e2473397b64ecd9561e44d;hpb=06f9f0ea08ddcf13e99ea02cff21471aa2020c9e;p=lyx.git diff --git a/src/frontends/Painter.C b/src/frontends/Painter.C index e79505e8c9..74fe2b78f0 100644 --- a/src/frontends/Painter.C +++ b/src/frontends/Painter.C @@ -1,58 +1,28 @@ -/* This file is part of - * ====================================================== +/** + * \file Painter.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author unknown + * \author John Levon * - * Copyright 1998-2001 The LyX Team - * - *======================================================*/ + * Full author contact details are available in file CREDITS. + */ #include -#ifdef __GNUG__ -#pragma implementation -#endif - #include "Painter.h" -#include "lyxfont.h" +#include "font_metrics.h" #include "WorkArea.h" -#include "font.h" - - -int PainterBase::paperMargin() const -{ - return 20; -} - - -int PainterBase::paperWidth() const -{ - return owner.workWidth(); -} - - -int PainterBase::paperHeight() const -{ - return owner.height(); -} - - -PainterBase & PainterBase::circle(int x, int y, unsigned int d, - LColor::color col) -{ - return ellipse(x, y, d, d, col); -} +#include "LColor.h" +#include "lyxfont.h" -PainterBase & PainterBase::ellipse(int x, int y, - unsigned int w, unsigned int h, - LColor::color col) -{ - return arc(x, y, w, h, 0, 0, col); -} +using std::max; +using std::string; -PainterBase & PainterBase::button(int x, int y, int w, int h) +Painter & Painter::button(int x, int y, int w, int h) { fillRectangle(x, y, w, h, LColor::buttonbg); buttonFrame(x, y, w, h); @@ -60,13 +30,13 @@ PainterBase & PainterBase::button(int x, int y, int w, int h) } -PainterBase & PainterBase::buttonFrame(int x, int y, int w, int h) +Painter & Painter::buttonFrame(int x, int y, int w, int h) { // Width of a side of the button - int d = 2; + int const d = 2; fillRectangle(x, y, w, d, LColor::top); - fillRectangle(x, (y+h-d), w, d, LColor::bottom); + fillRectangle(x, (y + h - d), w, d, LColor::bottom); // Now a couple of trapezoids int x1[4], y1[4]; @@ -87,35 +57,57 @@ PainterBase & PainterBase::buttonFrame(int x, int y, int w, int h) } -PainterBase & PainterBase::rectText(int x, int baseline, - string const & str, - LyXFont const & font, - LColor::color back, - LColor::color frame) +Painter & Painter::rectText(int x, int baseline, + string const & str, + LyXFont const & font, + LColor_color back, + LColor_color frame) { int width; int ascent; int descent; - lyxfont::rectText(str, font, width, ascent, descent); - rectangle(x, baseline - ascent, width, ascent + descent, frame); - fillRectangle(x + 1, baseline - ascent + 1, width - 1, - ascent + descent - 1, back); + font_metrics::rectText(str, font, width, ascent, descent); + + if (back != LColor::none) { + fillRectangle(x + 1, baseline - ascent + 1, width - 1, + ascent + descent - 1, back); + } + + if (frame != LColor::none) { + rectangle(x, baseline - ascent, width, ascent + descent, frame); + } + text(x + 3, baseline, str, font); return *this; } -PainterBase & PainterBase::buttonText(int x, int baseline, - string const & str, - LyXFont const & font) +Painter & Painter::buttonText(int x, int baseline, + string const & str, + LyXFont const & font) { int width; int ascent; int descent; - lyxfont::buttonText(str, font, width, ascent, descent); + font_metrics::buttonText(str, font, width, ascent, descent); + button(x, baseline - ascent, width, descent + ascent); text(x + 4, baseline, str, font); return *this; } + + +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()); + } +}