[gtk+/wip/baedert/drawing: 12/348] gtkgrid: Remove css box drawing



commit 537187d77a4eb7cb7cf842a9b1e17a562bdaf088
Author: Timm Bäder <mail baedert org>
Date:   Wed May 3 10:18:55 2017 +0200

    gtkgrid: Remove css box drawing

 gtk/gtkgrid.c |   24 +-----------------------
 1 files changed, 1 insertions(+), 23 deletions(-)
---
diff --git a/gtk/gtkgrid.c b/gtk/gtkgrid.c
index 7079991..7dbcfa8 100644
--- a/gtk/gtkgrid.c
+++ b/gtk/gtkgrid.c
@@ -1667,27 +1667,6 @@ gtk_grid_allocate (GtkCssGadget        *gadget,
   gtk_grid_request_allocate_children (&request, allocation, out_clip);
 }
 
-static gboolean
-gtk_grid_render (GtkCssGadget *gadget,
-                 GtkSnapshot  *snapshot,
-                 int           x,
-                 int           y,
-                 int           width,
-                 int           height,
-                 gpointer      data)
-{
-  GTK_WIDGET_CLASS (gtk_grid_parent_class)->snapshot (gtk_css_gadget_get_owner (gadget), snapshot);
-
-  return FALSE;
-}
-
-static void
-gtk_grid_snapshot (GtkWidget   *widget,
-                   GtkSnapshot *snapshot)
-{
-  gtk_css_gadget_snapshot (GTK_GRID (widget)->priv->gadget, snapshot);
-}
-
 static void
 gtk_grid_class_init (GtkGridClass *class)
 {
@@ -1701,7 +1680,6 @@ gtk_grid_class_init (GtkGridClass *class)
 
   widget_class->size_allocate = gtk_grid_size_allocate;
   widget_class->measure = gtk_grid_measure_;
-  widget_class->snapshot = gtk_grid_snapshot;
 
   container_class->add = gtk_grid_add;
   container_class->remove = gtk_grid_remove;
@@ -1808,7 +1786,7 @@ gtk_grid_init (GtkGrid *grid)
                                                      GTK_WIDGET (grid),
                                                      gtk_grid_measure,
                                                      gtk_grid_allocate,
-                                                     gtk_grid_render,
+                                                     NULL,
                                                      NULL,
                                                      NULL);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]