[Xfce4-commits] <midori:master> Add some missing Midori.Extension functions to VAPI
Christian Dywan
noreply at xfce.org
Wed Jun 8 20:26:07 CEST 2011
Updating branch refs/heads/master
to fa970c076b765c025eca46526fdec1b9c268be98 (commit)
from 037db65a3872433ff3fcdfb20be139a34447b5e4 (commit)
commit fa970c076b765c025eca46526fdec1b9c268be98
Author: André Stösel <andre at stoesel.de>
Date: Wed Jun 8 20:18:09 2011 +0200
Add some missing Midori.Extension functions to VAPI
midori/midori.vapi | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/midori/midori.vapi b/midori/midori.vapi
index bce0b65..e2052c1 100644
--- a/midori/midori.vapi
+++ b/midori/midori.vapi
@@ -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]
More information about the Xfce4-commits
mailing list