Update docs on blank cursors

svn path=/trunk/; revision=22147
This commit is contained in:
Matthias Clasen 2009-01-20 02:27:57 +00:00
parent 4d9df738e5
commit c98305ac00
3 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2009-01-19 Matthias Clasen <mclasen@redhat.com>
* gdk/gdkcursor.c:
* gdk/gdkwindow.c: Update docs on how to create blank cursors.
2009-01-19 Matthias Clasen <mclasen@redhat.com>
Cache cursors to avoid libXcursor theme lookup overhead.

View File

@ -88,8 +88,7 @@ gdk_cursor_unref (GdkCursor *cursor)
* Creates a new cursor from the set of builtin cursors for the default display.
* See gdk_cursor_new_for_display().
*
* To make the cursor invisible, use gdk_cursor_new_from_pixmap() to create
* a cursor with no pixels in it.
* To make the cursor invisible, use %GDK_BLANK_CURSOR.
*
* Return value: a new #GdkCursor
**/

View File

@ -3859,12 +3859,11 @@ gdk_window_set_back_pixmap (GdkWindow *window,
* @window: a #GdkWindow
* @cursor: a cursor
*
* Sets the mouse pointer for a #GdkWindow. Use gdk_cursor_new() or
* gdk_cursor_new_from_pixmap() to create the cursor.
* To make the cursor invisible, use gdk_cursor_new_from_pixmap() to create
* a cursor with no pixels in it. Passing %NULL for the @cursor argument
* to gdk_window_set_cursor() means that @window will use the cursor of
* its parent window. Most windows should use this default.
* Sets the mouse pointer for a #GdkWindow. Use gdk_cursor_new_for_display()
* or gdk_cursor_new_from_pixmap() to create the cursor. To make the cursor
* invisible, use %GDK_BLANK_CURSOR. Passing %NULL for the @cursor argument
* to gdk_window_set_cursor() means that @window will use the cursor of its
* parent window. Most windows should use this default.
*/
void
gdk_window_set_cursor (GdkWindow *window,