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
GUI.h
00001 #ifndef SIMPLEGUI_GUI_H 00002 #define SIMPLEGUI_GUI_H 00003 00004 class GUI; 00005 00006 #include "GraphicsContext.h" 00007 #include "Window.h" 00008 00009 /** 00010 * A singleton class to hold the framework components 00011 **/ 00012 class GUI 00013 { 00014 00015 public: 00016 00017 GUI(GraphicsContext* context); 00018 00019 GraphicsContext* getGraphicsContext(); 00020 Window *rootWindow(); 00021 00022 void run(); 00023 00024 private: 00025 00026 GraphicsContext* _context; 00027 Window _rootWindow; 00028 00029 }; 00030 #endif
Generated on Tue Jul 12 2022 22:27:14 by
