// Global.custom - customizations to Gdk.Global
//
// Authors: Mike Kestner  <mkestner@ximian.com>
//          Boyd Timothy  <btimothy@novell.com>
//
// Copyright (c) 2004 Novell, Inc.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 2 of the Lesser GNU General 
// Public License as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program; if not, write to the
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.

		[DllImport("libgdk-win32-2.0-0.dll")]
		static extern IntPtr gdk_devices_list ();

		public static Device[] DevicesList ()
		{
			IntPtr raw_ret = gdk_devices_list ();
			if (raw_ret == IntPtr.Zero)
				return new Device [0];
			GLib.List list = new GLib.List(raw_ret);
			Device[] result = new Device [list.Count];
			for (int i = 0; i < list.Count; i++)
				result [i] = list [i] as Device;
			return result;
		}

		[DllImport("libgdk-win32-2.0-0.dll")]
		static extern IntPtr gdk_list_visuals ();

		public static Visual[] ListVisuals ()
		{
			IntPtr raw_ret = gdk_list_visuals ();
			if (raw_ret == IntPtr.Zero)
				return new Visual [0];
			GLib.List list = new GLib.List(raw_ret);
			Visual[] result = new Visual [list.Count];
			for (int i = 0; i < list.Count; i++)
				result [i] = list [i] as Visual;
			return result;
		}

		[DllImport ("gdksharpglue-2")]
		static extern IntPtr gtksharp_get_gdk_net_supported ();

		public static Gdk.Atom[] SupportedWindowManagerHints {
			get {
				IntPtr raw_ret = gtksharp_get_gdk_net_supported ();
				if (raw_ret == IntPtr.Zero)
					return new Gdk.Atom [0];
				GLib.List list = new GLib.List (raw_ret, typeof (Gdk.Atom));
				Gdk.Atom[] atoms = new Gdk.Atom [list.Count];
				for (int i = 0; i < list.Count; i++)
					atoms [i] = list [i] as Gdk.Atom;

				return atoms;
			}
		}

		[DllImport ("gdksharpglue-2")]
		static extern IntPtr gtksharp_get_gdk_net_client_list (out int count);

		public static Gdk.Window[] WindowManagerClientWindows {
			get {
				int count;
				IntPtr raw_ret = gtksharp_get_gdk_net_client_list (out count);
				if (raw_ret == IntPtr.Zero)
					return new Gdk.Window [0];
				Gdk.Window [] windows = new Gdk.Window [count];
				int offset = 0;
				for (int i = 0; i < count; i++) {
					int windowID = Marshal.ReadInt32 (raw_ret, offset);
					Console.WriteLine ("WinID: {0}", windowID);
					offset += IntPtr.Size;
					windows [i] = Gdk.Window.ForeignNew ((uint) windowID);
				}
				return windows;
			}
		}

		[DllImport ("gdksharpglue-2")]
		static extern int gtksharp_get_gdk_net_number_of_desktops ();

		public static int NumberOfDesktops {
			get {
				return gtksharp_get_gdk_net_number_of_desktops ();
			}
		}

		[DllImport ("gdksharpglue-2")]
		static extern int gtksharp_get_gdk_net_current_desktop ();

		public static int CurrentDesktop {
			get {
				return gtksharp_get_gdk_net_current_desktop ();
			}
		}

		[DllImport ("gdksharpglue-2")]
		static extern uint gtksharp_get_gdk_net_active_window ();

		public static Gdk.Window ActiveWindow {
			get {
				uint windowID = gtksharp_get_gdk_net_active_window ();
				if (windowID == 0)
					return Gdk.Global.DefaultRootWindow;
				Console.WriteLine ("Active Window ID: {0}", windowID);
				Gdk.Window window = Gdk.Window.ForeignNew (windowID);
				return window;
			}
		}

		[DllImport ("gdksharpglue-2")]
		static extern IntPtr gtksharp_get_gdk_net_workarea ();

		public static Gdk.Rectangle[] DesktopWorkareas {
			get {
				IntPtr raw_ret = gtksharp_get_gdk_net_workarea ();
				if (raw_ret == IntPtr.Zero)
					return new Gdk.Rectangle [0];
				GLib.List list = new GLib.List (raw_ret, typeof (Gdk.Rectangle));
				Gdk.Rectangle[] workareas = new Gdk.Rectangle [list.Count];
				for (int i = 0; i < list.Count; i++)
					workareas [i] = (Gdk.Rectangle) list [i];

				return workareas;
			}
		}

		[DllImport("libgdk-win32-2.0-0.dll")]
		static extern bool gdk_init_check(ref int argc, ref IntPtr argv);

		public static bool InitCheck (ref string[] argv)
		{
			IntPtr ptr = GLib.Marshaller.ArgvToArrayPtr (argv);
			int count = argv.Length;
			bool result = gdk_init_check (ref count, ref ptr);
			argv = GLib.Marshaller.ArrayPtrToArgv (ptr, count);
			return result;
		}

		[DllImport("libgdk-win32-2.0-0.dll")]
		static extern void gdk_parse_args(ref int argc, ref IntPtr argv);

		public static void ParseArgs (ref string[] argv)
		{
			IntPtr ptr = GLib.Marshaller.ArgvToArrayPtr (argv);
			int count = argv.Length;
			gdk_parse_args (ref count, ref ptr);
			argv = GLib.Marshaller.ArrayPtrToArgv (ptr, count);
		}

		[DllImport("libgdk-win32-2.0-0.dll")]
		static extern void gdk_query_depths (out IntPtr depths, out int n_depths);

		public static int[] QueryDepths ()
		{
			IntPtr ptr;
			int count;
			gdk_query_depths (out ptr, out count);
			int[] result = new int [count];
			Marshal.Copy (ptr, result, 0, count);
			return result;
		}
		[DllImport("libgdk-win32-2.0-0.dll")]
		static extern void gdk_query_visual_types (out IntPtr types, out int n_types);

		public static VisualType[] QueryVisualTypes ()
		{
			IntPtr ptr;
			int count;
			gdk_query_visual_types (out ptr, out count);
			int[] tmp = new int [count];
			Marshal.Copy (ptr, tmp, 0, count);
			VisualType[] result = new VisualType [count];
			for (int i = 0; i < count; i++)
				result [i] = (VisualType) tmp [i];
			return result;
		}