PickFlags

public struct PickFlags : OptionSet

Flags that influence the behavior of gtk_widget_pick().

  • The corresponding value of the raw type

    Declaration

    Swift

    public var rawValue: UInt32
  • The equivalent raw Int value

    Declaration

    Swift

    @inlinable
    public var intValue: Int { get set }
  • int

    The equivalent raw gint value

    Declaration

    Swift

    @inlinable
    public var int: gint { get set }
  • The equivalent underlying GtkPickFlags enum value

    Declaration

    Swift

    @inlinable
    public var value: GtkPickFlags { get set }
  • Creates a new instance with the specified raw value

    Declaration

    Swift

    @inlinable
    public init(rawValue: UInt32)
  • Creates a new instance with the specified GtkPickFlags enum value

    Declaration

    Swift

    @inlinable
    public init(_ enumValue: GtkPickFlags)
  • Creates a new instance with the specified Int value

    Declaration

    Swift

    @inlinable
    public init<I>(_ intValue: I) where I : BinaryInteger
  • The default behavior, include widgets that are receiving events

    Declaration

    Swift

    public static let `default`: PickFlags
  • Include widgets that are insensitive

    Declaration

    Swift

    public static let insensitive: PickFlags
  • Include widgets that are marked as non-targetable. See GtkWidget:can-target

    Declaration

    Swift

    public static let nonTargetable: PickFlags