1a1f5e1702
* generator/ObjectGen.cs : don't gen a Signals hash per class. * generator/Signal.cs : gen checks for [ConnectBefore]. * generator/SignalHandler.cs : add connect_flags param to ctor. * glib/ConnectBeforeAttribute.cs : new attr * glib/Makefile.am : add new file * glib/Object.cs : add before/after hashes and EventLists * gnome/CanvasProxy.cs : use AfterSignals and AfterHandlers. svn path=/trunk/gtk-sharp/; revision=24157
15 lines
247 B
C#
15 lines
247 B
C#
// ConnectBeforeAttribute.cs
|
|
//
|
|
// Author: Mike Kestner <mkestner@ximian.com>
|
|
//
|
|
// (C) 2004 Novell, Inc.
|
|
|
|
namespace GLib {
|
|
|
|
using System;
|
|
|
|
public sealed class ConnectBeforeAttribute : Attribute
|
|
{
|
|
public ConnectBeforeAttribute () {}
|
|
}
|
|
}
|