|
GIO_AVAILABLE_IN_ALL GType | g_settings_get_type (void) |
|
const gchar *const * | g_settings_list_schemas (void) |
|
const gchar *const * | g_settings_list_relocatable_schemas (void) |
|
GIO_AVAILABLE_IN_ALL GSettings * | g_settings_new (const gchar *schema_id) |
|
GIO_AVAILABLE_IN_ALL GSettings * | g_settings_new_with_path (const gchar *schema_id, const gchar *path) |
|
GIO_AVAILABLE_IN_ALL GSettings * | g_settings_new_with_backend (const gchar *schema_id, GSettingsBackend *backend) |
|
GIO_AVAILABLE_IN_ALL GSettings * | g_settings_new_with_backend_and_path (const gchar *schema_id, GSettingsBackend *backend, const gchar *path) |
|
GIO_AVAILABLE_IN_2_32 GSettings * | g_settings_new_full (GSettingsSchema *schema, GSettingsBackend *backend, const gchar *path) |
|
GIO_AVAILABLE_IN_ALL gchar ** | g_settings_list_children (GSettings *settings) |
|
gchar ** | g_settings_list_keys (GSettings *settings) |
|
GVariant * | g_settings_get_range (GSettings *settings, const gchar *key) |
|
gboolean | g_settings_range_check (GSettings *settings, const gchar *key, GVariant *value) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_set_value (GSettings *settings, const gchar *key, GVariant *value) |
|
GIO_AVAILABLE_IN_ALL GVariant * | g_settings_get_value (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_2_40 GVariant * | g_settings_get_user_value (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_2_40 GVariant * | g_settings_get_default_value (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_set (GSettings *settings, const gchar *key, const gchar *format,...) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_get (GSettings *settings, const gchar *key, const gchar *format,...) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_reset (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gint | g_settings_get_int (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_set_int (GSettings *settings, const gchar *key, gint value) |
|
GIO_AVAILABLE_IN_2_50 gint64 | g_settings_get_int64 (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_2_50 gboolean | g_settings_set_int64 (GSettings *settings, const gchar *key, gint64 value) |
|
GIO_AVAILABLE_IN_2_32 guint | g_settings_get_uint (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_2_32 gboolean | g_settings_set_uint (GSettings *settings, const gchar *key, guint value) |
|
GIO_AVAILABLE_IN_2_50 guint64 | g_settings_get_uint64 (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_2_50 gboolean | g_settings_set_uint64 (GSettings *settings, const gchar *key, guint64 value) |
|
GIO_AVAILABLE_IN_ALL gchar * | g_settings_get_string (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_set_string (GSettings *settings, const gchar *key, const gchar *value) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_get_boolean (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_set_boolean (GSettings *settings, const gchar *key, gboolean value) |
|
GIO_AVAILABLE_IN_ALL gdouble | g_settings_get_double (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_set_double (GSettings *settings, const gchar *key, gdouble value) |
|
GIO_AVAILABLE_IN_ALL gchar ** | g_settings_get_strv (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_set_strv (GSettings *settings, const gchar *key, const gchar *const *value) |
|
GIO_AVAILABLE_IN_ALL gint | g_settings_get_enum (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_set_enum (GSettings *settings, const gchar *key, gint value) |
|
GIO_AVAILABLE_IN_ALL guint | g_settings_get_flags (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_set_flags (GSettings *settings, const gchar *key, guint value) |
|
GIO_AVAILABLE_IN_ALL GSettings * | g_settings_get_child (GSettings *settings, const gchar *name) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_is_writable (GSettings *settings, const gchar *name) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_delay (GSettings *settings) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_apply (GSettings *settings) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_revert (GSettings *settings) |
|
GIO_AVAILABLE_IN_ALL gboolean | g_settings_get_has_unapplied (GSettings *settings) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_sync (void) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_bind (GSettings *settings, const gchar *key, gpointer object, const gchar *property, GSettingsBindFlags flags) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_bind_with_mapping (GSettings *settings, const gchar *key, gpointer object, const gchar *property, GSettingsBindFlags flags, GSettingsBindGetMapping get_mapping, GSettingsBindSetMapping set_mapping, gpointer user_data, GDestroyNotify destroy) |
|
GIO_AVAILABLE_IN_2_82 void | g_settings_bind_with_mapping_closures (GSettings *settings, const char *key, GObject *object, const char *property, GSettingsBindFlags flags, GClosure *get_mapping, GClosure *set_mapping) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_bind_writable (GSettings *settings, const gchar *key, gpointer object, const gchar *property, gboolean inverted) |
|
GIO_AVAILABLE_IN_ALL void | g_settings_unbind (gpointer object, const gchar *property) |
|
GIO_AVAILABLE_IN_2_32 GAction * | g_settings_create_action (GSettings *settings, const gchar *key) |
|
GIO_AVAILABLE_IN_ALL gpointer | g_settings_get_mapped (GSettings *settings, const gchar *key, GSettingsGetMapping mapping, gpointer user_data) |
|
GSettingsGetMapping: @value: the GVariant to map, or NULL
- Returns
- : (out): the result of the mapping @user_data: (closure): the user data that was passed to g_settings_get_mapped()
The type of the function that is used to convert from a value stored in a GSettings to a value that is useful to the application.
If the value is successfully mapped, the result should be stored at
- Returns
- and TRUE returned. If mapping fails (for example, if @value is not in the right format) then FALSE should be returned.
If @value is NULL then it means that the mapping function is being given a "last chance" to successfully return a valid value. TRUE must be returned in this case.
Returns: TRUE if the conversion succeeded, FALSE in case of an error
Definition at line 277 of file gsettings.h.