diff options
| author | JF <jf@codingfield.com> | 2020-08-22 16:34:46 +0200 |
|---|---|---|
| committer | Gitea <gitea@fake.local> | 2020-08-22 16:34:46 +0200 |
| commit | 3011dec66bb6b980e19d435c35bbb385ee200b88 (patch) | |
| tree | 89be9d38577becd3670b679f4a478f09b56d36b8 /src/DisplayApp/Screens/Screen.h | |
| parent | 3310401b3b20ed6d36de21e09001d2da9d5bce21 (diff) | |
| parent | a664dec07f894c88105c356816b49cac244ad319 (diff) | |
Merge branch 'paint' of JF/PineTime into develop
Diffstat (limited to 'src/DisplayApp/Screens/Screen.h')
| -rw-r--r-- | src/DisplayApp/Screens/Screen.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/DisplayApp/Screens/Screen.h b/src/DisplayApp/Screens/Screen.h index d8902317..dbf81a44 100644 --- a/src/DisplayApp/Screens/Screen.h +++ b/src/DisplayApp/Screens/Screen.h @@ -1,4 +1,6 @@ #pragma once + +#include <cstdint> #include "../TouchEvents.h" namespace Pinetime { @@ -18,6 +20,7 @@ namespace Pinetime { // Return false if the event hasn't been handled by the app, true if it has been handled virtual bool OnTouchEvent(TouchEvents event) { return false; } + virtual bool OnTouchEvent(uint16_t x, uint16_t y) { return false; } protected: DisplayApp* app; |
