98c3c84c00
Use the XSETTINGS machinery to get notification from foreign environments about settings that might interest Clutter itself - namely: the default font name, the font DPI, and the Xft font options that can be mapped on cairo_font_options_t.
25 lines
951 B
C
25 lines
951 B
C
#ifndef __CLUTTER_SETTINGS_X11_H__
|
|
#define __CLUTTER_SETTINGS_X11_H__
|
|
|
|
/* XSETTINGS key names to ClutterSettings properties */
|
|
static const struct {
|
|
const char *xsetting_name;
|
|
const char *settings_property;
|
|
} _clutter_settings_map[] = {
|
|
{ "Net/DoubleClickTime", "double-click-time" },
|
|
{ "Net/DoubleClickDistance", "double-click-distance" },
|
|
{ "Gtk/FontName", "font-name" },
|
|
{ "Xft/Antialias", "font-antialias" },
|
|
{ "Xft/DPI", "font-dpi" },
|
|
{ "Xft/Hinting", "font-hinting" },
|
|
{ "Xft/HintStyle", "font-hint-style" },
|
|
{ "Xft/RGBA", "font-subpixel-order" }
|
|
};
|
|
|
|
static const gint _n_clutter_settings_map = G_N_ELEMENTS (_clutter_settings_map);
|
|
|
|
#define CLUTTER_SETTING_X11_NAME(id) (_clutter_settings_map[(id)].xsetting_name)
|
|
#define CLUTTER_SETTING_PROPERTY(id) (_clutter_settings_map[(id)].settings_property)
|
|
|
|
#endif /* __CLUTTER_SETTINGS_X11_H__ */
|