gi-gtk-3.0.35: 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.Enums

Description

 
Synopsis

Enumerations

Align

data Align Source #

Controls how a widget deals with extra space in a single (x or y) dimension.

Alignment only matters if the widget receives a “too large” allocation, for example if you packed the widget with the Widget:expand flag inside a Box, then the widget might get extra space. If you have for example a 16x16 icon inside a 32x32 space, the icon could be scaled and stretched, it could be centered, or it could be positioned to one side of the space.

Note that in horizontal context gTKALIGNSTART and gTKALIGNEND are interpreted relative to text direction.

GTK_ALIGN_BASELINE support for it is optional for containers and widgets, and it is only supported for vertical alignment. When its not supported by a child or a container it is treated as gTKALIGNFILL.

Constructors

AlignFill

stretch to fill all space if possible, center if no meaningful way to stretch

AlignStart

snap to left or top side, leaving space on right or bottom

AlignEnd

snap to right or bottom side, leaving space on left or top

AlignCenter

center natural width of widget inside the allocation

AlignBaseline

align the widget according to the baseline. Since 3.10.

AnotherAlign Int

Catch-all for unknown values

Instances

Instances details
Enum Align Source # 
Instance details

Defined in GI.Gtk.Enums

Eq Align Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: Align -> Align -> Bool

(/=) :: Align -> Align -> Bool

Ord Align Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: Align -> Align -> Ordering

(<) :: Align -> Align -> Bool

(<=) :: Align -> Align -> Bool

(>) :: Align -> Align -> Bool

(>=) :: Align -> Align -> Bool

max :: Align -> Align -> Align

min :: Align -> Align -> Align

Show Align Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> Align -> ShowS

show :: Align -> String

showList :: [Align] -> ShowS

BoxedEnum Align Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject Align Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes Align Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes Align Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes Align = '[] :: [Type]

ArrowPlacement

data ArrowPlacement Source #

Used to specify the placement of scroll arrows in scrolling menus.

Constructors

ArrowPlacementBoth

Place one arrow on each end of the menu.

ArrowPlacementStart

Place both arrows at the top of the menu.

ArrowPlacementEnd

Place both arrows at the bottom of the menu.

AnotherArrowPlacement Int

Catch-all for unknown values

Instances

Instances details
Enum ArrowPlacement Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ArrowPlacement Source # 
Instance details

Defined in GI.Gtk.Enums

Ord ArrowPlacement Source # 
Instance details

Defined in GI.Gtk.Enums

Show ArrowPlacement Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ArrowPlacement -> ShowS

show :: ArrowPlacement -> String

showList :: [ArrowPlacement] -> ShowS

BoxedEnum ArrowPlacement Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ArrowPlacement Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ArrowPlacement Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ArrowPlacement Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ArrowPlacement = '[] :: [Type]

ArrowType

data ArrowType Source #

Used to indicate the direction in which an arrow should point.

Constructors

ArrowTypeUp

Represents an upward pointing arrow.

ArrowTypeDown

Represents a downward pointing arrow.

ArrowTypeLeft

Represents a left pointing arrow.

ArrowTypeRight

Represents a right pointing arrow.

ArrowTypeNone

No arrow. Since 2.10.

AnotherArrowType Int

Catch-all for unknown values

Instances

Instances details
Enum ArrowType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ArrowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ArrowType -> ArrowType -> Bool

(/=) :: ArrowType -> ArrowType -> Bool

Ord ArrowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: ArrowType -> ArrowType -> Ordering

(<) :: ArrowType -> ArrowType -> Bool

(<=) :: ArrowType -> ArrowType -> Bool

(>) :: ArrowType -> ArrowType -> Bool

(>=) :: ArrowType -> ArrowType -> Bool

max :: ArrowType -> ArrowType -> ArrowType

min :: ArrowType -> ArrowType -> ArrowType

Show ArrowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ArrowType -> ShowS

show :: ArrowType -> String

showList :: [ArrowType] -> ShowS

BoxedEnum ArrowType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ArrowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ArrowType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ArrowType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ArrowType = '[] :: [Type]

AssistantPageType

data AssistantPageType Source #

An enum for determining the page role inside the Assistant. It's used to handle buttons sensitivity and visibility.

Note that an assistant needs to end its page flow with a page of type AssistantPageTypeConfirm, AssistantPageTypeSummary or AssistantPageTypeProgress to be correct.

The Cancel button will only be shown if the page isn’t “committed”. See assistantCommit for details.

Constructors

AssistantPageTypeContent

The page has regular contents. Both the Back and forward buttons will be shown.

AssistantPageTypeIntro

The page contains an introduction to the assistant task. Only the Forward button will be shown if there is a next page.

AssistantPageTypeConfirm

The page lets the user confirm or deny the changes. The Back and Apply buttons will be shown.

AssistantPageTypeSummary

The page informs the user of the changes done. Only the Close button will be shown.

AssistantPageTypeProgress

Used for tasks that take a long time to complete, blocks the assistant until the page is marked as complete. Only the back button will be shown.

AssistantPageTypeCustom

Used for when other page types are not appropriate. No buttons will be shown, and the application must add its own buttons through assistantAddActionWidget.

AnotherAssistantPageType Int

Catch-all for unknown values

Instances

Instances details
Enum AssistantPageType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq AssistantPageType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord AssistantPageType Source # 
Instance details

Defined in GI.Gtk.Enums

Show AssistantPageType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> AssistantPageType -> ShowS

show :: AssistantPageType -> String

showList :: [AssistantPageType] -> ShowS

BoxedEnum AssistantPageType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject AssistantPageType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes AssistantPageType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes AssistantPageType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes AssistantPageType = '[] :: [Type]

BaselinePosition

data BaselinePosition Source #

Whenever a container has some form of natural row it may align children in that row along a common typographical baseline. If the amount of verical space in the row is taller than the total requested height of the baseline-aligned children then it can use a BaselinePosition to select where to put the baseline inside the extra availible space.

Since: 3.10

Constructors

BaselinePositionTop

Align the baseline at the top

BaselinePositionCenter

Center the baseline

BaselinePositionBottom

Align the baseline at the bottom

AnotherBaselinePosition Int

Catch-all for unknown values

Instances

Instances details
Enum BaselinePosition Source # 
Instance details

Defined in GI.Gtk.Enums

Eq BaselinePosition Source # 
Instance details

Defined in GI.Gtk.Enums

Ord BaselinePosition Source # 
Instance details

Defined in GI.Gtk.Enums

Show BaselinePosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> BaselinePosition -> ShowS

show :: BaselinePosition -> String

showList :: [BaselinePosition] -> ShowS

BoxedEnum BaselinePosition Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject BaselinePosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes BaselinePosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes BaselinePosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes BaselinePosition = '[] :: [Type]

BorderStyle

data BorderStyle Source #

Describes how the border of a UI element should be rendered.

Constructors

BorderStyleNone

No visible border

BorderStyleSolid

A single line segment

BorderStyleInset

Looks as if the content is sunken into the canvas

BorderStyleOutset

Looks as if the content is coming out of the canvas

BorderStyleHidden

Same as gTKBORDERSTYLENONE

BorderStyleDotted

A series of round dots

BorderStyleDashed

A series of square-ended dashes

BorderStyleDouble

Two parallel lines with some space between them

BorderStyleGroove

Looks as if it were carved in the canvas

BorderStyleRidge

Looks as if it were coming out of the canvas

AnotherBorderStyle Int

Catch-all for unknown values

Instances

Instances details
Enum BorderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Eq BorderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: BorderStyle -> BorderStyle -> Bool

(/=) :: BorderStyle -> BorderStyle -> Bool

Ord BorderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Show BorderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> BorderStyle -> ShowS

show :: BorderStyle -> String

showList :: [BorderStyle] -> ShowS

BoxedEnum BorderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject BorderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes BorderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes BorderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes BorderStyle = '[] :: [Type]

BuilderError

data BuilderError Source #

Error codes that identify various errors that can occur while using Builder.

Constructors

BuilderErrorInvalidTypeFunction

A type-func attribute didn’t name a function that returns a GType.

BuilderErrorUnhandledTag

The input contained a tag that Builder can’t handle.

BuilderErrorMissingAttribute

An attribute that is required by Builder was missing.

BuilderErrorInvalidAttribute

Builder found an attribute that it doesn’t understand.

BuilderErrorInvalidTag

Builder found a tag that it doesn’t understand.

BuilderErrorMissingPropertyValue

A required property value was missing.

BuilderErrorInvalidValue

Builder couldn’t parse some attribute value.

BuilderErrorVersionMismatch

The input file requires a newer version of GTK+.

BuilderErrorDuplicateId

An object id occurred twice.

BuilderErrorObjectTypeRefused

A specified object type is of the same type or derived from the type of the composite class being extended with builder XML.

BuilderErrorTemplateMismatch

The wrong type was specified in a composite class’s template XML

BuilderErrorInvalidProperty

The specified property is unknown for the object class.

BuilderErrorInvalidSignal

The specified signal is unknown for the object class.

BuilderErrorInvalidId

An object id is unknown

AnotherBuilderError Int

Catch-all for unknown values

Instances

Instances details
Enum BuilderError Source # 
Instance details

Defined in GI.Gtk.Enums

Eq BuilderError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: BuilderError -> BuilderError -> Bool

(/=) :: BuilderError -> BuilderError -> Bool

Ord BuilderError Source # 
Instance details

Defined in GI.Gtk.Enums

Show BuilderError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> BuilderError -> ShowS

show :: BuilderError -> String

showList :: [BuilderError] -> ShowS

BoxedEnum BuilderError Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject BuilderError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

GErrorClass BuilderError Source # 
Instance details

Defined in GI.Gtk.Enums

HasParentTypes BuilderError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes BuilderError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes BuilderError = '[] :: [Type]

catchBuilderError :: IO a -> (BuilderError -> GErrorMessage -> IO a) -> IO a Source #

Catch exceptions of type BuilderError. This is a specialized version of catchGErrorJustDomain.

handleBuilderError :: (BuilderError -> GErrorMessage -> IO a) -> IO a -> IO a Source #

Handle exceptions of type BuilderError. This is a specialized version of handleGErrorJustDomain.

ButtonBoxStyle

data ButtonBoxStyle Source #

Used to dictate the style that a ButtonBox uses to layout the buttons it contains.

Constructors

ButtonBoxStyleSpread

Buttons are evenly spread across the box.

ButtonBoxStyleEdge

Buttons are placed at the edges of the box.

ButtonBoxStyleStart

Buttons are grouped towards the start of the box, (on the left for a HBox, or the top for a VBox).

ButtonBoxStyleEnd

Buttons are grouped towards the end of the box, (on the right for a HBox, or the bottom for a VBox).

ButtonBoxStyleCenter

Buttons are centered in the box. Since 2.12.

ButtonBoxStyleExpand

Buttons expand to fill the box. This entails giving buttons a "linked" appearance, making button sizes homogeneous, and setting spacing to 0 (same as calling boxSetHomogeneous and boxSetSpacing manually). Since 3.12.

AnotherButtonBoxStyle Int

Catch-all for unknown values

Instances

Instances details
Enum ButtonBoxStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ButtonBoxStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Ord ButtonBoxStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Show ButtonBoxStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ButtonBoxStyle -> ShowS

show :: ButtonBoxStyle -> String

showList :: [ButtonBoxStyle] -> ShowS

BoxedEnum ButtonBoxStyle Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ButtonBoxStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ButtonBoxStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ButtonBoxStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ButtonBoxStyle = '[] :: [Type]

ButtonRole

data ButtonRole Source #

The role specifies the desired appearance of a ModelButton.

Constructors

ButtonRoleNormal

A plain button

ButtonRoleCheck

A check button

ButtonRoleRadio

A radio button

AnotherButtonRole Int

Catch-all for unknown values

Instances

Instances details
Enum ButtonRole Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ButtonRole Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ButtonRole -> ButtonRole -> Bool

(/=) :: ButtonRole -> ButtonRole -> Bool

Ord ButtonRole Source # 
Instance details

Defined in GI.Gtk.Enums

Show ButtonRole Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ButtonRole -> ShowS

show :: ButtonRole -> String

showList :: [ButtonRole] -> ShowS

BoxedEnum ButtonRole Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ButtonRole Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ButtonRole Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ButtonRole Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ButtonRole = '[] :: [Type]

ButtonsType

data ButtonsType Source #

Prebuilt sets of buttons for the dialog. If none of these choices are appropriate, simply use ButtonsTypeNone then call gtk_dialog_add_buttons().

Please note that 'GI.Gtk.Enums.ButtonsTypeOk', 'GI.Gtk.Enums.ButtonsTypeYesNo'
and 'GI.Gtk.Enums.ButtonsTypeOkCancel' are discouraged by the
<http://library.gnome.org/devel/hig-book/stable/ GNOME Human Interface Guidelines>.

Constructors

ButtonsTypeNone

no buttons at all

ButtonsTypeOk

an OK button

ButtonsTypeClose

a Close button

ButtonsTypeCancel

a Cancel button

ButtonsTypeYesNo

Yes and No buttons

ButtonsTypeOkCancel

OK and Cancel buttons

AnotherButtonsType Int

Catch-all for unknown values

Instances

Instances details
Enum ButtonsType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ButtonsType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ButtonsType -> ButtonsType -> Bool

(/=) :: ButtonsType -> ButtonsType -> Bool

Ord ButtonsType Source # 
Instance details

