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

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

Graphics.UI.Gtk.ModelView.CellRendererToggle

Contents

Description

Renders a toggle button in a cell

Synopsis

Detail

CellRendererToggle renders a toggle button in a cell. The button is drawn as a radio or checkbutton, depending on the radio property. When activated, it emits the toggled signal.

Class Hierarchy

| GObject
| +----Object
| +----CellRenderer
| +----CellRendererToggle

Types

Constructors

cellRendererToggleNew :: IO CellRendererToggle Source

Creates a new CellRendererToggle. Adjust rendering parameters using object properties. Object properties can be set globally (with set). Also, within a TreeViewColumn, you can bind a property to a value in a TreeModel using cellLayoutSetAttributes. For example, you can bind the cellToggleActive property on the cell renderer to a boolean value in the model, thus causing the check button to reflect the state of the model.

Methods

cellRendererToggleGetRadio Source

Arguments

:: CellRendererToggleClass self 
=> self 
-> IO Bool

returns True if we're rendering radio toggles rather than checkboxes

Returns whether we're rendering radio toggles rather than checkboxes.

cellRendererToggleSetRadio Source

Arguments

:: CellRendererToggleClass self 
=> self 
-> Bool

radio - True to make the toggle look like a radio button

-> IO () 

If radio is True, the cell renderer renders a radio toggle (i.e. a toggle in a group of mutually-exclusive toggles). If False, it renders a check toggle (a standalone boolean option). This can be set globally for the cell renderer, or changed just before rendering each cell in the model (for TreeView, you set up a per-row setting using TreeViewColumn to associate model columns with cell renderer properties).

cellRendererToggleGetActive Source

Arguments

:: CellRendererToggleClass self 
=> self 
-> IO Bool

returns True if the cell renderer is active.

Returns whether the cell renderer is active. See cellRendererToggleSetActive.

cellRendererToggleSetActive Source

Arguments

:: CellRendererToggleClass self 
=> self 
-> Bool

setting - the value to set.

-> IO () 

Activates or deactivates a cell renderer.

Attributes

cellToggleActive :: CellRendererToggleClass self => Attr self Bool Source

The toggle state of the button.

Default value: False

cellToggleInconsistent :: CellRendererToggleClass self => Attr self Bool Source

The inconsistent state of the button.

Default value: False

cellToggleActivatable :: CellRendererToggleClass self => Attr self Bool Source

The toggle button can be activated.

Default value: True

cellToggleRadio :: CellRendererToggleClass self => Attr self Bool Source

Draw the toggle button as a radio button.

Default value: False

cellToggleIndicatorSize :: CellRendererToggleClass self => Attr self Int Source

Size of check or radio indicator.

Allowed values: >= 0

Default value: 12

Signals

cellToggled :: (CellRendererToggleClass self, GlibString string) => Signal self (string -> IO ()) Source

The cellToggled signal is emitted when the cell is toggled. The string represents a TreePath into the model and can be converted using stringToTreePath.

Deprecated

onCellToggled :: (CellRendererToggleClass self, GlibString string) => self -> (string -> IO ()) -> IO (ConnectId self) Source

Deprecated: instead of 'onCellToggled obj' use 'on obj cellToggled'

afterCellToggled :: (CellRendererToggleClass self, GlibString string) => self -> (string -> IO ()) -> IO (ConnectId self) Source

Deprecated: instead of 'afterCellToggled obj' use 'after obj cellToggled'