gi-gtk-4.0.1: 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.StyleContext

Description

StyleContext is an object that stores styling information affecting a widget defined by WidgetPath.

In order to construct the final style information, StyleContext queries information from all attached GtkStyleProviders. Style providers can be either attached explicitly to the context through styleContextAddProvider, or to the display through styleContextAddProviderForDisplay. The resulting style is a combination of all providers’ information in priority order.

For GTK+ widgets, any StyleContext returned by widgetGetStyleContext will already have a WidgetPath, a Display and RTL/LTR information set. The style context will also be updated automatically if any of these settings change on the widget.

If you are using the theming layer standalone, you will need to set a widget path and a display yourself to the created style context through styleContextSetPath and possibly styleContextSetDisplay. See the “Foreign drawing“ example in gtk4-demo.

{gtkstylecontext-classes}

Widgets can add style classes to their context, which can be used to associate different styles by class. The documentation for individual widgets lists which style classes it uses itself, and which style classes may be added by applications to affect their appearance.

GTK+ defines macros for a number of style classes.

Custom styling in UI libraries and applications

If you are developing a library with custom GtkWidgets that render differently than standard components, you may need to add a StyleProvider yourself with the STYLE_PROVIDER_PRIORITY_FALLBACK priority, either a CssProvider or a custom object implementing the StyleProvider interface. This way themes may still attempt to style your UI elements in a different way if needed so.

If you are using custom styling on an applications, you probably want then to make your style information prevail to the theme’s, so you must use a StyleProvider with the STYLE_PROVIDER_PRIORITY_APPLICATION priority, keep in mind that the user settings in XDG_CONFIG_HOME/gtk-4.0/gtk.css will still take precedence over your changes, as it uses the STYLE_PROVIDER_PRIORITY_USER priority.

Synopsis

Exported types

newtype StyleContext Source #

Memory-managed wrapper type.

class (GObject o, IsDescendantOf StyleContext o) => IsStyleContext o Source #

Type class for types which can be safely cast to StyleContext, for instance with toStyleContext.

Instances

Instances details
(GObject o, IsDescendantOf StyleContext o) => IsStyleContext o Source # 
Instance details

Defined in GI.Gtk.Objects.StyleContext

toStyleContext :: (MonadIO m, IsStyleContext o) => o -> m StyleContext Source #

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

Methods

Overloaded methods

addClass

styleContextAddClass Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> Text

className: class name to use in styling

-> m () 

Adds a style class to context, so posterior calls to gtk_style_context_get() or any of the gtk_render_*() functions will make use of this new class for styling.

In the CSS file format, a Entry defining a “search” class, would be matched by:

 <!-- language="CSS" -->
entry.search { ... }

While any widget defining a “search” class would be matched by: > language="CSS" -- >.search { ... }

addProvider

styleContextAddProvider Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a, IsStyleProvider b) 
=> a

context: a StyleContext

-> b

provider: a StyleProvider

-> Word32

priority: the priority of the style provider. The lower it is, the earlier it will be used in the style construction. Typically this will be in the range between STYLE_PROVIDER_PRIORITY_FALLBACK and STYLE_PROVIDER_PRIORITY_USER

-> m () 

Adds a style provider to context, to be used in style construction. Note that a style provider added by this function only affects the style of the widget to which context belongs. If you want to affect the style of all widgets, use styleContextAddProviderForDisplay.

Note: If both priorities are the same, a StyleProvider added through this function takes precedence over another added through styleContextAddProviderForDisplay.

addProviderForDisplay

styleContextAddProviderForDisplay Source #

Arguments

:: (HasCallStack, MonadIO m, IsDisplay a, IsStyleProvider b) 
=> a

display: a Display

-> b

provider: a StyleProvider

-> Word32

priority: the priority of the style provider. The lower it is, the earlier it will be used in the style construction. Typically this will be in the range between STYLE_PROVIDER_PRIORITY_FALLBACK and STYLE_PROVIDER_PRIORITY_USER

-> m () 

Adds a global style provider to display, which will be used in style construction for all GtkStyleContexts under display.