Defined in GI.Gtk.Enums

Show ButtonsType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ButtonsType -> ShowS

show :: ButtonsType -> String

showList :: [ButtonsType] -> ShowS

BoxedEnum ButtonsType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ButtonsType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ButtonsType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ButtonsType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ButtonsType = '[] :: [Type]

CellRendererAccelMode

data CellRendererAccelMode Source #

Determines if the edited accelerators are GTK+ accelerators. If they are, consumed modifiers are suppressed, only accelerators accepted by GTK+ are allowed, and the accelerators are rendered in the same way as they are in menus.

Constructors

CellRendererAccelModeGtk

GTK+ accelerators mode

CellRendererAccelModeOther

Other accelerator mode

AnotherCellRendererAccelMode Int

Catch-all for unknown values

Instances

Instances details
Enum CellRendererAccelMode Source # 
Instance details

Defined in GI.Gtk.Enums

Eq CellRendererAccelMode Source # 
Instance details

Defined in GI.Gtk.Enums

Ord CellRendererAccelMode Source # 
Instance details

Defined in GI.Gtk.Enums

Show CellRendererAccelMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> CellRendererAccelMode -> ShowS

show :: CellRendererAccelMode -> String

showList :: [CellRendererAccelMode] -> ShowS

BoxedEnum CellRendererAccelMode Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject CellRendererAccelMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes CellRendererAccelMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CellRendererAccelMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CellRendererAccelMode = '[] :: [Type]

CellRendererMode

data CellRendererMode Source #

Identifies how the user can interact with a particular cell.

Constructors

CellRendererModeInert

The cell is just for display and cannot be interacted with. Note that this doesn’t mean that eg. the row being drawn can’t be selected -- just that a particular element of it cannot be individually modified.

CellRendererModeActivatable

The cell can be clicked.

CellRendererModeEditable

The cell can be edited or otherwise modified.

AnotherCellRendererMode Int

Catch-all for unknown values

Instances

Instances details
Enum CellRendererMode Source # 
Instance details

Defined in GI.Gtk.Enums

Eq CellRendererMode Source # 
Instance details

Defined in GI.Gtk.Enums

Ord CellRendererMode Source # 
Instance details

Defined in GI.Gtk.Enums

Show CellRendererMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> CellRendererMode -> ShowS

show :: CellRendererMode -> String

showList :: [CellRendererMode] -> ShowS

BoxedEnum CellRendererMode Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject CellRendererMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes CellRendererMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CellRendererMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CellRendererMode = '[] :: [Type]

CornerType

data CornerType Source #

Specifies which corner a child widget should be placed in when packed into a ScrolledWindow. This is effectively the opposite of where the scroll bars are placed.

Constructors

CornerTypeTopLeft

Place the scrollbars on the right and bottom of the widget (default behaviour).

CornerTypeBottomLeft

Place the scrollbars on the top and right of the widget.

CornerTypeTopRight

Place the scrollbars on the left and bottom of the widget.

CornerTypeBottomRight

Place the scrollbars on the top and left of the widget.

AnotherCornerType Int

Catch-all for unknown values

Instances

Instances details
Enum CornerType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq CornerType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: CornerType -> CornerType -> Bool

(/=) :: CornerType -> CornerType -> Bool

Ord CornerType Source # 
Instance details

Defined in GI.Gtk.Enums

Show CornerType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> CornerType -> ShowS

show :: CornerType -> String

showList :: [CornerType] -> ShowS

BoxedEnum CornerType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject CornerType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes CornerType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CornerType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CornerType = '[] :: [Type]

CssProviderError

data CssProviderError Source #

Error codes for GTK_CSS_PROVIDER_ERROR.

Constructors

CssProviderErrorFailed

Failed.

CssProviderErrorSyntax

Syntax error.

CssProviderErrorImport

Import error.

CssProviderErrorName

Name error.

CssProviderErrorDeprecated

Deprecation error.

CssProviderErrorUnknownValue

Unknown value.

AnotherCssProviderError Int

Catch-all for unknown values

Instances

Instances details
Enum CssProviderError Source # 
Instance details

Defined in GI.Gtk.Enums

Eq CssProviderError Source # 
Instance details

Defined in GI.Gtk.Enums

Ord CssProviderError Source # 
Instance details

Defined in GI.Gtk.Enums

Show CssProviderError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> CssProviderError -> ShowS

show :: CssProviderError -> String

showList :: [CssProviderError] -> ShowS

BoxedEnum CssProviderError Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject CssProviderError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

GErrorClass CssProviderError Source # 
Instance details

Defined in GI.Gtk.Enums

HasParentTypes CssProviderError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CssProviderError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CssProviderError = '[] :: [Type]

catchCssProviderError :: IO a -> (CssProviderError -> GErrorMessage -> IO a) -> IO a Source #

Catch exceptions of type CssProviderError. This is a specialized version of catchGErrorJustDomain.

handleCssProviderError :: (CssProviderError -> GErrorMessage -> IO a) -> IO a -> IO a Source #

Handle exceptions of type CssProviderError. This is a specialized version of handleGErrorJustDomain.

CssSectionType

data CssSectionType Source #

The different types of sections indicate parts of a CSS document as parsed by GTK’s CSS parser. They are oriented towards the CSS Grammar, but may contain extensions.

More types might be added in the future as the parser incorporates more features.

Since: 3.2

Constructors

CssSectionTypeDocument

The section describes a complete document. This section time is the only one where cssSectionGetParent might return Nothing.

CssSectionTypeImport

The section defines an import rule.

CssSectionTypeColorDefinition

The section defines a color. This is a GTK extension to CSS.

CssSectionTypeBindingSet

The section defines a binding set. This is a GTK extension to CSS.

CssSectionTypeRuleset

The section defines a CSS ruleset.

CssSectionTypeSelector

The section defines a CSS selector.

CssSectionTypeDeclaration

The section defines the declaration of a CSS variable.

CssSectionTypeValue

The section defines the value of a CSS declaration.

CssSectionTypeKeyframes

The section defines keyframes. See <http://dev.w3.org/csswg/css3-animations/#keyframes CSS Animations> for details. Since 3.6

AnotherCssSectionType Int

Catch-all for unknown values

Instances

Instances details
Enum CssSectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq CssSectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord CssSectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Show CssSectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> CssSectionType -> ShowS

show :: CssSectionType -> String

showList :: [CssSectionType] -> ShowS

BoxedEnum CssSectionType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject CssSectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes CssSectionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CssSectionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes CssSectionType = '[] :: [Type]

DeleteType

data DeleteType Source #

See also: deleteFromCursor.

Constructors

DeleteTypeChars

Delete characters.

DeleteTypeWordEnds

Delete only the portion of the word to the left/right of cursor if we’re in the middle of a word.

DeleteTypeWords

Delete words.

DeleteTypeDisplayLines

Delete display-lines. Display-lines refers to the visible lines, with respect to to the current line breaks. As opposed to paragraphs, which are defined by line breaks in the input.

DeleteTypeDisplayLineEnds

Delete only the portion of the display-line to the left/right of cursor.

DeleteTypeParagraphEnds

Delete to the end of the paragraph. Like C-k in Emacs (or its reverse).

DeleteTypeParagraphs

Delete entire line. Like C-k in pico.

DeleteTypeWhitespace

Delete only whitespace. Like M-\ in Emacs.

AnotherDeleteType Int

Catch-all for unknown values

Instances

Instances details
Enum DeleteType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq DeleteType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: DeleteType -> DeleteType -> Bool

(/=) :: DeleteType -> DeleteType -> Bool

Ord DeleteType Source # 
Instance details

Defined in GI.Gtk.Enums

Show DeleteType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> DeleteType -> ShowS

show :: DeleteType -> String

showList :: [DeleteType] -> ShowS

BoxedEnum DeleteType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject DeleteType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes DeleteType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes DeleteType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes DeleteType = '[] :: [Type]

DirectionType

data DirectionType Source #

Focus movement types.

Constructors

DirectionTypeTabForward

Move forward.

DirectionTypeTabBackward

Move backward.

DirectionTypeUp

Move up.

DirectionTypeDown

Move down.

DirectionTypeLeft

Move left.

DirectionTypeRight

Move right.

AnotherDirectionType Int

Catch-all for unknown values

Instances

Instances details
Enum DirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq DirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord DirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Show DirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> DirectionType -> ShowS

show :: DirectionType -> String

showList :: [DirectionType] -> ShowS

BoxedEnum DirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject DirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes DirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes DirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes DirectionType = '[] :: [Type]

DragResult

data DragResult Source #

Gives an indication why a drag operation failed. The value can by obtained by connecting to the dragFailed signal.

Constructors

DragResultSuccess

The drag operation was successful.

DragResultNoTarget

No suitable drag target.

DragResultUserCancelled

The user cancelled the drag operation.

DragResultTimeoutExpired

The drag operation timed out.

DragResultGrabBroken

The pointer or keyboard grab used for the drag operation was broken.

DragResultError

The drag operation failed due to some unspecified error.

AnotherDragResult Int

Catch-all for unknown values

Instances

Instances details
Enum DragResult Source # 
Instance details

Defined in GI.Gtk.Enums

Eq DragResult Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: DragResult -> DragResult -> Bool

(/=) :: DragResult -> DragResult -> Bool

Ord DragResult Source # 
Instance details

Defined in GI.Gtk.Enums

Show DragResult Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> DragResult -> ShowS

show :: DragResult -> String

showList :: [DragResult] -> ShowS

BoxedEnum DragResult Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject DragResult Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes DragResult Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes DragResult Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes DragResult = '[] :: [Type]

EntryIconPosition

data EntryIconPosition Source #

Specifies the side of the entry at which an icon is placed.

Since: 2.16

Constructors

EntryIconPositionPrimary

At the beginning of the entry (depending on the text direction).

EntryIconPositionSecondary

At the end of the entry (depending on the text direction).

AnotherEntryIconPosition Int

Catch-all for unknown values

Instances

Instances details
Enum EntryIconPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Eq EntryIconPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Ord EntryIconPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Show EntryIconPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> EntryIconPosition -> ShowS

show :: EntryIconPosition -> String

showList :: [EntryIconPosition] -> ShowS

BoxedEnum EntryIconPosition Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject EntryIconPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes EntryIconPosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes EntryIconPosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes EntryIconPosition = '[] :: [Type]

EventSequenceState

data EventSequenceState Source #

Describes the state of a EventSequence in a Gesture.

Since: 3.14

Constructors

EventSequenceStateNone

The sequence is handled, but not grabbed.

EventSequenceStateClaimed

The sequence is handled and grabbed.

EventSequenceStateDenied

The sequence is denied.

AnotherEventSequenceState Int

Catch-all for unknown values

Instances

Instances details
Enum EventSequenceState Source # 
Instance details

Defined in GI.Gtk.Enums

Eq EventSequenceState Source # 
Instance details

Defined in GI.Gtk.Enums

Ord EventSequenceState Source # 
Instance details

Defined in GI.Gtk.Enums

Show EventSequenceState Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> EventSequenceState -> ShowS

show :: EventSequenceState -> String

showList :: [EventSequenceState] -> ShowS

BoxedEnum EventSequenceState Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject EventSequenceState Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes EventSequenceState Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes EventSequenceState Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes EventSequenceState = '[] :: [Type]

ExpanderStyle

data ExpanderStyle Source #

Used to specify the style of the expanders drawn by a TreeView.

Constructors

ExpanderStyleCollapsed

The style used for a collapsed subtree.

ExpanderStyleSemiCollapsed

Intermediate style used during animation.

ExpanderStyleSemiExpanded

Intermediate style used during animation.

ExpanderStyleExpanded

The style used for an expanded subtree.

AnotherExpanderStyle Int

Catch-all for unknown values

Instances

Instances details
Enum ExpanderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ExpanderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Ord ExpanderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Show ExpanderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ExpanderStyle -> ShowS

show :: ExpanderStyle -> String

showList :: [ExpanderStyle] -> ShowS

BoxedEnum ExpanderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ExpanderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ExpanderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ExpanderStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ExpanderStyle = '[] :: [Type]

FileChooserAction

data FileChooserAction Source #

Describes whether a FileChooser is being used to open existing files or to save to a possibly new file.

Constructors

FileChooserActionOpen

Indicates open mode. The file chooser will only let the user pick an existing file.

FileChooserActionSave

Indicates save mode. The file chooser will let the user pick an existing file, or type in a new filename.

FileChooserActionSelectFolder

Indicates an Open mode for selecting folders. The file chooser will let the user pick an existing folder.

FileChooserActionCreateFolder

Indicates a mode for creating a new folder. The file chooser will let the user name an existing or new folder.

AnotherFileChooserAction Int

Catch-all for unknown values

Instances

Instances details
Enum FileChooserAction Source # 
Instance details

Defined in GI.Gtk.Enums

Eq FileChooserAction Source # 
Instance details

Defined in GI.Gtk.Enums

Ord FileChooserAction Source # 
Instance details

Defined in GI.Gtk.Enums

Show FileChooserAction Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> FileChooserAction -> ShowS

show :: FileChooserAction -> String

showList :: [FileChooserAction] -> ShowS

BoxedEnum FileChooserAction Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject FileChooserAction Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes FileChooserAction Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes FileChooserAction Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes FileChooserAction = '[] :: [Type]

FileChooserConfirmation

data FileChooserConfirmation Source #

