mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:55:35 +00:00
f1011f687e
* glade/HandlerNotFoundExeception.cs: Added. * glade/Makefile.in * glade/XML.custom: Support for autoconnecting signals using reflection. * glib/SignalAttribute.cs: Added. * generator/Signal.cs: Mark events generated from glib signals with the "Signal" attribute. * sample/GladeTest.cs * sample/Makefile.in * sample/test.glade: Test of signal autoconnection. svn path=/trunk/gtk-sharp/; revision=7430
42 lines
691 B
C#
42 lines
691 B
C#
//
|
|
// SignalAttribute.cs
|
|
//
|
|
// Author:
|
|
// Ricardo Fernández Pascual <ric@users.sourceforge.net>
|
|
//
|
|
// (C) Ricardo Fernández Pascual <ric@users.sourceforge.net>
|
|
//
|
|
|
|
namespace GLib {
|
|
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// Marks events genrated from glib signals
|
|
/// </summary>
|
|
///
|
|
/// <remarks>
|
|
/// This attribute indentifies events generated from glib signals
|
|
/// and allows obtaining its original name.
|
|
/// </remarks>
|
|
[Serializable]
|
|
public class SignalAttribute : Attribute
|
|
{
|
|
private string cname;
|
|
|
|
public SignalAttribute (string cname)
|
|
{
|
|
this.cname = cname;
|
|
}
|
|
|
|
private SignalAttribute () {}
|
|
|
|
public string CName
|
|
{
|
|
get {
|
|
return cname;
|
|
}
|
|
}
|
|
}
|
|
}
|