Foundation classes for a basic GUI implementing simple widgets and events
Dependents: TouchScreenGUIDemo
Font/FastFont/FastFontRenderer.h
- Committer:
- duncanFrance
- Date:
- 2016-05-28
- Revision:
- 18:d849f3ada858
- Parent:
- 8:a460cabc85ac
File content as of revision 18:d849f3ada858:
#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