Used as a return value of handlers for the confirmOverwrite signal of a FileChooser. This value determines whether the file chooser will present the stock confirmation dialog, accept the user’s choice of a filename, or let the user choose another filename.

Since: 2.8

Constructors

FileChooserConfirmationConfirm

The file chooser will present its stock dialog to confirm about overwriting an existing file.

FileChooserConfirmationAcceptFilename

The file chooser will terminate and accept the user’s choice of a file name.

FileChooserConfirmationSelectAgain

The file chooser will continue running, so as to let the user select another file name.

AnotherFileChooserConfirmation Int

Catch-all for unknown values

Instances

Instances details
Enum FileChooserConfirmation Source # 
Instance details

Defined in GI.Gtk.Enums

Eq FileChooserConfirmation Source # 
Instance details

Defined in GI.Gtk.Enums

Ord FileChooserConfirmation Source # 
Instance details

Defined in GI.Gtk.Enums

Show FileChooserConfirmation Source # 
Instance details

Defined in GI.Gtk.Enums

BoxedEnum FileChooserConfirmation Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject FileChooserConfirmation Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes FileChooserConfirmation Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes FileChooserConfirmation Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes FileChooserConfirmation = '[] :: [Type]

FileChooserError

data FileChooserError Source #

These identify the various errors that can occur while calling FileChooser functions.

Constructors

FileChooserErrorNonexistent

Indicates that a file does not exist.

FileChooserErrorBadFilename

Indicates a malformed filename.

FileChooserErrorAlreadyExists

Indicates a duplicate path (e.g. when adding a bookmark).

FileChooserErrorIncompleteHostname

Indicates an incomplete hostname (e.g. "http://foo" without a slash after that).

AnotherFileChooserError Int

Catch-all for unknown values

Instances

Instances details
Enum FileChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Eq FileChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Ord FileChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Show FileChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> FileChooserError -> ShowS

show :: FileChooserError -> String

showList :: [FileChooserError] -> ShowS

BoxedEnum FileChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject FileChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

GErrorClass FileChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

HasParentTypes FileChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes FileChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes FileChooserError = '[] :: [Type]

catchFileChooserError :: IO a -> (FileChooserError -> GErrorMessage -> IO a) -> IO a Source #

Catch exceptions of type FileChooserError. This is a specialized version of catchGErrorJustDomain.

handleFileChooserError :: (FileChooserError -> GErrorMessage -> IO a) -> IO a -> IO a Source #

Handle exceptions of type FileChooserError. This is a specialized version of handleGErrorJustDomain.

IMPreeditStyle

data IMPreeditStyle Source #

Deprecated: (Since version 3.10)

Style for input method preedit. See also Settings:gtk-im-preedit-style

Constructors

IMPreeditStyleNothing

Deprecated

IMPreeditStyleCallback

Deprecated

IMPreeditStyleNone

Deprecated

AnotherIMPreeditStyle Int

Catch-all for unknown values

Instances

Instances details
Enum IMPreeditStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Eq IMPreeditStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Ord IMPreeditStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Show IMPreeditStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> IMPreeditStyle -> ShowS

show :: IMPreeditStyle -> String

showList :: [IMPreeditStyle] -> ShowS

BoxedEnum IMPreeditStyle Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject IMPreeditStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes IMPreeditStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IMPreeditStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IMPreeditStyle = '[] :: [Type]

IMStatusStyle

data IMStatusStyle Source #

Deprecated: (Since version 3.10)

Style for input method status. See also Settings:gtk-im-status-style

Constructors

IMStatusStyleNothing

Deprecated

IMStatusStyleCallback

Deprecated

IMStatusStyleNone

Deprecated

AnotherIMStatusStyle Int

Catch-all for unknown values

Instances

Instances details
Enum IMStatusStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Eq IMStatusStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Ord IMStatusStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Show IMStatusStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> IMStatusStyle -> ShowS

show :: IMStatusStyle -> String

showList :: [IMStatusStyle] -> ShowS

BoxedEnum IMStatusStyle Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject IMStatusStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes IMStatusStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IMStatusStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IMStatusStyle = '[] :: [Type]

IconSize

data IconSize Source #

Built-in stock icon sizes.

Constructors

IconSizeInvalid

Invalid size.

IconSizeMenu

Size appropriate for menus (16px).

IconSizeSmallToolbar

Size appropriate for small toolbars (16px).

IconSizeLargeToolbar

Size appropriate for large toolbars (24px)

IconSizeButton

Size appropriate for buttons (16px)

IconSizeDnd

Size appropriate for drag and drop (32px)

IconSizeDialog

Size appropriate for dialogs (48px)

AnotherIconSize Int

Catch-all for unknown values

Instances

Instances details
Enum IconSize Source # 
Instance details

Defined in GI.Gtk.Enums

Eq IconSize Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: IconSize -> IconSize -> Bool

(/=) :: IconSize -> IconSize -> Bool

Ord IconSize Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: IconSize -> IconSize -> Ordering

(<) :: IconSize -> IconSize -> Bool

(<=) :: IconSize -> IconSize -> Bool

(>) :: IconSize -> IconSize -> Bool

(>=) :: IconSize -> IconSize -> Bool

max :: IconSize -> IconSize -> IconSize

min :: IconSize -> IconSize -> IconSize

Show IconSize Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> IconSize -> ShowS

show :: IconSize -> String

showList :: [IconSize] -> ShowS

BoxedEnum IconSize Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject IconSize Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes IconSize Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IconSize Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IconSize = '[] :: [Type]

IconThemeError

data IconThemeError Source #

Error codes for GtkIconTheme operations.

Constructors

IconThemeErrorNotFound

The icon specified does not exist in the theme

IconThemeErrorFailed

An unspecified error occurred.

AnotherIconThemeError Int

Catch-all for unknown values

Instances

Instances details
Enum IconThemeError Source # 
Instance details

Defined in GI.Gtk.Enums

Eq IconThemeError Source # 
Instance details

Defined in GI.Gtk.Enums

Ord IconThemeError Source # 
Instance details

Defined in GI.Gtk.Enums

Show IconThemeError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> IconThemeError -> ShowS

show :: IconThemeError -> String

showList :: [IconThemeError] -> ShowS

BoxedEnum IconThemeError Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject IconThemeError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

GErrorClass IconThemeError Source # 
Instance details

Defined in GI.Gtk.Enums

HasParentTypes IconThemeError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IconThemeError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IconThemeError = '[] :: [Type]

catchIconThemeError :: IO a -> (IconThemeError -> GErrorMessage -> IO a) -> IO a Source #

Catch exceptions of type IconThemeError. This is a specialized version of catchGErrorJustDomain.

handleIconThemeError :: (IconThemeError -> GErrorMessage -> IO a) -> IO a -> IO a Source #

Handle exceptions of type IconThemeError. This is a specialized version of handleGErrorJustDomain.

IconViewDropPosition

data IconViewDropPosition Source #

An enum for determining where a dropped item goes.

Constructors

IconViewDropPositionNoDrop

no drop possible

IconViewDropPositionDropInto

dropped item replaces the item

IconViewDropPositionDropLeft

droppped item is inserted to the left

IconViewDropPositionDropRight

dropped item is inserted to the right

IconViewDropPositionDropAbove

dropped item is inserted above

IconViewDropPositionDropBelow

dropped item is inserted below

AnotherIconViewDropPosition Int

Catch-all for unknown values

Instances

Instances details
Enum IconViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Eq IconViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Ord IconViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Show IconViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> IconViewDropPosition -> ShowS

show :: IconViewDropPosition -> String

showList :: [IconViewDropPosition] -> ShowS

BoxedEnum IconViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject IconViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes IconViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IconViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes IconViewDropPosition = '[] :: [Type]

ImageType

data ImageType Source #

Describes the image data representation used by a Image. If you want to get the image from the widget, you can only get the currently-stored representation. e.g. if the imageGetStorageType returns GTK_IMAGE_PIXBUF, then you can call imageGetPixbuf but not imageGetStock. For empty images, you can request any storage type (call any of the "get" functions), but they will all return Nothing values.

Constructors

ImageTypeEmpty

there is no image displayed by the widget

ImageTypePixbuf

the widget contains a Pixbuf

ImageTypeStock

the widget contains a [stock item name][gtkstock]

ImageTypeIconSet

the widget contains a IconSet

ImageTypeAnimation

the widget contains a PixbufAnimation

ImageTypeIconName

the widget contains a named icon. This image type was added in GTK+ 2.6

ImageTypeGicon

the widget contains a Icon. This image type was added in GTK+ 2.14

ImageTypeSurface

the widget contains a Surface. This image type was added in GTK+ 3.10

AnotherImageType Int

Catch-all for unknown values

Instances

Instances details
Enum ImageType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ImageType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ImageType -> ImageType -> Bool

(/=) :: ImageType -> ImageType -> Bool

Ord ImageType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: ImageType -> ImageType -> Ordering

(<) :: ImageType -> ImageType -> Bool

(<=) :: ImageType -> ImageType -> Bool

(>) :: ImageType -> ImageType -> Bool

(>=) :: ImageType -> ImageType -> Bool

max :: ImageType -> ImageType -> ImageType

min :: ImageType -> ImageType -> ImageType

Show ImageType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ImageType -> ShowS

show :: ImageType -> String

showList :: [ImageType] -> ShowS

BoxedEnum ImageType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ImageType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ImageType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ImageType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ImageType = '[] :: [Type]

InputPurpose

data InputPurpose Source #

Describes primary purpose of the input widget. This information is useful for on-screen keyboards and similar input methods to decide which keys should be presented to the user.

Note that the purpose is not meant to impose a totally strict rule about allowed characters, and does not replace input validation. It is fine for an on-screen keyboard to let the user override the character set restriction that is expressed by the purpose. The application is expected to validate the entry contents, even if it specified a purpose.

The difference between gTKINPUTPURPOSEDIGITS and gTKINPUTPURPOSENUMBER is that the former accepts only digits while the latter also some punctuation (like commas or points, plus, minus) and “e” or “E” as in 3.14E+000.

This enumeration may be extended in the future; input methods should interpret unknown values as “free form”.

Since: 3.6

Constructors

InputPurposeFreeForm

Allow any character

InputPurposeAlpha

Allow only alphabetic characters

InputPurposeDigits

Allow only digits

InputPurposeNumber

Edited field expects numbers

InputPurposePhone

Edited field expects phone number

InputPurposeUrl

Edited field expects URL

InputPurposeEmail

Edited field expects email address

InputPurposeName

Edited field expects the name of a person

InputPurposePassword

Like gTKINPUTPURPOSEFREEFORM, but characters are hidden

InputPurposePin

Like gTKINPUTPURPOSEDIGITS, but characters are hidden

InputPurposeTerminal

Allow any character, in addition to control codes

AnotherInputPurpose Int

Catch-all for unknown values

Instances

Instances details
Enum InputPurpose Source # 
Instance details

Defined in GI.Gtk.Enums

Eq InputPurpose Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: InputPurpose -> InputPurpose -> Bool

(/=) :: InputPurpose -> InputPurpose -> Bool

Ord InputPurpose Source # 
Instance details

Defined in GI.Gtk.Enums

Show InputPurpose Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> InputPurpose -> ShowS

show :: InputPurpose -> String

showList :: [InputPurpose] -> ShowS

BoxedEnum InputPurpose Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject InputPurpose Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes InputPurpose Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes InputPurpose Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes InputPurpose = '[] :: [Type]

Justification

data Justification Source #

Used for justifying the text inside a Label widget. (See also Alignment).

Constructors

JustificationLeft

The text is placed at the left edge of the label.

JustificationRight

The text is placed at the right edge of the label.

JustificationCenter

The text is placed in the center of the label.

JustificationFill

The text is placed is distributed across the label.

AnotherJustification Int

Catch-all for unknown values

Instances

Instances details
Enum Justification Source # 
Instance details

Defined in GI.Gtk.Enums

Eq Justification Source # 
Instance details

Defined in GI.Gtk.Enums

Ord Justification Source # 
Instance details

Defined in GI.Gtk.Enums

Show Justification Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> Justification -> ShowS

show :: Justification -> String

showList :: [Justification] -> ShowS

BoxedEnum Justification Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject Justification Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes Justification Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes Justification Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes Justification = '[] :: [Type]

LevelBarMode

data LevelBarMode Source #

Describes how LevelBar contents should be rendered. Note that this enumeration could be extended with additional modes in the future.

Since: 3.6

Constructors

LevelBarModeContinuous

the bar has a continuous mode

LevelBarModeDiscrete

the bar has a discrete mode

AnotherLevelBarMode Int

Catch-all for unknown values

Instances

Instances details
Enum LevelBarMode Source # 
Instance details

Defined in GI.Gtk.Enums

Eq LevelBarMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: LevelBarMode -> LevelBarMode -> Bool

(/=) :: LevelBarMode -> LevelBarMode -> Bool

Ord LevelBarMode Source # 
Instance details

Defined in GI.Gtk.Enums

Show LevelBarMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> LevelBarMode -> ShowS

show :: LevelBarMode -> String

showList :: [LevelBarMode] -> ShowS

BoxedEnum LevelBarMode Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject LevelBarMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes LevelBarMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes LevelBarMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes LevelBarMode = '[] :: [Type]

License

data License Source #

The type of license for an application.

This enumeration can be expanded at later date.

Since: 3.0

Constructors

LicenseUnknown

No license specified

LicenseCustom

