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.
Dependents: TouchScreenGUIDemo
Diff: Font/FastFont/FastFontRenderer.h
- Revision:
- 8:a460cabc85ac
diff -r 303850a4b30c -r a460cabc85ac Font/FastFont/FastFontRenderer.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Font/FastFont/FastFontRenderer.h Mon Apr 11 16:54:02 2016 +0000
@@ -0,0 +1,22 @@
+#ifndef SIMPLEGUI_FAST_FONT_RENDERER_H
+#define SIMPLEGUI_FAST_FONT_RENDERER_H
+
+#include "FontRenderer.h"
+#include "FastFont.h"
+
+class FastFontRenderer : public FontRenderer
+{
+
+public:
+
+ FastFontRenderer();
+
+ virtual void putc(const char c, GraphicsDisplay* display, Font* font);
+ virtual void puts(const char* s, GraphicsDisplay* display, Font* font);
+// virtual void setFont(Font* font);
+
+private:
+ FastFont* _font;
+};
+
+#endif
\ No newline at end of file