| Safe Haskell | None |
|---|---|
| Language | Haskell98 |
HTk.Widgets.Entry
Description
Documentation
The Entry datatype.
Instances
| Eq (Entry a) Source # | |
| Destroyable (Entry a) Source # | An entry field can be destroyed. |
| Synchronized (Entry a) Source # | You can synchronize on an entry field (in JAVA-style) |
| GUIObject (Entry a) Source # | Internal. |
| HasEnable (Entry a) Source # | An entry field is a stateful widget - it can be enabled of disabled. |
| HasJustify (Entry a) Source # | An entry field has a configureable text justification. |
| HasFont (Entry a) Source # | You can specify the font of an entry field. |
| HasBorder (Entry a) Source # | An entry field has a configureable border. |
| HasSize (Entry a) Source # | An entry field has a configureable width (height config is ignored). |
| HasColour (Entry a) Source # | An entry field has a foreground and background colour. |
| HasTooltip (Entry a) Source # | An entry can have a tooltip (only displayed if you are using tixwish). |
| Widget (Entry a) Source # | An entry field has standard widget properties (concerning focus, cursor). |
| HasVariable (Entry a) Source # | The value of an entry field is associated with a polymorphic variable. |
| GUIValue a => CanBeSubwidget (Entry a) Source # | An entry widget can be a subwidget, e.g. in a combo box |
| HasScroller (Entry a) Source # | An entry field is scrollable in horizontal direction. |
| HasSelection (Entry a) Source # | You can select text inside an entry widget. |
| HasXSelection (Entry a) Source # | An editor widget has an X selection. |
| HasInsertionCursor (Entry a) Source # | An entry widget has an insertion cursor. |
| GUIValue a => HasValue (Entry a) a Source # | An entry field has a value that is associated with a polymorphic variable. |
| HasSelectionBaseIndexRange (Entry a) Int Source # | You can select a text range inside an entry widget. |
| HasIndex (Entry a) i BaseIndex => HasSelectionIndex (Entry a) i Source # | An entry widget's characters are selectable. |
| HasInsertionCursorIndexGet (Entry a) Int Source # | You can get the position of the insertion cursor of an entry widget. |
| HasIndex (Entry a) i BaseIndex => HasInsertionCursorIndexSet (Entry a) i Source # | |
| (HasIndex (Entry a) i1 BaseIndex, HasIndex (Entry a) i2 BaseIndex) => HasSelectionIndexRange (Entry a) i1 i2 Source # | You can select a text range inside an entry widget. |
| HasIndex (Entry a) i BaseIndex => HasIndex (Entry a) i Int Source # | Internal. |
| HasIndex (Entry a) XCoord BaseIndex Source # | An |
| HasIndex (Entry a) EndOfText BaseIndex Source # | The |
| HasIndex (Entry a) BaseIndex BaseIndex Source # | A base index is a valid index position for an entry widget. |
| HasIndex (Entry a) Int BaseIndex Source # | An integer value is a valid index position for an entry widget. |
| HasIndex (Entry a) (ICursor (Entry a)) BaseIndex Source # | The entries insertion cursor is a valid index for an entry widget. |
| HasSelectionBaseIndex (Entry a) (Int, Int) Source # | You can select a text range inside an entry widget. |
| HasIndex (Entry a) (Selection (Entry a), Last) BaseIndex Source # | The selection end is a valid index position for an entry widget. |
| HasIndex (Entry a) (Selection (Entry a), First) BaseIndex Source # | The selection start is a valid index position for an entry widget. |
Arguments
| :: (Container par, GUIValue a) | |
| => par | the parent widget, which has to be a container widget
(an instance of |
| -> [Config (Entry a)] | the list of configuration options for this entry field. |
| -> IO (Entry a) | An entry field. |
Constructs a new entry field and returns a handler.
The XCoord datatype.