1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
using System;
using Mono.Addins;
namespace TextEditor
{
[ExtensionNode ("MenuItem")]
public class MenuItemNode: MenuNode
{
[NodeAttribute]
string label;
[NodeAttribute]
string icon;
[NodeAttribute]
string commandType;
static Gtk.AccelGroup accelGroup = new Gtk.AccelGroup ();
public override Gtk.MenuItem GetMenuItem ()
{
Gtk.MenuItem item;
if (icon != null)
item = new Gtk.ImageMenuItem (icon, accelGroup);
else
item = new Gtk.MenuItem (label);
item.Activated += OnClicked;
return item;
}
void OnClicked (object s, EventArgs a)
{
ICommand command = (ICommand) Addin.CreateInstance (commandType);
command.Run ();
}
}
}
|