From 1b5e231c902ab198c577989db44946797ebd4893 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Fri, 19 Feb 2016 12:40:24 +0000 Subject: Rename Fl_Graphics_Driver::set_gc(void*) to gc(void*) and Fl_Graphics_Driver::get_gc() to gc(). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11191 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/drivers/GDI/Fl_GDI_Graphics_Driver_rect.cxx | 92 ++++++++++++------------- 1 file changed, 46 insertions(+), 46 deletions(-) (limited to 'src/drivers/GDI/Fl_GDI_Graphics_Driver_rect.cxx') diff --git a/src/drivers/GDI/Fl_GDI_Graphics_Driver_rect.cxx b/src/drivers/GDI/Fl_GDI_Graphics_Driver_rect.cxx index 78b3482aa..c6ce9d044 100644 --- a/src/drivers/GDI/Fl_GDI_Graphics_Driver_rect.cxx +++ b/src/drivers/GDI/Fl_GDI_Graphics_Driver_rect.cxx @@ -36,16 +36,16 @@ // --- line and polygon drawing with integer coordinates void Fl_GDI_Graphics_Driver::point(int x, int y) { - SetPixel(gc, x, y, fl_RGB()); + SetPixel(gc_, x, y, fl_RGB()); } void Fl_GDI_Graphics_Driver::rect(int x, int y, int w, int h) { if (w<=0 || h<=0) return; - MoveToEx(gc, x, y, 0L); - LineTo(gc, x+w-1, y); - LineTo(gc, x+w-1, y+h-1); - LineTo(gc, x, y+h-1); - LineTo(gc, x, y); + MoveToEx(gc_, x, y, 0L); + LineTo(gc_, x+w-1, y); + LineTo(gc_, x+w-1, y+h-1); + LineTo(gc_, x, y+h-1); + LineTo(gc_, x, y); } void Fl_GDI_Graphics_Driver::focus_rect(int x, int y, int w, int h) { @@ -64,79 +64,79 @@ void Fl_GDI_Graphics_Driver::rectf(int x, int y, int w, int h) { RECT rect; rect.left = x; rect.top = y; rect.right = x + w; rect.bottom = y + h; - FillRect(gc, &rect, fl_brush()); + FillRect(gc_, &rect, fl_brush()); } void Fl_GDI_Graphics_Driver::line(int x, int y, int x1, int y1) { - MoveToEx(gc, x, y, 0L); - LineTo(gc, x1, y1); - SetPixel(gc, x1, y1, fl_RGB()); + MoveToEx(gc_, x, y, 0L); + LineTo(gc_, x1, y1); + SetPixel(gc_, x1, y1, fl_RGB()); } void Fl_GDI_Graphics_Driver::line(int x, int y, int x1, int y1, int x2, int y2) { - MoveToEx(gc, x, y, 0L); - LineTo(gc, x1, y1); - LineTo(gc, x2, y2); - SetPixel(gc, x2, y2, fl_RGB()); + MoveToEx(gc_, x, y, 0L); + LineTo(gc_, x1, y1); + LineTo(gc_, x2, y2); + SetPixel(gc_, x2, y2, fl_RGB()); } void Fl_GDI_Graphics_Driver::xyline(int x, int y, int x1) { - MoveToEx(gc, x, y, 0L); LineTo(gc, x1+1, y); + MoveToEx(gc_, x, y, 0L); LineTo(gc_, x1+1, y); } void Fl_GDI_Graphics_Driver::xyline(int x, int y, int x1, int y2) { if (y2 < y) y2--; else y2++; - MoveToEx(gc, x, y, 0L); - LineTo(gc, x1, y); - LineTo(gc, x1, y2); + MoveToEx(gc_, x, y, 0L); + LineTo(gc_, x1, y); + LineTo(gc_, x1, y2); } void Fl_GDI_Graphics_Driver::xyline(int x, int y, int x1, int y2, int x3) { if(x3 < x1) x3--; else x3++; - MoveToEx(gc, x, y, 0L); - LineTo(gc, x1, y); - LineTo(gc, x1, y2); - LineTo(gc, x3, y2); + MoveToEx(gc_, x, y, 0L); + LineTo(gc_, x1, y); + LineTo(gc_, x1, y2); + LineTo(gc_, x3, y2); } void Fl_GDI_Graphics_Driver::yxline(int x, int y, int y1) { if (y1 < y) y1--; else y1++; - MoveToEx(gc, x, y, 0L); LineTo(gc, x, y1); + MoveToEx(gc_, x, y, 0L); LineTo(gc_, x, y1); } void Fl_GDI_Graphics_Driver::yxline(int x, int y, int y1, int x2) { if (x2 > x) x2++; else x2--; - MoveToEx(gc, x, y, 0L); - LineTo(gc, x, y1); - LineTo(gc, x2, y1); + MoveToEx(gc_, x, y, 0L); + LineTo(gc_, x, y1); + LineTo(gc_, x2, y1); } void Fl_GDI_Graphics_Driver::yxline(int x, int y, int y1, int x2, int y3) { if(y3