[libgnomekbd/gtk-style-context] Make build with GtkStyleContext
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc: 
- Subject: [libgnomekbd/gtk-style-context] Make build with GtkStyleContext
- Date: Tue, 16 Nov 2010 05:01:25 +0000 (UTC)
commit dacd6e9ee33833f6cb779422b226f7823e816cf9
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Nov 15 23:59:52 2010 -0500
    Make build with GtkStyleContext
    
    Quick port from gtk_paint_ to gtk_render_.
 libgnomekbd/gkbd-keyboard-drawing.c |   13 ++++---------
 1 files changed, 4 insertions(+), 9 deletions(-)
---
diff --git a/libgnomekbd/gkbd-keyboard-drawing.c b/libgnomekbd/gkbd-keyboard-drawing.c
index 14cd15a..30c0267 100644
--- a/libgnomekbd/gkbd-keyboard-drawing.c
+++ b/libgnomekbd/gkbd-keyboard-drawing.c
@@ -1384,8 +1384,6 @@ static gboolean
 draw (GtkWidget * widget,
       cairo_t *cr, GkbdKeyboardDrawing * drawing)
 {
-	GtkAllocation allocation;
-
 	if (!drawing->xkb)
 		return FALSE;
 
@@ -1396,13 +1394,10 @@ draw (GtkWidget * widget,
         cairo_paint (cr);
 
 	if (gtk_widget_has_focus (widget)) {
-		gtk_widget_get_allocation (widget, &allocation);
-		gtk_paint_focus (gtk_widget_get_style (widget),
-				 cr,
-				 gtk_widget_get_state (widget),
-				 widget, "keyboard-drawing",
-				 0, 0, allocation.width,
-				 allocation.height);
+                gtk_render_focus (gtk_widget_get_style_context (widget),
+                                  cr, 0, 0,
+                                  gtk_widget_get_allocated_width (widget),
+                                  gtk_widget_get_allocated_height (widget));
 	}
 
 	return FALSE;
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]