[glade] Replace use of deprecated gdk_cursor_new



commit 99334e065d05bdbf9abe4bcaf217c49e7a89f357
Author: Ben Iofel <iofelben gmail com>
Date:   Wed Nov 18 15:34:58 2015 -0500

    Replace use of deprecated gdk_cursor_new
    
    use gdk_cursor_new_from_name instead

 gladeui/glade-cursor.c |   22 ++++++++++++----------
 1 files changed, 12 insertions(+), 10 deletions(-)
---
diff --git a/gladeui/glade-cursor.c b/gladeui/glade-cursor.c
index 5ebc7d9..812b56f 100644
--- a/gladeui/glade-cursor.c
+++ b/gladeui/glade-cursor.c
@@ -156,20 +156,22 @@ glade_cursor_init (void)
 {
   gchar *path;
   GError *error = NULL;
+  GdkDisplay *display;
 
   cursor = g_new0 (GladeCursor, 1);
+  display = gdk_display_get_default ();
 
   cursor->selector = NULL;
-  cursor->add_widget = gdk_cursor_new (GDK_PLUS);
-  cursor->resize_top_left = gdk_cursor_new (GDK_TOP_LEFT_CORNER);
-  cursor->resize_top_right = gdk_cursor_new (GDK_TOP_RIGHT_CORNER);
-  cursor->resize_bottom_left = gdk_cursor_new (GDK_BOTTOM_LEFT_CORNER);
-  cursor->resize_bottom_right = gdk_cursor_new (GDK_BOTTOM_RIGHT_CORNER);
-  cursor->resize_left = gdk_cursor_new (GDK_LEFT_SIDE);
-  cursor->resize_right = gdk_cursor_new (GDK_RIGHT_SIDE);
-  cursor->resize_top = gdk_cursor_new (GDK_TOP_SIDE);
-  cursor->resize_bottom = gdk_cursor_new (GDK_BOTTOM_SIDE);
-  cursor->drag = gdk_cursor_new (GDK_FLEUR);
+  cursor->add_widget = gdk_cursor_new_from_name (display, "crosshair");
+  cursor->resize_top_left = gdk_cursor_new_from_name (display, "nw-resize");
+  cursor->resize_top_right = gdk_cursor_new_from_name (display, "ne-resize");
+  cursor->resize_bottom_left = gdk_cursor_new_from_name (display, "sw-resize");
+  cursor->resize_bottom_right = gdk_cursor_new_from_name (display, "se-resize");
+  cursor->resize_left = gdk_cursor_new_from_name (display, "w-resize");
+  cursor->resize_right = gdk_cursor_new_from_name (display, "e-resize");
+  cursor->resize_top = gdk_cursor_new_from_name (display, "n-resize");
+  cursor->resize_bottom = gdk_cursor_new_from_name (display, "s-resize");
+  cursor->drag = gdk_cursor_new_from_name (display, "move");
   cursor->add_widget_pixbuf = NULL;
 
   /* load "add" cursor pixbuf */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]