25 lines
443 B
C#
25 lines
443 B
C#
|
|
// This file was generated by the Gtk# code generator.
|
||
|
|
// Any changes made will be lost if regenerated.
|
||
|
|
|
||
|
|
namespace GLib {
|
||
|
|
|
||
|
|
using System;
|
||
|
|
|
||
|
|
public delegate void ActionEnabledChangedHandler(object o, ActionEnabledChangedArgs args);
|
||
|
|
|
||
|
|
public class ActionEnabledChangedArgs : GLib.SignalArgs {
|
||
|
|
public string ActionName{
|
||
|
|
get {
|
||
|
|
return (string) Args [0];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
public bool Enabled{
|
||
|
|
get {
|
||
|
|
return (bool) Args [1];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|