Update check/radio/light button drawing to size the indicator using the

label size.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1627 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet
2001-09-30 22:40:56 +00:00
parent 6cccb7bca1
commit adda701215
+17 -17
View File
@@ -1,5 +1,5 @@
// //
// "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.3 2001/09/04 13:13:29 easysw Exp $" // "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.4 2001/09/30 22:40:56 easysw Exp $"
// //
// Lighted button widget for the Fast Light Tool Kit (FLTK). // Lighted button widget for the Fast Light Tool Kit (FLTK).
// //
@@ -38,53 +38,53 @@ void Fl_Light_Button::draw() {
if (box()) draw_box(this==Fl::pushed() ? down(box()) : box(), color()); if (box()) draw_box(this==Fl::pushed() ? down(box()) : box(), color());
Fl_Color col = value() ? (active_r() ? selection_color() : Fl_Color col = value() ? (active_r() ? selection_color() :
fl_inactive(selection_color())) : color(); fl_inactive(selection_color())) : color();
int d = h()/6; int W = labelsize() - 1;
int W = w()<h() ? w() : h(); int d = ((w()<h()?w():h()) - W) / 2;
if (down_box()) { if (down_box()) {
// draw other down_box() styles: // draw other down_box() styles:
switch (down_box()) { switch (down_box()) {
case FL_DOWN_BOX : case FL_DOWN_BOX :
case FL_UP_BOX : case FL_UP_BOX :
// Check box... // Check box...
draw_box(down_box(), x()+d + 1, y()+d+2, W-2*d-4, W-2*d-4, color()); draw_box(down_box(), x()+d, y()+d, W, W, color());
if (value()) { if (value()) {
fl_color(col); fl_color(col);
fl_line_style(FL_SOLID, 2); fl_line_style(FL_SOLID, 2);
fl_line(x() + W - d - 7, y() + d + 5, fl_line(x() + d + W - 3, y() + d + 3,
x() + W / 2 - 1, y() + W - d - 7, x() + d + W / 2 - 1, y() + d + W - 4,
x() + d + 5, y() + W / 2); x() + d + 3, y() + d + W / 2);
fl_line_style(FL_SOLID); fl_line_style(FL_SOLID);
} }
break; break;
case _FL_ROUND_DOWN_BOX : case _FL_ROUND_DOWN_BOX :
case _FL_ROUND_UP_BOX : case _FL_ROUND_UP_BOX :
// Radio button... // Radio button...
draw_box(down_box(), x()+d + 1, y()+d+2, W-2*d-4, W-2*d-4, color()); draw_box(down_box(), x()+d, y()+d+1, W, W, color());
if (value()) { if (value()) {
int size = W - 2 * d - 4;
fl_color(col); fl_color(col);
if (size > 14) { if (W > 14) {
fl_pie(x() + d + 5, y() + d + 6, size - 9, size - 9, 0.0, 360.0); fl_pie(x() + d + 4, y() + d + 5, W - 9, W - 9, 0.0, 360.0);
} else { } else {
// Small circles don't draw well with some X servers... // Small circles don't draw well with some X servers...
fl_rectf(x() + d + 6, y() + d + 6, 2, 4); fl_rectf(x() + d + 5, y() + d + 5, 2, 4);
fl_rectf(x() + d + 5, y() + d + 7, 4, 2); fl_rectf(x() + d + 4, y() + d + 6, 4, 2);
} }
} }
break; break;
default : default :
draw_box(down_box(), x()+d + 1, y()+d+2, W-2*d-4, W-2*d-4, col); draw_box(down_box(), x()+d, y()+d, W, W, col);
break; break;
} }
} else { } else {
// if down_box() is zero, draw light button style: // if down_box() is zero, draw light button style:
int hh = h()-2*d - 2; int hh = h()-2*d - 2;
int ww = hh/2+1; int ww = hh/2+1;
int xx = d*2; int xx = d;
if (w()<ww+2*xx) xx = (w()-ww)/2; if (w()<ww+2*xx) xx = (w()-ww)/2;
draw_box(FL_THIN_DOWN_BOX, x()+xx, y()+d+1, ww, hh, col); draw_box(FL_THIN_DOWN_BOX, x()+xx, y()+d+1, ww, hh, col);
d = (ww + 2 * d - W) / 2;
} }
draw_label(x()+W-d, y(), w()-W+d, h()); draw_label(x()+W+2*d, y(), w()-W-2*d, h());
if (Fl::focus() == this) draw_focus(); if (Fl::focus() == this) draw_focus();
} }
@@ -105,5 +105,5 @@ Fl_Light_Button::Fl_Light_Button(int x, int y, int w, int h, const char* l)
} }
// //
// End of "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.3 2001/09/04 13:13:29 easysw Exp $". // End of "$Id: Fl_Light_Button.cxx,v 1.4.2.3.2.4 2001/09/30 22:40:56 easysw Exp $".
// //