diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2005-12-14 13:51:51 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2005-12-14 13:51:51 +0000 |
| commit | e3883f0384c183836d42bcfd81d9a92bb1333b2d (patch) | |
| tree | 45c203fe5742ccb92ca9438ddf961aba24aabd6a /src/Fl_Window.cxx | |
| parent | 31d3e28bbabd47bd7312d0b1895312d42bed9c33 (diff) | |
STR $1099: The Quartz version of FLTK now draws a very nice resize
control in the lower right corner of top-level windows if that
window is resizable. The color of the control adapts to the
background color of the window.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4711 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Window.cxx')
| -rw-r--r-- | src/Fl_Window.cxx | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx index 62275d736..d8aa8e91d 100644 --- a/src/Fl_Window.cxx +++ b/src/Fl_Window.cxx @@ -35,6 +35,10 @@ #include <stdlib.h> #include "flstring.h" +#ifdef __APPLE_QUARTZ__ +#include <FL/fl_draw.h> +#endif + void Fl_Window::_Fl_Window() { type(FL_WINDOW); box(FL_FLAT_BOX); @@ -102,6 +106,26 @@ void Fl_Window::draw() { // Make sure we don't draw the window title in the window background... Fl_Widget::label(0); Fl_Group::draw(); +#ifdef __APPLE_QUARTZ__ + if (!parent() && resizable()) { + int dx = Fl::box_dw(box())-Fl::box_dx(box()); + int dy = Fl::box_dh(box())-Fl::box_dy(box()); + if (dx<=0) dx = 1; + if (dy<=0) dy = 1; + int x1 = w()-dx-1, x2 = x1, y1 = h()-dx-1, y2 = y1; + Fl_Color c[4] = { + color(), + fl_color_average(color(), FL_WHITE, 0.7f), + fl_color_average(color(), FL_BLACK, 0.6f), + fl_color_average(color(), FL_BLACK, 0.8f), + }; + int i; + for (i=dx; i<12; i++) { + fl_color(c[i&3]); + fl_line(x1--, y1, x2, y2--); + } + } +#endif // Restore the label... Fl_Widget::label(savelabel); set_flag(saveflags); |
