]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Painter.C
better selection and scrolling behaviour
[lyx.git] / src / frontends / Painter.C
index af127d5b3dd7040a9e2dd7accb0c63bfa53b914d..860655b80ad5ad2d1754851bbadae3b493ea225c 100644 (file)
@@ -1,10 +1,12 @@
 /**
  * \file Painter.C
- * Copyright 1998-2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author unknown
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
@@ -17,9 +19,9 @@
 #include "lyxfont.h"
 #include "WorkArea.h"
 #include "frontends/font_metrics.h"
+
 using std::max;
+
 Painter & Painter::button(int x, int y, int w, int h)
 {
        fillRectangle(x, y, w, h, LColor::buttonbg);
@@ -35,10 +37,10 @@ Painter & Painter::buttonFrame(int x, int y, int w, int h)
 
        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;
@@ -55,8 +57,8 @@ Painter & Painter::buttonFrame(int x, int y, int w, int h)
 }
 
 
-Painter & Painter::rectText(int x, int baseline, 
-       string const & str, 
+Painter & Painter::rectText(int x, int baseline,
+       string const & str,
        LyXFont const & font,
        LColor::color back,
        LColor::color frame)
@@ -66,17 +68,23 @@ Painter & Painter::rectText(int x, int baseline,
        int descent;
 
        font_metrics::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);
+
+       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;
 }
 
 
 Painter & Painter::buttonText(int x, int baseline,
-       string const & str, 
+       string const & str,
        LyXFont const & font)
 {
        int width;
@@ -84,7 +92,7 @@ Painter & Painter::buttonText(int x, int baseline,
        int descent;
 
        font_metrics::buttonText(str, font, width, ascent, descent);
+
        button(x, baseline - ascent, width, descent + ascent);
        text(x + 4, baseline, str, font);
        return *this;
@@ -95,7 +103,7 @@ 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 {