StackTransitionType

public extension StackTransitionType
  • Cast constructor, converting any binary integer to a StackTransitionType.

    Declaration

    Swift

    @inlinable
    init!<I>(_ raw: I) where I : BinaryInteger

    Parameters

    raw

    The raw integer value to initialise the enum from

  • No transition

    Declaration

    Swift

    static let none: GtkStackTransitionType
  • A cross-fade

    Declaration

    Swift

    static let crossfade: GtkStackTransitionType
  • Slide from left to right

    Declaration

    Swift

    static let slideRight: GtkStackTransitionType
  • Slide from right to left

    Declaration

    Swift

    static let slideLeft: GtkStackTransitionType
  • Slide from bottom up

    Declaration

    Swift

    static let slideUp: GtkStackTransitionType
  • Slide from top down

    Declaration

    Swift

    static let slideDown: GtkStackTransitionType
  • Slide from left or right according to the children order

    Declaration

    Swift

    static let slideLeftRight: GtkStackTransitionType
  • Slide from top down or bottom up according to the order

    Declaration

    Swift

    static let slideUpDown: GtkStackTransitionType
  • Cover the old page by sliding up

    Declaration

    Swift

    static let overUp: GtkStackTransitionType
  • Cover the old page by sliding down

    Declaration

    Swift

    static let overDown: GtkStackTransitionType
  • Cover the old page by sliding to the left

    Declaration

    Swift

    static let overLeft: GtkStackTransitionType
  • Cover the old page by sliding to the right

    Declaration

    Swift

    static let overRight: GtkStackTransitionType
  • Uncover the new page by sliding up

    Declaration

    Swift

    static let underUp: GtkStackTransitionType
  • Uncover the new page by sliding down

    Declaration

    Swift

    static let underDown: GtkStackTransitionType
  • Uncover the new page by sliding to the left

    Declaration

    Swift

    static let underLeft: GtkStackTransitionType
  • Uncover the new page by sliding to the right

    Declaration

    Swift

    static let underRight: GtkStackTransitionType
  • Cover the old page sliding up or uncover the new page sliding down, according to order

    Declaration

    Swift

    static let overUpDown: GtkStackTransitionType
  • Cover the old page sliding down or uncover the new page sliding up, according to order

    Declaration

    Swift

    static let overDownUp: GtkStackTransitionType
  • Cover the old page sliding left or uncover the new page sliding right, according to order

    Declaration

    Swift

    static let overLeftRight: GtkStackTransitionType
  • Cover the old page sliding right or uncover the new page sliding left, according to order

    Declaration

    Swift

    static let overRightLeft: GtkStackTransitionType
  • Pretend the pages are sides of a cube and rotate that cube to the left

    Declaration

    Swift

    static let rotateLeft: GtkStackTransitionType
  • Pretend the pages are sides of a cube and rotate that cube to the right

    Declaration

    Swift

    static let rotateRight: GtkStackTransitionType
  • Pretend the pages are sides of a cube and rotate that cube to the left or right according to the children order

    Declaration

    Swift

    static let rotateLeftRight: GtkStackTransitionType