Cornelius Bezuidenhout / Mbed OS Heiko

Dependencies:   BSP_DISCO_F746NG F746_GUI LCD_DISCO_F746NG SDFileSystem TS_DISCO_F746NG ResistiveTouchController Map CYS8218Controller MedianFilter

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers MainMenuScreen.hpp Source File

MainMenuScreen.hpp

00001 #ifndef MAIN_MENU_SCREEN_HPP
00002 #define MAIN_MENU_SCREEN_HPP
00003 
00004 #include "Screen.hpp"
00005 
00006 class MainMenuScreen : public Screen
00007 {
00008 public:
00009   MainMenuScreen(int *nextScreen);
00010 
00011   void Draw();
00012   void Process();
00013 
00014 private:
00015   Label _lbTitle;
00016   Button _btAutomatic;
00017   Button _btManual;
00018   Button _btSettings;
00019 };
00020 #endif