GTK+ uses this to make styling information from Settings available.

Note: If both priorities are the same, A StyleProvider added through styleContextAddProvider takes precedence over another added through this function.

getBorder

styleContextGetBorder Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m Border 

Gets the border for a given state as a Border.

See styleContextGetProperty and STYLE_PROPERTY_BORDER_WIDTH for details.

getColor

styleContextGetColor Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m RGBA 

Gets the foreground color for a given state.

See styleContextGetProperty and STYLE_PROPERTY_COLOR for details.

getDisplay

styleContextGetDisplay Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m Display

Returns: a Display.

Returns the Display to which context is attached.

getMargin

styleContextGetMargin Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m Border 

Gets the margin for a given state as a Border. See gtk_style_property_get() and STYLE_PROPERTY_MARGIN for details.

getPadding

styleContextGetPadding Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m Border 

Gets the padding for a given state as a Border. See gtk_style_context_get() and STYLE_PROPERTY_PADDING for details.

getParent

styleContextGetParent Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m (Maybe StyleContext)

Returns: the parent context or Nothing

Gets the parent context set via styleContextSetParent. See that function for details.

getPath

styleContextGetPath Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m WidgetPath

Returns: A WidgetPath

Returns the widget path used for style matching.

getProperty

styleContextGetProperty Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> Text

property: style property name

-> m GValue 

Gets a style property from context for the current state.

Note that not all CSS properties that are supported by GTK+ can be retrieved in this way, since they may not be representable as Value. GTK+ defines macros for a number of properties that can be used with this function.

When value is no longer needed, valueUnset must be called to free any allocated memory.

getScale

styleContextGetScale Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m Int32

Returns: the scale

Returns the scale used for assets.

getState

styleContextGetState Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m [StateFlags]

Returns: the state flags

Returns the state used for style matching.

This method should only be used to retrieve the StateFlags to pass to StyleContext methods, like styleContextGetPadding. If you need to retrieve the current state of a Widget, use widgetGetStateFlags.

hasClass

styleContextHasClass Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> Text

className: a class name

-> m Bool

Returns: True if context has className defined

Returns True if context currently has defined the given class name.

listClasses

styleContextListClasses Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m [Text]

Returns: a List of strings with the currently defined classes. The contents of the list are owned by GTK+, but you must free the list itself with g_list_free() when you are done with it.

Returns the list of classes currently defined in context.

lookupColor

styleContextLookupColor Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> Text

colorName: color name to lookup

-> m (Bool, RGBA)

Returns: True if colorName was found and resolved, False otherwise

Looks up and resolves a color name in the context color map.

new

styleContextNew Source #

Arguments

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

Returns: A newly created StyleContext.

Creates a standalone StyleContext, this style context won’t be attached to any widget, so you may want to call styleContextSetPath yourself.

This function is only useful when using the theming layer separated from GTK+, if you are using StyleContext to theme GtkWidgets, use widgetGetStyleContext in order to get a style context ready to theme the widget.

removeClass

styleContextRemoveClass Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> Text

className: class name to remove

-> m () 

Removes className from context.

removeProvider

styleContextRemoveProvider Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a, IsStyleProvider b) 
=> a

context: a StyleContext

-> b

provider: a StyleProvider

-> m () 

Removes provider from the style providers list in context.

removeProviderForDisplay

styleContextRemoveProviderForDisplay Source #

Arguments

:: (HasCallStack, MonadIO m, IsDisplay a, IsStyleProvider b) 
=> a

display: a Display

-> b

provider: a StyleProvider

-> m () 

Removes provider from the global style providers list in display.

resetWidgets

styleContextResetWidgets Source #

Arguments

:: (HasCallStack, MonadIO m, IsDisplay a) 
=> a

display: a Display

-> m () 

This function recomputes the styles for all widgets under a particular Display. This is useful when some global parameter has changed that affects the appearance of all widgets, because when a widget gets a new style, it will both redraw and recompute any cached information about its appearance. As an example, it is used when the color scheme changes in the related Settings object.

restore

styleContextRestore Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m () 

Restores context state to a previous stage. See styleContextSave.

