gsettingsbackend.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * Copyright © 2009, 2010 Codethink Limited
  3. * Copyright © 2010 Red Hat, Inc.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the licence, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * Authors: Ryan Lortie <desrt@desrt.ca>
  19. * Matthias Clasen <mclasen@redhat.com>
  20. */
  21. #ifndef __G_SETTINGS_BACKEND_H__
  22. #define __G_SETTINGS_BACKEND_H__
  23. #if !defined (G_SETTINGS_ENABLE_BACKEND) && !defined (GIO_COMPILATION)
  24. #error "You must define G_SETTINGS_ENABLE_BACKEND before including <gio/gsettingsbackend.h>."
  25. #endif
  26. #define __GIO_GIO_H_INSIDE__
  27. #include <gio/giotypes.h>
  28. #undef __GIO_GIO_H_INSIDE__
  29. G_BEGIN_DECLS
  30. #define G_TYPE_SETTINGS_BACKEND (g_settings_backend_get_type ())
  31. #define G_SETTINGS_BACKEND(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
  32. G_TYPE_SETTINGS_BACKEND, GSettingsBackend))
  33. #define G_SETTINGS_BACKEND_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
  34. G_TYPE_SETTINGS_BACKEND, GSettingsBackendClass))
  35. #define G_IS_SETTINGS_BACKEND(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
  36. G_TYPE_SETTINGS_BACKEND))
  37. #define G_IS_SETTINGS_BACKEND_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
  38. G_TYPE_SETTINGS_BACKEND))
  39. #define G_SETTINGS_BACKEND_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
  40. G_TYPE_SETTINGS_BACKEND, GSettingsBackendClass))
  41. /**
  42. * G_SETTINGS_BACKEND_EXTENSION_POINT_NAME:
  43. *
  44. * Extension point for #GSettingsBackend functionality.
  45. **/
  46. #define G_SETTINGS_BACKEND_EXTENSION_POINT_NAME "gsettings-backend"
  47. /**
  48. * GSettingsBackend:
  49. *
  50. * An implementation of a settings storage repository.
  51. **/
  52. typedef struct _GSettingsBackendPrivate GSettingsBackendPrivate;
  53. typedef struct _GSettingsBackendClass GSettingsBackendClass;
  54. /**
  55. * GSettingsBackendClass:
  56. * @read: virtual method to read a key's value
  57. * @get_writable: virtual method to get if a key is writable
  58. * @write: virtual method to change key's value
  59. * @write_tree: virtual method to change a tree of keys
  60. * @reset: virtual method to reset state
  61. * @subscribe: virtual method to subscribe to key changes
  62. * @unsubscribe: virtual method to unsubscribe to key changes
  63. * @sync: virtual method to sync state
  64. * @get_permission: virtual method to get permission of a key
  65. * @read_user_value: virtual method to read user's key value
  66. *
  67. * Class structure for #GSettingsBackend.
  68. */
  69. struct _GSettingsBackendClass
  70. {
  71. GObjectClass parent_class;
  72. GVariant * (*read) (GSettingsBackend *backend,
  73. const gchar *key,
  74. const GVariantType *expected_type,
  75. gboolean default_value);
  76. gboolean (*get_writable) (GSettingsBackend *backend,
  77. const gchar *key);
  78. gboolean (*write) (GSettingsBackend *backend,
  79. const gchar *key,
  80. GVariant *value,
  81. gpointer origin_tag);
  82. gboolean (*write_tree) (GSettingsBackend *backend,
  83. GTree *tree,
  84. gpointer origin_tag);
  85. void (*reset) (GSettingsBackend *backend,
  86. const gchar *key,
  87. gpointer origin_tag);
  88. void (*subscribe) (GSettingsBackend *backend,
  89. const gchar *name);
  90. void (*unsubscribe) (GSettingsBackend *backend,
  91. const gchar *name);
  92. void (*sync) (GSettingsBackend *backend);
  93. GPermission * (*get_permission) (GSettingsBackend *backend,
  94. const gchar *path);
  95. GVariant * (*read_user_value) (GSettingsBackend *backend,
  96. const gchar *key,
  97. const GVariantType *expected_type);
  98. /*< private >*/
  99. gpointer padding[23];
  100. };
  101. struct _GSettingsBackend
  102. {
  103. GObject parent_instance;
  104. /*< private >*/
  105. GSettingsBackendPrivate *priv;
  106. };
  107. GLIB_AVAILABLE_IN_ALL
  108. GType g_settings_backend_get_type (void);
  109. GLIB_AVAILABLE_IN_ALL
  110. void g_settings_backend_changed (GSettingsBackend *backend,
  111. const gchar *key,
  112. gpointer origin_tag);
  113. GLIB_AVAILABLE_IN_ALL
  114. void g_settings_backend_path_changed (GSettingsBackend *backend,
  115. const gchar *path,
  116. gpointer origin_tag);
  117. GLIB_AVAILABLE_IN_ALL
  118. void g_settings_backend_flatten_tree (GTree *tree,
  119. gchar **path,
  120. const gchar ***keys,
  121. GVariant ***values);
  122. GLIB_AVAILABLE_IN_ALL
  123. void g_settings_backend_keys_changed (GSettingsBackend *backend,
  124. const gchar *path,
  125. gchar const * const *items,
  126. gpointer origin_tag);
  127. GLIB_AVAILABLE_IN_ALL
  128. void g_settings_backend_path_writable_changed (GSettingsBackend *backend,
  129. const gchar *path);
  130. GLIB_AVAILABLE_IN_ALL
  131. void g_settings_backend_writable_changed (GSettingsBackend *backend,
  132. const gchar *key);
  133. GLIB_AVAILABLE_IN_ALL
  134. void g_settings_backend_changed_tree (GSettingsBackend *backend,
  135. GTree *tree,
  136. gpointer origin_tag);
  137. GLIB_AVAILABLE_IN_ALL
  138. GSettingsBackend * g_settings_backend_get_default (void);
  139. GLIB_AVAILABLE_IN_ALL
  140. GSettingsBackend * g_keyfile_settings_backend_new (const gchar *filename,
  141. const gchar *root_path,
  142. const gchar *root_group);
  143. GLIB_AVAILABLE_IN_ALL
  144. GSettingsBackend * g_null_settings_backend_new (void);
  145. GLIB_AVAILABLE_IN_ALL
  146. GSettingsBackend * g_memory_settings_backend_new (void);
  147. G_END_DECLS
  148. #endif /* __G_SETTINGS_BACKEND_H__ */