A license text is going to be specified by the developer

LicenseGpl20

The GNU General Public License, version 2.0 or later

LicenseGpl30

The GNU General Public License, version 3.0 or later

LicenseLgpl21

The GNU Lesser General Public License, version 2.1 or later

LicenseLgpl30

The GNU Lesser General Public License, version 3.0 or later

LicenseBsd

The BSD standard license

LicenseMitX11

The MIT/X11 standard license

LicenseArtistic

The Artistic License, version 2.0

LicenseGpl20Only

The GNU General Public License, version 2.0 only. Since 3.12.

LicenseGpl30Only

The GNU General Public License, version 3.0 only. Since 3.12.

LicenseLgpl21Only

The GNU Lesser General Public License, version 2.1 only. Since 3.12.

LicenseLgpl30Only

The GNU Lesser General Public License, version 3.0 only. Since 3.12.

LicenseAgpl30

The GNU Affero General Public License, version 3.0 or later. Since: 3.22.

LicenseAgpl30Only

The GNU Affero General Public License, version 3.0 only. Since: 3.22.27.

LicenseBsd3

No description available in the introspection data.

LicenseApache20

No description available in the introspection data.

LicenseMpl20

No description available in the introspection data.

AnotherLicense Int

Catch-all for unknown values

Instances

Instances details
Enum License Source # 
Instance details

Defined in GI.Gtk.Enums

Eq License Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: License -> License -> Bool

(/=) :: License -> License -> Bool

Ord License Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: License -> License -> Ordering

(<) :: License -> License -> Bool

(<=) :: License -> License -> Bool

(>) :: License -> License -> Bool

(>=) :: License -> License -> Bool

max :: License -> License -> License

min :: License -> License -> License

Show License Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> License -> ShowS

show :: License -> String

showList :: [License] -> ShowS

BoxedEnum License Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject License Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes License Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes License Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes License = '[] :: [Type]

MenuDirectionType

data MenuDirectionType Source #

An enumeration representing directional movements within a menu.

Constructors

MenuDirectionTypeParent

To the parent menu shell

MenuDirectionTypeChild

To the submenu, if any, associated with the item

MenuDirectionTypeNext

To the next menu item

MenuDirectionTypePrev

To the previous menu item

AnotherMenuDirectionType Int

Catch-all for unknown values

Instances

Instances details
Enum MenuDirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq MenuDirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord MenuDirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Show MenuDirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> MenuDirectionType -> ShowS

show :: MenuDirectionType -> String

showList :: [MenuDirectionType] -> ShowS

BoxedEnum MenuDirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject MenuDirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes MenuDirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes MenuDirectionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes MenuDirectionType = '[] :: [Type]

MessageType

data MessageType Source #

The type of message being displayed in the dialog.

Constructors

MessageTypeInfo

Informational message

MessageTypeWarning

Non-fatal warning message

MessageTypeQuestion

Question requiring a choice

MessageTypeError

Fatal error message

MessageTypeOther

None of the above

AnotherMessageType Int

Catch-all for unknown values

Instances

Instances details
Enum MessageType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq MessageType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: MessageType -> MessageType -> Bool

(/=) :: MessageType -> MessageType -> Bool

Ord MessageType Source # 
Instance details

Defined in GI.Gtk.Enums

Show MessageType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> MessageType -> ShowS

show :: MessageType -> String

showList :: [MessageType] -> ShowS

BoxedEnum MessageType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject MessageType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes MessageType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes MessageType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes MessageType = '[] :: [Type]

MovementStep

data MovementStep Source #

No description available in the introspection data.

Constructors

MovementStepLogicalPositions

Move forward or back by graphemes

MovementStepVisualPositions

Move left or right by graphemes

MovementStepWords

Move forward or back by words

MovementStepDisplayLines

Move up or down lines (wrapped lines)

MovementStepDisplayLineEnds

Move to either end of a line

MovementStepParagraphs

Move up or down paragraphs (newline-ended lines)

MovementStepParagraphEnds

Move to either end of a paragraph

MovementStepPages

Move by pages

MovementStepBufferEnds

Move to ends of the buffer

MovementStepHorizontalPages

Move horizontally by pages

AnotherMovementStep Int

Catch-all for unknown values

Instances

Instances details
Enum MovementStep Source # 
Instance details

Defined in GI.Gtk.Enums

Eq MovementStep Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: MovementStep -> MovementStep -> Bool

(/=) :: MovementStep -> MovementStep -> Bool

Ord MovementStep Source # 
Instance details

Defined in GI.Gtk.Enums

Show MovementStep Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> MovementStep -> ShowS

show :: MovementStep -> String

showList :: [MovementStep] -> ShowS

BoxedEnum MovementStep Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject MovementStep Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes MovementStep Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes MovementStep Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes MovementStep = '[] :: [Type]

NotebookTab

data NotebookTab Source #

No description available in the introspection data.

Constructors

NotebookTabFirst

No description available in the introspection data.

NotebookTabLast

No description available in the introspection data.

AnotherNotebookTab Int

Catch-all for unknown values

Instances

Instances details
Enum NotebookTab Source # 
Instance details

Defined in GI.Gtk.Enums

Eq NotebookTab Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: NotebookTab -> NotebookTab -> Bool

(/=) :: NotebookTab -> NotebookTab -> Bool

Ord NotebookTab Source # 
Instance details

Defined in GI.Gtk.Enums

Show NotebookTab Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> NotebookTab -> ShowS

show :: NotebookTab -> String

showList :: [NotebookTab] -> ShowS

BoxedEnum NotebookTab Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject NotebookTab Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes NotebookTab Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes NotebookTab Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes NotebookTab = '[] :: [Type]

NumberUpLayout

data NumberUpLayout Source #

Used to determine the layout of pages on a sheet when printing multiple pages per sheet.

Instances

Instances details
Enum NumberUpLayout Source # 
Instance details

Defined in GI.Gtk.Enums

Eq NumberUpLayout Source # 
Instance details

Defined in GI.Gtk.Enums

Ord NumberUpLayout Source # 
Instance details

Defined in GI.Gtk.Enums

Show NumberUpLayout Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> NumberUpLayout -> ShowS

show :: NumberUpLayout -> String

showList :: [NumberUpLayout] -> ShowS

BoxedEnum NumberUpLayout Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject NumberUpLayout Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes NumberUpLayout Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes NumberUpLayout Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes NumberUpLayout = '[] :: [Type]

Orientation

data Orientation Source #

Represents the orientation of widgets and other objects which can be switched between horizontal and vertical orientation on the fly, like Toolbar or GesturePan.

Constructors

OrientationHorizontal

The element is in horizontal orientation.

OrientationVertical

The element is in vertical orientation.

AnotherOrientation Int

Catch-all for unknown values

Instances

Instances details
Enum Orientation Source # 
Instance details

Defined in GI.Gtk.Enums

Eq Orientation Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: Orientation -> Orientation -> Bool

(/=) :: Orientation -> Orientation -> Bool

Ord Orientation Source # 
Instance details

Defined in GI.Gtk.Enums

Show Orientation Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> Orientation -> ShowS

show :: Orientation -> String

showList :: [Orientation] -> ShowS

BoxedEnum Orientation Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject Orientation Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes Orientation Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes Orientation Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes Orientation = '[] :: [Type]

PackDirection

data PackDirection Source #

Determines how widgets should be packed inside menubars and menuitems contained in menubars.

Constructors

PackDirectionLtr

Widgets are packed left-to-right

PackDirectionRtl

Widgets are packed right-to-left

PackDirectionTtb

Widgets are packed top-to-bottom

PackDirectionBtt

Widgets are packed bottom-to-top

AnotherPackDirection Int

Catch-all for unknown values

Instances

Instances details
Enum PackDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PackDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Ord PackDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Show PackDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PackDirection -> ShowS

show :: PackDirection -> String

showList :: [PackDirection] -> ShowS

BoxedEnum PackDirection Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PackDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PackDirection Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PackDirection Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PackDirection = '[] :: [Type]

PackType

data PackType Source #

Represents the packing location Box children. (See: VBox, HBox, and ButtonBox).

Constructors

PackTypeStart

The child is packed into the start of the box

PackTypeEnd

The child is packed into the end of the box

AnotherPackType Int

Catch-all for unknown values

Instances

Instances details
Enum PackType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PackType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PackType -> PackType -> Bool

(/=) :: PackType -> PackType -> Bool

Ord PackType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: PackType -> PackType -> Ordering

(<) :: PackType -> PackType -> Bool

(<=) :: PackType -> PackType -> Bool

(>) :: PackType -> PackType -> Bool

(>=) :: PackType -> PackType -> Bool

max :: PackType -> PackType -> PackType

min :: PackType -> PackType -> PackType

Show PackType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PackType -> ShowS

show :: PackType -> String

showList :: [PackType] -> ShowS

BoxedEnum PackType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PackType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PackType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PackType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PackType = '[] :: [Type]

PadActionType

data PadActionType Source #

The type of a pad action.

Constructors

PadActionTypeButton

Action is triggered by a pad button

PadActionTypeRing

Action is triggered by a pad ring

PadActionTypeStrip

Action is triggered by a pad strip

AnotherPadActionType Int

Catch-all for unknown values

Instances

Instances details
Enum PadActionType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PadActionType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord PadActionType Source # 
Instance details

Defined in GI.Gtk.Enums

Show PadActionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PadActionType -> ShowS

show :: PadActionType -> String

showList :: [PadActionType] -> ShowS

BoxedEnum PadActionType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PadActionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PadActionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PadActionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PadActionType = '[] :: [Type]

PageOrientation

data PageOrientation Source #

Constructors

PageOrientationPortrait

Portrait mode.

PageOrientationLandscape

Landscape mode.

PageOrientationReversePortrait

Reverse portrait mode.

PageOrientationReverseLandscape

Reverse landscape mode.

AnotherPageOrientation Int

Catch-all for unknown values

Instances

Instances details
Enum PageOrientation Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PageOrientation Source # 
Instance details

Defined in GI.Gtk.Enums

Ord PageOrientation Source # 
Instance details

Defined in GI.Gtk.Enums

Show PageOrientation Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PageOrientation -> ShowS

show :: PageOrientation -> String

showList :: [PageOrientation] -> ShowS

BoxedEnum PageOrientation Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PageOrientation Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PageOrientation Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PageOrientation Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PageOrientation = '[] :: [Type]

PageSet

data PageSet Source #

See also gtk_print_job_set_page_set().

Constructors

PageSetAll

All pages.

PageSetEven

Even pages.

PageSetOdd

Odd pages.

AnotherPageSet Int

Catch-all for unknown values

Instances

Instances details
Enum PageSet Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PageSet Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PageSet -> PageSet -> Bool

(/=) :: PageSet -> PageSet -> Bool

Ord PageSet Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: PageSet -> PageSet -> Ordering

(<) :: PageSet -> PageSet -> Bool

(<=) :: PageSet -> PageSet -> Bool

(>) :: PageSet -> PageSet -> Bool

(>=) :: PageSet -> PageSet -> Bool

max :: PageSet -> PageSet -> PageSet

min :: PageSet -> PageSet -> PageSet

Show PageSet Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PageSet -> ShowS

show :: PageSet -> String

showList :: [PageSet] -> ShowS

BoxedEnum PageSet Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PageSet Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PageSet Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PageSet Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PageSet = '[] :: [Type]

PanDirection

data PanDirection Source #

Describes the panning direction of a GesturePan

Since: 3.14

Constructors

PanDirectionLeft

panned towards the left

PanDirectionRight

panned towards the right

PanDirectionUp

panned upwards

PanDirectionDown

panned downwards

AnotherPanDirection Int

Catch-all for unknown values

Instances

Instances details
Enum PanDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PanDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PanDirection -> PanDirection -> Bool

(/=) :: PanDirection -> PanDirection -> Bool

Ord PanDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Show PanDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PanDirection -> ShowS

show :: PanDirection -> String

showList :: [PanDirection] -> ShowS

BoxedEnum PanDirection Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PanDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PanDirection Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PanDirection Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PanDirection = '[] :: [Type]

PathPriorityType

data PathPriorityType Source #

Deprecated: (Since version 3.0)

Priorities for path lookups. See also bindingSetAddPath.

Constructors

PathPriorityTypeLowest

Deprecated

PathPriorityTypeGtk

Deprecated

PathPriorityTypeApplication

Deprecated

PathPriorityTypeTheme

Deprecated

PathPriorityTypeRc

Deprecated

PathPriorityTypeHighest

Deprecated

AnotherPathPriorityType Int

Catch-all for unknown values

Instances

Instances details
Enum PathPriorityType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PathPriorityType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord PathPriorityType Source # 
Instance details

Defined in GI.Gtk.Enums

Show PathPriorityType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PathPriorityType -> ShowS

show :: PathPriorityType -> String

showList :: [PathPriorityType] -> ShowS

BoxedEnum PathPriorityType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PathPriorityType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PathPriorityType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PathPriorityType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PathPriorityType = '[] :: [Type]

PathType

data PathType Source #

Deprecated: (Since version 3.0)

Widget path types. See also bindingSetAddPath.

Constructors

PathTypeWidget

Deprecated

PathTypeWidgetClass

Deprecated

PathTypeClass

Deprecated

AnotherPathType Int

Catch-all for unknown values

Instances

Instances details
Enum PathType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PathType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PathType -> PathType -> Bool

(/=) :: PathType -> PathType -> Bool

Ord PathType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: PathType -> PathType -> Ordering

(<) :: PathType -> PathType -> Bool

