69eb2e5f3b
We share two settings with GDK, so we can pick the window scaling factor and the unscaled font resolution when we initialize Clutter. https://bugzilla.gnome.org/show_bug.cgi?id=705915
29 lines
1.1 KiB
C
29 lines
1.1 KiB
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" },
|
|
{ "Net/DndDragThreshold", "dnd-drag-threshold" },
|
|
{ "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" },
|
|
{ "Fontconfig/Timestamp", "fontconfig-timestamp" },
|
|
{ "Gdk/WindowScalingFactor", "window-scaling-factor" },
|
|
{ "Gdk/UnscaledDPI", "unscaled-font-dpi" },
|
|
};
|
|
|
|
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__ */
|