comparison mde/content/miscContent.d @ 167:620d4ea30228

Context menus: added a clipboard (functions accessible from main menu rather than context menu).
author Diggory Hardy <diggory.hardy@gmail.com>
date Sat, 27 Jun 2009 11:57:26 +0200
parents 9f035cd139c6
children
comparison
equal deleted inserted replaced
166:55667d048c31 167:620d4ea30228
29 +/ 29 +/
30 30
31 /** A Content with no value but able to pass on an event. 31 /** A Content with no value but able to pass on an event.
32 * 32 *
33 * The point being that a button can be tied to one of these. */ 33 * The point being that a button can be tied to one of these. */
34 class EventContent : Content { 34 class EventContent : Content, IEventContent {
35 this (char[] symbol) { 35 this (char[] symbol) {
36 super (symbol); 36 super (symbol);
37 } 37 }
38 } 38 }