// // Rectangle drawing routines for the Fast Light Tool Kit (FLTK). // // Copyright 1998-2018 by Bill Spitzak and others. // // 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: // // https://www.fltk.org/COPYING.php // // Please see the following page on how to report bugs and issues: // // https://www.fltk.org/bugs.php // /** \file Fl_GDI_Graphics_Driver_rect.cxx \brief Windows GDI specific line and polygon drawing with integer coordinates. */ #include #include #include #include #include #include "Fl_GDI_Graphics_Driver.H" // --- line and polygon drawing with integer coordinates void Fl_GDI_Graphics_Driver::point(int x, int y) { rectf(x, y, 1, 1); } void Fl_GDI_Graphics_Driver::overlay_rect(int x, int y, int w , int h) { // make pen have a one-pixel width line_style_unscaled( (color()==FL_WHITE?FL_SOLID:FL_DOT), 1, NULL); int right = this->floor(x+w-1), bottom = this->floor(y+h-1); x = this->floor(x); y = this->floor(y); MoveToEx(gc_, x, y, 0L); LineTo(gc_, right, y); LineTo(gc_, right, bottom); LineTo(gc_, x, bottom); LineTo(gc_, x, y); } void Fl_GDI_Graphics_Driver::rect(int x, int y, int w, int h) { if (w > 0 && h > 0) { xyline(x, y, (x+w-1)); yxline(x, y, (y+h-1)); yxline((x+w-1), y, (y+h-1)); xyline(x, (y+h-1), (x+w-1)); } } void Fl_GDI_Graphics_Driver::focus_rect(int x, int y, int w, int h) { // Windows 95/98/ME do not implement the dotted line style, so draw // every other pixel around the focus area... w = floor(x+w-1) - floor(x) + 1; h = floor(y+h-1) - floor(y) + 1; x = floor(x); y = floor(y); int i=1, xx, yy; COLORREF c = fl_RGB(); for (xx = 0; xx < w; xx++, i++) if (i & 1) SetPixel(gc_, x+xx, y, c); for (yy = 0; yy < h; yy++, i++) if (i & 1) SetPixel(gc_, x+w, y+yy, c); for (xx = w; xx > 0; xx--, i++) if (i & 1) SetPixel(gc_, x+xx, y+h, c); for (yy = h; yy > 0; yy--, i++) if (i & 1) SetPixel(gc_, x, y+yy, c); } void Fl_GDI_Graphics_Driver::rectf(int x, int y, int w, int h) { if (w<=0 || h<=0) return; RECT rect; rect.left = this->floor(x); rect.top = this->floor(y); rect.right = this->floor(x + w); rect.bottom = this->floor(y + h); FillRect(gc_, &rect, fl_brush()); } void Fl_GDI_Graphics_Driver::line_unscaled(float x, float y, float x1, float y1) { MoveToEx(gc_, int(x), int(y), 0L); LineTo(gc_, int(x1), int(y1)); SetPixel(gc_, int(x1), int(y1), fl_RGB()); } void Fl_GDI_Graphics_Driver::line_unscaled(float x, float y, float x1, float y1, float x2, float y2) { MoveToEx(gc_, int(x), int(y), 0L); LineTo(gc_, int(x1), int(y1)); LineTo(gc_, int(x2), int(y2)); SetPixel(gc_, int(x2), int(y2), fl_RGB()); } static HPEN change_pen_width(int width, HDC gc) { // set the width of the pen, return previous pen LOGBRUSH penbrush = {BS_SOLID, fl_RGB(), 0}; HPEN newpen = ExtCreatePen(PS_GEOMETRIC | PS_ENDCAP_FLAT | PS_JOIN_ROUND, width, &penbrush, 0, 0); return (HPEN)SelectObject(gc, newpen); } void Fl_GDI_Graphics_Driver::xyline(int x, int y, int x1) { if (y < 0) return; float s = scale(); int xx = (x < x1 ? x : x1); int xx1 = (x < x1 ? x1 : x); if (s != int(s) && line_width_ <= int(s)) { int lwidth = this->floor((y+1)) - this->floor(y); bool need_pen = (lwidth != int(s)); HPEN oldpen = (need_pen ? change_pen_width(lwidth, gc_) : NULL); MoveToEx(gc_, this->floor(xx), this->floor(y) + int(lwidth/2.f) , 0L); LineTo(gc_, this->floor((xx1+1)), this->floor(y) + int(lwidth/2.f)); if (need_pen) { DeleteObject(SelectObject(gc_, oldpen)); } } else { y = int((y + 0.5f) * s); MoveToEx(gc_, this->floor(xx), y, 0L); LineTo(gc_, this->floor(xx1) + int(s) , y); } } void Fl_GDI_Graphics_Driver::xyline(int x, int y, int x1, int y2) { xyline(x, y, x1); yxline(x1, y, y2); } void Fl_GDI_Graphics_Driver::xyline(int x, int y, int x1, int y2, int x3) { xyline(x, y, x1); yxline(x1, y, y2); xyline(x1, y2, x3); } void Fl_GDI_Graphics_Driver::yxline(int x, int y, int y1) { if (x < 0) return; double s = scale(); int yy = (y < y1 ? y : y1); int yy1 = (y < y1 ? y1 : y); if (s != int(s) && line_width_ <= int(s)) { int lwidth = (this->floor((x+1)) - this->floor(x)); bool need_pen = (lwidth != int(s)); HPEN oldpen = (need_pen ? change_pen_width(lwidth, gc_) : NULL); MoveToEx(gc_, this->floor(x) + int(lwidth/2.f), this->floor(yy), 0L); LineTo(gc_, this->floor(x) + int(lwidth/2.f), this->floor((yy1+1)) ); if (need_pen) { DeleteObject(SelectObject(gc_, oldpen)); } } else { x = int((x + 0.5f) * s); MoveToEx(gc_, x, this->floor(yy), 0L); LineTo(gc_, x, this->floor(yy1) + int(s)); } } void Fl_GDI_Graphics_Driver::yxline(int x, int y, int y1, int x2) { yxline(x, y, y1); xyline(x, y1, x2); } void Fl_GDI_Graphics_Driver::yxline(int x, int y, int y1, int x2, int y3) { yxline(x, y, y1); xyline(x, y1, x2); yxline(x2, y1, y3); } void Fl_GDI_Graphics_Driver::loop_unscaled(float x, float y, float x1, float y1, float x2, float y2) { MoveToEx(gc_, int(x), int(y), 0L); LineTo(gc_, int(x1), int(y1)); LineTo(gc_, int(x2), int(y2)); LineTo(gc_, int(x), int(y)); } void Fl_GDI_Graphics_Driver::loop_unscaled(float x, float y, float x1, float y1, float x2, float y2, float x3, float y3) { MoveToEx(gc_, int(x), int(y), 0L); LineTo(gc_, int(x1), int(y1)); LineTo(gc_, int(x2), int(y2)); LineTo(gc_, int(x3), int(y3)); LineTo(gc_, int(x), int(y)); } void Fl_GDI_Graphics_Driver::polygon_unscaled(float x, float y, float x1, float y1, float x2, float y2) { POINT p[3]; p[0].x = int(x); p[0].y = int(y); p[1].x = int(x1); p[1].y = int(y1); p[2].x = int(x2); p[2].y = int(y2); SelectObject(gc_, fl_brush()); Polygon(gc_, p, 3); } void Fl_GDI_Graphics_Driver::polygon_unscaled(float x, float y, float x1, float y1, float x2, float y2, float x3, float y3) { POINT p[4]; p[0].x = int(x); p[0].y = int(y); p[1].x = int(x1); p[1].y = int(y1); p[2].x = int(x2); p[2].y = int(y2); p[3].x = int(x3); p[3].y = int(y3); SelectObject(gc_, fl_brush()); Polygon(gc_, p, 4); } // --- clipping void Fl_GDI_Graphics_Driver::push_clip(int x, int y, int w, int h) { Fl_Region r; if (w > 0 && h > 0) { r = XRectangleRegion(x,y,w,h); Fl_Region current = rstack[rstackptr]; if (current) { CombineRgn(r,r,current,RGN_AND); } } else { // make empty clip region: r = CreateRectRgn(0,0,0,0); } if (rstackptr < region_stack_max) rstack[++rstackptr] = r; else Fl::warning("Fl_GDI_Graphics_Driver::push_clip: clip stack overflow!\n"); fl_restore_clip(); } int Fl_GDI_Graphics_Driver::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; Fl_Region r = rstack[rstackptr]; if (!r) return 0; // 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... Fl_Region rr = XRectangleRegion(x,y,w,h); Fl_Region temp = CreateRectRgn(0,0,0,0); 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 { // partial intersection RECT rect; GetRgnBox(temp, &rect); if (Fl_Surface_Device::surface() != Fl_Display_Device::display_device()) { // if print context, convert coords from device to logical POINT pt[2] = { {rect.left, rect.top}, {rect.right, rect.bottom} }; DPtoLP(gc_, pt, 2); X = pt[0].x; Y = pt[0].y; W = pt[1].x - X; H = pt[1].y - Y; } else { X = rect.left; Y = rect.top; W = rect.right - X; H = rect.bottom - Y; } ret = 1; } DeleteObject(temp); DeleteObject(rr); return ret; } int Fl_GDI_Graphics_Driver::not_clipped(int x, int y, int w, int h) { if (x+w <= 0 || y+h <= 0) return 0; Fl_Region r = rstack[rstackptr]; if (!r) return 1; RECT rect; if (Fl_Surface_Device::surface() != Fl_Display_Device::display_device()) { // in case of print context, convert coords from logical to device POINT pt[2] = { {x, y}, {x + w, y + h} }; LPtoDP(gc_, pt, 2); rect.left = pt[0].x; rect.top = pt[0].y; rect.right = pt[1].x; rect.bottom = pt[1].y; } else { rect.left = x; rect.top = y; rect.right = x+w; rect.bottom = y+h; } return RectInRegion(r,&rect); } void Fl_GDI_Graphics_Driver::restore_clip() { fl_clip_state_number++; if (gc_) { HRGN r = NULL; if (rstack[rstackptr]) r = scale_clip(scale()); SelectClipRgn(gc_, rstack[rstackptr]); // if region is NULL, clip is automatically cleared if (r) unscale_clip(r); } }