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:
parent
b2059ab3fd
commit
96ab93e0f6
8 changed files with 22 additions and 16 deletions
|
@ -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>
|
||||
|
||||
* pango/AttrIterator.custom : manually implement SList method.
|
||||
|
|
|
@ -24,7 +24,7 @@ namespace Gnome {
|
|||
|
||||
private Hashtable Signals = new Hashtable ();
|
||||
|
||||
public event GtkSharp.UpdateHandler Update {
|
||||
public event UpdateHandler Update {
|
||||
add {
|
||||
if (EventList["update"] == null)
|
||||
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 {
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
@ -115,7 +115,7 @@ namespace Gnome {
|
|||
}
|
||||
}
|
||||
|
||||
public event GtkSharp.RenderHandler Render {
|
||||
public event RenderHandler Render {
|
||||
add {
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
@ -127,7 +127,7 @@ namespace Gnome {
|
|||
}
|
||||
}
|
||||
|
||||
public event GtkSharp.PointHandler Point {
|
||||
public event PointHandler Point {
|
||||
add {
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
@ -139,7 +139,7 @@ namespace Gnome {
|
|||
}
|
||||
}
|
||||
|
||||
public event GtkSharp.BoundsHandler Bounds {
|
||||
public event BoundsHandler Bounds {
|
||||
add {
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
// 2002 (C) Copyright, Ximian, Inc.
|
||||
//
|
||||
|
||||
namespace GtkSharp {
|
||||
namespace Gnome {
|
||||
|
||||
using System;
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
//
|
||||
// GtkSharp.DrawHandler.cs
|
||||
// Gnome.DrawHandler.cs
|
||||
//
|
||||
// Author: Duncan Mak (duncan@ximian.com)
|
||||
//
|
||||
// 2002 (C) Copyright, Ximian, Inc.
|
||||
//
|
||||
|
||||
namespace GtkSharp {
|
||||
namespace Gnome {
|
||||
|
||||
using System;
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
//
|
||||
// GtkSharp.PointHandler.cs
|
||||
// Gnome.PointHandler.cs
|
||||
//
|
||||
// Author: Duncan Mak (duncan@ximian.com)
|
||||
//
|
||||
// 2002 (C) Copyright, Ximian, Inc.
|
||||
//
|
||||
|
||||
namespace GtkSharp {
|
||||
namespace Gnome {
|
||||
|
||||
using System;
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
//
|
||||
// GtkSharp.RenderHandler.cs
|
||||
// Gnome.RenderHandler.cs
|
||||
//
|
||||
// Author: Duncan Mak (duncan@ximian.com)
|
||||
//
|
||||
// 2002 (C) Copyright, Ximian, Inc.
|
||||
//
|
||||
|
||||
namespace GtkSharp {
|
||||
namespace Gnome {
|
||||
|
||||
using System;
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
//
|
||||
// GtkSharp.CanvasUpdateHandler.cs
|
||||
// Gnome.CanvasUpdateHandler.cs
|
||||
//
|
||||
// Author: Duncan Mak (duncan@ximian.com)
|
||||
//
|
||||
// 2002 (C) Copyright, Ximian, Inc.
|
||||
//
|
||||
|
||||
namespace GtkSharp {
|
||||
namespace Gnome {
|
||||
|
||||
using System;
|
||||
|
||||
|
|
|
@ -5,9 +5,9 @@ namespace GtkSharp {
|
|||
using System;
|
||||
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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue