]> Pileus Git - ~andy/gtk/commitdiff
style: Convert draw_shadow_gap vfunc to a Cairo version
authorBenjamin Otte <otte@redhat.com>
Mon, 16 Aug 2010 14:09:11 +0000 (16:09 +0200)
committerBenjamin Otte <otte@redhat.com>
Sun, 26 Sep 2010 13:02:58 +0000 (15:02 +0200)
gtk/gtkstyle.c
gtk/gtkstyle.h
modules/engines/pixbuf/pixbuf-draw.c

index d4bbef0c5f1c509460e9ccdfea46a248793ff10c..573bdee6ae8c723d37f423abad374d95944c6aec 100644 (file)
@@ -199,10 +199,9 @@ static void gtk_default_draw_tab        (GtkStyle        *style,
                                         gint             width,
                                         gint             height);
 static void gtk_default_draw_shadow_gap (GtkStyle        *style,
-                                        GdkWindow       *window,
+                                        cairo_t         *cr,
                                         GtkStateType     state_type,
                                         GtkShadowType    shadow_type,
-                                        GdkRectangle    *area,
                                         GtkWidget       *widget,
                                         const gchar     *detail,
                                         gint             x,
@@ -3046,10 +3045,9 @@ gtk_default_draw_tab (GtkStyle      *style,
 
 static void 
 gtk_default_draw_shadow_gap (GtkStyle       *style,
-                             GdkWindow      *window,
+                             cairo_t        *cr,
                              GtkStateType    state_type,
                              GtkShadowType   shadow_type,
-                             GdkRectangle   *area,
                              GtkWidget      *widget,
                              const gchar    *detail,
                              gint            x,
@@ -3064,9 +3062,6 @@ gtk_default_draw_shadow_gap (GtkStyle       *style,
   GdkColor *color2 = NULL;
   GdkColor *color3 = NULL;
   GdkColor *color4 = NULL;
-  cairo_t *cr;
-  
-  sanitize_size (window, &width, &height);
   
   switch (shadow_type)
     {
@@ -3099,13 +3094,6 @@ gtk_default_draw_shadow_gap (GtkStyle       *style,
       break;
     }
 
-  cr = gdk_cairo_create (window);
-  if (area)
-    {
-      gdk_cairo_rectangle (cr, area);
-      cairo_clip (cr);
-    }
-  
   switch (shadow_type)
     {
     case GTK_SHADOW_NONE:
@@ -3249,8 +3237,6 @@ gtk_default_draw_shadow_gap (GtkStyle       *style,
           break;
         }
     }
-
-  cairo_destroy (cr);
 }
 
 static void 
@@ -5573,13 +5559,72 @@ gtk_paint_shadow_gap (GtkStyle           *style,
                       gint                gap_x,
                       gint                gap_width)
 {
+  cairo_t *cr;
+
   g_return_if_fail (GTK_IS_STYLE (style));
   g_return_if_fail (GTK_STYLE_GET_CLASS (style)->draw_shadow_gap != NULL);
   g_return_if_fail (style->depth == gdk_drawable_get_depth (window));
 
-  GTK_STYLE_GET_CLASS (style)->draw_shadow_gap (style, window, state_type, shadow_type,
-                                                (GdkRectangle *) area, widget, detail,
+  sanitize_size (window, &width, &height);
+  
+  cr = gtk_style_cairo_create (window, area);
+
+  gtk_cairo_paint_shadow_gap (style, cr, state_type, shadow_type,
+                              widget, detail,
+                              x, y, width, height, gap_side, gap_x, gap_width);
+
+  cairo_destroy (cr);
+}
+
+
+/**
+ * gtk_cairo_paint_shadow_gap:
+ * @style: a #GtkStyle
+ * @cr: a #cairo_t
+ * @state_type: a state
+ * @shadow_type: type of shadow to draw
+ * @widget: (allow-none): the widget
+ * @detail: (allow-none): a style detail
+ * @x: x origin of the rectangle
+ * @y: y origin of the rectangle
+ * @width: width of the rectangle
+ * @height: width of the rectangle
+ * @gap_side: side in which to leave the gap
+ * @gap_x: starting position of the gap
+ * @gap_width: width of the gap
+ *
+ * Draws a shadow around the given rectangle in @cr
+ * using the given style and state and shadow type, leaving a 
+ * gap in one side.
+*/
+void
+gtk_cairo_paint_shadow_gap (GtkStyle           *style,
+                            cairo_t            *cr,
+                            GtkStateType        state_type,
+                            GtkShadowType       shadow_type,
+                            GtkWidget          *widget,
+                            const gchar        *detail,
+                            gint                x,
+                            gint                y,
+                            gint                width,
+                            gint                height,
+                            GtkPositionType     gap_side,
+                            gint                gap_x,
+                            gint                gap_width)
+{
+  g_return_if_fail (GTK_IS_STYLE (style));
+  g_return_if_fail (GTK_STYLE_GET_CLASS (style)->draw_shadow_gap != NULL);
+  g_return_if_fail (cr != NULL);
+  g_return_if_fail (width >= 0);
+  g_return_if_fail (height >= 0);
+
+  cairo_save (cr);
+
+  GTK_STYLE_GET_CLASS (style)->draw_shadow_gap (style, cr, state_type, shadow_type,
+                                                widget, detail,
                                                 x, y, width, height, gap_side, gap_x, gap_width);
+
+  cairo_restore (cr);
 }
 
 
index d51e1ef3267ef53562c2b1031691b79b02e3a473..7a465d44bc6e7a84abb8152cfd91aac5aa4c462f 100644 (file)
@@ -264,10 +264,9 @@ struct _GtkStyleClass
                                 gint                    width,
                                 gint                    height);
   void (*draw_shadow_gap)      (GtkStyle               *style,
-                                GdkWindow              *window,
+                                cairo_t                *cr,
                                 GtkStateType            state_type,
                                 GtkShadowType           shadow_type,
-                                GdkRectangle           *area,
                                 GtkWidget              *widget,
                                 const gchar            *detail,
                                 gint                    x,
@@ -650,20 +649,33 @@ void gtk_cairo_paint_tab         (GtkStyle           *style,
                                   gint                y,
                                   gint                width,
                                   gint                height);
-void gtk_paint_shadow_gap  (GtkStyle           *style,
-                           GdkWindow          *window,
-                           GtkStateType        state_type,
-                           GtkShadowType       shadow_type,
-                           const GdkRectangle *area,
-                           GtkWidget          *widget,
-                           const gchar        *detail,
-                           gint                x,
-                           gint                y,
-                           gint                width,
-                           gint                height,
-                           GtkPositionType     gap_side,
-                           gint                gap_x,
-                           gint                gap_width);
+void gtk_paint_shadow_gap        (GtkStyle           *style,
+                                  GdkWindow          *window,
+                                  GtkStateType        state_type,
+                                  GtkShadowType       shadow_type,
+                                  const GdkRectangle *area,
+                                  GtkWidget          *widget,
+                                  const gchar        *detail,
+                                  gint                x,
+                                  gint                y,
+                                  gint                width,
+                                  gint                height,
+                                  GtkPositionType     gap_side,
+                                  gint                gap_x,
+                                  gint                gap_width);
+void gtk_cairo_paint_shadow_gap  (GtkStyle           *style,
+                                  cairo_t            *cr,
+                                  GtkStateType        state_type,
+                                  GtkShadowType       shadow_type,
+                                  GtkWidget          *widget,
+                                  const gchar        *detail,
+                                  gint                x,
+                                  gint                y,
+                                  gint                width,
+                                  gint                height,
+                                  GtkPositionType     gap_side,
+                                  gint                gap_x,
+                                  gint                gap_width);
 void gtk_paint_box_gap     (GtkStyle           *style,
                            GdkWindow          *window,
                            GtkStateType        state_type,
index 2cfae28a2640cf916b649b722e859b094d9da58a..e61d7cde516956441367b42b3be81b00a7747538 100644 (file)
@@ -767,10 +767,9 @@ draw_tab (GtkStyle     *style,
 
 static void
 draw_shadow_gap (GtkStyle       *style,
-                GdkWindow      *window,
+                cairo_t        *cr,
                 GtkStateType    state,
                 GtkShadowType   shadow,
-                GdkRectangle   *area,
                 GtkWidget      *widget,
                 const gchar    *detail,
                 gint            x,
@@ -792,9 +791,9 @@ draw_shadow_gap (GtkStyle       *style,
   match_data.shadow = shadow;
   match_data.state = state;
   
-  if (!draw_gap_image_no_cairo (style, window, area, widget, &match_data, FALSE,
+  if (!draw_gap_image (style, cr, widget, &match_data, FALSE,
                       x, y, width, height, gap_side, gap_x, gap_width))
-    parent_class->draw_shadow_gap (style, window, state, shadow, area, widget, detail,
+    parent_class->draw_shadow_gap (style, cr, state, shadow, widget, detail,
                                   x, y, width, height, gap_side, gap_x, gap_width);
 }