Foundation classes for a basic GUI implementing simple widgets and events

Dependents:   TouchScreenGUIDemo

Committer:
duncanFrance
Date:
Sat May 28 14:50:14 2016 +0000
Revision:
18:d849f3ada858
Parent:
12:63db16fea709
Moved the event queue into the EventDispatcher; Improved event handling across Window/Widget

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