diff options
author | infirit <[email protected]> | 2015-07-22 15:39:28 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-07-22 17:58:34 +0200 |
commit | 348a70188ac547fdbbf9f2663641e7cf90098487 (patch) | |
tree | e93dc3d53408739fcaaee348b42fd5539fc04a46 /src/themes | |
parent | 9ffbe7001c40d8121b29749a0142f5d7b0a4a1e3 (diff) | |
download | mate-notification-daemon-348a70188ac547fdbbf9f2663641e7cf90098487.tar.bz2 mate-notification-daemon-348a70188ac547fdbbf9f2663641e7cf90098487.tar.xz |
coco: Drop GdkPixmap usage for cairo in Gtk2
Diffstat (limited to 'src/themes')
-rw-r--r-- | src/themes/coco/coco-theme.c | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/src/themes/coco/coco-theme.c b/src/themes/coco/coco-theme.c index 72f0d31..d31de8b 100644 --- a/src/themes/coco/coco-theme.c +++ b/src/themes/coco/coco-theme.c @@ -175,7 +175,7 @@ paint_window(GtkWidget *widget, cairo_t *context; GtkAllocation allocation; #if !GTK_CHECK_VERSION (3, 0, 0) - cairo_t *cr; + cairo_t *cr = gdk_cairo_create (event->window); #endif if (windata->width == 0) { @@ -186,7 +186,6 @@ paint_window(GtkWidget *widget, if (!(windata->enable_transparency)) { -#if GTK_CHECK_VERSION (3, 0, 0) surface = cairo_surface_create_similar (cairo_get_target (cr), CAIRO_CONTENT_COLOR_ALPHA, windata->width, @@ -206,27 +205,6 @@ paint_window(GtkWidget *widget, cairo_restore (cr); cairo_surface_destroy(surface); -#else - GdkPixmap *mask; - cairo_t *mask_cr; - mask = gdk_pixmap_new (NULL, windata->width, - windata->height, 1); - mask_cr = gdk_cairo_create ((GdkDrawable *) mask); - cairo_set_operator (mask_cr, CAIRO_OPERATOR_CLEAR); - cairo_paint (mask_cr); - - cairo_set_operator (mask_cr, CAIRO_OPERATOR_OVER); - cairo_set_source_rgba (mask_cr, 1, 1, 1, 1); - nodoka_rounded_rectangle (mask_cr, 0, 0, - windata->width, - windata->height, - 6); - cairo_fill (mask_cr); - gdk_window_shape_combine_mask (windata->win->window, - (GdkBitmap *) mask, 0,0); - gdk_pixmap_unref (mask); - cairo_destroy (mask_cr); -#endif } context = gdk_cairo_create(gtk_widget_get_window(widget)); |