]> saetta.ns0.it Git - libgtkcalendarex/commitdiff
Adjustment on GooCanvas size allocation on GtkCalExViewDay.
authorAndrea Zagli <azagli@libero.it>
Sat, 4 Dec 2010 09:08:51 +0000 (10:08 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 4 Dec 2010 09:08:51 +0000 (10:08 +0100)
src/gtkcalex.c
src/gtkcalexviewday.c

index 64f3f5af115f486ec38a3e39df6fdd713a3e933b..d2f419c3b7518e3829612420cfe0445dcaa61cf1 100644 (file)
@@ -290,7 +290,7 @@ gtk_calex_size_request (GtkWidget *widget,
        border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
        requisition->width += (border_width * 2);
        requisition->height += (border_width * 2);
-g_message("gtkcalex requisition %d %d",requisition->width,requisition->height);
+/*g_message("gtkcalex requisition %d %d",requisition->width,requisition->height);*/
 }
 
 static void
@@ -312,7 +312,9 @@ gtk_calex_size_allocate (GtkWidget *widget,
        bin = GTK_BIN (gtkcalex);
 
        priv = GTK_CALEX_GET_PRIVATE (gtkcalex);
-g_message("gtkcalex allocation %d %d %d %d",allocation->x,allocation->y,allocation->width,allocation->height);
+
+/*g_message("gtkcalex allocation %d %d %d %d",allocation->x,allocation->y,allocation->width,allocation->height);*/
+
        gtk_widget_set_allocation (widget, allocation);
 
        border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
index 53940a3f278554c1941870bf3cbbc0d8e9697cda..89e330f96763773195ae095a5b108320dd699e5a 100644 (file)
@@ -289,6 +289,8 @@ gtk_calex_view_day_draw (GtkCalExViewDay *gtk_calex_view_day)
                                                             NULL);
                                }
                }
+
+       goo_canvas_set_bounds (GOO_CANVAS (priv->goo_canvas), 0, 0, allocation.width, y + 20);
 }
 
 static void
@@ -341,7 +343,9 @@ gtk_calex_view_day_size_allocate (GtkWidget *widget,
        bin = GTK_BIN (gtkcalexvd);
 
        priv = GTK_CALEX_VIEW_DAY_GET_PRIVATE (gtkcalexvd);
-g_message("gtkcalexviewday allocation %d %d %d %d",allocation->x,allocation->y,allocation->width,allocation->height);
+
+/*g_message("gtkcalexviewday allocation %d %d %d %d",allocation->x,allocation->y,allocation->width,allocation->height);*/
+
        gtk_widget_set_allocation (widget, allocation);
 
        border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));