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

Fork of SimpleGUI by Duncan McIntyre

SimpleGUI.h

Committer:
duncanFrance
Date:
2016-03-28
Revision:
5:b7ce5721a0b5
Parent:
4:27546fb8b670
Child:
7:303850a4b30c

File content as of revision 5:b7ce5721a0b5:

#ifndef SIMPLEGUI_H
#define SIMPLEGUI_H

/**
* Just include all the other parts of the framework
**/
#include "Events/EventDispatcher.h"
#include "Events/EventSource.h"
#include "Font.h"
#include "Widgets/TextWidget.h"
#include "Widgets/BitmapWidget.h"
#include "Widgets/ContainerWidget.h"

#endif