diff gtk3/dw.c @ 1275:0b34e2cf0706

Updated dw_draw_rect and dw_draw_polygon to accept flags the same way as dw_draw_arc. The fill parameter has been replaced by flags which should be backwards compatible. Also updated the source comments to reflect these changes.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 30 Oct 2011 10:14:49 +0000
parents 8655753e2bc4
children fe92a6f6d3e7
line wrap: on
line diff
--- a/gtk3/dw.c	Sun Oct 30 02:13:47 2011 +0000
+++ b/gtk3/dw.c	Sun Oct 30 10:14:49 2011 +0000
@@ -6832,12 +6832,12 @@
  * Parameters:
  *       handle: Handle to the window.
  *       pixmap: Handle to the pixmap. (choose only one of these)
- *       fill: if true filled
+ *       flags: DW_DRAW_FILL (1) to fill the polygon or DW_DRAW_DEFAULT (0).
  *       number of points
  *       x[]: X coordinates.
  *       y[]: Y coordinates.
  */
-void dw_draw_polygon(HWND handle, HPIXMAP pixmap, int fill, int npoints, int *x, int *y)
+void dw_draw_polygon(HWND handle, HPIXMAP pixmap, int flags, int npoints, int *x, int *y)
 {
    int _locked_by_me = FALSE;
    cairo_t *cr = NULL;
@@ -6868,7 +6868,7 @@
       {
          cairo_line_to(cr, x[z], y[z]);
       }
-      if(fill)
+      if(flags & DW_DRAW_FILL)
          cairo_fill(cr);
       cairo_stroke(cr);
       cairo_destroy(cr);
@@ -6880,13 +6880,13 @@
  * Parameters:
  *       handle: Handle to the window.
  *       pixmap: Handle to the pixmap. (choose only one of these)
- *       fill: if true filled
+ *       flags: DW_DRAW_FILL (1) to fill the box or DW_DRAW_DEFAULT (0).
  *       x: X coordinate.
  *       y: Y coordinate.
  *       width: Width of rectangle.
  *       height: Height of rectangle.
  */
-void dw_draw_rect(HWND handle, HPIXMAP pixmap, int fill, int x, int y, int width, int height)
+void dw_draw_rect(HWND handle, HPIXMAP pixmap, int flags, int x, int y, int width, int height)
 {
    int _locked_by_me = FALSE;
    cairo_t *cr = NULL;
@@ -6915,7 +6915,7 @@
       cairo_line_to(cr, x, y + height);
       cairo_line_to(cr, x + width, y + height);
       cairo_line_to(cr, x + width, y);
-      if(fill)
+      if(flags & DW_DRAW_FILL)
          cairo_fill(cr);
       cairo_stroke(cr);
       cairo_destroy(cr);
@@ -6927,7 +6927,8 @@
  * Parameters:
  *       handle: Handle to the window.
  *       pixmap: Handle to the pixmap. (choose only one of these)
- *       flags: For future use.
+ *       flags: DW_DRAW_FILL (1) to fill the arc or DW_DRAW_DEFAULT (0).
+ *              DW_DRAW_FULL will draw a complete circle/elipse.
  *       xorigin: X coordinate of center of arc.
  *       yorigin: Y coordinate of center of arc.
  *       x1: X coordinate of first segment of arc.