File: ToolButtonNode.cs

package info (click to toggle)
mono-addins 0.4-8
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,128 kB
  • ctags: 8,309
  • sloc: cs: 36,303; makefile: 1,091; sh: 949; xml: 96
file content (28 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (4)
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

using System;
using Mono.Addins;

namespace TextEditor
{
	public class ToolButtonNode: ToolbarNode
	{
		[NodeAttribute]
		string icon;
		
		[NodeAttribute]
		string commandType;
		
		public override Gtk.ToolItem GetToolItem ()
		{
			Gtk.ToolButton but = new Gtk.ToolButton (icon);
			but.Clicked += OnClicked;
			return but;
		}
		
		void OnClicked (object s, EventArgs a)
		{
			ICommand command = (ICommand) Addin.CreateInstance (commandType);
			command.Run ();
		}
	}
}