(<=) :: PathType -> PathType -> Bool

(>) :: PathType -> PathType -> Bool

(>=) :: PathType -> PathType -> Bool

max :: PathType -> PathType -> PathType

min :: PathType -> PathType -> PathType

Show PathType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PathType -> ShowS

show :: PathType -> String

showList :: [PathType] -> ShowS

BoxedEnum PathType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PathType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PathType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PathType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PathType = '[] :: [Type]

PolicyType

data PolicyType Source #

Determines how the size should be computed to achieve the one of the visibility mode for the scrollbars.

Constructors

PolicyTypeAlways

The scrollbar is always visible. The view size is independent of the content.

PolicyTypeAutomatic

The scrollbar will appear and disappear as necessary. For example, when all of a TreeView can not be seen.

PolicyTypeNever

The scrollbar should never appear. In this mode the content determines the size.

PolicyTypeExternal

Don't show a scrollbar, but don't force the size to follow the content. This can be used e.g. to make multiple scrolled windows share a scrollbar. Since: 3.16

AnotherPolicyType Int

Catch-all for unknown values

Instances

Instances details
Enum PolicyType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PolicyType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PolicyType -> PolicyType -> Bool

(/=) :: PolicyType -> PolicyType -> Bool

Ord PolicyType Source # 
Instance details

Defined in GI.Gtk.Enums

Show PolicyType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PolicyType -> ShowS

show :: PolicyType -> String

showList :: [PolicyType] -> ShowS

BoxedEnum PolicyType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PolicyType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PolicyType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PolicyType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PolicyType = '[] :: [Type]

PopoverConstraint

data PopoverConstraint Source #

Describes constraints to positioning of popovers. More values may be added to this enumeration in the future.

Since: 3.20

Constructors

PopoverConstraintNone

Don't constrain the popover position beyond what is imposed by the implementation

PopoverConstraintWindow

Constrain the popover to the boundaries of the window that it is attached to

AnotherPopoverConstraint Int

Catch-all for unknown values

Instances

Instances details
Enum PopoverConstraint Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PopoverConstraint Source # 
Instance details

Defined in GI.Gtk.Enums

Ord PopoverConstraint Source # 
Instance details

Defined in GI.Gtk.Enums

Show PopoverConstraint Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PopoverConstraint -> ShowS

show :: PopoverConstraint -> String

showList :: [PopoverConstraint] -> ShowS

BoxedEnum PopoverConstraint Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PopoverConstraint Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PopoverConstraint Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PopoverConstraint Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PopoverConstraint = '[] :: [Type]

PositionType

data PositionType Source #

Describes which edge of a widget a certain feature is positioned at, e.g. the tabs of a Notebook, the handle of a HandleBox or the label of a Scale.

Constructors

PositionTypeLeft

The feature is at the left edge.

PositionTypeRight

The feature is at the right edge.

PositionTypeTop

The feature is at the top edge.

PositionTypeBottom

The feature is at the bottom edge.

AnotherPositionType Int

Catch-all for unknown values

Instances

Instances details
Enum PositionType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PositionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PositionType -> PositionType -> Bool

(/=) :: PositionType -> PositionType -> Bool

Ord PositionType Source # 
Instance details

Defined in GI.Gtk.Enums

Show PositionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PositionType -> ShowS

show :: PositionType -> String

showList :: [PositionType] -> ShowS

BoxedEnum PositionType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PositionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PositionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PositionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PositionType = '[] :: [Type]

PrintDuplex

data PrintDuplex Source #

Constructors

PrintDuplexSimplex

No duplex.

PrintDuplexHorizontal

Horizontal duplex.

PrintDuplexVertical

Vertical duplex.

AnotherPrintDuplex Int

Catch-all for unknown values

Instances

Instances details
Enum PrintDuplex Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PrintDuplex Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PrintDuplex -> PrintDuplex -> Bool

(/=) :: PrintDuplex -> PrintDuplex -> Bool

Ord PrintDuplex Source # 
Instance details

Defined in GI.Gtk.Enums

Show PrintDuplex Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PrintDuplex -> ShowS

show :: PrintDuplex -> String

showList :: [PrintDuplex] -> ShowS

BoxedEnum PrintDuplex Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PrintDuplex Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PrintDuplex Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintDuplex Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintDuplex = '[] :: [Type]

PrintError

data PrintError Source #

Error codes that identify various errors that can occur while using the GTK+ printing support.

Constructors

PrintErrorGeneral

An unspecified error occurred.

PrintErrorInternalError

An internal error occurred.

PrintErrorNomem

A memory allocation failed.

PrintErrorInvalidFile

An error occurred while loading a page setup or paper size from a key file.

AnotherPrintError Int

Catch-all for unknown values

Instances

Instances details
Enum PrintError Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PrintError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PrintError -> PrintError -> Bool

(/=) :: PrintError -> PrintError -> Bool

Ord PrintError Source # 
Instance details

Defined in GI.Gtk.Enums

Show PrintError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PrintError -> ShowS

show :: PrintError -> String

showList :: [PrintError] -> ShowS

BoxedEnum PrintError Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PrintError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

GErrorClass PrintError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

gerrorClassDomain :: PrintError -> Text

HasParentTypes PrintError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintError = '[] :: [Type]

catchPrintError :: IO a -> (PrintError -> GErrorMessage -> IO a) -> IO a Source #

Catch exceptions of type PrintError. This is a specialized version of catchGErrorJustDomain.

handlePrintError :: (PrintError -> GErrorMessage -> IO a) -> IO a -> IO a Source #

Handle exceptions of type PrintError. This is a specialized version of handleGErrorJustDomain.

PrintOperationAction

data PrintOperationAction Source #

The action parameter to printOperationRun determines what action the print operation should perform.

Constructors

PrintOperationActionPrintDialog

Show the print dialog.

PrintOperationActionPrint

Start to print without showing the print dialog, based on the current print settings.

PrintOperationActionPreview

Show the print preview.

PrintOperationActionExport

Export to a file. This requires the export-filename property to be set.

AnotherPrintOperationAction Int

Catch-all for unknown values

Instances

Instances details
Enum PrintOperationAction Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PrintOperationAction Source # 
Instance details

Defined in GI.Gtk.Enums

Ord PrintOperationAction Source # 
Instance details

Defined in GI.Gtk.Enums

Show PrintOperationAction Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PrintOperationAction -> ShowS

show :: PrintOperationAction -> String

showList :: [PrintOperationAction] -> ShowS

BoxedEnum PrintOperationAction Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PrintOperationAction Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PrintOperationAction Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintOperationAction Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintOperationAction = '[] :: [Type]

PrintOperationResult

data PrintOperationResult Source #

A value of this type is returned by printOperationRun.

Constructors

PrintOperationResultError

An error has occurred.

PrintOperationResultApply

The print settings should be stored.

PrintOperationResultCancel

The print operation has been canceled, the print settings should not be stored.

PrintOperationResultInProgress

The print operation is not complete yet. This value will only be returned when running asynchronously.

AnotherPrintOperationResult Int

Catch-all for unknown values

Instances

Instances details
Enum PrintOperationResult Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PrintOperationResult Source # 
Instance details

Defined in GI.Gtk.Enums

Ord PrintOperationResult Source # 
Instance details

Defined in GI.Gtk.Enums

Show PrintOperationResult Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PrintOperationResult -> ShowS

show :: PrintOperationResult -> String

showList :: [PrintOperationResult] -> ShowS

BoxedEnum PrintOperationResult Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PrintOperationResult Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PrintOperationResult Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintOperationResult Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintOperationResult = '[] :: [Type]

PrintPages

data PrintPages Source #

See also gtk_print_job_set_pages()

Constructors

PrintPagesAll

All pages.

PrintPagesCurrent

Current page.

PrintPagesRanges

Range of pages.

PrintPagesSelection

Selected pages.

AnotherPrintPages Int

Catch-all for unknown values

Instances

Instances details
Enum PrintPages Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PrintPages Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PrintPages -> PrintPages -> Bool

(/=) :: PrintPages -> PrintPages -> Bool

Ord PrintPages Source # 
Instance details

Defined in GI.Gtk.Enums

Show PrintPages Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PrintPages -> ShowS

show :: PrintPages -> String

showList :: [PrintPages] -> ShowS

BoxedEnum PrintPages Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PrintPages Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PrintPages Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintPages Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintPages = '[] :: [Type]

PrintQuality

data PrintQuality Source #

Constructors

PrintQualityLow

Low quality.

PrintQualityNormal

Normal quality.

PrintQualityHigh

High quality.

PrintQualityDraft

Draft quality.

AnotherPrintQuality Int

Catch-all for unknown values

Instances

Instances details
Enum PrintQuality Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PrintQuality Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PrintQuality -> PrintQuality -> Bool

(/=) :: PrintQuality -> PrintQuality -> Bool

Ord PrintQuality Source # 
Instance details

Defined in GI.Gtk.Enums

Show PrintQuality Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PrintQuality -> ShowS

show :: PrintQuality -> String

showList :: [PrintQuality] -> ShowS

BoxedEnum PrintQuality Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PrintQuality Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PrintQuality Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintQuality Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintQuality = '[] :: [Type]

PrintStatus

data PrintStatus Source #

The status gives a rough indication of the completion of a running print operation.

Constructors

PrintStatusInitial

The printing has not started yet; this status is set initially, and while the print dialog is shown.

PrintStatusPreparing

This status is set while the begin-print signal is emitted and during pagination.

PrintStatusGeneratingData

This status is set while the pages are being rendered.

PrintStatusSendingData

The print job is being sent off to the printer.

PrintStatusPending

The print job has been sent to the printer, but is not printed for some reason, e.g. the printer may be stopped.

PrintStatusPendingIssue

Some problem has occurred during printing, e.g. a paper jam.

PrintStatusPrinting

The printer is processing the print job.

PrintStatusFinished

The printing has been completed successfully.

PrintStatusFinishedAborted

The printing has been aborted.

AnotherPrintStatus Int

Catch-all for unknown values

Instances

Instances details
Enum PrintStatus Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PrintStatus Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: PrintStatus -> PrintStatus -> Bool

(/=) :: PrintStatus -> PrintStatus -> Bool

Ord PrintStatus Source # 
Instance details

Defined in GI.Gtk.Enums

Show PrintStatus Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PrintStatus -> ShowS

show :: PrintStatus -> String

showList :: [PrintStatus] -> ShowS

BoxedEnum PrintStatus Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PrintStatus Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PrintStatus Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintStatus Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PrintStatus = '[] :: [Type]

PropagationPhase

data PropagationPhase Source #

Describes the stage at which events are fed into a EventController.

Since: 3.14

Constructors

PropagationPhaseNone

Events are not delivered automatically. Those can be manually fed through eventControllerHandleEvent. This should only be used when full control about when, or whether the controller handles the event is needed.

PropagationPhaseCapture

Events are delivered in the capture phase. The capture phase happens before the bubble phase, runs from the toplevel down to the event widget. This option should only be used on containers that might possibly handle events before their children do.

PropagationPhaseBubble

Events are delivered in the bubble phase. The bubble phase happens after the capture phase, and before the default handlers are run. This phase runs from the event widget, up to the toplevel.

PropagationPhaseTarget

Events are delivered in the default widget event handlers, note that widget implementations must chain up on button, motion, touch and grab broken handlers for controllers in this phase to be run.

AnotherPropagationPhase Int

Catch-all for unknown values

Instances

Instances details
Enum PropagationPhase Source # 
Instance details

Defined in GI.Gtk.Enums

Eq PropagationPhase Source # 
Instance details

Defined in GI.Gtk.Enums

Ord PropagationPhase Source # 
Instance details

Defined in GI.Gtk.Enums

Show PropagationPhase Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> PropagationPhase -> ShowS

show :: PropagationPhase -> String

showList :: [PropagationPhase] -> ShowS

BoxedEnum PropagationPhase Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject PropagationPhase Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes PropagationPhase Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PropagationPhase Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes PropagationPhase = '[] :: [Type]

RcTokenType

data RcTokenType Source #

Deprecated: (Since version 3.0)Use CssProvider instead.

The RcTokenType enumeration represents the tokens in the RC file. It is exposed so that theme engines can reuse these tokens when parsing the theme-engine specific portions of a RC file.

Instances

Instances details
Enum RcTokenType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq RcTokenType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: RcTokenType -> RcTokenType -> Bool

(/=) :: RcTokenType -> RcTokenType -> Bool

Ord RcTokenType Source # 
Instance details

Defined in GI.Gtk.Enums

Show RcTokenType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> RcTokenType -> ShowS

show :: RcTokenType -> String

showList :: [RcTokenType] -> ShowS

BoxedEnum RcTokenType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject RcTokenType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes RcTokenType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RcTokenType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RcTokenType = '[] :: [Type]

RecentChooserError

data RecentChooserError Source #

These identify the various errors that can occur while calling RecentChooser functions.

Since: 2.10

Constructors

RecentChooserErrorNotFound

Indicates that a file does not exist

RecentChooserErrorInvalidUri

Indicates a malformed URI

AnotherRecentChooserError Int

Catch-all for unknown values

Instances

Instances details
Enum RecentChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Eq RecentChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Ord RecentChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Show RecentChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> RecentChooserError -> ShowS

show :: RecentChooserError -> String

showList :: [RecentChooserError] -> ShowS

BoxedEnum RecentChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject RecentChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

GErrorClass RecentChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

HasParentTypes RecentChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RecentChooserError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RecentChooserError = '[] :: [Type]

