]> spindle.queued.net Git - midori/commitdiff
Add some missing Midori.Extension functions to VAPI
authorAndré Stösel <andre@stoesel.de>
Wed, 8 Jun 2011 18:18:09 +0000 (20:18 +0200)
committerChristian Dywan <christian@twotoasts.de>
Wed, 8 Jun 2011 18:18:09 +0000 (20:18 +0200)
midori/midori.vapi

index bce0b65921478ba1c43e58c3f12d6f5e398f312b..e2052c144857eda7d328eb61bb4ec44a7f24134e 100644 (file)
@@ -93,6 +93,18 @@ namespace Midori {
         public Extension ();
         public unowned Midori.App get_app ();
 
+        public void install_boolean (string name, bool default_value);
+        public void install_integer (string name, int default_value);
+        public void install_string (string name, string default_value);
+
+        public bool get_boolean (string name);
+        public int get_integer (string name);
+        public unowned string get_string (string name);
+
+        public void set_boolean (string name, bool value);
+        public void set_integer (string name, int value);
+        public void set_string (string name, string value);
+
         [NoAccessorMethod]
         public string name { get; set; }
         [NoAccessorMethod]