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> 2009-01-19 Matthias Clasen <mclasen@redhat.com>
Cache cursors to avoid libXcursor theme lookup overhead. 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. * Creates a new cursor from the set of builtin cursors for the default display.
* See gdk_cursor_new_for_display(). * See gdk_cursor_new_for_display().
* *
* To make the cursor invisible, use gdk_cursor_new_from_pixmap() to create * To make the cursor invisible, use %GDK_BLANK_CURSOR.
* a cursor with no pixels in it.
* *
* Return value: a new #GdkCursor * Return value: a new #GdkCursor
**/ **/

View File

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