catchRecentChooserError :: IO a -> (RecentChooserError -> GErrorMessage -> IO a) -> IO a Source #

Catch exceptions of type RecentChooserError. This is a specialized version of catchGErrorJustDomain.

handleRecentChooserError :: (RecentChooserError -> GErrorMessage -> IO a) -> IO a -> IO a Source #

Handle exceptions of type RecentChooserError. This is a specialized version of handleGErrorJustDomain.

RecentManagerError

data RecentManagerError Source #

Error codes for RecentManager operations

Since: 2.10

Constructors

RecentManagerErrorNotFound

the URI specified does not exists in the recently used resources list.

RecentManagerErrorInvalidUri

the URI specified is not valid.

RecentManagerErrorInvalidEncoding

the supplied string is not UTF-8 encoded.

RecentManagerErrorNotRegistered

no application has registered the specified item.

RecentManagerErrorRead

failure while reading the recently used resources file.

RecentManagerErrorWrite

failure while writing the recently used resources file.

RecentManagerErrorUnknown

unspecified error.

AnotherRecentManagerError Int

Catch-all for unknown values

Instances

Instances details
Enum RecentManagerError Source # 
Instance details

Defined in GI.Gtk.Enums

Eq RecentManagerError Source # 
Instance details

Defined in GI.Gtk.Enums

Ord RecentManagerError Source # 
Instance details

Defined in GI.Gtk.Enums

Show RecentManagerError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> RecentManagerError -> ShowS

show :: RecentManagerError -> String

showList :: [RecentManagerError] -> ShowS

BoxedEnum RecentManagerError Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject RecentManagerError Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

GErrorClass RecentManagerError Source # 
Instance details

Defined in GI.Gtk.Enums

HasParentTypes RecentManagerError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RecentManagerError Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RecentManagerError = '[] :: [Type]

catchRecentManagerError :: IO a -> (RecentManagerError -> GErrorMessage -> IO a) -> IO a Source #

Catch exceptions of type RecentManagerError. This is a specialized version of catchGErrorJustDomain.

handleRecentManagerError :: (RecentManagerError -> GErrorMessage -> IO a) -> IO a -> IO a Source #

Handle exceptions of type RecentManagerError. This is a specialized version of handleGErrorJustDomain.

RecentSortType

data RecentSortType Source #

Used to specify the sorting method to be applyed to the recently used resource list.

Since: 2.10

Constructors

RecentSortTypeNone

Do not sort the returned list of recently used resources.

RecentSortTypeMru

Sort the returned list with the most recently used items first.

RecentSortTypeLru

Sort the returned list with the least recently used items first.

RecentSortTypeCustom

Sort the returned list using a custom sorting function passed using recentChooserSetSortFunc.

AnotherRecentSortType Int

Catch-all for unknown values

Instances

Instances details
Enum RecentSortType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq RecentSortType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord RecentSortType Source # 
Instance details

Defined in GI.Gtk.Enums

Show RecentSortType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> RecentSortType -> ShowS

show :: RecentSortType -> String

showList :: [RecentSortType] -> ShowS

BoxedEnum RecentSortType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject RecentSortType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes RecentSortType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RecentSortType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RecentSortType = '[] :: [Type]

ReliefStyle

data ReliefStyle Source #

Indicated the relief to be drawn around a Button.

Constructors

ReliefStyleNormal

Draw a normal relief.

ReliefStyleHalf

A half relief. Deprecated in 3.14, does the same as gTKRELIEFNORMAL

ReliefStyleNone

No relief.

AnotherReliefStyle Int

Catch-all for unknown values

Instances

Instances details
Enum ReliefStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ReliefStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ReliefStyle -> ReliefStyle -> Bool

(/=) :: ReliefStyle -> ReliefStyle -> Bool

Ord ReliefStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Show ReliefStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ReliefStyle -> ShowS

show :: ReliefStyle -> String

showList :: [ReliefStyle] -> ShowS

BoxedEnum ReliefStyle Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ReliefStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ReliefStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ReliefStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ReliefStyle = '[] :: [Type]

ResizeMode

data ResizeMode Source #

No description available in the introspection data.

Constructors

ResizeModeParent

Pass resize request to the parent

ResizeModeQueue

Queue resizes on this widget

ResizeModeImmediate

Resize immediately. Deprecated.

AnotherResizeMode Int

Catch-all for unknown values

Instances

Instances details
Enum ResizeMode Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ResizeMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ResizeMode -> ResizeMode -> Bool

(/=) :: ResizeMode -> ResizeMode -> Bool

Ord ResizeMode Source # 
Instance details

Defined in GI.Gtk.Enums

Show ResizeMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ResizeMode -> ShowS

show :: ResizeMode -> String

showList :: [ResizeMode] -> ShowS

BoxedEnum ResizeMode Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ResizeMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ResizeMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ResizeMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ResizeMode = '[] :: [Type]

ResponseType

data ResponseType Source #

Predefined values for use as response ids in dialogAddButton. All predefined values are negative; GTK+ leaves values of 0 or greater for application-defined response ids.

Constructors

ResponseTypeNone

Returned if an action widget has no response id, or if the dialog gets programmatically hidden or destroyed

ResponseTypeReject

Generic response id, not used by GTK+ dialogs

ResponseTypeAccept

Generic response id, not used by GTK+ dialogs

ResponseTypeDeleteEvent

Returned if the dialog is deleted

ResponseTypeOk

Returned by OK buttons in GTK+ dialogs

ResponseTypeCancel

Returned by Cancel buttons in GTK+ dialogs

ResponseTypeClose

Returned by Close buttons in GTK+ dialogs

ResponseTypeYes

Returned by Yes buttons in GTK+ dialogs

ResponseTypeNo

Returned by No buttons in GTK+ dialogs

ResponseTypeApply

Returned by Apply buttons in GTK+ dialogs

ResponseTypeHelp

Returned by Help buttons in GTK+ dialogs

AnotherResponseType Int

Catch-all for unknown values

Instances

Instances details
Enum ResponseType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ResponseType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ResponseType -> ResponseType -> Bool

(/=) :: ResponseType -> ResponseType -> Bool

Ord ResponseType Source # 
Instance details

Defined in GI.Gtk.Enums

Show ResponseType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ResponseType -> ShowS

show :: ResponseType -> String

showList :: [ResponseType] -> ShowS

BoxedEnum ResponseType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ResponseType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ResponseType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ResponseType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ResponseType = '[] :: [Type]

RevealerTransitionType

data RevealerTransitionType Source #

These enumeration values describe the possible transitions when the child of a Revealer widget is shown or hidden.

Constructors

RevealerTransitionTypeNone

No transition

RevealerTransitionTypeCrossfade

Fade in

RevealerTransitionTypeSlideRight

Slide in from the left

RevealerTransitionTypeSlideLeft

Slide in from the right

RevealerTransitionTypeSlideUp

Slide in from the bottom

RevealerTransitionTypeSlideDown

Slide in from the top

AnotherRevealerTransitionType Int

Catch-all for unknown values

Instances

Instances details
Enum RevealerTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq RevealerTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord RevealerTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

Show RevealerTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

BoxedEnum RevealerTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject RevealerTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes RevealerTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RevealerTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes RevealerTransitionType = '[] :: [Type]

ScrollStep

data ScrollStep Source #

No description available in the introspection data.

Constructors

ScrollStepSteps

Scroll in steps.

ScrollStepPages

Scroll by pages.

ScrollStepEnds

Scroll to ends.

ScrollStepHorizontalSteps

Scroll in horizontal steps.

ScrollStepHorizontalPages

Scroll by horizontal pages.

ScrollStepHorizontalEnds

Scroll to the horizontal ends.

AnotherScrollStep Int

Catch-all for unknown values

Instances

Instances details
Enum ScrollStep Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ScrollStep Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ScrollStep -> ScrollStep -> Bool

(/=) :: ScrollStep -> ScrollStep -> Bool

Ord ScrollStep Source # 
Instance details

Defined in GI.Gtk.Enums

Show ScrollStep Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ScrollStep -> ShowS

show :: ScrollStep -> String

showList :: [ScrollStep] -> ShowS

BoxedEnum ScrollStep Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ScrollStep Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ScrollStep Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ScrollStep Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ScrollStep = '[] :: [Type]

ScrollType

data ScrollType Source #

Scrolling types.

Constructors

ScrollTypeNone

No scrolling.

ScrollTypeJump

Jump to new location.

ScrollTypeStepBackward

Step backward.

ScrollTypeStepForward

Step forward.

ScrollTypePageBackward

Page backward.

ScrollTypePageForward

Page forward.

ScrollTypeStepUp

Step up.

ScrollTypeStepDown

Step down.

ScrollTypePageUp

Page up.

ScrollTypePageDown

Page down.

ScrollTypeStepLeft

Step to the left.

ScrollTypeStepRight

Step to the right.

ScrollTypePageLeft

Page to the left.

ScrollTypePageRight

Page to the right.

ScrollTypeStart

Scroll to start.

ScrollTypeEnd

Scroll to end.

AnotherScrollType Int

Catch-all for unknown values

Instances

Instances details
Enum ScrollType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ScrollType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ScrollType -> ScrollType -> Bool

(/=) :: ScrollType -> ScrollType -> Bool

Ord ScrollType Source # 
Instance details

Defined in GI.Gtk.Enums

Show ScrollType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ScrollType -> ShowS

show :: ScrollType -> String

showList :: [ScrollType] -> ShowS

BoxedEnum ScrollType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ScrollType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ScrollType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ScrollType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ScrollType = '[] :: [Type]

ScrollablePolicy

data ScrollablePolicy Source #

Defines the policy to be used in a scrollable widget when updating the scrolled window adjustments in a given orientation.

Constructors

ScrollablePolicyMinimum

Scrollable adjustments are based on the minimum size

ScrollablePolicyNatural

Scrollable adjustments are based on the natural size

AnotherScrollablePolicy Int

Catch-all for unknown values

Instances

Instances details
Enum ScrollablePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ScrollablePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

Ord ScrollablePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

Show ScrollablePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ScrollablePolicy -> ShowS

show :: ScrollablePolicy -> String

showList :: [ScrollablePolicy] -> ShowS

BoxedEnum ScrollablePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ScrollablePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ScrollablePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ScrollablePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ScrollablePolicy = '[] :: [Type]

SelectionMode

data SelectionMode Source #

Used to control what selections users are allowed to make.

Constructors

SelectionModeNone

No selection is possible.

SelectionModeSingle

Zero or one element may be selected.

SelectionModeBrowse

Exactly one element is selected. In some circumstances, such as initially or during a search operation, it’s possible for no element to be selected with SelectionModeBrowse. What is really enforced is that the user can’t deselect a currently selected element except by selecting another element.

SelectionModeMultiple

Any number of elements may be selected. The Ctrl key may be used to enlarge the selection, and Shift key to select between the focus and the child pointed to. Some widgets may also allow Click-drag to select a range of elements.

AnotherSelectionMode Int

Catch-all for unknown values

Instances

Instances details
Enum SelectionMode Source # 
Instance details

Defined in GI.Gtk.Enums

Eq SelectionMode Source # 
Instance details

Defined in GI.Gtk.Enums

Ord SelectionMode Source # 
Instance details

Defined in GI.Gtk.Enums

Show SelectionMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> SelectionMode -> ShowS

show :: SelectionMode -> String

showList :: [SelectionMode] -> ShowS

BoxedEnum SelectionMode Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject SelectionMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes SelectionMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SelectionMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SelectionMode = '[] :: [Type]

SensitivityType

data SensitivityType Source #

Determines how GTK+ handles the sensitivity of stepper arrows at the end of range widgets.

Constructors

SensitivityTypeAuto

The arrow is made insensitive if the thumb is at the end

SensitivityTypeOn

The arrow is always sensitive

SensitivityTypeOff

The arrow is always insensitive

AnotherSensitivityType Int

Catch-all for unknown values

Instances

Instances details
Enum SensitivityType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq SensitivityType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord SensitivityType Source # 
Instance details

Defined in GI.Gtk.Enums

Show SensitivityType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> SensitivityType -> ShowS

show :: SensitivityType -> String

showList :: [SensitivityType] -> ShowS

BoxedEnum SensitivityType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject SensitivityType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes SensitivityType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SensitivityType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SensitivityType = '[] :: [Type]

ShadowType

data ShadowType Source #

Used to change the appearance of an outline typically provided by a Frame.

Note that many themes do not differentiate the appearance of the various shadow types: Either their is no visible shadow (gTKSHADOWNONE), or there is (any other value).

Constructors

ShadowTypeNone

No outline.

ShadowTypeIn

The outline is bevelled inwards.

ShadowTypeOut

The outline is bevelled outwards like a button.

ShadowTypeEtchedIn

The outline has a sunken 3d appearance.

ShadowTypeEtchedOut

The outline has a raised 3d appearance.

AnotherShadowType Int

Catch-all for unknown values

Instances

Instances details
Enum ShadowType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ShadowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ShadowType -> ShadowType -> Bool

(/=) :: ShadowType -> ShadowType -> Bool

Ord ShadowType Source # 
Instance details

Defined in GI.Gtk.Enums

Show ShadowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ShadowType -> ShowS

show :: ShadowType -> String

showList :: [ShadowType] -> ShowS

BoxedEnum ShadowType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ShadowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ShadowType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ShadowType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ShadowType = '[] :: [Type]

ShortcutType

