[gtk+/rendering-cleanup-next: 126/203] testpixbuf-save: Use the draw signal
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/rendering-cleanup-next: 126/203] testpixbuf-save: Use the draw signal
- Date: Thu, 23 Sep 2010 10:41:41 +0000 (UTC)
commit 88fe5dd711e141375e947f61bc7ed7fd2c626dac
Author: Benjamin Otte <otte redhat com>
Date: Thu Sep 9 01:15:14 2010 +0200
testpixbuf-save: Use the draw signal
demos/testpixbuf-save.c | 15 +++++----------
1 files changed, 5 insertions(+), 10 deletions(-)
---
diff --git a/demos/testpixbuf-save.c b/demos/testpixbuf-save.c
index f3e9f04..e7cdd60 100644
--- a/demos/testpixbuf-save.c
+++ b/demos/testpixbuf-save.c
@@ -307,21 +307,16 @@ close_app (GtkWidget *widget, gpointer data)
return TRUE;
}
-static int
-expose_cb (GtkWidget *drawing_area, GdkEventExpose *evt, gpointer data)
+static gboolean
+draw_cb (GtkWidget *drawing_area, cairo_t *cr, gpointer data)
{
GdkPixbuf *pixbuf;
- cairo_t *cr;
pixbuf = (GdkPixbuf *) g_object_get_data (G_OBJECT (drawing_area),
"pixbuf");
- cr = gdk_cairo_create (evt->window);
gdk_cairo_set_source_pixbuf (cr, pixbuf, 0, 0);
- gdk_cairo_rectangle (cr, &evt->area);
- cairo_fill (cr);
-
- cairo_destroy (cr);
+ cairo_paint (cr);
return FALSE;
}
@@ -377,8 +372,8 @@ main (int argc, char **argv)
gtk_widget_set_size_request (GTK_WIDGET (drawing_area),
gdk_pixbuf_get_width (pixbuf),
gdk_pixbuf_get_height (pixbuf));
- g_signal_connect (drawing_area, "expose_event",
- G_CALLBACK (expose_cb), NULL);
+ g_signal_connect (drawing_area, "draw",
+ G_CALLBACK (draw_cb), NULL);
g_signal_connect (drawing_area, "configure_event",
G_CALLBACK (configure_cb), NULL);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]