gtk-0.11.0: Binding to the Gtk+ graphical user interface library.Source codeContentsIndex
Graphics.UI.Gtk.Multiline.TextTagTable
Portabilityportable (depends on GHC)
Stabilityprovisional
Maintainergtk2hs-users@lists.sourceforge.net
Contents
Detail
Class Hierarchy
Types
Constructors
Methods
Description
Collection of tags that can be used together
Synopsis
data TextTagTable
class GObjectClass o => TextTagTableClass o
castToTextTagTable :: GObjectClass obj => obj -> TextTagTable
gTypeTextTagTable :: GType
toTextTagTable :: TextTagTableClass o => o -> TextTagTable
textTagTableNew :: IO TextTagTable
textTagTableAdd :: (TextTagTableClass self, TextTagClass tag) => self -> tag -> IO ()
textTagTableRemove :: (TextTagTableClass self, TextTagClass tag) => self -> tag -> IO ()
textTagTableLookup :: TextTagTableClass self => self -> String -> IO (Maybe TextTag)
textTagTableForeach :: TextTagTableClass self => self -> (TextTag -> IO ()) -> IO ()
textTagTableGetSize :: TextTagTableClass self => self -> IO Int
Detail
You may wish to begin by reading the text widget conceptual overview which gives an overview of all the objects and data types related to the text widget and how they work together.
Class Hierarchy
 |  GObject
 |   +----TextTagTable
Types
data TextTagTable Source
class GObjectClass o => TextTagTableClass o Source
castToTextTagTable :: GObjectClass obj => obj -> TextTagTableSource
gTypeTextTagTable :: GTypeSource
toTextTagTable :: TextTagTableClass o => o -> TextTagTableSource
Constructors
textTagTableNew :: IO TextTagTableSource
Creates a new TextTagTable. The table contains no tags by default.
Methods
textTagTableAdd :: (TextTagTableClass self, TextTagClass tag) => self -> tag -> IO ()Source

Add a tag to the table. The tag is assigned the highest priority in the table.

The tag must not be in a tag table already, and may not have the same name as an already-added tag.

textTagTableRemove :: (TextTagTableClass self, TextTagClass tag) => self -> tag -> IO ()Source
Remove a tag from the table.
textTagTableLookupSource
:: TextTagTableClass self
=> selfname - name of a tag
-> Stringreturns The tag, or Nothing if none by that name is in the table.
-> IO (Maybe TextTag)
Look up a named tag.
textTagTableForeach :: TextTagTableClass self => self -> (TextTag -> IO ()) -> IO ()Source
Maps over each tag in the table.
textTagTableGetSize :: TextTagTableClass self => self -> IO IntSource
Returns the size of the table (the number of tags).
Produced by Haddock version 2.6.0