save

styleContextSave Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> m () 

Saves the context state, so temporary modifications done through styleContextAddClass, styleContextRemoveClass, styleContextSetState, etc. can quickly be reverted in one go through styleContextRestore.

The matching call to styleContextRestore must be done before GTK returns to the main loop.

setDisplay

styleContextSetDisplay Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a, IsDisplay b) 
=> a

context: a StyleContext

-> b

display: a Display

-> m () 

Attaches context to the given display.

The display is used to add style information from “global” style providers, such as the display's Settings instance.

If you are using a StyleContext returned from widgetGetStyleContext, you do not need to call this yourself.

setParent

styleContextSetParent Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a, IsStyleContext b) 
=> a

context: a StyleContext

-> Maybe b

parent: the new parent or Nothing

-> m () 

Sets the parent style context for context. The parent style context is used to implement inheritance of properties.

If you are using a StyleContext returned from widgetGetStyleContext, the parent will be set for you.

setPath

styleContextSetPath Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> WidgetPath

path: a WidgetPath

-> m () 

Sets the WidgetPath used for style matching. As a consequence, the style will be regenerated to match the new given path.

If you are using a StyleContext returned from widgetGetStyleContext, you do not need to call this yourself.

setScale

styleContextSetScale Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> Int32

scale: scale

-> m () 

Sets the scale to use when getting image assets for the style.

setState

styleContextSetState Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> [StateFlags]

flags: state to represent

-> m () 

Sets the state to be used for style matching.

toString

styleContextToString Source #

Arguments

:: (HasCallStack, MonadIO m, IsStyleContext a) 
=> a

context: a StyleContext

-> [StyleContextPrintFlags]

flags: Flags that determine what to print

-> m Text

Returns: a newly allocated string representing context

Converts the style context into a string representation.

The string representation always includes information about the name, state, id, visibility and style classes of the CSS node that is backing context. Depending on the flags, more information may be included.

This function is intended for testing and debugging of the CSS implementation in GTK+. There are no guarantees about the format of the returned string, it may change.

Properties

display

No description available in the introspection data.

constructStyleContextDisplay :: (IsStyleContext o, IsDisplay a) => a -> IO (GValueConstruct o) Source #

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

getStyleContextDisplay :: (MonadIO m, IsStyleContext o) => o -> m Display Source #

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

get styleContext #display

setStyleContextDisplay :: (MonadIO m, IsStyleContext o, IsDisplay a) => o -> a -> m () Source #

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

set styleContext [ #display := value ]

parent

Sets or gets the style context’s parent. See styleContextSetParent for details.

clearStyleContextParent :: (MonadIO m, IsStyleContext o) => o -> m () Source #

Set the value of the “parent” property to Nothing. When overloading is enabled, this is equivalent to

clear #parent

constructStyleContextParent :: (IsStyleContext o, IsStyleContext a) => a -> IO (GValueConstruct o) Source #

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

getStyleContextParent :: (MonadIO m, IsStyleContext o) => o -> m (Maybe StyleContext) Source #

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

get styleContext #parent

setStyleContextParent :: (MonadIO m, IsStyleContext o, IsStyleContext a) => o -> a -> m () Source #

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

set styleContext [ #parent := value ]

Signals

changed

type C_StyleContextChangedCallback = Ptr () -> Ptr () -> IO () Source #

Type for the callback on the (unwrapped) C side.

type StyleContextChangedCallback = IO () Source #

The changed signal is emitted when there is a change in the StyleContext.

For a StyleContext returned by widgetGetStyleContext, the styleUpdated signal/vfunc might be more convenient to use.

This signal is useful when using the theming layer standalone.

afterStyleContextChanged :: (IsStyleContext a, MonadIO m) => a -> StyleContextChangedCallback -> m SignalHandlerId Source #

Connect a signal handler for the changed signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after styleContext #changed callback

onStyleContextChanged :: (IsStyleContext a, MonadIO m) => a -> StyleContextChangedCallback -> m SignalHandlerId Source #

Connect a signal handler for the changed signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on styleContext #changed callback