gtk-0.12.4: Binding to the Gtk+ graphical user interface library.

Portabilityportable (depends on GHC)
Stabilityprovisional
Maintainergtk2hs-users@lists.sourceforge.net
Safe HaskellNone

Graphics.UI.Gtk.Ornaments.Frame

Contents

Description

A bin with a decorative frame and optional label

Synopsis

Detail

The frame widget is a Bin that surrounds its child with a decorative frame and an optional label. If present, the label is drawn in a gap in the top side of the frame. The position of the label can be controlled with frameSetLabelAlign.

Class Hierarchy

 | GObject
 | +----Object
 | +----Widget
 | +----Container
 | +----Bin
 | +----Frame
 | +----AspectFrame

Types

Constructors

frameNew :: IO FrameSource

Creates a new Frame without a label.

Methods

frameSetLabelSource

Arguments

:: FrameClass self 
=> self 
-> String

label - the text to use as the label of the frame

-> IO () 

Sets the text of the label.

frameGetLabelSource

Arguments

:: FrameClass self 
=> self 
-> IO String

returns the text in the label, or if there was no label widget or the lable widget was not a Label then an exception is thrown

If the frame's label widget is a Label, returns the text in the label widget.

frameSetLabelWidget :: (FrameClass self, WidgetClass labelWidget) => self -> labelWidget -> IO ()Source

Sets the label widget for the frame. This is the widget that will appear embedded in the top edge of the frame as a title.

frameGetLabelWidgetSource

Arguments

:: FrameClass self 
=> self 
-> IO (Maybe Widget)

returns the label widget, or Nothing if there is none.

Retrieves the label widget for the frame. See frameSetLabelWidget.

frameSetLabelAlignSource

Arguments

:: FrameClass self 
=> self 
-> Float

xalign - The position of the label along the top edge of the widget. A value of 0.0 represents left alignment; 1.0 represents right alignment.

-> Float

yalign - The y alignment of the label. A value of 0.0 aligns under the frame; 1.0 aligns above the frame.

-> IO () 

Sets the alignment of the frame widget's label. The default values for a newly created frame are 0.0 and 0.5.

frameGetLabelAlignSource

Arguments

:: FrameClass self 
=> self 
-> IO (Float, Float)
(xalign, yalign)

Retrieves the X and Y alignment of the frame's label. See frameSetLabelAlign.

frameSetShadowType :: FrameClass self => self -> ShadowType -> IO ()Source

Sets the shadow type of the frame.

frameGetShadowType :: FrameClass self => self -> IO ShadowTypeSource

Retrieves the shadow type of the frame. See frameSetShadowType.

Attributes

frameLabel :: FrameClass self => Attr self StringSource

Text of the frame's label.

frameLabelXAlign :: FrameClass self => Attr self FloatSource

The horizontal alignment of the label.

Allowed values: [0,1]

Default value: 0.5

frameLabelYAlign :: FrameClass self => Attr self FloatSource

The vertical alignment of the label.

Allowed values: [0,1]

Default value: 0.5

frameShadowType :: FrameClass self => Attr self ShadowTypeSource

Appearance of the frame border.

Default value: ShadowEtchedIn

frameLabelWidget :: (FrameClass self, WidgetClass labelWidget) => ReadWriteAttr self (Maybe Widget) labelWidgetSource

A widget to display in place of the usual frame label.