Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SimpleGUI by
SimpleGUI.h@20:ef07d42ea062, 2016-10-18 (annotated)
- Committer:
- elh
- Date:
- Tue Oct 18 19:43:15 2016 +0000
- Revision:
- 20:ef07d42ea062
- Parent:
- 12:63db16fea709
Initialize Textwidgets _text to NULL preventing crash if widget is draw until a text was set.
Who changed what in which revision?
| User | Revision | Line number | New 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 | 8:a460cabc85ac | 9 | #include "Font/Font.h" |
| duncanFrance | 8:a460cabc85ac | 10 | #include "Font/UGFont/UGFontRenderer.h" |
| duncanFrance | 8:a460cabc85ac | 11 | #include "Font/FastFont/FastFontRenderer.h" |
| duncanFrance | 0:0a590815d51c | 12 | #include "Widgets/TextWidget.h" |
| duncanFrance | 4:27546fb8b670 | 13 | #include "Widgets/BitmapWidget.h" |
| duncanFrance | 5:b7ce5721a0b5 | 14 | #include "Widgets/ContainerWidget.h" |
| duncanFrance | 11:b485561aa112 | 15 | #include "Widgets/SpinnerWidget.h" |
| duncanFrance | 8:a460cabc85ac | 16 | #include "GUI.h" |
| duncanFrance | 12:63db16fea709 | 17 | #include "GraphicsContext.h" |
| duncanFrance | 0:0a590815d51c | 18 | |
| duncanFrance | 0:0a590815d51c | 19 | #endif |
