gtk3-0.15.4: Binding to the Gtk+ 3 graphical user interface library
Maintainergtk2hs-users@lists.sourceforge.net
Stabilityprovisional
Portabilityportable (depends on GHC)
Safe HaskellNone
LanguageHaskell98

Graphics.UI.Gtk.Scrolling.HScrollbar

Description

A horizontal scrollbar

Synopsis

Detail

The HScrollbar widget is a widget arranged horizontally creating a scrollbar. See Scrollbar for details on scrollbars. An Adjustment may be added to handle the adjustment of the scrollbar using hScrollbarNew or you can use hScrollbarNewDefaults in which case one will be created for you. See Adjustment for details.

All interesting functions can be found in Range, from which it is derived.

Class Hierarchy

| GObject
| +----Object
| +----Widget
| +----Range
| +----Scrollbar
| +----HScrollbar

Types

data HScrollbar Source #

Instances

Instances details
Eq HScrollbar Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

Methods

(==) :: HScrollbar -> HScrollbar -> Bool

(/=) :: HScrollbar -> HScrollbar -> Bool

Ord HScrollbar Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

GObjectClass HScrollbar Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

HScrollbarClass HScrollbar Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

ScrollbarClass HScrollbar Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

RangeClass HScrollbar Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

WidgetClass HScrollbar Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

class ScrollbarClass o => HScrollbarClass o Source #

Instances

Instances details
HScrollbarClass HScrollbar Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

Constructors

hScrollbarNew Source #

Arguments

:: Adjustment

adjustment - the Adjustment to use.

-> IO HScrollbar 

Creates a new horizontal scrollbar.

hScrollbarNewDefaults :: IO HScrollbar Source #

Create a new HScrollbar without specifying an existing Adjustment. A new one will be created instead.