]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Painter.C
* src/frontends/qt4/GuiSelection.C
[lyx.git] / src / frontends / Painter.C
index 79f97bf8e83721486d61f0793a8d25202c36204e..e893aafdbb5bf0c6004ef3cf692e147fb1d25140 100644 (file)
 
 #include <config.h>
 
-#include "Painter.h"
-#include "font_metrics.h"
-#include "WorkArea.h"
+#include "frontends/Painter.h"
+
+#include "frontends/FontMetrics.h"
 
 #include "LColor.h"
 #include "lyxfont.h"
 
+using lyx::docstring;
+
 using std::max;
+using std::string;
 
+namespace lyx {
+namespace frontend {
 
-Painter & Painter::button(int x, int y, int w, int h)
+void Painter::button(int x, int y, int w, int h, bool mouseHover)
 {
-       fillRectangle(x, y, w, h, LColor::buttonbg);
+       if (mouseHover)
+               fillRectangle(x, y, w, h, LColor::buttonhoverbg);
+       else
+               fillRectangle(x, y, w, h, LColor::buttonbg);
        buttonFrame(x, y, w, h);
-       return * this;
 }
 
 
-Painter & Painter::buttonFrame(int x, int y, int w, int 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);
-
-       // Now a couple of trapezoids
-       int x1[4], y1[4];
-
-       x1[0] = x + d;   y1[0] = y + d;
-       x1[1] = x + d;   y1[1] = (y + h - d);
-       x1[2] = x;     y1[2] = y + h;
-       x1[3] = x;     y1[3] = y;
-       fillPolygon(x1, y1, 4, LColor::left);
-
-       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;
-       fillPolygon(x1, y1, 4, LColor::right);
-
-       return *this;
+       line(x, y, x, y + h - 1, LColor::buttonframe);
+       line(x - 1 + w, y, x - 1 + w, y + h - 1, LColor::buttonframe);
+       line(x, y - 1, x - 1 + w, y - 1, LColor::buttonframe);
+       line(x, y + h - 1, x - 1 + w, y + h - 1, LColor::buttonframe);
 }
 
 
-Painter & Painter::rectText(int x, int baseline,
-       string const & str,
+void Painter::rectText(int x, int y,
+       docstring const & str,
        LyXFont const & font,
        LColor_color back,
        LColor_color frame)
@@ -66,47 +55,47 @@ Painter & Painter::rectText(int x, int baseline,
        int ascent;
        int descent;
 
-       font_metrics::rectText(str, font, width, ascent, descent);
+       FontMetrics const & fm = theFontMetrics(font);
+       fm.rectText(str, width, ascent, descent);
 
-       if (back != LColor::none) {
-               fillRectangle(x + 1, baseline - ascent + 1, width - 1,
+       if (back != LColor::none)
+               fillRectangle(x + 1, y - ascent + 1, width - 1,
                              ascent + descent - 1, back);
-       }
 
-       if (frame != LColor::none) {
-               rectangle(x, baseline - ascent, width, ascent + descent, frame);
-       }
+       if (frame != LColor::none)
+               rectangle(x, y - ascent, width, ascent + descent, frame);
 
-       text(x + 3, baseline, str, font);
-       return *this;
+       text(x + 3, y, str, font);
 }
 
 
-Painter & Painter::buttonText(int x, int baseline,
-       string const & str,
-       LyXFont const & font)
+void Painter::buttonText(int x, int y, docstring const & str, 
+       LyXFont const & font, bool mouseHover)
 {
        int width;
        int ascent;
        int descent;
 
-       font_metrics::buttonText(str, font, width, ascent, descent);
+       FontMetrics const & fm = theFontMetrics(font);
+       fm.buttonText(str, width, ascent, descent);
 
-       button(x, baseline - ascent, width, descent + ascent);
-       text(x + 4, baseline, str, font);
-       return *this;
+       button(x, y - ascent, width, descent + ascent, mouseHover);
+       text(x + 3, y - 1, 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);
+       FontMetrics const & fm = theFontMetrics(f);
 
-       if (height < 2) {
+       int const below = max(fm.maxDescent() / 2, 2);
+       int const height = max((fm.maxDescent() / 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());
-       }
+       else
+               fillRectangle(x, y + below, width, below + height, f.color());
 }
+
+} // namespace frontend
+} // namespace lyx