| GNOME Library Reference Manual | ||||
|---|---|---|---|---|
#include <libgnome/libgnome.h>gchar * gnome_gconf_get_gnome_libs_settings_relative (constgchar *subkey);gchar * gnome_gconf_get_app_settings_relative (GnomeProgram *program, constgchar *subkey);
The gconf module provides a means for storing configuration parameters in a directory-like structure. This module supplies a couple of convenience wrappers for the most common ways an application will use gconf.
gchar * gnome_gconf_get_gnome_libs_settings_relative (constgchar *subkey);
Gets the full key name for a GNOME desktop specific setting for a specific application. Those keys are used to store application-specific configuration, for example the history of a GnomeEntry. This config space should only be used by libraries.
subkey : |
key part below the gnome desktop settings directory |
| Returns : | A newly allocated string |
gchar * gnome_gconf_get_app_settings_relative (GnomeProgram *program, constgchar *subkey);
Gets the full key name for an application specific
setting. That is "/apps/<application_id>/subkey".
program : |
GnomeProgram pointer or NULL |
subkey : |
key part below the gnome desktop settings directory |
| Returns : | A newly allocated string |