Foundation classes for a basic GUI implementing simple widgets and events. (Fork for custom changes.)

Fork of SimpleGUI by Duncan McIntyre

Committer:
elh
Date:
Tue Oct 18 19:43:15 2016 +0000
Revision:
20:ef07d42ea062
Parent:
12:63db16fea709
Initialize Textwidgets _text to NULL preventing crash if widget is draw until a text was set.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
duncanFrance 12:63db16fea709 1 #ifndef SIMPLEGUI_EVENT_HANDLER_FUNCTION_H
duncanFrance 12:63db16fea709 2 #define SIMPLEGUI_EVENT_HANDLER_FUNCTION_H
duncanFrance 12:63db16fea709 3
duncanFrance 12:63db16fea709 4 #include "Event.h"
duncanFrance 12:63db16fea709 5
duncanFrance 12:63db16fea709 6 typedef void (* EventHandlerFunction)(Event e);
duncanFrance 12:63db16fea709 7
duncanFrance 12:63db16fea709 8 #endif