diff options
author | Ted Gould <ted@gould.cx> | 2010-01-12 10:03:03 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-12 10:03:03 -0600 |
commit | b2198be3bc7c5135e4bf206d3eff1e5838fdbc84 (patch) | |
tree | 951f68527429caf452b004c56ea964325151f174 /bindings/mono/ApplicationIndicator.custom | |
parent | f8d6a7d026be10ea4cdb486cfa945ad697403f26 (diff) | |
parent | abd41dd91774e0755c226a3c960aa3b31f56cf65 (diff) | |
download | ayatana-indicator-application-b2198be3bc7c5135e4bf206d3eff1e5838fdbc84.tar.gz ayatana-indicator-application-b2198be3bc7c5135e4bf206d3eff1e5838fdbc84.tar.bz2 ayatana-indicator-application-b2198be3bc7c5135e4bf206d3eff1e5838fdbc84.zip |
Updating to trunk
Diffstat (limited to 'bindings/mono/ApplicationIndicator.custom')
-rw-r--r-- | bindings/mono/ApplicationIndicator.custom | 26 |
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 |