gi-gtk-3.0.32: Gtk bindings
CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellNone
LanguageHaskell2010

GI.Gtk.Objects.StackSwitcher

Description

The GtkStackSwitcher widget acts as a controller for a Stack; it shows a row of buttons to switch between the various pages of the associated stack widget.

All the content for the buttons comes from the child properties of the Stack; the button visibility in a StackSwitcher widget is controlled by the visibility of the child in the Stack.

It is possible to associate multiple StackSwitcher widgets with the same Stack widget.

The GtkStackSwitcher widget was added in 3.10.

CSS nodes

GtkStackSwitcher has a single CSS node named stackswitcher and style class .stack-switcher.

When circumstances require it, GtkStackSwitcher adds the .needs-attention style class to the widgets representing the stack pages.

Synopsis

Exported types

class (GObject o, IsDescendantOf StackSwitcher o) => IsStackSwitcher o Source #

Type class for types which can be safely cast to StackSwitcher, for instance with toStackSwitcher.

Instances

Instances details
(GObject o, IsDescendantOf StackSwitcher o) => IsStackSwitcher o Source # 
Instance details

Defined in GI.Gtk.Objects.StackSwitcher

toStackSwitcher :: (MonadIO m, IsStackSwitcher o) => o -> m StackSwitcher Source #

Cast to StackSwitcher, for types for which this is known to be safe. For general casts, use castTo.

Methods

Overloaded methods

getStack

stackSwitcherGetStack Source #

Arguments

:: (HasCallStack, MonadIO m, IsStackSwitcher a) 
=> a

switcher: a StackSwitcher

-> m (Maybe Stack)

Returns: the stack, or Nothing if none has been set explicitly.

Retrieves the stack. See stackSwitcherSetStack.

Since: 3.10

new

stackSwitcherNew Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> m StackSwitcher

Returns: a new StackSwitcher.

Create a new StackSwitcher.

Since: 3.10

setStack

stackSwitcherSetStack Source #

Arguments

:: (HasCallStack, MonadIO m, IsStackSwitcher a, IsStack b) 
=> a

switcher: a StackSwitcher

-> Maybe b

stack: a Stack

-> m () 

Sets the stack to control.

Since: 3.10

Properties

iconSize

Use the "icon-size" property to change the size of the image displayed when a StackSwitcher is displaying icons.

Since: 3.20

constructStackSwitcherIconSize :: IsStackSwitcher o => Int32 -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “icon-size” property. This is rarely needed directly, but it is used by new.

getStackSwitcherIconSize :: (MonadIO m, IsStackSwitcher o) => o -> m Int32 Source #

Get the value of the “icon-size” property. When overloading is enabled, this is equivalent to

get stackSwitcher #iconSize

setStackSwitcherIconSize :: (MonadIO m, IsStackSwitcher o) => o -> Int32 -> m () Source #

Set the value of the “icon-size” property. When overloading is enabled, this is equivalent to

set stackSwitcher [ #iconSize := value ]

stack

No description available in the introspection data.

clearStackSwitcherStack :: (MonadIO m, IsStackSwitcher o) => o -> m () Source #

Set the value of the “stack” property to Nothing. When overloading is enabled, this is equivalent to

clear #stack

constructStackSwitcherStack :: (IsStackSwitcher o, IsStack a) => a -> IO (GValueConstruct o) Source #

Construct a GValueConstruct with valid value for the “stack” property. This is rarely needed directly, but it is used by new.

getStackSwitcherStack :: (MonadIO m, IsStackSwitcher o) => o -> m (Maybe Stack) Source #

Get the value of the “stack” property. When overloading is enabled, this is equivalent to

get stackSwitcher #stack

setStackSwitcherStack :: (MonadIO m, IsStackSwitcher o, IsStack a) => o -> a -> m () Source #

Set the value of the “stack” property. When overloading is enabled, this is equivalent to

set stackSwitcher [ #stack := value ]