CSS-like styling for widgets, implementing the StyleProvider base class.
More...
#include <gtkmm/cssprovider.h>
CSS-like styling for widgets, implementing the StyleProvider base class.
It is able to parse CSS-like input in order to style widgets.
An application can cause GTK to parse a specific CSS style sheet by calling load_from_file() and adding the provider with StyleContext::add_provider() or StyleContext::add_provider_for_screen(). In addition, certain files will be read when GTK is initialized. See the GtkCssProvider documentation for details of these default files and details of the stylesheets.
- Since gtkmm 3.0:
◆ CssProvider() [1/2]
◆ ~CssProvider()
Gtk::CssProvider::~CssProvider |
( |
| ) |
|
|
overridenoexcept |
◆ CssProvider() [2/2]
Gtk::CssProvider::CssProvider |
( |
| ) |
|
|
protected |
◆ create()
◆ get_type()
static GType Gtk::CssProvider::get_type |
( |
| ) |
|
|
static |
Get the GType for this class, for use with the underlying GObject type system.
◆ gobj() [1/2]
Provides access to the underlying C GObject.
◆ gobj() [2/2]
Provides access to the underlying C GObject.
◆ gobj_copy()
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
◆ load_from_bytes()
void Gtk::CssProvider::load_from_bytes |
( |
const Glib::RefPtr< const Glib::Bytes > & |
data | ) |
|
Loads data into css_provider.
This clears any previously loaded information.
- Since gtkmm 4.12:
- Parameters
-
data | Bytes containing the data to load. |
◆ load_from_data()
◆ load_from_file()
void Gtk::CssProvider::load_from_file |
( |
const Glib::RefPtr< const Gio::File > & |
file | ) |
|
Loads the data contained in file into css_provider.
This clears any previously loaded information.
- Parameters
-
file | Gio::File pointing to a file to load. |
◆ load_from_path()
Loads the data contained in path into css_provider.
This clears any previously loaded information.
- Parameters
-
path | The path of a filename to load, in the GLib filename encoding. |
◆ load_from_resource()
Loads the data contained in the resource at resource_path into the css_provider.
This clears any previously loaded information.
- Parameters
-
resource_path | A Gio::Resource resource path. |
◆ load_from_string()
Loads string into css_provider.
This clears any previously loaded information.
- Since gtkmm 4.12:
- Parameters
-
◆ load_named()
void Gtk::CssProvider::load_named |
( |
const Glib::ustring & |
name, |
|
|
const Glib::ustring & |
variant |
|
) |
| |
Loads a theme from the usual theme paths.
The actual process of finding the theme might change between releases, but it is guaranteed that this function uses the same mechanism to load the theme that GTK uses for loading its own theme.
- Parameters
-
name | A theme name. |
variant | Variant to load, for example, "dark", or nullptr for the default. |
◆ operator=()
◆ signal_parsing_error()
- Parameters
-
error | The parsing error. The referenced object may belong to a subclass of Glib::Error, such as Gtk::CssParserError. |
- Slot Prototype:
void on_my_parsing_error(const Glib::RefPtr<const CssSection>& section, const Glib::Error& error)
Flags: Run Last
Signals that a parsing error occurred.
The expected error values are in the Gtk::CssParserError and Gtk::CssParserWarning enumerations.
The path, line and position describe the actual location of the error as accurately as possible.
Parsing errors are never fatal, so the parsing will resume after the error. Errors may however cause parts of the given data or even all of it to not be parsed at all. So it is a useful idea to check that the parsing succeeds by connecting to this signal.
Errors in the Gtk::CssParserWarning enumeration should not be treated as fatal errors.
Note that this signal may be emitted at any time as the css provider may opt to defer parsing parts or all of the input to a later time than when a loading function was called.
- Parameters
-
section | Section the error happened in. |
error | The parsing error. |
◆ to_string()
Glib::ustring Gtk::CssProvider::to_string |
( |
| ) |
const |
Converts the provider into a string representation in CSS format.
Using load_from_string() with the return value from this function on a new provider created with new() will basically create a duplicate of this provider.
- Returns
- A new string representing the provider.
◆ wrap()
A Glib::wrap() method for this object.
- Parameters
-
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |
- Returns
- A C++ instance that wraps this C instance.