gi-gtk-4.0.4: Gtk bindings
CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellSafe-Inferred
LanguageHaskell2010

GI.Gtk.Objects.StyleContext

Description

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

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 Display and RTL/LTR information set. The style context will also be updated automatically if any of these settings change on the widget.

# Style Classes # {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.

Constructors

StyleContext (ManagedPtr StyleContext) 

Instances

Instances details
Eq StyleContext Source # 
Instance details

Defined in GI.Gtk.Objects.StyleContext

GObject StyleContext Source # 
Instance details

Defined in GI.Gtk.Objects.StyleContext

ManagedPtrNewtype StyleContext Source # 
Instance details

Defined in GI.Gtk.Objects.StyleContext

Methods

toManagedPtr :: StyleContext -> ManagedPtr StyleContext

TypedObject StyleContext Source # 
Instance details

Defined in GI.Gtk.Objects.StyleContext

Methods

glibType :: IO GType

HasParentTypes StyleContext Source # 
Instance details

Defined in GI.Gtk.Objects.StyleContext

IsGValue (Maybe StyleContext) Source #

Convert StyleContext to and from GValue. See toGValue and fromGValue.

Instance details

Defined in GI.Gtk.Objects.StyleContext

Methods

gvalueGType_ :: IO GType

gvalueSet_ :: Ptr GValue -> Maybe StyleContext -> IO ()

gvalueGet_ :: Ptr GValue -> IO (Maybe StyleContext)

type ParentTypes StyleContext Source # 
Instance details

Defined in GI.Gtk.Objects.StyleContext

type ParentTypes StyleContext = '[Object]

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

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 later uses of the style context 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.

getColor

styleContextGetColor Source #

Arguments

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

context: a StyleContext

-> m RGBA 

Gets the foreground color for a given state.

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.

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.

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.

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.

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.

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.

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, MonadIO m, IsDisplay a) => a -> m (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 ]