Basic types and classes associated with the mouse cursor.
- class CursorDesignator ch where
- newtype Cursor = Cursor String
- data XCursor = XCursor String (Maybe Colour) (Maybe Colour)
- data BCursor = BCursor String (Maybe String) Colour (Maybe Colour)
- arrow :: Cursor
- circle :: Cursor
- clock :: Cursor
- diamondCross :: Cursor
- dot :: Cursor
- drapedBox :: Cursor
- exchange :: Cursor
- fleur :: Cursor
- gobbler :: Cursor
- gumby :: Cursor
- hand1 :: Cursor
- hand2 :: Cursor
- pencil :: Cursor
- plus :: Cursor
- spraycan :: Cursor
- tcross :: Cursor
- watch :: Cursor
- xterm :: Cursor
Documentation
class CursorDesignator ch whereSource
Datatypes that describe cursors instantiate the
class CursorDesignator
.
CursorDesignator String | A |
CursorDesignator BCursor | A |
CursorDesignator XCursor | An |
CursorDesignator Cursor | A |
CursorDesignator (String, Colour) | A tuple of |
CursorDesignator (String, Colour, Colour) | A tuple of |
CursorDesignator ([Char], [Char], Colour, Colour) | A tuple of |
The general Cursor
datatype.
The XCursor
dataype for predefined X cursors.
Show XCursor | Internal. |
CursorDesignator XCursor | An |
The BCursor
datatype for bitmap cursors.
Show BCursor | Internal. |
CursorDesignator BCursor | A |
A standard X cursor.