manatee-core-0.0.1: The core of Manatee.

Manatee.Toolkit.Gtk.Editable

Synopsis

Documentation

editableFocus :: EditableClass self => self -> IO ()Source

Focus editable and keep status.

editableGetUnselectText :: EditableClass self => self -> IO StringSource

Get unselect text.

editableSelectToEnd :: EditableClass self => self -> Int -> IO ()Source

Select from current position to end.

editableGetAllText :: EditableClass self => self -> IO StringSource

Get all text.

editableSetText :: EditableClass self => self -> String -> IO ()Source

Set text.

editableSetCompletionText :: EditableClass self => self -> String -> String -> IO ()Source

Set completion text.

editableSetBound :: EditableClass self => self -> (Int, Int) -> IO ()Source

Set bound.

editableSetStatus :: EditableClass self => self -> EditableStatus -> IO ()Source

Set status.

editableDeleteAllText :: EditableClass self => self -> IO ()Source

Delete all text.

editableExpandCompletion :: EditableClass self => self -> IO ()Source

Expand completion.

editableDeleteBackwardChar :: EditableClass self => self -> IO ()Source

Delete backward char.

editableDeleteBackwardWord :: EditableClass self => self -> IO ()Source

Delete backward word.

editableBackwardChar :: EditableClass self => self -> IO ()Source

Backward char.

editableIsChanged :: EditableClass self => self -> IO () -> IO BoolSource

Whether changed after do editable action?