[gimp/gtk3-port: 17/228] app: port to GtkWidget::draw()
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 17/228] app: port to GtkWidget::draw()
- Date: Tue, 1 Apr 2014 23:52:34 +0000 (UTC)
commit e462f616ed74d05633c1586342321e9eaffd3e79
Author: Michael Natterer <mitch gimp org>
Date: Fri Oct 15 12:58:53 2010 +0200
app: port to GtkWidget::draw()
app/widgets/gimpcolorbar.c | 36 ++++++++++++++----------------------
1 files changed, 14 insertions(+), 22 deletions(-)
---
diff --git a/app/widgets/gimpcolorbar.c b/app/widgets/gimpcolorbar.c
index ccf5697..8529080 100644
--- a/app/widgets/gimpcolorbar.c
+++ b/app/widgets/gimpcolorbar.c
@@ -44,17 +44,17 @@ enum
/* local function prototypes */
-static void gimp_color_bar_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec);
-static void gimp_color_bar_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec);
+static void gimp_color_bar_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec);
+static void gimp_color_bar_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec);
-static gboolean gimp_color_bar_expose (GtkWidget *widget,
- GdkEventExpose *event);
+static gboolean gimp_color_bar_draw (GtkWidget *widget,
+ cairo_t *cr);
G_DEFINE_TYPE (GimpColorBar, gimp_color_bar, GTK_TYPE_EVENT_BOX)
@@ -72,7 +72,7 @@ gimp_color_bar_class_init (GimpColorBarClass *klass)
object_class->set_property = gimp_color_bar_set_property;
object_class->get_property = gimp_color_bar_get_property;
- widget_class->expose_event = gimp_color_bar_expose;
+ widget_class->draw = gimp_color_bar_draw;
g_object_class_install_property (object_class, PROP_ORIENTATION,
g_param_spec_enum ("orientation",
@@ -153,11 +153,10 @@ gimp_color_bar_get_property (GObject *object,
}
static gboolean
-gimp_color_bar_expose (GtkWidget *widget,
- GdkEventExpose *event)
+gimp_color_bar_draw (GtkWidget *widget,
+ cairo_t *cr)
{
GimpColorBar *bar = GIMP_COLOR_BAR (widget);
- cairo_t *cr;
GtkAllocation allocation;
cairo_surface_t *surface;
cairo_pattern_t *pattern;
@@ -167,11 +166,6 @@ gimp_color_bar_expose (GtkWidget *widget,
gint width, height;
gint i;
- cr = gdk_cairo_create (event->window);
-
- gdk_cairo_region (cr, event->region);
- cairo_clip (cr);
-
gtk_widget_get_allocation (widget, &allocation);
x = y = gtk_container_get_border_width (GTK_CONTAINER (bar));
@@ -182,7 +176,7 @@ gimp_color_bar_expose (GtkWidget *widget,
if (width < 1 || height < 1)
return TRUE;
- cairo_translate (cr, allocation.x + x, allocation.y + y);
+ cairo_translate (cr, x, y);
cairo_rectangle (cr, 0, 0, width, height);
cairo_clip (cr);
@@ -217,8 +211,6 @@ gimp_color_bar_expose (GtkWidget *widget,
cairo_paint (cr);
- cairo_destroy (cr);
-
return TRUE;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]