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

Fork of SimpleGUI by Duncan McIntyre

SimpleGUI.h

Committer:
elh
Date:
2016-10-18
Revision:
20:ef07d42ea062
Parent:
12:63db16fea709

File content as of revision 20:ef07d42ea062:

#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/Font.h"
#include "Font/UGFont/UGFontRenderer.h"
#include "Font/FastFont/FastFontRenderer.h"
#include "Widgets/TextWidget.h"
#include "Widgets/BitmapWidget.h"
#include "Widgets/ContainerWidget.h"
#include "Widgets/SpinnerWidget.h"
#include "GUI.h"
#include "GraphicsContext.h"

#endif