2020-01-18 17:17:52 +00:00
|
|
|
#pragma once
|
2020-03-15 20:01:24 +00:00
|
|
|
#include "../TouchEvents.h"
|
2020-01-18 17:17:52 +00:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
2020-02-16 17:32:36 +00:00
|
|
|
class DisplayApp;
|
2020-01-18 17:17:52 +00:00
|
|
|
namespace Screens {
|
|
|
|
class Screen {
|
|
|
|
public:
|
2020-02-23 12:44:39 +00:00
|
|
|
Screen(DisplayApp* app) : app{app} {}
|
2020-02-16 17:32:36 +00:00
|
|
|
virtual ~Screen() = default;
|
2020-02-23 12:44:39 +00:00
|
|
|
|
|
|
|
// Return false if the app can be closed, true if it must continue to run
|
2020-02-23 15:14:03 +00:00
|
|
|
virtual bool Refresh() = 0;
|
2020-02-23 12:44:39 +00:00
|
|
|
|
|
|
|
// Return false if the button hasn't been handled by the app, true if it has been handled
|
|
|
|
virtual bool OnButtonPushed() { return false; }
|
2020-01-18 17:17:52 +00:00
|
|
|
|
2020-03-15 20:01:24 +00:00
|
|
|
// 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; }
|
|
|
|
|
2020-01-18 17:17:52 +00:00
|
|
|
protected:
|
2020-02-16 17:32:36 +00:00
|
|
|
DisplayApp* app;
|
2020-01-18 17:17:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|