1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// Rounded box drawing routines for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2020-09-01 13:33:11 +03:00
|
|
|
// Copyright 1998-2020 by Bill Spitzak and others.
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
|
2020-09-01 13:33:11 +03:00
|
|
|
// Global parameters for rounded corner drawing algorithm:
|
2016-07-16 01:12:30 +03:00
|
|
|
//
|
|
|
|
// RN = number of segments per corner (must match offset array size)
|
|
|
|
// RS = max. corner radius
|
|
|
|
// BW = box shadow width
|
|
|
|
|
2020-09-01 13:33:11 +03:00
|
|
|
#define RS (Fl::box_border_radius_max())
|
|
|
|
#define BW (Fl::box_shadow_width())
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
static void rbox(int fill, int x, int y, int w, int h) {
|
2016-07-16 01:12:30 +03:00
|
|
|
int rs, rsy;
|
|
|
|
rs = w*2/5; rsy = h*2/5;
|
|
|
|
if (rs > rsy) rs = rsy; // use smaller radius
|
1998-10-06 22:21:25 +04:00
|
|
|
if (rs > RS) rs = RS;
|
2022-11-24 14:47:49 +03:00
|
|
|
if (fill)
|
|
|
|
fl_rounded_rectf(x, y, w, h, rs);
|
|
|
|
else
|
|
|
|
fl_rounded_rect(x, y, w, h, rs);
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void fl_rflat_box(int x, int y, int w, int h, Fl_Color c) {
|
2015-07-09 03:10:44 +03:00
|
|
|
Fl::set_box_color(c);
|
|
|
|
rbox(1, x, y, w, h); rbox(0, x, y, w, h);
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void fl_rounded_frame(int x, int y, int w, int h, Fl_Color c) {
|
2015-07-09 03:10:44 +03:00
|
|
|
Fl::set_box_color(c);
|
|
|
|
rbox(0, x, y, w, h);
|
1998-10-06 22:21:25 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void fl_rounded_box(int x, int y, int w, int h, Fl_Color c) {
|
2015-07-09 03:10:44 +03:00
|
|
|
Fl::set_box_color(c);
|
|
|
|
rbox(1, x, y, w, h);
|
1998-10-06 22:21:25 +04:00
|
|
|
fl_color(FL_BLACK); rbox(0, x, y, w, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fl_rshadow_box(int x, int y, int w, int h, Fl_Color c) {
|
|
|
|
// draw shadow:
|
|
|
|
fl_color(FL_DARK3);
|
|
|
|
rbox(1, x+BW, y+BW, w, h);
|
|
|
|
rbox(0, x+BW, y+BW, w, h);
|
|
|
|
// draw the box:
|
|
|
|
fl_rounded_box(x, y, w, h, c);
|
|
|
|
}
|
|
|
|
|
2024-04-26 13:42:11 +03:00
|
|
|
void fl_rounded_focus(Fl_Boxtype bt, int x, int y, int w, int h, Fl_Color fg, Fl_Color bg) {
|
|
|
|
x += Fl::box_dx(bt);
|
|
|
|
y += Fl::box_dy(bt);
|
|
|
|
w -= Fl::box_dw(bt)+1;
|
|
|
|
h -= Fl::box_dh(bt)+1;
|
|
|
|
Fl_Color savecolor = fl_color();
|
|
|
|
fl_color(fl_contrast(fg, bg));
|
|
|
|
fl_line_style(FL_DOT);
|
|
|
|
rbox(0, x+1, y+1, w-1, h-1);
|
|
|
|
fl_line_style(FL_SOLID);
|
|
|
|
fl_color(savecolor);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern void fl_internal_boxtype(Fl_Boxtype, Fl_Box_Draw_F*, Fl_Box_Draw_Focus_F* =NULL);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-03-26 00:08:42 +03:00
|
|
|
Fl_Boxtype fl_define_FL_ROUNDED_BOX() {
|
2024-04-26 13:42:11 +03:00
|
|
|
fl_internal_boxtype(_FL_ROUNDED_FRAME, fl_rounded_frame, fl_rounded_focus);
|
|
|
|
fl_internal_boxtype(_FL_ROUNDED_BOX, fl_rounded_box, fl_rounded_focus);
|
1998-10-06 22:21:25 +04:00
|
|
|
return _FL_ROUNDED_BOX;
|
|
|
|
}
|
|
|
|
|
2002-03-26 00:08:42 +03:00
|
|
|
Fl_Boxtype fl_define_FL_RFLAT_BOX() {
|
2024-04-26 13:42:11 +03:00
|
|
|
fl_internal_boxtype(_FL_RFLAT_BOX, fl_rflat_box, fl_rounded_focus);
|
1998-10-06 22:21:25 +04:00
|
|
|
return _FL_RFLAT_BOX;
|
|
|
|
}
|
|
|
|
|
2002-03-26 00:08:42 +03:00
|
|
|
Fl_Boxtype fl_define_FL_RSHADOW_BOX() {
|
2024-04-26 13:42:11 +03:00
|
|
|
fl_internal_boxtype(_FL_RSHADOW_BOX, fl_rshadow_box, fl_rounded_focus);
|
1998-10-06 22:21:25 +04:00
|
|
|
return _FL_RSHADOW_BOX;
|
|
|
|
}
|