From 7fec283317cad8597b647d70e2854df8de14aecd Mon Sep 17 00:00:00 2001 From: Todd Berman Date: Mon, 2 Feb 2004 05:08:24 +0000 Subject: [PATCH] 2004-02-02 Todd berman * gdk/Event*.custom: added fix for bug #53729. svn path=/trunk/gtk-sharp/; revision=22686 --- ChangeLog | 4 ++++ gdk/EventAny.custom | 18 ++++++++++++++++++ gdk/EventButton.custom | 18 ++++++++++++++++++ gdk/EventClient.custom | 18 ++++++++++++++++++ gdk/EventConfigure.custom | 18 ++++++++++++++++++ gdk/EventCrossing.custom | 18 ++++++++++++++++++ gdk/EventDND.custom | 18 ++++++++++++++++++ gdk/EventExpose.custom | 18 ++++++++++++++++++ gdk/EventFocus.custom | 18 ++++++++++++++++++ gdk/EventKey.custom | 14 +++++++++++++- gdk/EventMotion.custom | 18 ++++++++++++++++++ gdk/EventNoExpose.custom | 18 ++++++++++++++++++ gdk/EventProperty.custom | 18 ++++++++++++++++++ gdk/EventProximity.custom | 18 ++++++++++++++++++ gdk/EventScroll.custom | 18 ++++++++++++++++++ gdk/EventSelection.custom | 18 ++++++++++++++++++ gdk/EventSetting.custom | 18 ++++++++++++++++++ gdk/EventVisibility.custom | 18 ++++++++++++++++++ gdk/EventWindowState.custom | 18 ++++++++++++++++++ 19 files changed, 323 insertions(+), 1 deletion(-) create mode 100644 gdk/EventAny.custom create mode 100644 gdk/EventButton.custom create mode 100644 gdk/EventClient.custom create mode 100644 gdk/EventConfigure.custom create mode 100644 gdk/EventCrossing.custom create mode 100644 gdk/EventDND.custom create mode 100644 gdk/EventExpose.custom create mode 100644 gdk/EventFocus.custom create mode 100644 gdk/EventMotion.custom create mode 100644 gdk/EventNoExpose.custom create mode 100644 gdk/EventProperty.custom create mode 100644 gdk/EventProximity.custom create mode 100644 gdk/EventScroll.custom create mode 100644 gdk/EventSelection.custom create mode 100644 gdk/EventSetting.custom create mode 100644 gdk/EventVisibility.custom create mode 100644 gdk/EventWindowState.custom diff --git a/ChangeLog b/ChangeLog index 078f1ac36..103a87ef9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-02-02 Todd berman + + * gdk/Event*.custom: added fix for bug #53729. + 2004-01-30 Todd Berman * gtk/Gtk.metadata: out fix for TreeView.GetBackgroundArea and diff --git a/gdk/EventAny.custom b/gdk/EventAny.custom new file mode 100644 index 000000000..e86bf5063 --- /dev/null +++ b/gdk/EventAny.custom @@ -0,0 +1,18 @@ +// +// gdk/EventAny.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventButton.custom b/gdk/EventButton.custom new file mode 100644 index 000000000..395118b06 --- /dev/null +++ b/gdk/EventButton.custom @@ -0,0 +1,18 @@ +// +// gdk/EventButton.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventClient.custom b/gdk/EventClient.custom new file mode 100644 index 000000000..489899d83 --- /dev/null +++ b/gdk/EventClient.custom @@ -0,0 +1,18 @@ +// +// gdk/EventClient.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventConfigure.custom b/gdk/EventConfigure.custom new file mode 100644 index 000000000..31614eadb --- /dev/null +++ b/gdk/EventConfigure.custom @@ -0,0 +1,18 @@ +// +// gdk/EventConfigure.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventCrossing.custom b/gdk/EventCrossing.custom new file mode 100644 index 000000000..f7c5b6d50 --- /dev/null +++ b/gdk/EventCrossing.custom @@ -0,0 +1,18 @@ +// +// gdk/EventCrossing.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventDND.custom b/gdk/EventDND.custom new file mode 100644 index 000000000..646656568 --- /dev/null +++ b/gdk/EventDND.custom @@ -0,0 +1,18 @@ +// +// gdk/EventDND.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventExpose.custom b/gdk/EventExpose.custom new file mode 100644 index 000000000..fc02fb692 --- /dev/null +++ b/gdk/EventExpose.custom @@ -0,0 +1,18 @@ +// +// gdk/EventExpose.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventFocus.custom b/gdk/EventFocus.custom new file mode 100644 index 000000000..e74fdde3b --- /dev/null +++ b/gdk/EventFocus.custom @@ -0,0 +1,18 @@ +// +// gdk/EventFocus.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventKey.custom b/gdk/EventKey.custom index 9658a5471..99aabe385 100644 --- a/gdk/EventKey.custom +++ b/gdk/EventKey.custom @@ -1,12 +1,24 @@ // // gdk/EventKey.custom // -// Author: Charles Iliya Krempeaux +// Authors: Charles Iliya Krempeaux +// Gustavo Giraldez // // Copyright (C) 2003 Reptile Consulting & Services Ltd. // Copyright (C) 2003 Charles Iliya Krempeaux. +// Copyright (C) 2004 Gustavo Giraldez // +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} public Gdk.Key Key { get { diff --git a/gdk/EventMotion.custom b/gdk/EventMotion.custom new file mode 100644 index 000000000..8eb499b09 --- /dev/null +++ b/gdk/EventMotion.custom @@ -0,0 +1,18 @@ +// +// gdk/EventMotion.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventNoExpose.custom b/gdk/EventNoExpose.custom new file mode 100644 index 000000000..88f00744c --- /dev/null +++ b/gdk/EventNoExpose.custom @@ -0,0 +1,18 @@ +// +// gdk/EventNoExpose.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventProperty.custom b/gdk/EventProperty.custom new file mode 100644 index 000000000..8491198f7 --- /dev/null +++ b/gdk/EventProperty.custom @@ -0,0 +1,18 @@ +// +// gdk/EventProperty.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventProximity.custom b/gdk/EventProximity.custom new file mode 100644 index 000000000..449274ad6 --- /dev/null +++ b/gdk/EventProximity.custom @@ -0,0 +1,18 @@ +// +// gdk/EventProximity.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventScroll.custom b/gdk/EventScroll.custom new file mode 100644 index 000000000..9ff8282b8 --- /dev/null +++ b/gdk/EventScroll.custom @@ -0,0 +1,18 @@ +// +// gdk/EventScroll.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventSelection.custom b/gdk/EventSelection.custom new file mode 100644 index 000000000..1dc372782 --- /dev/null +++ b/gdk/EventSelection.custom @@ -0,0 +1,18 @@ +// +// gdk/EventSelection.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventSetting.custom b/gdk/EventSetting.custom new file mode 100644 index 000000000..535e1d063 --- /dev/null +++ b/gdk/EventSetting.custom @@ -0,0 +1,18 @@ +// +// gdk/EventSetting.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventVisibility.custom b/gdk/EventVisibility.custom new file mode 100644 index 000000000..d5b304c3e --- /dev/null +++ b/gdk/EventVisibility.custom @@ -0,0 +1,18 @@ +// +// gdk/EventVisibility.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +} diff --git a/gdk/EventWindowState.custom b/gdk/EventWindowState.custom new file mode 100644 index 000000000..bdd3056a5 --- /dev/null +++ b/gdk/EventWindowState.custom @@ -0,0 +1,18 @@ +// +// gdk/EventWindowState.custom +// +// Author: Gustavo Giraldez +// +// Copyright (C) 2004 Gustavo Giraldez. +// + +[DllImport("libgdk-win32-2.0-0.dll")] +static extern IntPtr gdk_event_get_type(); + +public static GLib.GType GType { + get { + IntPtr raw_ret = gdk_event_get_type(); + GLib.GType ret = new GLib.GType(raw_ret); + return ret; + } +}