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

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

Graphics.UI.Gtk.MenuComboToolbar.MenuBar

Contents

Description

A subclass widget for MenuShell which holds MenuItem widgets

Synopsis

Detail

The MenuBar is a subclass of MenuShell which contains one to many MenuItem. The result is a standard menu bar which can hold many menu items.

Class Hierarchy

 | GObject
 | +----Object
 | +----Widget
 | +----Container
 | +----MenuShell
 | +----MenuBar

Types

data PackDirection Source

Determines how to pack a menu bar: left-to-right, right-to-left, top-to-bottom or bottom-to-top.

Instances

Constructors

menuBarNew :: IO MenuBarSource

Creates the new MenuBar

Methods

menuBarSetPackDirectionSource

Arguments

:: MenuBarClass self 
=> self 
-> PackDirection

packDir - a new PackDirection.

-> IO () 

Sets how items should be packed inside a menubar.

  • Available since Gtk+ version 2.8

menuBarGetPackDirectionSource

Arguments

:: MenuBarClass self 
=> self 
-> IO PackDirection

returns the pack direction

Retrieves the current pack direction of the menubar. See menuBarSetPackDirection.

  • Available since Gtk+ version 2.8

menuBarSetChildPackDirectionSource

Arguments

:: MenuBarClass self 
=> self 
-> PackDirection

childPackDir - a new PackDirection.

-> IO () 

Sets how widgets should be packed inside the children of a menubar.

  • Available since Gtk+ version 2.8

menuBarGetChildPackDirectionSource

Arguments

:: MenuBarClass self 
=> self 
-> IO PackDirection

returns the child pack direction

Retrieves the current child pack direction of the menubar. See menuBarSetChildPackDirection.

  • Available since Gtk+ version 2.8

Attributes

menuBarPackDirection :: MenuBarClass self => Attr self PackDirectionSource

The pack direction of the menubar. It determines how menuitems are arranged in the menubar.

Default value: PackDirectionLtr

menuBarChildPackDirection :: MenuBarClass self => Attr self PackDirectionSource

The pack direction of the menubar. It determines how the widgets contained in child menuitems are arranged.

Default value: PackDirectionLtr