Implemented extra cursors on macOS
This commit is contained in:
parent
7823588b1b
commit
9c2e7cbb51
2 changed files with 40 additions and 15 deletions
|
@ -53,21 +53,24 @@ public:
|
|||
/// Refer to the following table to determine which cursor
|
||||
/// is available on which platform.
|
||||
///
|
||||
/// Type | Linux | Mac OS X | Windows |
|
||||
/// ------------------------------------|:-----:|:--------:|:--------:|
|
||||
/// sf::Cursor::Arrow | yes | yes | yes |
|
||||
/// sf::Cursor::ArrowWait | no | no | yes |
|
||||
/// sf::Cursor::Wait | yes | no | yes |
|
||||
/// sf::Cursor::Text | yes | yes | yes |
|
||||
/// sf::Cursor::Hand | yes | yes | yes |
|
||||
/// sf::Cursor::SizeHorizontal | yes | yes | yes |
|
||||
/// sf::Cursor::SizeVertical | yes | yes | yes |
|
||||
/// sf::Cursor::SizeTopLeftBottomRight | no | no | yes |
|
||||
/// sf::Cursor::SizeBottomLeftTopRight | no | no | yes |
|
||||
/// sf::Cursor::SizeAll | yes | no | yes |
|
||||
/// sf::Cursor::Cross | yes | yes | yes |
|
||||
/// sf::Cursor::Help | yes | no | yes |
|
||||
/// sf::Cursor::NotAllowed | yes | yes | yes |
|
||||
/// Type | Linux | Mac OS X | Windows
|
||||
/// ------------------------------------|:-----:|:--------:|:--------:
|
||||
/// sf::Cursor::Arrow | yes | yes | yes
|
||||
/// sf::Cursor::ArrowWait | no | no | yes
|
||||
/// sf::Cursor::Wait | yes | no | yes
|
||||
/// sf::Cursor::Text | yes | yes | yes
|
||||
/// sf::Cursor::Hand | yes | yes | yes
|
||||
/// sf::Cursor::SizeHorizontal | yes | yes | yes
|
||||
/// sf::Cursor::SizeVertical | yes | yes | yes
|
||||
/// sf::Cursor::SizeTopLeftBottomRight | no | yes* | yes
|
||||
/// sf::Cursor::SizeBottomLeftTopRight | no | yes* | yes
|
||||
/// sf::Cursor::SizeAll | yes | no | yes
|
||||
/// sf::Cursor::Cross | yes | yes | yes
|
||||
/// sf::Cursor::Help | yes | yes* | yes
|
||||
/// sf::Cursor::NotAllowed | yes | yes | yes
|
||||
///
|
||||
/// * These cursor types are undocumented so may not
|
||||
/// be available on all versions, but have been tested on 10.13
|
||||
///
|
||||
////////////////////////////////////////////////////////////
|
||||
enum Type
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue