comparison doodle/tk/palette.d @ 51:0eaf39fda206

First cut at palette class
author daveb
date Wed, 04 Aug 2010 16:36:32 +0930
parents
children 30ecedfe2ce2
comparison
equal deleted inserted replaced
50:dfa1e219eafe 51:0eaf39fda206
1 module doodle.tk.palette;
2
3 interface IPalette {
4 int add(in string iconPath, in string tooltipText, void delegate(int) dg);
5 void remove(in int id);
6 void activate(in int id);
7 }