gi-gtk-3.0.32: Gtk bindings

CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellNone
LanguageHaskell2010

GI.Gtk.Objects.ColorChooserWidget

Contents

Description

The tColorChooserWidget widget lets the user select a color. By default, the chooser presents a predefined palette of colors, plus a small number of settable custom colors. It is also possible to select a different color with the single-color editor. To enter the single-color editing mode, use the context menu of any color of the palette, or use the '+' button to add a new custom color.

The chooser automatically remembers the last selection, as well as custom colors.

To change the initially selected color, use colorChooserSetRgba. To get the selected color use colorChooserGetRgba.

The tColorChooserWidget is used in the tColorChooserDialog to provide a dialog for selecting colors.

CSS names

GtkColorChooserWidget has a single CSS node with name colorchooser.

Since: 3.4

Synopsis

Exported types

newtype ColorChooserWidget Source #

Memory-managed wrapper type.

Constructors

ColorChooserWidget (ManagedPtr ColorChooserWidget) 
Instances
Eq ColorChooserWidget Source # 
Instance details

Defined in GI.Gtk.Objects.ColorChooserWidget

GObject ColorChooserWidget Source # 
Instance details

Defined in GI.Gtk.Objects.ColorChooserWidget

Methods

gobjectType :: IO GType

IsGValue ColorChooserWidget Source #

Convert ColorChooserWidget to and from GValue with toGValue and fromGValue.

Instance details

Defined in GI.Gtk.Objects.ColorChooserWidget

Methods

toGValue :: ColorChooserWidget -> IO GValue

fromGValue :: GValue -> IO ColorChooserWidget

HasParentTypes ColorChooserWidget Source # 
Instance details

Defined in GI.Gtk.Objects.ColorChooserWidget

type ParentTypes ColorChooserWidget Source # 
Instance details

Defined in GI.Gtk.Objects.ColorChooserWidget

type ParentTypes ColorChooserWidget = Box ': (Container ': (Widget ': (Object ': (ImplementorIface ': (Buildable ': (ColorChooser ': (Orientable ': ([] :: [Type]))))))))

class (GObject o, IsDescendantOf ColorChooserWidget o) => IsColorChooserWidget o Source #

Type class for types which can be safely cast to ColorChooserWidget, for instance with toColorChooserWidget.

Instances
(GObject o, IsDescendantOf ColorChooserWidget o) => IsColorChooserWidget o Source # 
Instance details

Defined in GI.Gtk.Objects.ColorChooserWidget

toColorChooserWidget :: (MonadIO m, IsColorChooserWidget o) => o -> m ColorChooserWidget Source #

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

noColorChooserWidget :: Maybe ColorChooserWidget Source #

A convenience alias for Nothing :: Maybe ColorChooserWidget.

Methods

Overloaded methods

new

colorChooserWidgetNew Source #

Arguments

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

Returns: a new tColorChooserWidget

Creates a new tColorChooserWidget.

Since: 3.4

Properties

showEditor

The showEditor property is True when the color chooser is showing the single-color editor. It can be set to switch the color chooser into single-color editing mode.

Since: 3.4

constructColorChooserWidgetShowEditor :: IsColorChooserWidget o => Bool -> IO (GValueConstruct o) Source #

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

getColorChooserWidgetShowEditor :: (MonadIO m, IsColorChooserWidget o) => o -> m Bool Source #

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

get colorChooserWidget #showEditor

setColorChooserWidgetShowEditor :: (MonadIO m, IsColorChooserWidget o) => o -> Bool -> m () Source #

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

set colorChooserWidget [ #showEditor := value ]