~ubuntu-branches/ubuntu/vivid/vala/vivid

« back to all changes in this revision

Viewing changes to vapi/gconf-2.0.vapi

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2010-07-28 07:58:01 UTC
  • mfrom: (1.5.5 upstream) (7.3.14 experimental)
  • Revision ID: james.westby@ubuntu.com-20100728075801-18u9cg5hv5oety6m
Tags: 0.9.4-1
New upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        }
28
28
        [CCode (cheader_filename = "gconf/gconf-client.h")]
29
29
        public class Client : GLib.Object {
 
30
                public weak GLib.HashTable cache_dirs;
30
31
                public weak GLib.HashTable cache_hash;
31
32
                public weak GLib.HashTable dir_hash;
32
33
                public weak GConf.Engine engine;
34
35
                public weak GConf.Listeners listeners;
35
36
                public uint notify_handler;
36
37
                public weak GLib.SList notify_list;
37
 
                public void* pad1;
38
38
                public int pad2;
39
39
                public int pending_notify_count;
40
40
                public void add_dir (string dir, GConf.ClientPreloadType preload) throws GLib.Error;
219
219
                public Value (GConf.ValueType type);
220
220
                public int compare (GConf.Value value_b);
221
221
                public GConf.Value copy ();
 
222
                public static unowned GConf.Value decode (string encoded);
 
223
                public unowned string encode ();
222
224
                [CCode (has_construct_function = false)]
223
225
                public Value.from_string (GConf.ValueType type, string str) throws GLib.Error;
224
226
                public bool get_bool ();
245
247
                public void set_string (string the_str);
246
248
                public unowned string to_string ();
247
249
        }
248
 
        [CCode (cprefix = "GCONF_CLIENT_HANDLE_", has_type_id = false, cheader_filename = "gconf/gconf.h")]
 
250
        [CCode (cprefix = "GCONF_CLIENT_HANDLE_", cheader_filename = "gconf/gconf.h")]
249
251
        public enum ClientErrorHandlingMode {
250
252
                NONE,
251
253
                UNRETURNED,
252
254
                ALL
253
255
        }
254
 
        [CCode (cprefix = "GCONF_CLIENT_PRELOAD_", has_type_id = false, cheader_filename = "gconf/gconf.h")]
 
256
        [CCode (cprefix = "GCONF_CLIENT_PRELOAD_", cheader_filename = "gconf/gconf.h")]
255
257
        public enum ClientPreloadType {
256
258
                NONE,
257
259
                ONELEVEL,
258
260
                RECURSIVE
259
261
        }
260
 
        [CCode (cprefix = "GCONF_ERROR_", has_type_id = false, cheader_filename = "gconf/gconf.h")]
 
262
        [CCode (cprefix = "GCONF_ERROR_", cheader_filename = "gconf/gconf.h")]
261
263
        public enum Error {
262
264
                SUCCESS,
263
265
                FAILED,
277
279
                NO_WRITABLE_DATABASE,
278
280
                IN_SHUTDOWN
279
281
        }
280
 
        [CCode (cprefix = "GCONF_UNSET_INCLUDING_SCHEMA_", has_type_id = false, cheader_filename = "gconf/gconf.h")]
 
282
        [CCode (cprefix = "GCONF_UNSET_INCLUDING_SCHEMA_", cheader_filename = "gconf/gconf.h")]
281
283
        [Flags]
282
284
        public enum UnsetFlags {
283
285
                NAMES
284
286
        }
285
 
        [CCode (cprefix = "GCONF_VALUE_", has_type_id = false, cheader_filename = "gconf/gconf.h")]
 
287
        [CCode (cprefix = "GCONF_VALUE_", cheader_filename = "gconf/gconf.h")]
286
288
        public enum ValueType {
287
289
                INVALID,
288
290
                STRING,