summaryrefslogtreecommitdiff
path: root/src/fl_plastic.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-12-16 02:32:41 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-12-16 02:32:41 +0000
commit59842c6181adce9160c79fc99bdc44646593c8e6 (patch)
treec170874a43972bf33f001a01471e01b47e3db262 /src/fl_plastic.cxx
parent6c3a9ec36a4cc68ee241a96511d36f611370e947 (diff)
OK, more tweeking of the plastic boxtypes...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1850 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_plastic.cxx')
-rw-r--r--src/fl_plastic.cxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/fl_plastic.cxx b/src/fl_plastic.cxx
index 4c5fbdeaf..91710a84b 100644
--- a/src/fl_plastic.cxx
+++ b/src/fl_plastic.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fl_plastic.cxx,v 1.1.2.7 2001/12/14 16:48:13 easysw Exp $"
+// "$Id: fl_plastic.cxx,v 1.1.2.8 2001/12/16 02:32:41 easysw Exp $"
//
// "Plastic" drawing routines for the Fast Light Tool Kit (FLTK).
//
@@ -78,15 +78,15 @@ static void shade_rect(int x, int y, int w, int h, const char *c, Fl_Color bc)
fl_color(shade_color(g[c[i]], bc));
fl_xyline(x + 1, y + i, x + w - 1);
- fl_color(shade_color(g[c[i] - 8], bc));
- fl_point(x, y + i);
- fl_point(x + w - 1, y + i);
+ fl_color(shade_color(g[c[i] - 2], bc));
+ fl_point(x, y + i + 1);
+ fl_point(x + w - 1, y + i + 1);
// Draw the bottom line and points...
fl_color(shade_color(g[c[clen - i]], bc));
fl_xyline(x + 1, y + h - 1 - i, x + w - 1);
- fl_color(shade_color(g[c[clen - i] - 8], bc));
+ fl_color(shade_color(g[c[clen - i] - 2], bc));
fl_point(x, y + h - i);
fl_point(x + w - 1, y + h - i);
}
@@ -97,7 +97,7 @@ static void shade_rect(int x, int y, int w, int h, const char *c, Fl_Color bc)
fl_color(shade_color(g[c[chalf]], bc));
fl_rectf(x + 1, y + i, w - 2, h - 2 * i);
- fl_color(shade_color(g[c[chalf] - 8], bc));
+ fl_color(shade_color(g[c[chalf] - 2], bc));
fl_yxline(x, y + i, y + h - i);
fl_yxline(x + w - 1, y + i, y + h - i);
} else {
@@ -109,15 +109,15 @@ static void shade_rect(int x, int y, int w, int h, const char *c, Fl_Color bc)
fl_color(shade_color(g[c[i]], bc));
fl_yxline(x + i, y + 1, y + h - 1);
- fl_color(shade_color(g[c[i] - 8], bc));
- fl_point(x + i, y);
- fl_point(x + i, y + h - 1);
+ fl_color(shade_color(g[c[i] - 2], bc));
+ fl_point(x + i + 1, y);
+ fl_point(x + i + 1, y + h - 1);
// Draw the right line and points...
fl_color(shade_color(g[c[clen - i]], bc));
fl_yxline(x + w - 1 - i, y + 1, y + h - 1);
- fl_color(shade_color(g[c[clen - i] - 8], bc));
+ fl_color(shade_color(g[c[clen - i] - 2], bc));
fl_point(x + w - 1 - i, y);
fl_point(x + w - 1 - i, y + h - 1);
}
@@ -128,7 +128,7 @@ static void shade_rect(int x, int y, int w, int h, const char *c, Fl_Color bc)
fl_color(shade_color(g[c[chalf]], bc));
fl_rectf(x + i, y + 1, w - 2 * i, h - 2);
- fl_color(shade_color(g[c[chalf] - 8], bc));
+ fl_color(shade_color(g[c[chalf] - 2], bc));
fl_xyline(x + i, y, x + w - i);
fl_xyline(x + i, y + h - 1, x + w - i);
}
@@ -136,12 +136,12 @@ static void shade_rect(int x, int y, int w, int h, const char *c, Fl_Color bc)
static void up_frame(int x, int y, int w, int h, Fl_Color c) {
- shade_frame(x, y, w, h, "KLOPMNNO", c);
+ shade_frame(x, y, w, h, "MNFKKLNO", c);
}
static void up_box(int x, int y, int w, int h, Fl_Color c) {
- shade_rect(x + 2, y + 2, w - 4, h - 4, "QTXWVUTRSTUVWXS", c);
+ shade_rect(x + 2, y + 2, w - 4, h - 4, "TXSPPQQRSSTTUVS", c);
up_frame(x, y, w, h, c);
}
@@ -173,5 +173,5 @@ Fl_Boxtype define_FL_PLASTIC_UP_BOX() {
//
-// End of "$Id: fl_plastic.cxx,v 1.1.2.7 2001/12/14 16:48:13 easysw Exp $".
+// End of "$Id: fl_plastic.cxx,v 1.1.2.8 2001/12/16 02:32:41 easysw Exp $".
//