aboutsummaryrefslogtreecommitdiffstats
path: root/src/DisplayApp/Screens/Tile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/DisplayApp/Screens/Tile.h')
-rw-r--r--src/DisplayApp/Screens/Tile.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/DisplayApp/Screens/Tile.h b/src/DisplayApp/Screens/Tile.h
index 03cfb6d2..630fc666 100644
--- a/src/DisplayApp/Screens/Tile.h
+++ b/src/DisplayApp/Screens/Tile.h
@@ -18,10 +18,10 @@ namespace Pinetime {
explicit Tile(DisplayApp* app);
~Tile() override;
- bool Refresh(bool fullRefresh) override;
+ bool Refresh() override;
bool OnButtonPushed() override;
- void OnObjectEvent(lv_obj_t* obj, lv_event_t event);
+ void OnObjectEvent(lv_obj_t* obj, lv_event_t event, uint32_t buttonId);
private:
@@ -50,7 +50,8 @@ namespace Pinetime {
uint32_t clickCount = 0 ;
uint32_t previousClickCount = 0;
- void StartApp();
+ void StartClockApp();
+ void StartTestApp();
bool running = true;
};
}