/usr/include/gnucash/gnc-gsettings.h is in gnucash-common 1:2.6.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 | /********************************************************************\
* gnc-gsettings.h -- utility functions for storing/retrieving *
* data in the GSettings database for GnuCash *
* Copyright (C) 2013 Geert Janssens <geert@kobaltwit.be> *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 2 of *
* the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License*
* along with this program; if not, contact: *
* *
* Free Software Foundation Voice: +1-617-542-5942 *
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
* Boston, MA 02110-1301, USA gnu@gnu.org *
* *
\********************************************************************/
/** @addtogroup GLib
@{ */
/** @addtogroup GSettings GSettings Utilities
The API in this file is designed to make it easy to use the GSettings
system from within Gnucash. GSettings is a shared key/value storage
system.
The main benefits of these routines are that they
-# maintain a list of GSettings objects (one per schema),
-# convert gnucash internal schema names into full gsettings schema id's, and
-# optionally take care of error checking on return values.
Note that this api should not be called directly. Instead use
the gnc_gsettings_load_backend function to configure gsettings
as backend for the gnucash preferences api and then use
the gnc_prefs_* functions instead to work with preferences.
@{ */
/** @file gnc-gsettings.h
* @brief GSettings helper routines.
* @author Copyright (C) 2013 Geert Janssens <geert@kobaltwit.be>
*/
#ifndef GNC_GSETTINGS_H
#define GNC_GSETTINGS_H
#include <gio/gio.h>
#define GSET_SCHEMA_PREFIX "org.gnucash"
/** Convert a partial schema name into a complete gsettings schema name.
*
* This function takes a partial gsettings schema name and converts
* it into a fully qualified gsettings schema name. It does this
* by prepending the standard prefix for all gnucash schemas.
* If the schema is already fully qualified (i.e. begins with the
* default schema prefix, this routine will not change it.
*
* @param name A partial schema name. The default prefix is
* prepended to this name to produce a fully qualified schema
* name.
*
* @return This function returns a string pointer to the fully
* qualified schema name. It is the caller's responsibility to
* free this string.
*/
gchar *gnc_gsettings_normalize_schema_name (const gchar *name);
/** Set the default gsettings schema prefix. This is
* used to generate complete schema id's if only
* partial id's are passed.
*/
void gnc_gsettings_set_prefix (const gchar *prefix);
/** Get the default gsettings schema prefix.
* If none was set explicitly, this defaults to
* "org.gnucash"
*/
const gchar *gnc_gsettings_get_prefix (void);
/** @name Listening for changes
@{
*/
/** Register a callback for when a specific key in the settings
* schema is changed. Any time the key's value changes, the routine
* will be invoked and will be passed both the changed gsettings entry
* and the user data passed to this function.
*
* @param schema This value contains the schema name of the key
* to watch.
*
* @param key This value contains the name of the key to watch.
*
* @param func This is a pointer to the function to call when the key
* changes.
*
* @param user_data This pointer will be passed to the callback
* function.
*
* @return This function returns the handler id for the registered
* callback.
*/
gulong gnc_gsettings_register_cb (const char *schema,
const gchar *key,
gpointer func,
gpointer user_data);
/** Remove a function that was registered for a callback when a
* specific key in the settings schema changed. Both the func and
* user_data arguments are used to match up the callback to remove.
* If no matching func and user_data are found to be registered
* for the given key, nothing will happen.
*
* @param schema This value contains the schema name of the key
* that is being watched.
*
* @param key This value contains the name of the key being watched.
*
* @param func This is a pointer to the function that was registered
* earlier.
*
* @param user_data This pointer was passed to the callback
* function when it was registered.
*/
void gnc_gsettings_remove_cb_by_func (const gchar *schema,
const gchar *key,
gpointer func,
gpointer user_data);
/** Remove a function that was registered for a callback when a
* specific key in the settings schema changed. The handler id
* that was generated when the callback was registered is
* use to find the callback to remove.
* If no handler id is found nothing will happen.
*
* @param schema This value contains the schema name of the key
* that is being watched.
*
* @param id The handler id of the callback to be removed.
*/
void gnc_gsettings_remove_cb_by_id (const gchar *schema,
guint id);
/** Register a callback for when any key in the settings schema
* is changed. Any time the value of a key in this schema changes,
* the routine will be invoked and will be passed the specified
* user data.
*
* @param schema This value contains the name of the schema
* that is being watched.
*
* @param func This is a pointer to the function to call when a key
* changes.
*
* @param user_data This pointer will be passed to the callback
* function.
*/
guint gnc_gsettings_register_any_cb (const gchar *schema,
gpointer func,
gpointer user_data);
/** Remove a function that was registered for a callback when any key
* in the given settings schema changed. Both the func and user_data
* arguments are used to match up the callback to remove.
* If no matching func and user_data are found to be registered
* for the given key, nothing will happen.
*
* @param schema This value contains the name of the schema
* that is being watched.
*
* @param func This is a pointer to the function that was registered
* earlier.
*
* @param user_data This pointer was passed to the callback
* function when it was registered.
*
* @note there is no gnc_settings_remove_any_cb_by_id. Use
* gnc_settings_remove_cb_by_id instead if you want to
* remove a callback set with gnc_settings_register_any_cb
* by its handler id.
*/
void gnc_gsettings_remove_any_cb_by_func (const gchar *schema,
gpointer func,
gpointer user_data);
/** Bind a setting to a g_object property. When this succeeds a change
* of the setting will automatically update the bound object property
* and vice versa.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @param object The object to be bound.
*
* @param property The property of the object to bind to.
*/
void gnc_gsettings_bind (const gchar *schema,
/*@ null @*/ const gchar *key,
gpointer object,
const gchar *property);
/** @name GSettings Get Functions
@{
*/
/** Get a boolean value from GSettings.
*
* Retrieve a TRUE/FALSE value from GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @return This function returns the TRUE or FALSE value stored at
* the requested key in the gsettings database. If the key has never
* been set, this function passes on the default value returned by
* GSettings as specified in the schema for this key.
*/
gboolean gnc_gsettings_get_bool (const gchar *schema,
/*@ null @*/ const gchar *key);
/** Get an integer value from GSettings.
*
* Retrieve an integer value from GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @return This function returns the integer value stored at the
* requested key in the gsettings database. If the key has never been
* set, this function passes on the default value returned by GSettings
* as specified in the schema for this key. If there is an error in
* processing, this function passed on the value of zero as returned
* by GSettings.
*/
gint gnc_gsettings_get_int (const gchar *schema,
const gchar *key);
/** Get an float value from GSettings.
*
* Retrieve an float value from GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @return This function returns the float value stored at the
* requested key in the gsettings database. If the key has never been
* set, this function passes on the default value returned by GSettings
* as specified in the schema for this key. If there is an error in
* processing, this function passed on the value of zero as returned
* by GSettings.
*/
gdouble gnc_gsettings_get_float (const gchar *schema,
const gchar *key);
/** Get a string value from GSettings.
*
* Retrieve an string value from GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @return This function returns the string value stored at the
* requested key in the gsettings database. If the key has never been
* set, this function passes on the default value returned by GSettings
* as specified in the schema for this key. If there is an error in
* processing, this function passed on the NULL value as returned by
* GSettings. It is the callers responsibility to free any string
* returned by this function.
*/
gchar *gnc_gsettings_get_string (const gchar *schema,
const gchar *key);
/** Get an enum value from GSettings.
*
* Retrieve an enum value from GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @return This function returns the enum value stored at the
* requested key in the gsettings database. If the key has never been
* set, this function passes on the default value returned by GSettings
* as specified in the schema for this key. If there is an error in
* processing, this function passed on the value of zero as returned
* by GSettings.
*/
gint gnc_gsettings_get_enum (const gchar *schema,
const gchar *key);
/** Get an arbitrary combination of values from GSettings.
*
* Retrieve an arbitrary combination of values from GSettings. This
* combination of values can be anything that can be encapsulated
* in a GVariant structure. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @return This function returns the a GVariant encapsulating the combination
* of values stored at the requested key in the gsettings database.
* If the key has never been set, this function passes on the default
* value returned by GSettings as specified in the schema for this key.
* If there is an error in processing, this function passed on the NULL
* value as returned by GSettings.
* It is the callers responsibility to free any GVariant data returned
* by this function.
*/
GVariant *gnc_gsettings_get_value (const gchar *schema,
const gchar *key);
/** @} */
/** @name GSettings Set/Unset Functions
@{
*/
/** Store a boolean value into GSettings.
*
* Store a boolean value into GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @param value The boolean value to be stored.
*
* @return This function returns true if the value was set successfully
* on the key or false if not.
*/
gboolean gnc_gsettings_set_bool (const gchar *schema,
const gchar *key,
gboolean value);
/** Store an integer value into GSettings.
*
* Store an integer into GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @param value The integer number to be stored.
*
* @return This function returns true if the value was set successfully
* on the key or false if not.
*/
gboolean gnc_gsettings_set_int (const gchar *schema,
const gchar *key,
gint value);
/** Store a float value into GSettings.
*
* Store a float into GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @param value The floating point number to be stored.
*
* @return This function returns true if the value was set successfully
* on the key or false if not.
*/
gboolean gnc_gsettings_set_float (const gchar *schema,
const gchar *key,
gdouble value);
/** Store a string into GSettings.
*
* Store a single string into GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @param value The string to be stored. GSettings will make a copy of this
* string, so it is the callers responsibility to free the space used
* by this string (if necessary).
*
* @return This function returns true if the value was set successfully
* on the key or false if not.
*/
gboolean gnc_gsettings_set_string (const gchar *schema,
const gchar *key,
const gchar *value);
/** Store an enum value into GSettings.
*
* Store an enum into GSettings. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @param value The enum number to be stored.
*
* @return This function returns true if the value was set successfully
* on the key or false if not.
*/
gboolean gnc_gsettings_set_enum (const gchar *schema,
const gchar *key,
gint value);
/** Store an arbitrary combination of values into GSettings.
*
* Store an arbitrary combination of values into GSettings. This
* combination of values can be anything that can be encapsulated
* in a GVariant structure. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*
* @param value The combination of values encapsulated in a GVariant
* to be stored.
*
* @return This function returns true if the value was set successfully
* on the key or false if not.
*/
gboolean gnc_gsettings_set_value (const gchar *schema,
const gchar *key,
GVariant *value);
/** Reset a key to its default value in GSettings.
*
* Reset a key to its default value in GSettings. Internally this
* is done by removing the value from the database. The next attempt
* to read this value will return the default as specified in the
* GSettings schema for this key. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*
* @param key This string is the name of the particular key within
* the named schema of gsettings.
*/
void gnc_gsettings_reset (const gchar *schema,
const gchar *key);
/** Reset all keys in a schema to their default values in GSettings.
*
* Reset a keys in schema to their default values in GSettings. Internally
* this is done by removing the values from the database. The next attempt
* to read a keys will return its default as specified in the
* GSettings schema for this key. The schema name
* provided as argument is combined with the default gnucash schema
* prefix to produce a fully qualified schema name.
*
* @param schema This string provides a grouping of keys within the
* GnuCash schema of the gsettings database. It can be a simple string
* as in "history" for settings that are common to many areas of
* gnucash, or it can be a partial path name as in
* "dialogs.business.invoice" for setting that only apply to one
* specific area of the program.
*/
void gnc_gsettings_reset_schema (const gchar *schema);
/** @} */
/** Configure gsettings as the backend for the gnucash preferences api.
*/
void gnc_gsettings_load_backend (void);
/* Attempt to migrate preferences from gconf files
to gsettings if not already done so */
void gnc_gsettings_migrate_from_gconf (void);
#endif /* GNC_GSETTINGS_H */
/** @} */
/** @} */
|