Maintainer | gtk2hs-users@lists.sourceforge.net |
---|---|
Stability | provisional |
Portability | portable (depends on GHC) |
Safe Haskell | None |
Language | Haskell98 |
Create buttons bound to a URL
- Module available since Gtk+ version 2.10
- data LinkButton
- class ButtonClass o => LinkButtonClass o
- castToLinkButton :: GObjectClass obj => obj -> LinkButton
- toLinkButton :: LinkButtonClass o => o -> LinkButton
- linkButtonNew :: GlibString string => string -> IO LinkButton
- linkButtonNewWithLabel :: GlibString string => string -> string -> IO LinkButton
- linkButtonURI :: (LinkButtonClass self, GlibString string) => Attr self string
- linkButtonVisited :: LinkButtonClass self => Attr self Bool
Detail
A LinkButton
is a Button
with a hyperlink, similar to the one used by
web browsers, which triggers an action when clicked. It is useful to show
quick links to resources.
A link button is created by calling either linkButtonNew
or
linkButtonNewWithLabel
. If using the former, the URI you pass to the
constructor is used as a label for the widget.
The URI bound to a LinkButton
can be set specifically using
"set linkButton [linkButtonURI := uri]", and retrieved using "uri <- get linkButton linkButtonURI".
LinkButton
offers a global hook, which is called when the used clicks
on it: see linkButtonSetURIHook
.
LinkButton
was added in Gtk+ 2.10.
Class Hierarchy
Types
data LinkButton Source
class ButtonClass o => LinkButtonClass o Source
castToLinkButton :: GObjectClass obj => obj -> LinkButton Source
toLinkButton :: LinkButtonClass o => o -> LinkButton Source
Constructors
:: GlibString string | |
=> string |
|
-> IO LinkButton |
Creates a new LinkButton
with the URI as its text.
:: GlibString string | |
=> string |
|
-> string |
|
-> IO LinkButton |
Creates a new LinkButton
containing a label.
Methods
Attributes
linkButtonURI :: (LinkButtonClass self, GlibString string) => Attr self string Source
The URI bound to this button.
Default value: ""
- Available since Gtk+ version 2.10
linkButtonVisited :: LinkButtonClass self => Attr self Bool Source
The visited
state of this button. A visited link is drawn in a different color.
Default value: False
- Available since Gtk+ version 2.14