2004-02-26 Mike Kestner <mkestner@ximian.com>

* gnome/GtkSharp.* : move to Gnome namespace
	* gnome/CanvasProxy.cs : update event handler namespaces
	* gnome/voidObject*.cs : internalize

svn path=/trunk/gtk-sharp/; revision=23496
This commit is contained in:
Mike Kestner 2004-02-26 19:00:18 +00:00
parent b2059ab3fd
commit 96ab93e0f6
8 changed files with 22 additions and 16 deletions

View File

@ -1,3 +1,9 @@
2004-02-26 Mike Kestner <mkestner@ximian.com>
* gnome/GtkSharp.* : move to Gnome namespace
* gnome/CanvasProxy.cs : update event handler namespaces
* gnome/voidObject*.cs : internalize
2004-02-24 Mike Kestner <mkestner@ximian.com> 2004-02-24 Mike Kestner <mkestner@ximian.com>
* pango/AttrIterator.custom : manually implement SList method. * pango/AttrIterator.custom : manually implement SList method.

View File

@ -24,7 +24,7 @@ namespace Gnome {
private Hashtable Signals = new Hashtable (); private Hashtable Signals = new Hashtable ();
public event GtkSharp.UpdateHandler Update { public event UpdateHandler Update {
add { add {
if (EventList["update"] == null) if (EventList["update"] == null)
Signals["update"] = new GtkSharp.voidObjectAffineSVPintSignal(this, Handle, "update", value, System.Type.GetType("EventArgs")); Signals["update"] = new GtkSharp.voidObjectAffineSVPintSignal(this, Handle, "update", value, System.Type.GetType("EventArgs"));
@ -103,7 +103,7 @@ namespace Gnome {
} }
public event GtkSharp.DrawHandler Draw { public event DrawHandler Draw {
add { add {
throw new NotImplementedException (); throw new NotImplementedException ();
} }
@ -115,7 +115,7 @@ namespace Gnome {
} }
} }
public event GtkSharp.RenderHandler Render { public event RenderHandler Render {
add { add {
throw new NotImplementedException (); throw new NotImplementedException ();
} }
@ -127,7 +127,7 @@ namespace Gnome {
} }
} }
public event GtkSharp.PointHandler Point { public event PointHandler Point {
add { add {
throw new NotImplementedException (); throw new NotImplementedException ();
} }
@ -139,7 +139,7 @@ namespace Gnome {
} }
} }
public event GtkSharp.BoundsHandler Bounds { public event BoundsHandler Bounds {
add { add {
throw new NotImplementedException (); throw new NotImplementedException ();
} }

View File

@ -6,7 +6,7 @@
// 2002 (C) Copyright, Ximian, Inc. // 2002 (C) Copyright, Ximian, Inc.
// //
namespace GtkSharp { namespace Gnome {
using System; using System;

View File

@ -1,12 +1,12 @@
// //
// GtkSharp.DrawHandler.cs // Gnome.DrawHandler.cs
// //
// Author: Duncan Mak (duncan@ximian.com) // Author: Duncan Mak (duncan@ximian.com)
// //
// 2002 (C) Copyright, Ximian, Inc. // 2002 (C) Copyright, Ximian, Inc.
// //
namespace GtkSharp { namespace Gnome {
using System; using System;

View File

@ -1,12 +1,12 @@
// //
// GtkSharp.PointHandler.cs // Gnome.PointHandler.cs
// //
// Author: Duncan Mak (duncan@ximian.com) // Author: Duncan Mak (duncan@ximian.com)
// //
// 2002 (C) Copyright, Ximian, Inc. // 2002 (C) Copyright, Ximian, Inc.
// //
namespace GtkSharp { namespace Gnome {
using System; using System;

View File

@ -1,12 +1,12 @@
// //
// GtkSharp.RenderHandler.cs // Gnome.RenderHandler.cs
// //
// Author: Duncan Mak (duncan@ximian.com) // Author: Duncan Mak (duncan@ximian.com)
// //
// 2002 (C) Copyright, Ximian, Inc. // 2002 (C) Copyright, Ximian, Inc.
// //
namespace GtkSharp { namespace Gnome {
using System; using System;

View File

@ -1,12 +1,12 @@
// //
// GtkSharp.CanvasUpdateHandler.cs // Gnome.CanvasUpdateHandler.cs
// //
// Author: Duncan Mak (duncan@ximian.com) // Author: Duncan Mak (duncan@ximian.com)
// //
// 2002 (C) Copyright, Ximian, Inc. // 2002 (C) Copyright, Ximian, Inc.
// //
namespace GtkSharp { namespace Gnome {
using System; using System;

View File

@ -5,9 +5,9 @@ namespace GtkSharp {
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
public delegate void voidObjectAffineSVPintDelegate(IntPtr arg0, IntPtr arg1, ref Art.SVP arg2, int arg3, int key); internal delegate void voidObjectAffineSVPintDelegate(IntPtr arg0, IntPtr arg1, ref Art.SVP arg2, int arg3, int key);
public class voidObjectAffineSVPintSignal : SignalCallback { internal class voidObjectAffineSVPintSignal : SignalCallback {
private static voidObjectAffineSVPintDelegate _Delegate; private static voidObjectAffineSVPintDelegate _Delegate;