Buttons changing color when tapped.

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Committer:
fzajdel
Date:
Sun May 19 11:59:32 2019 +0000
Revision:
2:bd49dd9c7bd6
Parent:
0:6d5a5f60d228
Touch screen with buttons

Who changed what in which revision?

UserRevisionLine numberNew contents of line
fzajdel 0:6d5a5f60d228 1 #ifndef widget_h
fzajdel 0:6d5a5f60d228 2 #define widget_h
fzajdel 0:6d5a5f60d228 3 #include "figure.h"
fzajdel 0:6d5a5f60d228 4
fzajdel 0:6d5a5f60d228 5 class Widget{
fzajdel 0:6d5a5f60d228 6 public:
fzajdel 0:6d5a5f60d228 7 virtual Figure* GetFigure() = 0;
fzajdel 0:6d5a5f60d228 8 virtual void Check(uint16_t , uint16_t) = 0;
fzajdel 0:6d5a5f60d228 9 };
fzajdel 0:6d5a5f60d228 10
fzajdel 0:6d5a5f60d228 11
fzajdel 0:6d5a5f60d228 12 #endif