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

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

Graphics.UI.Gtk.MenuComboToolbar.ToolPalette

Contents

Description

A tool palette with categories

  • Module available since Gtk+ version 2.20

TODO:

gtk_tool_palette_add_drag_dest gtk_tool_palette_get_drag_item gtk_tool_palette_get_drag_target_group gtk_tool_palette_get_drag_target_item gtk_tool_palette_get_drop_group gtk_tool_palette_get_drop_item

Synopsis

Detail

A ToolPalette allows you to add ToolItems to a palette-like container with different categories and drag and drop support.

A ToolPalette is created with a call to toolPaletteNew.

ToolItems cannot be added directly to a ToolPalette - instead they are added to a ToolItemGroup which can than be added to a ToolPalette. To add a ToolItemGroup to a ToolPalette, use containerAdd.

The easiest way to use drag and drop with ToolPalette is to call toolPaletteAddDragDest with the desired drag source palette and the desired drag target widget. Then toolPaletteGetDragItem can be used to get the dragged item in the dragDataReceived signal handler of the drag target.

Class Hierarchy

 | GObject
 | +----Object
 | +----Widget
 | +----Container
 | +----ToolPalette

Types

Enums

data ToolPaletteDragTargets Source

Flags used to specify the supported drag targets.

Instances

Enum ToolPaletteDragTargets

Creates a new tool palette.

  • Available since Gtk+ version 2.20
Eq ToolPaletteDragTargets 

Constructors

Methods

toolPaletteUnsetIconSize :: ToolPaletteClass self => self -> IO ()Source

Unsets the tool palette icon size set with toolPaletteSetIconSize, so that user preferences will be used to determine the icon size.

  • Available since Gtk+ version 2.20

toolPaletteUnsetStyle :: ToolPaletteClass self => self -> IO ()Source

Unsets a toolbar style set with toolPaletteSetStyle, so that user preferences will be used to determine the toolbar style.

  • Available since Gtk+ version 2.20

toolPaletteGetHAdjustment :: ToolPaletteClass self => self -> IO AdjustmentSource

Gets the horizontal adjustment of the tool palette.

  • Available since Gtk+ version 2.20

toolPaletteGetVAdjustment :: ToolPaletteClass self => self -> IO AdjustmentSource

Gets the vertical adjustment of the tool palette.

  • Available since Gtk+ version 2.20

Attributes

toolPaletteSetGroupPosition :: (ToolPaletteClass palette, ToolItemGroupClass group) => palette -> group -> Int -> IO ()Source

Sets the position of the group as an index of the tool palette. If position is 0 the group will become the first child, if position is -1 it will become the last child.

  • Available since Gtk+ version 2.20

toolPaletteGetGroupPositionSource

Arguments

:: (ToolPaletteClass palette, ToolItemGroupClass group) 
=> palette 
-> group 
-> IO Int

returns the index of group or -1 if group is not a child of palette

Gets the position of group in palette as index. See toolPaletteSetGroupPosition.

  • Available since Gtk+ version 2.20

toolPaletteIconSize :: ToolPaletteClass self => Attr self IconSizeSource

The size of the icons in a tool palette is normally determined by the toolbarIconSize setting. When this property is set, it overrides the setting.

This should only be used for special-purpose tool palettes, normal application tool palettes should respect the user preferences for the size of icons.

Default value: IconSizeSmallToolbar

  • Available since Gtk+ version 2.20

toolPaletteIconSizeSet :: ToolPaletteClass self => Attr self BoolSource

Is True if the iconSize property has been set.

Default value: False

  • Available since Gtk+ version 2.20

toolPaletteToolbarStyle :: ToolPaletteClass self => Attr self ToolbarStyleSource

The style of items in the tool palette.

Default value: ToolbarIcons

  • Available since Gtk+ version 2.20

Child Attributes

toolPaletteChildExclusive :: ToolPaletteClass self => Attr self BoolSource

Whether the item group should be the only one that is expanded at a given time.

Default value: False

  • Available since Gtk+ version 2.20

toolPaletteChildExpand :: ToolPaletteClass self => Attr self BoolSource

Whether the item group should receive extra space when the palette grows. at a given time.

Default value: False

  • Available since Gtk+ version 2.20

Signals

toolPaletteSetScrollAdjustments :: ToolPaletteClass self => Signal self (Adjustment -> Adjustment -> IO ())Source

Set the scroll adjustments for the viewport. Usually scrolled containers like ScrolledWindow will emit this signal to connect two instances of Scrollbar to the scroll directions of the Toolpalette.

  • Available since Gtk+ version 2.20