mirror of
https://github.com/brl/mutter.git
synced 2025-02-18 06:04:10 +00:00
backends: Export call to retrieve the base GSettings for a tablet
This commit is contained in:
parent
0efe076a0a
commit
323c608b0c
@ -103,6 +103,8 @@ GType meta_input_settings_get_type (void) G_GNUC_CONST;
|
|||||||
|
|
||||||
MetaInputSettings * meta_input_settings_create (void);
|
MetaInputSettings * meta_input_settings_create (void);
|
||||||
|
|
||||||
|
GSettings * meta_input_settings_get_tablet_settings (MetaInputSettings *settings,
|
||||||
|
ClutterInputDevice *device);
|
||||||
GDesktopTabletMapping meta_input_settings_get_tablet_mapping (MetaInputSettings *settings,
|
GDesktopTabletMapping meta_input_settings_get_tablet_mapping (MetaInputSettings *settings,
|
||||||
ClutterInputDevice *device);
|
ClutterInputDevice *device);
|
||||||
|
|
||||||
|
@ -1278,6 +1278,22 @@ meta_input_settings_create (void)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GSettings *
|
||||||
|
meta_input_settings_get_tablet_settings (MetaInputSettings *settings,
|
||||||
|
ClutterInputDevice *device)
|
||||||
|
{
|
||||||
|
MetaInputSettingsPrivate *priv;
|
||||||
|
DeviceMappingInfo *info;
|
||||||
|
|
||||||
|
g_return_val_if_fail (META_IS_INPUT_SETTINGS (settings), NULL);
|
||||||
|
g_return_val_if_fail (CLUTTER_IS_INPUT_DEVICE (device), NULL);
|
||||||
|
|
||||||
|
priv = meta_input_settings_get_instance_private (settings);
|
||||||
|
info = g_hash_table_lookup (priv->mappable_devices, device);
|
||||||
|
|
||||||
|
return info ? g_object_ref (info->settings) : NULL;
|
||||||
|
}
|
||||||
|
|
||||||
GDesktopTabletMapping
|
GDesktopTabletMapping
|
||||||
meta_input_settings_get_tablet_mapping (MetaInputSettings *settings,
|
meta_input_settings_get_tablet_mapping (MetaInputSettings *settings,
|
||||||
ClutterInputDevice *device)
|
ClutterInputDevice *device)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user