Gtk.Stack

Entities

Simple Types

Tagged Types

Access Types

Constants

Subprograms

Generic Instantiations

Description

The GtkStack widget is a container which only shows one of its children at a time. In contrast to GtkNotebook, GtkStack does not provide a means for users to change the visible child. Instead, the Gtk.Stack_Switcher.Gtk_Stack_Switcher widget can be used with GtkStack to provide this functionality.

Transitions between pages can be animated as slides or fades. This can be controlled with Gtk.Stack.Set_Transition_Type. These animations respect the Gtk.Settings.Gtk_Settings:gtk-enable-animations setting.

The GtkStack widget was added in GTK+ 3.10.

# CSS nodes

GtkStack has a single CSS node named stack.

"+"

function "+"
  (Widget : access Gtk_Stack_Record'Class)
return Gtk.Buildable.Gtk_Buildable
Parameters
Widget
Return Value

"-"

function "-"
  (Interf : Gtk.Buildable.Gtk_Buildable)
return Gtk_Stack
Parameters
Interf
Return Value

Add_Named

procedure Add_Named
   (Self  : not null access Gtk_Stack_Record;
    Child : not null access Gtk.Widget.Gtk_Widget_Record'Class;
    Name  : UTF8_String)

Adds a child to Stack. The child is identified by the Name. Since: gtk+ 3.10

Parameters
Self
Child

the widget to add

Name

the name for Child

Add_Titled

procedure Add_Titled
   (Self  : not null access Gtk_Stack_Record;
    Child : not null access Gtk.Widget.Gtk_Widget_Record'Class;
    Name  : UTF8_String;
    Title : UTF8_String)

Adds a child to Stack. The child is identified by the Name. The Title will be used by Gtk.Stack_Switcher.Gtk_Stack_Switcher to represent Child in a tab bar, so it should be short. Since: gtk+ 3.10

Parameters
Self
Child

the widget to add

Name

the name for Child

Title

a human-readable title for Child

Get_Child_By_Name

function Get_Child_By_Name
   (Self : not null access Gtk_Stack_Record;
    Name : UTF8_String) return Gtk.Widget.Gtk_Widget

Finds the child of the Gtk.Stack.Gtk_Stack with the name given as the argument. Returns null if there is no child with this name. Since: gtk+ 3.12

Parameters
Self
Name

the name of the child to find

Return Value

the requested child of the Gtk.Stack.Gtk_Stack

Get_Hhomogeneous

function Get_Hhomogeneous
   (Self : not null access Gtk_Stack_Record) return Boolean

Gets whether Stack is horizontally homogeneous. See Gtk.Stack.Set_Hhomogeneous. Since: gtk+ 3.16

Parameters
Self
Return Value

whether Stack is horizontally homogeneous.

Get_Homogeneous

function Get_Homogeneous
   (Self : not null access Gtk_Stack_Record) return Boolean

Gets whether Stack is homogeneous. See Gtk.Stack.Set_Homogeneous. Since: gtk+ 3.10

Parameters
Self
Return Value

whether Stack is homogeneous.

Get_Interpolate_Size

function Get_Interpolate_Size
   (Self : not null access Gtk_Stack_Record) return Boolean

Returns wether the Gtk.Stack.Gtk_Stack is set up to interpolate between the sizes of children on page switch. Since: gtk+ 3.18

Parameters
Self
Return Value

True if child sizes are interpolated

Get_Transition_Duration

function Get_Transition_Duration
   (Self : not null access Gtk_Stack_Record) return Guint

Returns the amount of time (in milliseconds) that transitions between pages in Stack will take. Since: gtk+ 3.10

Parameters
Self
Return Value

the transition duration

Get_Transition_Running

function Get_Transition_Running
   (Self : not null access Gtk_Stack_Record) return Boolean

Returns whether the Stack is currently in a transition from one page to another. Since: gtk+ 3.12

Parameters
Self
Return Value

True if the transition is currently running, False otherwise.

Get_Transition_Type

function Get_Transition_Type
   (Self : not null access Gtk_Stack_Record)
    return Gtk_Stack_Transition_Type

Gets the type of animation that will be used for transitions between pages in Stack. Since: gtk+ 3.10

Parameters
Self
Return Value

the current transition type of Stack

Get_Type

function Get_Type return Glib.GType
Return Value

Get_Vhomogeneous

function Get_Vhomogeneous
   (Self : not null access Gtk_Stack_Record) return Boolean

Gets whether Stack is vertically homogeneous. See Gtk.Stack.Set_Vhomogeneous. Since: gtk+ 3.16

Parameters
Self
Return Value

whether Stack is vertically homogeneous.

Get_Visible_Child

function Get_Visible_Child
   (Self : not null access Gtk_Stack_Record) return Gtk.Widget.Gtk_Widget

Gets the currently visible child of Stack, or null if there are no visible children. Since: gtk+ 3.10

Parameters
Self
Return Value

the visible child of the Gtk.Stack.Gtk_Stack

Get_Visible_Child_Name

function Get_Visible_Child_Name
   (Self : not null access Gtk_Stack_Record) return UTF8_String

Returns the name of the currently visible child of Stack, or null if there is no visible child. Since: gtk+ 3.10

Parameters
Self
Return Value

the name of the visible child of the Gtk.Stack.Gtk_Stack

Gtk_New

procedure Gtk_New (Self : out Gtk_Stack)

Creates a new Gtk.Stack.Gtk_Stack container. Since: gtk+ 3.10 Initialize does nothing if the object was already created with another call to Initialize* or G_New.

Parameters
Self

Gtk_Stack

type Gtk_Stack is access all Gtk_Stack_Record'Class;

Gtk_Stack_New

function Gtk_Stack_New return Gtk_Stack

Creates a new Gtk.Stack.Gtk_Stack container. Since: gtk+ 3.10

Return Value

Gtk_Stack_Record

type Gtk_Stack_Record is new Gtk_Container_Record with null record;

Gtk_Stack_Transition_Type

type Gtk_Stack_Transition_Type is (
   Stack_Transition_Type_None,
   Stack_Transition_Type_Crossfade,
   Stack_Transition_Type_Slide_Right,
   Stack_Transition_Type_Slide_Left,
   Stack_Transition_Type_Slide_Up,
   Stack_Transition_Type_Slide_Down,
   Stack_Transition_Type_Slide_Left_Right,
   Stack_Transition_Type_Slide_Up_Down,
   …,
   Stack_Transition_Type_Over_Right_Left);

These enumeration values describe the possible transitions between pages in a Gtk.Stack.Gtk_Stack widget.

New values may be added to this enumeration over time.

Enumeration Literal
Stack_Transition_Type_None
Stack_Transition_Type_Crossfade
Stack_Transition_Type_Slide_Right
Stack_Transition_Type_Slide_Left
Stack_Transition_Type_Slide_Up
Stack_Transition_Type_Slide_Down
Stack_Transition_Type_Slide_Left_Right
Stack_Transition_Type_Slide_Up_Down
Stack_Transition_Type_Over_Up
Stack_Transition_Type_Over_Down
Stack_Transition_Type_Over_Left
Stack_Transition_Type_Over_Right
Stack_Transition_Type_Under_Up
Stack_Transition_Type_Under_Down
Stack_Transition_Type_Under_Left
Stack_Transition_Type_Under_Right
Stack_Transition_Type_Over_Up_Down
Stack_Transition_Type_Over_Down_Up
Stack_Transition_Type_Over_Left_Right
Stack_Transition_Type_Over_Right_Left

Gtk_Stack_Transition_Type_Properties

package Gtk_Stack_Transition_Type_Properties is
   new Generic_Internal_Discrete_Property (Gtk_Stack_Transition_Type);

Hhomogeneous_Property

Hhomogeneous_Property : constant Glib.Properties.Property_Boolean;

True if the stack allocates the same width for all children.

Homogeneous_Property

Homogeneous_Property : constant Glib.Properties.Property_Boolean;

Implements_Gtk_Buildable

package Implements_Gtk_Buildable is new Glib.Types.Implements
  (Gtk.Buildable.Gtk_Buildable, Gtk_Stack_Record, Gtk_Stack);

Initialize

procedure Initialize (Self : not null access Gtk_Stack_Record'Class)

Creates a new Gtk.Stack.Gtk_Stack container. Since: gtk+ 3.10 Initialize does nothing if the object was already created with another call to Initialize* or G_New.

Parameters
Self

Interpolate_Size_Property

Interpolate_Size_Property : constant Glib.Properties.Property_Boolean;

Property_Gtk_Stack_Transition_Type

type Property_Gtk_Stack_Transition_Type is new Gtk_Stack_Transition_Type_Properties.Property;

Set_Hhomogeneous

procedure Set_Hhomogeneous
   (Self         : not null access Gtk_Stack_Record;
    Hhomogeneous : Boolean)

Sets the Gtk.Stack.Gtk_Stack to be horizontally homogeneous or not. If it is homogeneous, the Gtk.Stack.Gtk_Stack will request the same width for all its children. If it isn't, the stack may change width when a different child becomes visible. Since: gtk+ 3.16

Parameters
Self
Hhomogeneous

True to make Stack horizontally homogeneous

Set_Homogeneous

procedure Set_Homogeneous
   (Self        : not null access Gtk_Stack_Record;
    Homogeneous : Boolean)

Sets the Gtk.Stack.Gtk_Stack to be homogeneous or not. If it is homogeneous, the Gtk.Stack.Gtk_Stack will request the same size for all its children. If it isn't, the stack may change size when a different child becomes visible. Since 3.16, homogeneity can be controlled separately for horizontal and vertical size, with the Gtk.Stack.Gtk_Stack:hhomogeneous and Gtk.Stack.Gtk_Stack:vhomogeneous. Since: gtk+ 3.10

Parameters
Self
Homogeneous

True to make Stack homogeneous

Set_Interpolate_Size

procedure Set_Interpolate_Size
   (Self             : not null access Gtk_Stack_Record;
    Interpolate_Size : Boolean)

Sets whether or not Stack will interpolate its size when changing the visible child. If the Gtk.Stack.Gtk_Stack:interpolate-size property is set to True, Stack will interpolate its size between the current one and the one it'll take after changing the visible child, according to the set transition duration. Since: gtk+ 3.18

Parameters
Self
Interpolate_Size

the new value

Set_Transition_Duration

procedure Set_Transition_Duration
   (Self     : not null access Gtk_Stack_Record;
    Duration : Guint)

Sets the duration that transitions between pages in Stack will take. Since: gtk+ 3.10

Parameters
Self
Duration

the new duration, in milliseconds

Set_Transition_Type

procedure Set_Transition_Type
   (Self       : not null access Gtk_Stack_Record;
    Transition : Gtk_Stack_Transition_Type)

Sets the type of animation that will be used for transitions between pages in Stack. Available types include various kinds of fades and slides. The transition type can be changed without problems at runtime, so it is possible to change the animation based on the page that is about to become current. Since: gtk+ 3.10

Parameters
Self
Transition

the new transition type

Set_Vhomogeneous

procedure Set_Vhomogeneous
   (Self         : not null access Gtk_Stack_Record;
    Vhomogeneous : Boolean)

Sets the Gtk.Stack.Gtk_Stack to be vertically homogeneous or not. If it is homogeneous, the Gtk.Stack.Gtk_Stack will request the same height for all its children. If it isn't, the stack may change height when a different child becomes visible. Since: gtk+ 3.16

Parameters
Self
Vhomogeneous

True to make Stack vertically homogeneous

Set_Visible_Child

procedure Set_Visible_Child
   (Self  : not null access Gtk_Stack_Record;
    Child : not null access Gtk.Widget.Gtk_Widget_Record'Class)

Makes Child the visible child of Stack. If Child is different from the currently visible child, the transition between the two will be animated with the current transition type of Stack. Note that the Child widget has to be visible itself (see Gtk.Widget.Show) in order to become the visible child of Stack. Since: gtk+ 3.10

Parameters
Self
Child

a child of Stack

Set_Visible_Child_Full

procedure Set_Visible_Child_Full
   (Self       : not null access Gtk_Stack_Record;
    Name       : UTF8_String;
    Transition : Gtk_Stack_Transition_Type)

Makes the child with the given name visible. Note that the child widget has to be visible itself (see Gtk.Widget.Show) in order to become the visible child of Stack. Since: gtk+ 3.10

Parameters
Self
Name

the name of the child to make visible

Transition

the transition type to use

Set_Visible_Child_Name

procedure Set_Visible_Child_Name
   (Self : not null access Gtk_Stack_Record;
    Name : UTF8_String)

Makes the child with the given name visible. If Child is different from the currently visible child, the transition between the two will be animated with the current transition type of Stack. Note that the child widget has to be visible itself (see Gtk.Widget.Show) in order to become the visible child of Stack. Since: gtk+ 3.10

Parameters
Self
Name

the name of the child to make visible

Transition_Duration_Property

Transition_Duration_Property : constant Glib.Properties.Property_Uint;

Transition_Running_Property

Transition_Running_Property : constant Glib.Properties.Property_Boolean;

Transition_Type_Property

Transition_Type_Property : constant Gtk.Stack.Property_Gtk_Stack_Transition_Type;

Type: Gtk_Stack_Transition_Type

Vhomogeneous_Property

Vhomogeneous_Property : constant Glib.Properties.Property_Boolean;

True if the stack allocates the same height for all children.

Visible_Child_Name_Property

Visible_Child_Name_Property : constant Glib.Properties.Property_String;

Visible_Child_Property

Visible_Child_Property : constant Glib.Properties.Property_Object;

Type: Gtk.Widget.Gtk_Widget