data ShortcutType Source #

GtkShortcutType specifies the kind of shortcut that is being described. More values may be added to this enumeration over time.

Since: 3.20

Constructors

ShortcutTypeAccelerator

The shortcut is a keyboard accelerator. The ShortcutsShortcut:accelerator property will be used.

ShortcutTypeGesturePinch

The shortcut is a pinch gesture. GTK+ provides an icon and subtitle.

ShortcutTypeGestureStretch

The shortcut is a stretch gesture. GTK+ provides an icon and subtitle.

ShortcutTypeGestureRotateClockwise

The shortcut is a clockwise rotation gesture. GTK+ provides an icon and subtitle.

ShortcutTypeGestureRotateCounterclockwise

The shortcut is a counterclockwise rotation gesture. GTK+ provides an icon and subtitle.

ShortcutTypeGestureTwoFingerSwipeLeft

The shortcut is a two-finger swipe gesture. GTK+ provides an icon and subtitle.

ShortcutTypeGestureTwoFingerSwipeRight

The shortcut is a two-finger swipe gesture. GTK+ provides an icon and subtitle.

ShortcutTypeGesture

The shortcut is a gesture. The ShortcutsShortcut:icon property will be used.

AnotherShortcutType Int

Catch-all for unknown values

Instances

Instances details
Enum ShortcutType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ShortcutType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ShortcutType -> ShortcutType -> Bool

(/=) :: ShortcutType -> ShortcutType -> Bool

Ord ShortcutType Source # 
Instance details

Defined in GI.Gtk.Enums

Show ShortcutType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ShortcutType -> ShowS

show :: ShortcutType -> String

showList :: [ShortcutType] -> ShowS

BoxedEnum ShortcutType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ShortcutType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ShortcutType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ShortcutType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ShortcutType = '[] :: [Type]

SizeGroupMode

data SizeGroupMode Source #

The mode of the size group determines the directions in which the size group affects the requested sizes of its component widgets.

Constructors

SizeGroupModeNone

group has no effect

SizeGroupModeHorizontal

group affects horizontal requisition

SizeGroupModeVertical

group affects vertical requisition

SizeGroupModeBoth

group affects both horizontal and vertical requisition

AnotherSizeGroupMode Int

Catch-all for unknown values

Instances

Instances details
Enum SizeGroupMode Source # 
Instance details

Defined in GI.Gtk.Enums

Eq SizeGroupMode Source # 
Instance details

Defined in GI.Gtk.Enums

Ord SizeGroupMode Source # 
Instance details

Defined in GI.Gtk.Enums

Show SizeGroupMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> SizeGroupMode -> ShowS

show :: SizeGroupMode -> String

showList :: [SizeGroupMode] -> ShowS

BoxedEnum SizeGroupMode Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject SizeGroupMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes SizeGroupMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SizeGroupMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SizeGroupMode = '[] :: [Type]

SizeRequestMode

data SizeRequestMode Source #

Specifies a preference for height-for-width or width-for-height geometry management.

Constructors

SizeRequestModeHeightForWidth

Prefer height-for-width geometry management

SizeRequestModeWidthForHeight

Prefer width-for-height geometry management

SizeRequestModeConstantSize

Don’t trade height-for-width or width-for-height

AnotherSizeRequestMode Int

Catch-all for unknown values

Instances

Instances details
Enum SizeRequestMode Source # 
Instance details

Defined in GI.Gtk.Enums

Eq SizeRequestMode Source # 
Instance details

Defined in GI.Gtk.Enums

Ord SizeRequestMode Source # 
Instance details

Defined in GI.Gtk.Enums

Show SizeRequestMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> SizeRequestMode -> ShowS

show :: SizeRequestMode -> String

showList :: [SizeRequestMode] -> ShowS

BoxedEnum SizeRequestMode Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject SizeRequestMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes SizeRequestMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SizeRequestMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SizeRequestMode = '[] :: [Type]

SortType

data SortType Source #

Determines the direction of a sort.

Constructors

SortTypeAscending

Sorting is in ascending order.

SortTypeDescending

Sorting is in descending order.

AnotherSortType Int

Catch-all for unknown values

Instances

Instances details
Enum SortType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq SortType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: SortType -> SortType -> Bool

(/=) :: SortType -> SortType -> Bool

Ord SortType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: SortType -> SortType -> Ordering

(<) :: SortType -> SortType -> Bool

(<=) :: SortType -> SortType -> Bool

(>) :: SortType -> SortType -> Bool

(>=) :: SortType -> SortType -> Bool

max :: SortType -> SortType -> SortType

min :: SortType -> SortType -> SortType

Show SortType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> SortType -> ShowS

show :: SortType -> String

showList :: [SortType] -> ShowS

BoxedEnum SortType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject SortType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes SortType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SortType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SortType = '[] :: [Type]

SpinButtonUpdatePolicy

data SpinButtonUpdatePolicy Source #

The spin button update policy determines whether the spin button displays values even if they are outside the bounds of its adjustment. See spinButtonSetUpdatePolicy.

Constructors

SpinButtonUpdatePolicyAlways

When refreshing your SpinButton, the value is always displayed

SpinButtonUpdatePolicyIfValid

When refreshing your SpinButton, the value is only displayed if it is valid within the bounds of the spin button's adjustment

AnotherSpinButtonUpdatePolicy Int

Catch-all for unknown values

Instances

Instances details
Enum SpinButtonUpdatePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

Eq SpinButtonUpdatePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

Ord SpinButtonUpdatePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

Show SpinButtonUpdatePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

BoxedEnum SpinButtonUpdatePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject SpinButtonUpdatePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes SpinButtonUpdatePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SpinButtonUpdatePolicy Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SpinButtonUpdatePolicy = '[] :: [Type]

SpinType

data SpinType Source #

The values of the GtkSpinType enumeration are used to specify the change to make in spinButtonSpin.

Constructors

SpinTypeStepForward

Increment by the adjustments step increment.

SpinTypeStepBackward

Decrement by the adjustments step increment.

SpinTypePageForward

Increment by the adjustments page increment.

SpinTypePageBackward

Decrement by the adjustments page increment.

SpinTypeHome

Go to the adjustments lower bound.

SpinTypeEnd

Go to the adjustments upper bound.

SpinTypeUserDefined

Change by a specified amount.

AnotherSpinType Int

Catch-all for unknown values

Instances

Instances details
Enum SpinType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq SpinType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: SpinType -> SpinType -> Bool

(/=) :: SpinType -> SpinType -> Bool

Ord SpinType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: SpinType -> SpinType -> Ordering

(<) :: SpinType -> SpinType -> Bool

(<=) :: SpinType -> SpinType -> Bool

(>) :: SpinType -> SpinType -> Bool

(>=) :: SpinType -> SpinType -> Bool

max :: SpinType -> SpinType -> SpinType

min :: SpinType -> SpinType -> SpinType

Show SpinType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> SpinType -> ShowS

show :: SpinType -> String

showList :: [SpinType] -> ShowS

BoxedEnum SpinType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject SpinType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes SpinType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SpinType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes SpinType = '[] :: [Type]

StackTransitionType

data StackTransitionType Source #

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

New values may be added to this enumeration over time.

Constructors

StackTransitionTypeNone

No transition

StackTransitionTypeCrossfade

A cross-fade

StackTransitionTypeSlideRight

Slide from left to right

StackTransitionTypeSlideLeft

Slide from right to left

StackTransitionTypeSlideUp

Slide from bottom up

StackTransitionTypeSlideDown

Slide from top down

StackTransitionTypeSlideLeftRight

Slide from left or right according to the children order

StackTransitionTypeSlideUpDown

Slide from top down or bottom up according to the order

StackTransitionTypeOverUp

Cover the old page by sliding up. Since 3.12

StackTransitionTypeOverDown

Cover the old page by sliding down. Since: 3.12

StackTransitionTypeOverLeft

Cover the old page by sliding to the left. Since: 3.12

StackTransitionTypeOverRight

Cover the old page by sliding to the right. Since: 3.12

StackTransitionTypeUnderUp

Uncover the new page by sliding up. Since 3.12

StackTransitionTypeUnderDown

Uncover the new page by sliding down. Since: 3.12

StackTransitionTypeUnderLeft

Uncover the new page by sliding to the left. Since: 3.12

StackTransitionTypeUnderRight

Uncover the new page by sliding to the right. Since: 3.12

StackTransitionTypeOverUpDown

Cover the old page sliding up or uncover the new page sliding down, according to order. Since: 3.12

StackTransitionTypeOverDownUp

Cover the old page sliding down or uncover the new page sliding up, according to order. Since: 3.14

StackTransitionTypeOverLeftRight

Cover the old page sliding left or uncover the new page sliding right, according to order. Since: 3.14

StackTransitionTypeOverRightLeft

Cover the old page sliding right or uncover the new page sliding left, according to order. Since: 3.14

AnotherStackTransitionType Int

Catch-all for unknown values

Instances

Instances details
Enum StackTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq StackTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord StackTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

Show StackTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> StackTransitionType -> ShowS

show :: StackTransitionType -> String

showList :: [StackTransitionType] -> ShowS

BoxedEnum StackTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject StackTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes StackTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes StackTransitionType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes StackTransitionType = '[] :: [Type]

StateType

data StateType Source #

Deprecated: (Since version 3.14)All APIs that are using this enumeration have been deprecated in favor of alternatives using StateFlags.

This type indicates the current state of a widget; the state determines how the widget is drawn. The StateType enumeration is also used to identify different colors in a Style for drawing, so states can be used for subparts of a widget as well as entire widgets.

Constructors

StateTypeNormal

State during normal operation.

StateTypeActive

State of a currently active widget, such as a depressed button.

StateTypePrelight

State indicating that the mouse pointer is over the widget and the widget will respond to mouse clicks.

StateTypeSelected

State of a selected item, such the selected row in a list.

StateTypeInsensitive

State indicating that the widget is unresponsive to user actions.

StateTypeInconsistent

The widget is inconsistent, such as checkbuttons or radiobuttons that aren’t either set to True nor False, or buttons requiring the user attention.

StateTypeFocused

The widget has the keyboard focus.

AnotherStateType Int

Catch-all for unknown values

Instances

Instances details
Enum StateType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq StateType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: StateType -> StateType -> Bool

(/=) :: StateType -> StateType -> Bool

Ord StateType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: StateType -> StateType -> Ordering

(<) :: StateType -> StateType -> Bool

(<=) :: StateType -> StateType -> Bool

(>) :: StateType -> StateType -> Bool

(>=) :: StateType -> StateType -> Bool

max :: StateType -> StateType -> StateType

min :: StateType -> StateType -> StateType

Show StateType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> StateType -> ShowS

show :: StateType -> String

showList :: [StateType] -> ShowS

BoxedEnum StateType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject StateType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes StateType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes StateType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes StateType = '[] :: [Type]

TextBufferTargetInfo

data TextBufferTargetInfo Source #

These values are used as “info” for the targets contained in the lists returned by textBufferGetCopyTargetList and textBufferGetPasteTargetList.

The values counts down from -1 to avoid clashes with application added drag destinations which usually start at 0.

Instances

Instances details
Enum TextBufferTargetInfo Source # 
Instance details

Defined in GI.Gtk.Enums

Eq TextBufferTargetInfo Source # 
Instance details

Defined in GI.Gtk.Enums

Ord TextBufferTargetInfo Source # 
Instance details

Defined in GI.Gtk.Enums

Show TextBufferTargetInfo Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> TextBufferTargetInfo -> ShowS

show :: TextBufferTargetInfo -> String

showList :: [TextBufferTargetInfo] -> ShowS

BoxedEnum TextBufferTargetInfo Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject TextBufferTargetInfo Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes TextBufferTargetInfo Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextBufferTargetInfo Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextBufferTargetInfo = '[] :: [Type]

TextDirection

data TextDirection Source #

Reading directions for text.

Constructors

TextDirectionNone

No direction.

TextDirectionLtr

Left to right text direction.

TextDirectionRtl

Right to left text direction.

AnotherTextDirection Int

Catch-all for unknown values

Instances

Instances details
Enum TextDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Eq TextDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Ord TextDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Show TextDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> TextDirection -> ShowS

show :: TextDirection -> String

showList :: [TextDirection] -> ShowS

BoxedEnum TextDirection Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject TextDirection Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes TextDirection Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextDirection Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextDirection = '[] :: [Type]

TextExtendSelection

data TextExtendSelection Source #

Granularity types that extend the text selection. Use the extendSelection signal to customize the selection.

Since: 3.16

Constructors

TextExtendSelectionWord

Selects the current word. It is triggered by a double-click for example.

TextExtendSelectionLine

Selects the current line. It is triggered by a triple-click for example.

AnotherTextExtendSelection Int

Catch-all for unknown values

Instances

Instances details
Enum TextExtendSelection Source # 
Instance details

Defined in GI.Gtk.Enums

Eq TextExtendSelection Source # 
Instance details

Defined in GI.Gtk.Enums

Ord TextExtendSelection Source # 
Instance details

Defined in GI.Gtk.Enums

Show TextExtendSelection Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> TextExtendSelection -> ShowS

show :: TextExtendSelection -> String

showList :: [TextExtendSelection] -> ShowS

BoxedEnum TextExtendSelection Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject TextExtendSelection Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes TextExtendSelection Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextExtendSelection Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextExtendSelection = '[] :: [Type]

TextViewLayer

data TextViewLayer Source #

