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

Fork of SimpleGUI by Duncan McIntyre

Committer:
duncanFrance
Date:
Fri Mar 25 18:58:50 2016 +0000
Revision:
2:bb9183379488
Parent:
1:48796b602c86
Child:
4:27546fb8b670
Added Font class

Who changed what in which revision?

UserRevisionLine numberNew contents of line
duncanFrance 0:0a590815d51c 1 #ifndef SIMPLEGUI_H
duncanFrance 0:0a590815d51c 2 #define SIMPLEGUI_H
duncanFrance 0:0a590815d51c 3
duncanFrance 0:0a590815d51c 4 /**
duncanFrance 0:0a590815d51c 5 * Just include all the other parts of the framework
duncanFrance 0:0a590815d51c 6 **/
duncanFrance 0:0a590815d51c 7 #include "Events/EventDispatcher.h"
duncanFrance 1:48796b602c86 8 #include "Events/EventSource.h"
duncanFrance 2:bb9183379488 9 #include "Font.h"
duncanFrance 0:0a590815d51c 10 #include "Widgets/TextWidget.h"
duncanFrance 0:0a590815d51c 11
duncanFrance 0:0a590815d51c 12 #endif