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

Fork of SimpleGUI by Duncan McIntyre

Committer:
duncanFrance
Date:
Sun Mar 27 15:37:32 2016 +0000
Revision:
4:27546fb8b670
Parent:
2:bb9183379488
Child:
5:b7ce5721a0b5
Added Bitmap_FG_BG to help render monochrome bitmaps

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 4:27546fb8b670 11 #include "Widgets/BitmapWidget.h"
duncanFrance 0:0a590815d51c 12
duncanFrance 0:0a590815d51c 13 #endif