Used to reference the layers of TextView for the purpose of customized drawing with the draw_layer vfunc.

Constructors

TextViewLayerBelow

Old deprecated layer, use TextViewLayerBelowText instead

TextViewLayerAbove

Old deprecated layer, use TextViewLayerAboveText instead

TextViewLayerBelowText

The layer rendered below the text (but above the background). Since: 3.20

TextViewLayerAboveText

The layer rendered above the text. Since: 3.20

AnotherTextViewLayer Int

Catch-all for unknown values

Instances

Instances details
Enum TextViewLayer Source # 
Instance details

Defined in GI.Gtk.Enums

Eq TextViewLayer Source # 
Instance details

Defined in GI.Gtk.Enums

Ord TextViewLayer Source # 
Instance details

Defined in GI.Gtk.Enums

Show TextViewLayer Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> TextViewLayer -> ShowS

show :: TextViewLayer -> String

showList :: [TextViewLayer] -> ShowS

BoxedEnum TextViewLayer Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject TextViewLayer Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes TextViewLayer Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextViewLayer Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextViewLayer = '[] :: [Type]

TextWindowType

data TextWindowType Source #

Used to reference the parts of TextView.

Constructors

TextWindowTypePrivate

Invalid value, used as a marker

TextWindowTypeWidget

Window that floats over scrolling areas.

TextWindowTypeText

Scrollable text window.

TextWindowTypeLeft

Left side border window.

TextWindowTypeRight

Right side border window.

TextWindowTypeTop

Top border window.

TextWindowTypeBottom

Bottom border window.

AnotherTextWindowType Int

Catch-all for unknown values

Instances

Instances details
Enum TextWindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq TextWindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord TextWindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Show TextWindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> TextWindowType -> ShowS

show :: TextWindowType -> String

showList :: [TextWindowType] -> ShowS

BoxedEnum TextWindowType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject TextWindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes TextWindowType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextWindowType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TextWindowType = '[] :: [Type]

ToolbarSpaceStyle

data ToolbarSpaceStyle Source #

Deprecated: (Since version 3.20)

Whether spacers are vertical lines or just blank.

Constructors

ToolbarSpaceStyleEmpty

Use blank spacers.

ToolbarSpaceStyleLine

Use vertical lines for spacers.

AnotherToolbarSpaceStyle Int

Catch-all for unknown values

Instances

Instances details
Enum ToolbarSpaceStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ToolbarSpaceStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Ord ToolbarSpaceStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Show ToolbarSpaceStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ToolbarSpaceStyle -> ShowS

show :: ToolbarSpaceStyle -> String

showList :: [ToolbarSpaceStyle] -> ShowS

BoxedEnum ToolbarSpaceStyle Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ToolbarSpaceStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ToolbarSpaceStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ToolbarSpaceStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ToolbarSpaceStyle = '[] :: [Type]

ToolbarStyle

data ToolbarStyle Source #

Used to customize the appearance of a Toolbar. Note that setting the toolbar style overrides the user’s preferences for the default toolbar style. Note that if the button has only a label set and GTK_TOOLBAR_ICONS is used, the label will be visible, and vice versa.

Constructors

ToolbarStyleIcons

Buttons display only icons in the toolbar.

ToolbarStyleText

Buttons display only text labels in the toolbar.

ToolbarStyleBoth

Buttons display text and icons in the toolbar.

ToolbarStyleBothHoriz

Buttons display icons and text alongside each other, rather than vertically stacked

AnotherToolbarStyle Int

Catch-all for unknown values

Instances

Instances details
Enum ToolbarStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Eq ToolbarStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: ToolbarStyle -> ToolbarStyle -> Bool

(/=) :: ToolbarStyle -> ToolbarStyle -> Bool

Ord ToolbarStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Show ToolbarStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> ToolbarStyle -> ShowS

show :: ToolbarStyle -> String

showList :: [ToolbarStyle] -> ShowS

BoxedEnum ToolbarStyle Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject ToolbarStyle Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes ToolbarStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ToolbarStyle Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes ToolbarStyle = '[] :: [Type]

TreeViewColumnSizing

data TreeViewColumnSizing Source #

The sizing method the column uses to determine its width. Please note that gTKTREEVIEWCOLUMNAUTOSIZE are inefficient for large views, and can make columns appear choppy.

Constructors

TreeViewColumnSizingGrowOnly

Columns only get bigger in reaction to changes in the model

TreeViewColumnSizingAutosize

Columns resize to be the optimal size everytime the model changes.

TreeViewColumnSizingFixed

Columns are a fixed numbers of pixels wide.

AnotherTreeViewColumnSizing Int

Catch-all for unknown values

Instances

Instances details
Enum TreeViewColumnSizing Source # 
Instance details

Defined in GI.Gtk.Enums

Eq TreeViewColumnSizing Source # 
Instance details

Defined in GI.Gtk.Enums

Ord TreeViewColumnSizing Source # 
Instance details

Defined in GI.Gtk.Enums

Show TreeViewColumnSizing Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> TreeViewColumnSizing -> ShowS

show :: TreeViewColumnSizing -> String

showList :: [TreeViewColumnSizing] -> ShowS

BoxedEnum TreeViewColumnSizing Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject TreeViewColumnSizing Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes TreeViewColumnSizing Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TreeViewColumnSizing Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TreeViewColumnSizing = '[] :: [Type]

TreeViewDropPosition

data TreeViewDropPosition Source #

An enum for determining where a dropped row goes.

Constructors

TreeViewDropPositionBefore

dropped row is inserted before

TreeViewDropPositionAfter

dropped row is inserted after

TreeViewDropPositionIntoOrBefore

dropped row becomes a child or is inserted before

TreeViewDropPositionIntoOrAfter

dropped row becomes a child or is inserted after

AnotherTreeViewDropPosition Int

Catch-all for unknown values

Instances

Instances details
Enum TreeViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Eq TreeViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Ord TreeViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Show TreeViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> TreeViewDropPosition -> ShowS

show :: TreeViewDropPosition -> String

showList :: [TreeViewDropPosition] -> ShowS

BoxedEnum TreeViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject TreeViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes TreeViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TreeViewDropPosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TreeViewDropPosition = '[] :: [Type]

TreeViewGridLines

data TreeViewGridLines Source #

Used to indicate which grid lines to draw in a tree view.

Constructors

TreeViewGridLinesNone

No grid lines.

TreeViewGridLinesHorizontal

Horizontal grid lines.

TreeViewGridLinesVertical

Vertical grid lines.

TreeViewGridLinesBoth

Horizontal and vertical grid lines.

AnotherTreeViewGridLines Int

Catch-all for unknown values

Instances

Instances details
Enum TreeViewGridLines Source # 
Instance details

Defined in GI.Gtk.Enums

Eq TreeViewGridLines Source # 
Instance details

Defined in GI.Gtk.Enums

Ord TreeViewGridLines Source # 
Instance details

Defined in GI.Gtk.Enums

Show TreeViewGridLines Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> TreeViewGridLines -> ShowS

show :: TreeViewGridLines -> String

showList :: [TreeViewGridLines] -> ShowS

BoxedEnum TreeViewGridLines Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject TreeViewGridLines Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes TreeViewGridLines Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TreeViewGridLines Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes TreeViewGridLines = '[] :: [Type]

Unit

data Unit Source #

Constructors

UnitNone

No units.

UnitPoints

Dimensions in points.

UnitInch

Dimensions in inches.

UnitMm

Dimensions in millimeters

AnotherUnit Int

Catch-all for unknown values

Instances

Instances details
Enum Unit Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

succ :: Unit -> Unit

pred :: Unit -> Unit

toEnum :: Int -> Unit

fromEnum :: Unit -> Int

enumFrom :: Unit -> [Unit]

enumFromThen :: Unit -> Unit -> [Unit]

enumFromTo :: Unit -> Unit -> [Unit]

enumFromThenTo :: Unit -> Unit -> Unit -> [Unit]

Eq Unit Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: Unit -> Unit -> Bool

(/=) :: Unit -> Unit -> Bool

Ord Unit Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: Unit -> Unit -> Ordering

(<) :: Unit -> Unit -> Bool

(<=) :: Unit -> Unit -> Bool

(>) :: Unit -> Unit -> Bool

(>=) :: Unit -> Unit -> Bool

max :: Unit -> Unit -> Unit

min :: Unit -> Unit -> Unit

Show Unit Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> Unit -> ShowS

show :: Unit -> String

showList :: [Unit] -> ShowS

BoxedEnum Unit Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject Unit Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes Unit Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes Unit Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes Unit = '[] :: [Type]

WidgetHelpType

data WidgetHelpType Source #

Kinds of widget-specific help. Used by the showHelp signal.

Constructors

WidgetHelpTypeTooltip

Tooltip.

WidgetHelpTypeWhatsThis

What’s this.

AnotherWidgetHelpType Int

Catch-all for unknown values

Instances

Instances details
Enum WidgetHelpType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq WidgetHelpType Source # 
Instance details

Defined in GI.Gtk.Enums

Ord WidgetHelpType Source # 
Instance details

Defined in GI.Gtk.Enums

Show WidgetHelpType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> WidgetHelpType -> ShowS

show :: WidgetHelpType -> String

showList :: [WidgetHelpType] -> ShowS

BoxedEnum WidgetHelpType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject WidgetHelpType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes WidgetHelpType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes WidgetHelpType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes WidgetHelpType = '[] :: [Type]

WindowPosition

data WindowPosition Source #

Window placement can be influenced using this enumeration. Note that using GTK_WIN_POS_CENTER_ALWAYS is almost always a bad idea. It won’t necessarily work well with all window managers or on all windowing systems.

Constructors

WindowPositionNone

No influence is made on placement.

WindowPositionCenter

Windows should be placed in the center of the screen.

WindowPositionMouse

Windows should be placed at the current mouse position.

WindowPositionCenterAlways

Keep window centered as it changes size, etc.

WindowPositionCenterOnParent

Center the window on its transient parent (see windowSetTransientFor).

AnotherWindowPosition Int

Catch-all for unknown values

Instances

Instances details
Enum WindowPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Eq WindowPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Ord WindowPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Show WindowPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> WindowPosition -> ShowS

show :: WindowPosition -> String

showList :: [WindowPosition] -> ShowS

BoxedEnum WindowPosition Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject WindowPosition Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes WindowPosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes WindowPosition Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes WindowPosition = '[] :: [Type]

WindowType

data WindowType Source #

A Window can be one of these types. Most things you’d consider a “window” should have type GTK_WINDOW_TOPLEVEL; windows with this type are managed by the window manager and have a frame by default (call windowSetDecorated to toggle the frame). Windows with type GTK_WINDOW_POPUP are ignored by the window manager; window manager keybindings won’t work on them, the window manager won’t decorate the window with a frame, many GTK+ features that rely on the window manager will not work (e.g. resize grips and maximization/minimization). GTK_WINDOW_POPUP is used to implement widgets such as Menu or tooltips that you normally don’t think of as windows per se. Nearly all windows should be GTK_WINDOW_TOPLEVEL. In particular, do not use GTK_WINDOW_POPUP just to turn off the window borders; use windowSetDecorated for that.

Constructors

WindowTypeToplevel

A regular window, such as a dialog.

WindowTypePopup

A special window such as a tooltip.

AnotherWindowType Int

Catch-all for unknown values

Instances

Instances details
Enum WindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Eq WindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: WindowType -> WindowType -> Bool

(/=) :: WindowType -> WindowType -> Bool

Ord WindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Show WindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> WindowType -> ShowS

show :: WindowType -> String

showList :: [WindowType] -> ShowS

BoxedEnum WindowType Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject WindowType Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes WindowType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes WindowType Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes WindowType = '[] :: [Type]

WrapMode

data WrapMode Source #

Describes a type of line wrapping.

Constructors

WrapModeNone

do not wrap lines; just make the text area wider

WrapModeChar

wrap text, breaking lines anywhere the cursor can appear (between characters, usually - if you want to be technical, between graphemes, see getLogAttrs)

WrapModeWord

wrap text, breaking lines in between words

WrapModeWordChar

wrap text, breaking lines in between words, or if that is not enough, also between graphemes

AnotherWrapMode Int

Catch-all for unknown values

Instances

Instances details
Enum WrapMode Source # 
Instance details

Defined in GI.Gtk.Enums

Eq WrapMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

(==) :: WrapMode -> WrapMode -> Bool

(/=) :: WrapMode -> WrapMode -> Bool

Ord WrapMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

compare :: WrapMode -> WrapMode -> Ordering

(<) :: WrapMode -> WrapMode -> Bool

(<=) :: WrapMode -> WrapMode -> Bool

(>) :: WrapMode -> WrapMode -> Bool

(>=) :: WrapMode -> WrapMode -> Bool

max :: WrapMode -> WrapMode -> WrapMode

min :: WrapMode -> WrapMode -> WrapMode

Show WrapMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

showsPrec :: Int -> WrapMode -> ShowS

show :: WrapMode -> String

showList :: [WrapMode] -> ShowS

BoxedEnum WrapMode Source # 
Instance details

Defined in GI.Gtk.Enums

TypedObject WrapMode Source # 
Instance details

Defined in GI.Gtk.Enums

Methods

glibType :: IO GType

HasParentTypes WrapMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes WrapMode Source # 
Instance details

Defined in GI.Gtk.Enums

type ParentTypes WrapMode = '[] :: [Type]