|
|
|
|
|
| Description |
| Basic types and classes concerning insertion cursors in entry and
text fields. |
|
| Synopsis |
|
|
|
| Documentation |
|
| module Index |
|
| newtype ICursor w |
| The ICursor datatype. | | Constructors | | | Instances | |
|
|
| class (Widget w) => HasInsertionCursor w |
|
|
| class (HasInsertionCursor w) => HasInsertionCursorIndexGet w i where |
| Widgets from which you can get the index of the insertion cursor
instantiate the class HasInsertionCursorIndexSet. | | | Methods | | getInsertionCursor :: w -> IO i |
| | | Instances | |
|
|
| class (HasInsertionCursor w) => HasInsertionCursorIndexSet w i where |
| Widgets with an insertion cursor that can be set to a specific index
instantiate the class HasInsertionCursorIndexSet. | | | Methods | | insertionCursor :: i -> Config w | | Sets the index of the insertion Cursor. |
| | | Instances | |
|
|
| insertOffTime :: (HasInsertionCursor w) => Int -> Config (ICursor w) |
|
| getInsertOffTime :: (HasInsertionCursor w) => ICursor w -> IO Int |
| Gets the time the insertion cursor blinks off. |
|
| insertOnTime :: (HasInsertionCursor w) => Int -> Config (ICursor w) |
| Sets the time the insertion cursor blinks on (in milliseconds). |
|
| getInsertOnTime :: (HasInsertionCursor w) => ICursor w -> IO Int |
| Gets the time the insertion cursor blinks on. |
|
| Produced by Haddock version 0.3 |