From 77b393cb58cfd7790e5fa8bbea4186f6786cd24b Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 23 Oct 2022 07:47:17 -0400 Subject: Update guile-sdl2 project for 0.8.0 release. --- manuals/guile-sdl2/Mouse.html | 46 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) (limited to 'manuals/guile-sdl2/Mouse.html') diff --git a/manuals/guile-sdl2/Mouse.html b/manuals/guile-sdl2/Mouse.html index 34e8a5c..f8dc136 100644 --- a/manuals/guile-sdl2/Mouse.html +++ b/manuals/guile-sdl2/Mouse.html @@ -111,6 +111,52 @@ Next: , Previous:

Return #t if button is not currently being pressed.

+
+
Procedure: make-system-cursor cursor-type
+

Create a new cursor from the system’s available set, chosen by +cursor-type. The possible values for cursor-type are: +

+
    +
  • arrow +
  • crosshair +
  • hand +
  • i-beam +
  • size-north-south +
  • size-northwest-southeast +
  • size-northeast-southwest +
  • size-west-east +
  • size-all +
  • no +
  • wait +
  • wait-arrow +
+ +
+ +
+
Procedure: make-color-cursor surface hot-x hot-y
+

Create a new cursor from a surface and the given hotspot coordinates +(hot-x, hot-y). +

+ +
+
Procedure: get-cursor
+

Return the cursor currently in use. The returned cursor object is +internally managed and it’s not necessary to call +delete-cursor! for it. +

+ +
+
Procedure: set-cursor! cursor
+

Set the current cursor to cursor. If cursor is #f, +the system default cursor is restored. +

+ +
+
Procedure: delete-cursor! cursor
+

Free the memory used by cursor. Be careful! +

+ -- cgit v1.2.3