From c72376856260360074879a5c91217c66c934558d Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sat, 23 Oct 2021 03:00:53 +0200 Subject: Re-introduce (CMake based) build support against GTK+ 2.0. --- bindings/mono/ApplicationIndicatorCustom.cs | 40 ----------------------------- 1 file changed, 40 deletions(-) delete mode 100644 bindings/mono/ApplicationIndicatorCustom.cs (limited to 'bindings/mono/ApplicationIndicatorCustom.cs') diff --git a/bindings/mono/ApplicationIndicatorCustom.cs b/bindings/mono/ApplicationIndicatorCustom.cs deleted file mode 100644 index 7e4b24c..0000000 --- a/bindings/mono/ApplicationIndicatorCustom.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Runtime.InteropServices; - -namespace AyatanaAppIndicator -{ - public partial class ApplicationIndicator : GLib.Object - { - [DllImport ("ayatana-appindicator3.dll")] - static extern int app_indicator_get_status (IntPtr i); - - [DllImport ("ayatana-appindicator3.dll")] - static extern int app_indicator_get_category (IntPtr i); - - [DllImport ("ayatana-appindicator3.dll")] - static extern void app_indicator_set_status (IntPtr i, int s); - - [GLib.Property ("status")] - public AppIndicatorStatus AppIndicatorStatus - { - get - { - return (AppIndicatorStatus) app_indicator_get_status (Handle); - } - - set - { - app_indicator_set_status (Handle, (int) value); - } - } - - [GLib.Property ("category")] - public AppIndicatorCategory AppIndicatorCategory - { - get - { - return (AppIndicatorCategory) app_indicator_get_category (Handle); - } - } - } -} -- cgit v1.2.3