aboutsummaryrefslogtreecommitdiff
path: root/bindings/mono/ApplicationIndicator.custom
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-01-11 23:44:51 -0600
committerTed Gould <ted@gould.cx>2010-01-11 23:44:51 -0600
commit481ad3176e82d872cbd6c70bb4a6980ad1f25cf9 (patch)
treef5e7bc35a21be371db0f70ed48a63e371d636cdc /bindings/mono/ApplicationIndicator.custom
parent983ceaf00ce0ff37b55ef0a645e3bb92ac419653 (diff)
parent2e6c62f01bb7bd8cd782e112088824a89282d473 (diff)
downloadlibayatana-appindicator-481ad3176e82d872cbd6c70bb4a6980ad1f25cf9.tar.gz
libayatana-appindicator-481ad3176e82d872cbd6c70bb4a6980ad1f25cf9.tar.bz2
libayatana-appindicator-481ad3176e82d872cbd6c70bb4a6980ad1f25cf9.zip
* Upstream update
* Fixes for the mono binding properties
Diffstat (limited to 'bindings/mono/ApplicationIndicator.custom')
-rw-r--r--bindings/mono/ApplicationIndicator.custom26
1 files changed, 26 insertions, 0 deletions
diff --git a/bindings/mono/ApplicationIndicator.custom b/bindings/mono/ApplicationIndicator.custom
new file mode 100644
index 0000000..11d16a8
--- /dev/null
+++ b/bindings/mono/ApplicationIndicator.custom
@@ -0,0 +1,26 @@
+[DllImport ("libappindicator.so.0")]
+static extern int app_indicator_get_status (IntPtr i);
+
+[DllImport ("libappindicator.so.0")]
+static extern int app_indicator_get_category (IntPtr i);
+
+[DllImport ("libappindicator.so.0")]
+static extern void app_indicator_set_status (IntPtr i, int s);
+
+ [GLib.Property ("status")]
+ public Status Status {
+ get {
+ return (Status) app_indicator_get_status (Handle);
+ }
+
+ set {
+ app_indicator_set_status (Handle, (int) value);
+ }
+ }
+
+ [GLib.Property ("category")]
+ public Category Category {
+ get {
+ return (Category) app_indicator_get_category (Handle);
+ }
+ } \ No newline at end of file