Home | History | Annotate | Download | only in glue

Lines Matching full:cursor

22 // It attempts to create a custom cursor from the data inlined in
26 GdkCursor* cursor = CustomCursorsGdk[type];
27 if (cursor)
28 return cursor;
30 cursor = gdk_cursor_new_from_name(gdk_display_get_default(), custom.name);
31 if (!cursor) {
38 cursor = gdk_cursor_new_from_pixmap(source, mask, &fg, &bg,
43 CustomCursorsGdk[type] = cursor;
44 return cursor;
48 // use a custom cursor.
50 // Get/create a custom cursor which is invisible.
52 static GdkCursor* cursor = NULL;
53 if (cursor)
54 return cursor;
58 cursor = gdk_cursor_new_from_pixmap(bitmap, bitmap, &color, &color, 0, 0);
60 return cursor;
68 // of the default X theme, but beware that the user's cursor theme can
105 // There isn't really a useful cursor available for these.
201 GdkCursor* cursor = gdk_cursor_new_from_pixbuf(gdk_display_get_default(),
210 unref_ = cursor;
211 return cursor;