Foundation classes for a basic GUI implementing simple widgets and events

Dependents:   TouchScreenGUIDemo

SimpleGUI.h

Committer:
duncanFrance
Date:
2016-04-10
Revision:
7:303850a4b30c
Parent:
5:b7ce5721a0b5
Child:
8:a460cabc85ac

File content as of revision 7:303850a4b30c:

#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 "UGFontRenderer.h"
#include "Widgets/TextWidget.h"
#include "Widgets/BitmapWidget.h"
#include "Widgets/ContainerWidget.h"

#endif