gconf-schema

Name

gconf-schema -- 

Synopsis



struct      GConfSchema;
GConfSchema* gconf_schema_new               (void);
void        gconf_schema_free               (GConfSchema *sc);
GConfSchema* gconf_schema_copy              (GConfSchema *sc);
void        gconf_schema_set_type           (GConfSchema *sc,
                                             GConfValueType type);
void        gconf_schema_set_locale         (GConfSchema *sc,
                                             const gchar *locale);
void        gconf_schema_set_short_desc     (GConfSchema *sc,
                                             const gchar *desc);
void        gconf_schema_set_long_desc      (GConfSchema *sc,
                                             const gchar *desc);
void        gconf_schema_set_owner          (GConfSchema *sc,
                                             const gchar *owner);
void        gconf_schema_set_default_value  (GConfSchema *sc,
                                             GConfValue *val);
void        gconf_schema_set_default_value_nocopy
                                            (GConfSchema *sc,
                                             GConfValue *val);
#define     gconf_schema_get_type           (x)
#define     gconf_schema_get_locale         (x)
#define     gconf_schema_get_short_desc     (x)
#define     gconf_schema_get_long_desc      (x)
#define     gconf_schema_get_owner          (x)
#define     gconf_schema_get_default_value  (x)
#define     gconf_schema_get_car_type       (x)
#define     gconf_schema_get_cdr_type       (x)
#define     gconf_schema_get_list_type      (x)
void        gconf_schema_set_car_type       (GConfSchema *sc,
                                             GConfValueType type);
void        gconf_schema_set_cdr_type       (GConfSchema *sc,
                                             GConfValueType type);
void        gconf_schema_set_list_type      (GConfSchema *sc,
                                             GConfValueType type);

Description

Details

struct GConfSchema

struct GConfSchema {
  GConfValueType type; /* Type of the described entry */
  GConfValueType list_type; /* List type of the described entry */
  GConfValueType car_type; /* Pair car type of the described entry */
  GConfValueType cdr_type; /* Pair cdr type of the described entry */
  gchar* locale;       /* Schema locale */
  gchar* owner;        /* Name of creating application */
  gchar* short_desc;   /* 40 char or less description, no newlines */
  gchar* long_desc;    /* could be a paragraph or so */
  GConfValue* default_value; /* Default value of the key */
};


gconf_schema_new ()

GConfSchema* gconf_schema_new               (void);

Returns : 


gconf_schema_free ()

void        gconf_schema_free               (GConfSchema *sc);

sc : 


gconf_schema_copy ()

GConfSchema* gconf_schema_copy              (GConfSchema *sc);

sc : 
Returns : 


gconf_schema_set_type ()

void        gconf_schema_set_type           (GConfSchema *sc,
                                             GConfValueType type);

sc : 
type : 


gconf_schema_set_locale ()

void        gconf_schema_set_locale         (GConfSchema *sc,
                                             const gchar *locale);

sc : 
locale : 


gconf_schema_set_short_desc ()

void        gconf_schema_set_short_desc     (GConfSchema *sc,
                                             const gchar *desc);

sc : 
desc : 


gconf_schema_set_long_desc ()

void        gconf_schema_set_long_desc      (GConfSchema *sc,
                                             const gchar *desc);

sc : 
desc : 


gconf_schema_set_owner ()

void        gconf_schema_set_owner          (GConfSchema *sc,
                                             const gchar *owner);

sc : 
owner : 


gconf_schema_set_default_value ()

void        gconf_schema_set_default_value  (GConfSchema *sc,
                                             GConfValue *val);

sc : 
val : 


gconf_schema_set_default_value_nocopy ()

void        gconf_schema_set_default_value_nocopy
                                            (GConfSchema *sc,
                                             GConfValue *val);

sc : 
val : 


gconf_schema_get_type()

#define       gconf_schema_get_type(x)          (x->type)

x : 


gconf_schema_get_locale()

#define       gconf_schema_get_locale(x)        ((const gchar*)(x)->locale)

x : 


gconf_schema_get_short_desc()

#define       gconf_schema_get_short_desc(x)    ((const gchar*)(x)->short_desc)

x : 


gconf_schema_get_long_desc()

#define       gconf_schema_get_long_desc(x)     ((const gchar*)(x)->long_desc)

x : 


gconf_schema_get_owner()

#define       gconf_schema_get_owner(x)         ((const gchar*)(x)->owner)

x : 


gconf_schema_get_default_value()

#define       gconf_schema_get_default_value(x) ((x)->default_value)

x : 


gconf_schema_get_car_type()

#define       gconf_schema_get_car_type(x)      (x->car_type)

x : 


gconf_schema_get_cdr_type()

#define       gconf_schema_get_cdr_type(x)      (x->cdr_type)

x : 


gconf_schema_get_list_type()

#define       gconf_schema_get_list_type(x)     (x->list_type)

x : 


gconf_schema_set_car_type ()

void        gconf_schema_set_car_type       (GConfSchema *sc,
                                             GConfValueType type);

sc : 
type : 


gconf_schema_set_cdr_type ()

void        gconf_schema_set_cdr_type       (GConfSchema *sc,
                                             GConfValueType type);

sc : 
type : 


gconf_schema_set_list_type ()

void        gconf_schema_set_list_type      (GConfSchema *sc,
                                             GConfValueType type);

sc : 
type :