gtk3-0.15.0: 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.Layout.VBox

Contents

Description

A vertical container box

Synopsis

Detail

VBox is a container that organizes child widgets into a single column.

Use the Box packing interface to determine the arrangement, spacing, height, and alignment of VBox children.

All children are allocated the same width.

Class Hierarchy

| GObject
| +----Object
| +----Widget
| +----Container
| +----Box
| +----VBox
| +----ColorSelection
| +----FileChooserWidget
| +----FontSelection

Types

data VBox Source #

Instances
Eq VBox Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

Methods

(==) :: VBox -> VBox -> Bool #

(/=) :: VBox -> VBox -> Bool #

Ord VBox Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

Methods

compare :: VBox -> VBox -> Ordering #

(<) :: VBox -> VBox -> Bool #

(<=) :: VBox -> VBox -> Bool #

(>) :: VBox -> VBox -> Bool #

(>=) :: VBox -> VBox -> Bool #

max :: VBox -> VBox -> VBox #

min :: VBox -> VBox -> VBox #

GObjectClass VBox Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

VBoxClass VBox Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

BoxClass VBox Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

ContainerClass VBox Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

WidgetClass VBox Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

class BoxClass o => VBoxClass o Source #

Instances
VBoxClass FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

VBoxClass FontSelection Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

VBoxClass ColorSelection Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

VBoxClass RecentChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

VBoxClass VBox Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

Constructors

vBoxNew Source #

Arguments

:: Bool

homogeneous - True if all children are to be given equal space allotments.

-> Int

spacing - the number of pixels to place by default between children.

-> IO VBox 

Creates a new VBox.