Skip to content

Commit

Permalink
Implement directional arrow resize cursors
Browse files Browse the repository at this point in the history
  • Loading branch information
Marioalexsan committed Feb 19, 2024
1 parent 4a9e8da commit 685d45b
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions src/SFML.Window/Cursor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,62 @@ public enum CursorType
/// </summary>
SizeBottomLeftTopRight,
/// <summary>
/// Left arrow cursor on Linux, same as SizeHorizontal on other platforms
/// Windows: Yes
/// Mac OS: Yes
/// Linux: Yes
/// </summary>
SizeLeft,
/// <summary>
/// Right arrow cursor on Linux, same as SizeHorizontal on other platforms
/// Windows: Yes
/// Mac OS: Yes
/// Linux: Yes
/// </summary>
SizeRight,
/// <summary>
/// Up arrow cursor on Linux, same as SizeVertical on other platforms
/// Windows: Yes
/// Mac OS: Yes
/// Linux: Yes
/// </summary>
SizeTop,
/// <summary>
/// Down arrow cursor on Linux, same as SizeVertical on other platforms
/// Windows: Yes
/// Mac OS: Yes
/// Linux: Yes
/// </summary>
SizeBottom,
/// <summary>
/// Top-left arrow cursor on Linux, same as SizeTopLeftBottomRight on other platforms
/// Windows: Yes
/// Mac OS: Yes
/// Linux: Yes
/// </summary>
SizeTopLeft,
/// <summary>
/// Bottom-right arrow cursor on Linux, same as SizeTopLeftBottomRight on other platforms
/// Windows: Yes
/// Mac OS: Yes
/// Linux: Yes
/// </summary>
SizeBottomRight,
/// <summary>
/// Bottom-left arrow cursor on Linux, same as SizeBottomLeftTopRight on other platforms
/// Windows: Yes
/// Mac OS: Yes
/// Linux: Yes
/// </summary>
SizeBottomLeft,
/// <summary>
/// Top-right arrow cursor on Linux, same as SizeBottomLeftTopRight on other platforms
/// Windows: Yes
/// Mac OS: Yes
/// Linux: Yes
/// </summary>
SizeTopRight,
/// <summary>
/// Combination of SizeHorizontal and SizeVertical
/// Windows: Yes
/// Mac OS: No
Expand Down

0 comments on commit 685d45b

Please sign in to comment.