1998-10-20 00:46:58 +04:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// "$Id$"
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// Rectangle drawing routines for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2009-01-02 00:28:26 +03:00
|
|
|
// Copyright 1998-2009 by Bill Spitzak and others.
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
// USA.
|
|
|
|
//
|
2005-04-16 04:13:17 +04:00
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2008-10-08 01:07:12 +04:00
|
|
|
/**
|
|
|
|
\file fl_rect.cxx
|
|
|
|
\brief Drawing and clipping routines for rectangles.
|
|
|
|
*/
|
|
|
|
|
1998-10-06 23:14:55 +04:00
|
|
|
// These routines from fl_draw.H are used by the standard boxtypes
|
|
|
|
// and thus are always linked into an fltk program.
|
|
|
|
// Also all fl_clip routines, since they are always linked in so
|
|
|
|
// that minimal update works.
|
|
|
|
|
2004-08-25 04:20:27 +04:00
|
|
|
#include <config.h>
|
2005-03-20 20:41:56 +03:00
|
|
|
#include <FL/Fl.H>
|
1998-10-06 23:14:55 +04:00
|
|
|
#include <FL/Fl_Widget.H>
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
#include <FL/x.H>
|
|
|
|
|
2004-09-01 02:00:49 +04:00
|
|
|
#ifdef __APPLE_QUARTZ__
|
|
|
|
extern float fl_quartz_line_width_;
|
|
|
|
#endif
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a 1-pixel border \e inside the given bounding box
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_rect(int x, int y, int w, int h) {
|
|
|
|
if (w<=0 || h<=0) return;
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XDrawRectangle(fl_display, fl_window, fl_gc, x, y, w-1, h-1);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L);
|
|
|
|
LineTo(fl_gc, x+w-1, y);
|
|
|
|
LineTo(fl_gc, x+w-1, y+h-1);
|
|
|
|
LineTo(fl_gc, x, y+h-1);
|
|
|
|
LineTo(fl_gc, x, y);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-27 02:24:24 +04:00
|
|
|
CGRect rect = CGRectMake(x, y, w-1, h-1);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextStrokeRect(fl_gc, rect);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Colors a rectangle that exactly fills the given bounding box
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_rectf(int x, int y, int w, int h) {
|
|
|
|
if (w<=0 || h<=0) return;
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
if (w && h) XFillRectangle(fl_display, fl_window, fl_gc, x, y, w, h);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
RECT rect;
|
|
|
|
rect.left = x; rect.top = y;
|
|
|
|
rect.right = x + w; rect.bottom = y + h;
|
|
|
|
FillRect(fl_gc, &rect, fl_brush());
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-27 02:24:24 +04:00
|
|
|
CGRect rect = CGRectMake(x, y, w-1, h-1);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextFillRect(fl_gc, rect);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a horizontal line from (x,y) to (x1,y)
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_xyline(int x, int y, int x1) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XDrawLine(fl_display, fl_window, fl_gc, x, y, x1, y);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L); LineTo(fl_gc, x1+1, y);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y);
|
|
|
|
CGContextStrokePath(fl_gc);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a horizontal line from (x,y) to (x1,y), then vertical from (x1,y) to (x1,y2)
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_xyline(int x, int y, int x1, int y2) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined (USE_X11)
|
|
|
|
XPoint p[3];
|
|
|
|
p[0].x = x; p[0].y = p[1].y = y;
|
|
|
|
p[1].x = p[2].x = x1; p[2].y = y2;
|
|
|
|
XDrawLines(fl_display, fl_window, fl_gc, p, 3, 0);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
if (y2 < y) y2--;
|
1999-03-04 21:32:14 +03:00
|
|
|
else y2++;
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L);
|
|
|
|
LineTo(fl_gc, x1, y);
|
|
|
|
LineTo(fl_gc, x1, y2);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y2);
|
|
|
|
CGContextStrokePath(fl_gc);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
#error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a horizontal line from (x,y) to (x1,y), then a vertical from (x1,y) to (x1,y2)
|
|
|
|
and then another horizontal from (x1,y2) to (x3,y2)
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_xyline(int x, int y, int x1, int y2, int x3) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XPoint p[4];
|
|
|
|
p[0].x = x; p[0].y = p[1].y = y;
|
|
|
|
p[1].x = p[2].x = x1; p[2].y = p[3].y = y2;
|
|
|
|
p[3].x = x3;
|
|
|
|
XDrawLines(fl_display, fl_window, fl_gc, p, 4, 0);
|
|
|
|
#elif defined(WIN32)
|
1999-03-04 21:32:14 +03:00
|
|
|
if(x3 < x1) x3--;
|
|
|
|
else x3++;
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L);
|
|
|
|
LineTo(fl_gc, x1, y);
|
|
|
|
LineTo(fl_gc, x1, y2);
|
|
|
|
LineTo(fl_gc, x3, y2);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y2);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x3, y2);
|
|
|
|
CGContextStrokePath(fl_gc);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a vertical line from (x,y) to (x,y1)
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_yxline(int x, int y, int y1) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XDrawLine(fl_display, fl_window, fl_gc, x, y, x, y1);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
if (y1 < y) y1--;
|
1999-03-04 21:32:14 +03:00
|
|
|
else y1++;
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L); LineTo(fl_gc, x, y1);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x, y1);
|
|
|
|
CGContextStrokePath(fl_gc);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a vertical line from (x,y) to (x,y1), then a horizontal from (x,y1) to (x2,y1)
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_yxline(int x, int y, int y1, int x2) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XPoint p[3];
|
|
|
|
p[0].x = p[1].x = x; p[0].y = y;
|
|
|
|
p[1].y = p[2].y = y1; p[2].x = x2;
|
|
|
|
XDrawLines(fl_display, fl_window, fl_gc, p, 3, 0);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
if (x2 > x) x2++;
|
1999-03-04 21:32:14 +03:00
|
|
|
else x2--;
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L);
|
|
|
|
LineTo(fl_gc, x, y1);
|
|
|
|
LineTo(fl_gc, x2, y1);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x, y1);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x2, y1);
|
|
|
|
CGContextStrokePath(fl_gc);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a vertical line from (x,y) to (x,y1) then a horizontal from (x,y1)
|
|
|
|
to (x2,y1), then another vertical from (x2,y1) to (x2,y3)
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_yxline(int x, int y, int y1, int x2, int y3) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XPoint p[4];
|
|
|
|
p[0].x = p[1].x = x; p[0].y = y;
|
|
|
|
p[1].y = p[2].y = y1; p[2].x = p[3].x = x2;
|
|
|
|
p[3].y = y3;
|
|
|
|
XDrawLines(fl_display, fl_window, fl_gc, p, 4, 0);
|
|
|
|
#elif defined(WIN32)
|
1999-03-04 21:32:14 +03:00
|
|
|
if(y3<y1) y3--;
|
|
|
|
else y3++;
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L);
|
|
|
|
LineTo(fl_gc, x, y1);
|
|
|
|
LineTo(fl_gc, x2, y1);
|
|
|
|
LineTo(fl_gc, x2, y3);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x, y1);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x2, y1);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x2, y3);
|
|
|
|
CGContextStrokePath(fl_gc);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a line from (x,y) to (x1,y1)
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_line(int x, int y, int x1, int y1) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XDrawLine(fl_display, fl_window, fl_gc, x, y, x1, y1);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L);
|
|
|
|
LineTo(fl_gc, x1, y1);
|
1999-02-01 04:59:13 +03:00
|
|
|
// Draw the last point *again* because the GDI line drawing
|
|
|
|
// functions will not draw the last point ("it's a feature!"...)
|
1999-03-04 21:32:14 +03:00
|
|
|
SetPixel(fl_gc, x1, y1, fl_RGB());
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2005-12-14 16:51:51 +03:00
|
|
|
if (fl_quartz_line_width_==1.0f ) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y1);
|
|
|
|
CGContextStrokePath(fl_gc);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a line from (x,y) to (x1,y1) and another from (x1,y1) to (x2,y2)
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_line(int x, int y, int x1, int y1, int x2, int y2) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XPoint p[3];
|
|
|
|
p[0].x = x; p[0].y = y;
|
|
|
|
p[1].x = x1; p[1].y = y1;
|
|
|
|
p[2].x = x2; p[2].y = y2;
|
|
|
|
XDrawLines(fl_display, fl_window, fl_gc, p, 3, 0);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L);
|
|
|
|
LineTo(fl_gc, x1, y1);
|
|
|
|
LineTo(fl_gc, x2, y2);
|
1999-02-01 04:59:13 +03:00
|
|
|
// Draw the last point *again* because the GDI line drawing
|
|
|
|
// functions will not draw the last point ("it's a feature!"...)
|
1999-03-04 21:32:14 +03:00
|
|
|
SetPixel(fl_gc, x2, y2, fl_RGB());
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2005-12-14 16:51:51 +03:00
|
|
|
if (fl_quartz_line_width_==1.0f ) CGContextSetShouldAntialias(fl_gc, false);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y1);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x2, y2);
|
|
|
|
CGContextStrokePath(fl_gc);
|
2005-12-14 16:51:51 +03:00
|
|
|
if (fl_quartz_line_width_==1.0f ) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Outlines a 3-sided polygon with lines
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_loop(int x, int y, int x1, int y1, int x2, int y2) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XPoint p[4];
|
|
|
|
p[0].x = x; p[0].y = y;
|
|
|
|
p[1].x = x1; p[1].y = y1;
|
|
|
|
p[2].x = x2; p[2].y = y2;
|
|
|
|
p[3].x = x; p[3].y = y;
|
|
|
|
XDrawLines(fl_display, fl_window, fl_gc, p, 4, 0);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L);
|
|
|
|
LineTo(fl_gc, x1, y1);
|
|
|
|
LineTo(fl_gc, x2, y2);
|
|
|
|
LineTo(fl_gc, x, y);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y1);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x2, y2);
|
|
|
|
CGContextClosePath(fl_gc);
|
|
|
|
CGContextStrokePath(fl_gc);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Outlines a 4-sided polygon with lines
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_loop(int x, int y, int x1, int y1, int x2, int y2, int x3, int y3) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XPoint p[5];
|
|
|
|
p[0].x = x; p[0].y = y;
|
|
|
|
p[1].x = x1; p[1].y = y1;
|
|
|
|
p[2].x = x2; p[2].y = y2;
|
|
|
|
p[3].x = x3; p[3].y = y3;
|
|
|
|
p[4].x = x; p[4].y = y;
|
|
|
|
XDrawLines(fl_display, fl_window, fl_gc, p, 5, 0);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
MoveToEx(fl_gc, x, y, 0L);
|
|
|
|
LineTo(fl_gc, x1, y1);
|
|
|
|
LineTo(fl_gc, x2, y2);
|
|
|
|
LineTo(fl_gc, x3, y3);
|
|
|
|
LineTo(fl_gc, x, y);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y1);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x2, y2);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x3, y3);
|
|
|
|
CGContextClosePath(fl_gc);
|
|
|
|
CGContextStrokePath(fl_gc);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Fills a 3-sided polygon. The polygon must be convex.
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_polygon(int x, int y, int x1, int y1, int x2, int y2) {
|
|
|
|
XPoint p[4];
|
|
|
|
p[0].x = x; p[0].y = y;
|
|
|
|
p[1].x = x1; p[1].y = y1;
|
|
|
|
p[2].x = x2; p[2].y = y2;
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined (USE_X11)
|
|
|
|
p[3].x = x; p[3].y = y;
|
|
|
|
XFillPolygon(fl_display, fl_window, fl_gc, p, 3, Convex, 0);
|
|
|
|
XDrawLines(fl_display, fl_window, fl_gc, p, 4, 0);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
SelectObject(fl_gc, fl_brush());
|
|
|
|
Polygon(fl_gc, p, 3);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y1);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x2, y2);
|
|
|
|
CGContextClosePath(fl_gc);
|
|
|
|
CGContextFillPath(fl_gc);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Fills a 4-sided polygon. The polygon must be convex.
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_polygon(int x, int y, int x1, int y1, int x2, int y2, int x3, int y3) {
|
|
|
|
XPoint p[5];
|
|
|
|
p[0].x = x; p[0].y = y;
|
|
|
|
p[1].x = x1; p[1].y = y1;
|
|
|
|
p[2].x = x2; p[2].y = y2;
|
|
|
|
p[3].x = x3; p[3].y = y3;
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
p[4].x = x; p[4].y = y;
|
|
|
|
XFillPolygon(fl_display, fl_window, fl_gc, p, 4, Convex, 0);
|
|
|
|
XDrawLines(fl_display, fl_window, fl_gc, p, 5, 0);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
SelectObject(fl_gc, fl_brush());
|
|
|
|
Polygon(fl_gc, p, 4);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x, y);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x1, y1);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x2, y2);
|
|
|
|
CGContextAddLineToPoint(fl_gc, x3, y3);
|
|
|
|
CGContextClosePath(fl_gc);
|
|
|
|
CGContextFillPath(fl_gc);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-14 01:42:05 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Draws a single pixel at the given coordinates
|
2008-10-14 01:42:05 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_point(int x, int y) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
XDrawPoint(fl_display, fl_window, fl_gc, x, y);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
SetPixel(fl_gc, x, y, fl_RGB());
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, false);
|
2009-04-12 17:48:03 +04:00
|
|
|
CGContextMoveToPoint(fl_gc, x-.5, y); // Quartz needs a line that is one pixel long, or it will not draw anything
|
|
|
|
CGContextAddLineToPoint(fl_gc, x+.5, y);
|
2004-08-26 04:18:43 +04:00
|
|
|
CGContextStrokePath(fl_gc);
|
2004-09-01 02:00:49 +04:00
|
|
|
if (fl_quartz_line_width_==1.0f) CGContextSetShouldAntialias(fl_gc, true);
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-10-19 21:23:47 +04:00
|
|
|
#define STACK_SIZE 10
|
|
|
|
#define STACK_MAX (STACK_SIZE - 1)
|
2001-11-27 20:44:08 +03:00
|
|
|
static Fl_Region rstack[STACK_SIZE];
|
1998-10-19 21:23:47 +04:00
|
|
|
static int rstackptr=0;
|
2001-11-22 18:35:02 +03:00
|
|
|
int fl_clip_state_number=0; // used by gl_begin.cxx to update GL clip
|
1998-10-06 23:14:55 +04:00
|
|
|
|
2001-11-27 20:44:08 +03:00
|
|
|
#if !defined(WIN32) && !defined(__APPLE__)
|
1998-10-06 23:14:55 +04:00
|
|
|
// Missing X call: (is this the fastest way to init a 1-rectangle region?)
|
|
|
|
// MSWindows equivalent exists, implemented inline in win32.H
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region XRectangleRegion(int x, int y, int w, int h) {
|
1998-10-06 23:14:55 +04:00
|
|
|
XRectangle R;
|
|
|
|
R.x = x; R.y = y; R.width = w; R.height = h;
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region r = XCreateRegion();
|
1998-10-06 23:14:55 +04:00
|
|
|
XUnionRectWithRegion(&R, r, r);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(__APPLE_QUARTZ__)
|
2004-09-10 01:34:48 +04:00
|
|
|
// warning: the Quartz implementation currently uses Quickdraw calls to achieve
|
|
|
|
// clipping. A future version should instead use 'CGContectClipToRect'
|
|
|
|
// and friends.
|
2001-11-27 20:44:08 +03:00
|
|
|
extern Fl_Region fl_window_region;
|
|
|
|
#endif
|
|
|
|
|
2008-10-14 03:10:43 +04:00
|
|
|
/** Undoes any clobbering of clip done by your program */
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_restore_clip() {
|
|
|
|
fl_clip_state_number++;
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region r = rstack[rstackptr];
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
if (r) XSetRegion(fl_display, fl_gc, r);
|
|
|
|
else XSetClipMask(fl_display, fl_gc, 0);
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
SelectClipRgn(fl_gc, r); //if r is NULL, clip is automatically cleared
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2007-02-12 19:41:41 +03:00
|
|
|
if ( fl_window ) // clipping for a true window
|
2004-08-25 04:20:27 +04:00
|
|
|
{
|
|
|
|
GrafPtr port = GetWindowPort( fl_window );
|
|
|
|
if ( port ) {
|
|
|
|
RgnHandle portClip = NewRgn();
|
|
|
|
CopyRgn( fl_window_region, portClip ); // changed
|
|
|
|
if ( r )
|
|
|
|
SectRgn( portClip, r, portClip );
|
2004-08-26 04:18:43 +04:00
|
|
|
Rect portRect; GetPortBounds(port, &portRect);
|
2004-08-28 00:02:45 +04:00
|
|
|
Fl_X::q_clear_clipping();
|
2004-08-26 10:18:12 +04:00
|
|
|
ClipCGContextToRegion(fl_gc, &portRect, portClip );
|
2004-08-28 00:02:45 +04:00
|
|
|
Fl_X::q_fill_context();
|
2004-08-25 04:20:27 +04:00
|
|
|
DisposeRgn( portClip );
|
|
|
|
}
|
2007-02-12 19:41:41 +03:00
|
|
|
} else if (fl_gc) { // clipping for an offscreen drawing world (CGBitmap)
|
|
|
|
Rect portRect;
|
|
|
|
portRect.top = 0;
|
|
|
|
portRect.left = 0;
|
|
|
|
portRect.bottom = CGBitmapContextGetHeight(fl_gc);
|
|
|
|
portRect.right = CGBitmapContextGetWidth(fl_gc);
|
|
|
|
Fl_X::q_clear_clipping();
|
|
|
|
if (r)
|
|
|
|
ClipCGContextToRegion(fl_gc, &portRect, r);
|
|
|
|
Fl_X::q_fill_context();
|
2004-08-25 04:20:27 +04:00
|
|
|
}
|
1998-10-06 23:14:55 +04:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2008-10-08 01:07:12 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Replaces the top of the clipping stack with a clipping region of any shape.
|
|
|
|
|
2008-10-08 01:07:12 +04:00
|
|
|
Fl_Region is an operating system specific type.
|
|
|
|
\param[in] r clipping region
|
|
|
|
*/
|
2001-11-27 20:44:08 +03:00
|
|
|
void fl_clip_region(Fl_Region r) {
|
|
|
|
Fl_Region oldr = rstack[rstackptr];
|
1998-10-06 23:14:55 +04:00
|
|
|
if (oldr) XDestroyRegion(oldr);
|
|
|
|
rstack[rstackptr] = r;
|
|
|
|
fl_restore_clip();
|
|
|
|
}
|
|
|
|
|
2008-10-08 01:07:12 +04:00
|
|
|
/**
|
|
|
|
\returns the current clipping region.
|
|
|
|
*/
|
2002-03-06 21:11:01 +03:00
|
|
|
Fl_Region fl_clip_region() {
|
|
|
|
return rstack[rstackptr];
|
|
|
|
}
|
|
|
|
|
2008-10-08 01:07:12 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Intersects the current clip region with a rectangle and pushes this
|
2008-10-08 01:07:12 +04:00
|
|
|
new region onto the stack.
|
|
|
|
\param[in] x,y,w,h position and size
|
|
|
|
*/
|
2002-06-12 00:58:12 +04:00
|
|
|
void fl_push_clip(int x, int y, int w, int h) {
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region r;
|
1998-10-06 23:14:55 +04:00
|
|
|
if (w > 0 && h > 0) {
|
|
|
|
r = XRectangleRegion(x,y,w,h);
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region current = rstack[rstackptr];
|
1998-10-06 23:14:55 +04:00
|
|
|
if (current) {
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region temp = XCreateRegion();
|
1998-10-06 23:14:55 +04:00
|
|
|
XIntersectRegion(current, r, temp);
|
|
|
|
XDestroyRegion(r);
|
|
|
|
r = temp;
|
2008-10-14 03:10:43 +04:00
|
|
|
#elif defined(WIN32)
|
|
|
|
CombineRgn(r,r,current,RGN_AND);
|
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
|
|
|
SectRgn(r, current, r);
|
|
|
|
#else
|
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} else { // make empty clip region:
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
r = XCreateRegion();
|
|
|
|
#elif defined(WIN32)
|
1998-10-15 18:06:16 +04:00
|
|
|
r = CreateRectRgn(0,0,0,0);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
|
|
|
r = NewRgn();
|
|
|
|
SetEmptyRgn(r);
|
2001-11-27 20:44:08 +03:00
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
1998-10-19 21:23:47 +04:00
|
|
|
if (rstackptr < STACK_MAX) rstack[++rstackptr] = r;
|
2005-03-20 20:41:56 +03:00
|
|
|
else Fl::warning("fl_push_clip: clip stack overflow!\n");
|
1998-10-06 23:14:55 +04:00
|
|
|
fl_restore_clip();
|
|
|
|
}
|
|
|
|
|
|
|
|
// make there be no clip (used by fl_begin_offscreen() only!)
|
2008-10-08 01:07:12 +04:00
|
|
|
/**
|
|
|
|
Pushes an empty clip region onto the stack so nothing will be clipped.
|
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_push_no_clip() {
|
1998-10-19 21:23:47 +04:00
|
|
|
if (rstackptr < STACK_MAX) rstack[++rstackptr] = 0;
|
2005-03-20 20:41:56 +03:00
|
|
|
else Fl::warning("fl_push_no_clip: clip stack overflow!\n");
|
1998-10-06 23:14:55 +04:00
|
|
|
fl_restore_clip();
|
|
|
|
}
|
|
|
|
|
|
|
|
// pop back to previous clip:
|
2008-10-08 01:07:12 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Restores the previous clip region.
|
|
|
|
|
2008-12-07 15:22:39 +03:00
|
|
|
You must call fl_pop_clip() once for every time you call fl_push_clip().
|
2008-10-08 01:07:12 +04:00
|
|
|
Unpredictable results may occur if the clip stack is not empty when
|
|
|
|
you return to FLTK.
|
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
void fl_pop_clip() {
|
1998-10-19 21:23:47 +04:00
|
|
|
if (rstackptr > 0) {
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region oldr = rstack[rstackptr--];
|
1998-10-19 21:23:47 +04:00
|
|
|
if (oldr) XDestroyRegion(oldr);
|
2005-03-20 20:41:56 +03:00
|
|
|
} else Fl::warning("fl_pop_clip: clip stack underflow!\n");
|
1998-10-06 23:14:55 +04:00
|
|
|
fl_restore_clip();
|
|
|
|
}
|
|
|
|
|
2008-10-08 01:07:12 +04:00
|
|
|
/**
|
|
|
|
Does the rectangle intersect the current clip region?
|
|
|
|
\param[in] x,y,w,h position and size of rectangle
|
|
|
|
\returns non-zero if any of the rectangle intersects the current clip
|
2008-12-07 15:22:39 +03:00
|
|
|
region. If this returns 0 you don't have to draw the object.
|
2008-10-08 01:07:12 +04:00
|
|
|
|
|
|
|
\note
|
|
|
|
Under X this returns 2 if the rectangle is partially clipped,
|
2008-12-07 15:22:39 +03:00
|
|
|
and 1 if it is entirely inside the clip region.
|
2008-10-08 01:07:12 +04:00
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
int fl_not_clipped(int x, int y, int w, int h) {
|
2005-03-20 20:41:56 +03:00
|
|
|
if (x+w <= 0 || y+h <= 0) return 0;
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region r = rstack[rstackptr];
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined (USE_X11)
|
|
|
|
return r ? XRectInRegion(r, x, y, w, h) : 1;
|
|
|
|
#elif defined(WIN32)
|
1998-10-06 23:14:55 +04:00
|
|
|
if (!r) return 1;
|
|
|
|
RECT rect;
|
|
|
|
rect.left = x; rect.top = y; rect.right = x+w; rect.bottom = y+h;
|
|
|
|
return RectInRegion(r,&rect);
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2001-11-27 20:44:08 +03:00
|
|
|
if (!r) return 1;
|
|
|
|
Rect rect;
|
|
|
|
rect.left = x; rect.top = y; rect.right = x+w; rect.bottom = y+h;
|
|
|
|
return RectInRgn(&rect, r);
|
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// return rectangle surrounding intersection of this rectangle and clip:
|
2008-10-08 01:07:12 +04:00
|
|
|
/**
|
2008-12-07 21:02:50 +03:00
|
|
|
Intersects the rectangle with the current clip region and returns the
|
2008-10-08 01:07:12 +04:00
|
|
|
bounding box of the result.
|
2008-12-07 21:02:50 +03:00
|
|
|
|
2008-10-08 01:07:12 +04:00
|
|
|
Returns non-zero if the resulting rectangle is different to the original.
|
2008-12-07 15:22:39 +03:00
|
|
|
This can be used to limit the necessary drawing to a rectangle.
|
2009-03-24 04:40:44 +03:00
|
|
|
\p W and \p H are set to zero if the rectangle is completely outside
|
2008-10-08 01:07:12 +04:00
|
|
|
the region.
|
|
|
|
\param[in] x,y,w,h position and size of rectangle
|
|
|
|
\param[out] X,Y,W,H position and size of resulting bounding box.
|
2009-03-24 04:40:44 +03:00
|
|
|
\p W and \p H are set to zero if the rectangle is
|
2008-10-08 01:07:12 +04:00
|
|
|
completely outside the region.
|
|
|
|
\returns Non-zero if the resulting rectangle is different to the original.
|
|
|
|
*/
|
1998-10-06 23:14:55 +04:00
|
|
|
int fl_clip_box(int x, int y, int w, int h, int& X, int& Y, int& W, int& H){
|
|
|
|
X = x; Y = y; W = w; H = h;
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region r = rstack[rstackptr];
|
1998-10-06 23:14:55 +04:00
|
|
|
if (!r) return 0;
|
2008-10-14 03:10:43 +04:00
|
|
|
#if defined(USE_X11)
|
|
|
|
switch (XRectInRegion(r, x, y, w, h)) {
|
|
|
|
case 0: // completely outside
|
|
|
|
W = H = 0;
|
|
|
|
return 2;
|
|
|
|
case 1: // completely inside:
|
|
|
|
return 0;
|
|
|
|
default: // partial:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Fl_Region rr = XRectangleRegion(x,y,w,h);
|
|
|
|
Fl_Region temp = XCreateRegion();
|
|
|
|
XIntersectRegion(r, rr, temp);
|
|
|
|
XRectangle rect;
|
|
|
|
XClipBox(temp, &rect);
|
|
|
|
X = rect.x; Y = rect.y; W = rect.width; H = rect.height;
|
|
|
|
XDestroyRegion(temp);
|
|
|
|
XDestroyRegion(rr);
|
|
|
|
return 1;
|
|
|
|
#elif defined(WIN32)
|
1998-10-15 18:06:16 +04:00
|
|
|
// The win32 API makes no distinction between partial and complete
|
|
|
|
// intersection, so we have to check for partial intersection ourselves.
|
|
|
|
// However, given that the regions may be composite, we have to do
|
|
|
|
// some voodoo stuff...
|
2001-11-27 20:44:08 +03:00
|
|
|
Fl_Region rr = XRectangleRegion(x,y,w,h);
|
|
|
|
Fl_Region temp = CreateRectRgn(0,0,0,0);
|
1998-10-15 18:06:16 +04:00
|
|
|
int ret;
|
|
|
|
if (CombineRgn(temp, rr, r, RGN_AND) == NULLREGION) { // disjoint
|
|
|
|
W = H = 0;
|
|
|
|
ret = 2;
|
|
|
|
} else if (EqualRgn(temp, rr)) { // complete
|
|
|
|
ret = 0;
|
|
|
|
} else { // parital intersection
|
|
|
|
RECT rect;
|
|
|
|
GetRgnBox(temp, &rect);
|
|
|
|
X = rect.left; Y = rect.top; W = rect.right - X; H = rect.bottom - Y;
|
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
DeleteObject(temp);
|
1998-10-06 23:14:55 +04:00
|
|
|
DeleteObject(rr);
|
1998-10-15 18:06:16 +04:00
|
|
|
return ret;
|
2004-08-25 04:20:27 +04:00
|
|
|
#elif defined(__APPLE_QUARTZ__)
|
2001-11-27 20:44:08 +03:00
|
|
|
RgnHandle rr = NewRgn();
|
|
|
|
SetRectRgn( rr, x, y, x+w, y+h );
|
|
|
|
SectRgn( r, rr, rr );
|
2001-12-06 03:17:47 +03:00
|
|
|
Rect rp; GetRegionBounds(rr, &rp);
|
|
|
|
X = rp.left;
|
|
|
|
Y = rp.top;
|
|
|
|
W = rp.right - X;
|
|
|
|
H = rp.bottom - Y;
|
2001-11-27 20:44:08 +03:00
|
|
|
DisposeRgn( rr );
|
|
|
|
if ( H==0 ) return 2;
|
|
|
|
if ( h==H && w==W ) return 0;
|
|
|
|
return 0;
|
|
|
|
#else
|
2008-10-14 03:10:43 +04:00
|
|
|
# error unsupported platform
|
1998-10-06 23:14:55 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|
2005-02-25 00:55:12 +03:00
|
|
|
// End of "$Id$".
|
1998-10-20 00:46:58 +04:00
|
|
|
//
|