2020-01-18 18:17:52 +01:00
|
|
|
#pragma once
|
2020-08-21 11:55:59 +02:00
|
|
|
|
|
|
|
#include <cstdint>
|
2021-10-13 22:08:35 +02:00
|
|
|
#include "displayapp/TouchEvents.h"
|
2021-07-19 15:26:12 +02:00
|
|
|
#include <lvgl/lvgl.h>
|
2020-01-18 18:17:52 +01:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
2020-02-16 18:32:36 +01:00
|
|
|
class DisplayApp;
|
2020-01-18 18:17:52 +01:00
|
|
|
namespace Screens {
|
2021-02-24 20:40:24 +01:00
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
template <class T> class DirtyValue {
|
2021-04-24 11:00:45 +02:00
|
|
|
public:
|
2021-04-18 19:28:14 +02:00
|
|
|
DirtyValue() = default; // Use NSDMI
|
|
|
|
explicit DirtyValue(T const& v) : value {v} {
|
|
|
|
} // Use MIL and const-lvalue-ref
|
2021-07-13 20:09:04 +02:00
|
|
|
bool IsUpdated() {
|
|
|
|
if (this->isUpdated) {
|
|
|
|
this->isUpdated = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2021-04-18 19:28:14 +02:00
|
|
|
}
|
|
|
|
T const& Get() {
|
|
|
|
this->isUpdated = false;
|
|
|
|
return value;
|
|
|
|
} // never expose a non-const lvalue-ref
|
|
|
|
DirtyValue& operator=(const T& other) {
|
|
|
|
if (this->value != other) {
|
|
|
|
this->value = other;
|
|
|
|
this->isUpdated = true;
|
2021-02-24 20:40:24 +01:00
|
|
|
}
|
2021-04-18 19:28:14 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2021-04-24 11:00:45 +02:00
|
|
|
private:
|
2021-04-18 19:28:14 +02:00
|
|
|
T value {}; // NSDMI - default initialise type
|
|
|
|
bool isUpdated {true}; // NSDMI - use brace initilisation
|
2021-02-24 20:40:24 +01:00
|
|
|
};
|
2020-02-23 13:44:39 +01:00
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
class Screen {
|
2021-07-19 15:26:12 +02:00
|
|
|
private:
|
|
|
|
virtual void Refresh() {
|
|
|
|
}
|
|
|
|
|
2021-04-24 11:00:45 +02:00
|
|
|
public:
|
2021-04-18 19:28:14 +02:00
|
|
|
explicit Screen(DisplayApp* app) : app {app} {
|
|
|
|
}
|
|
|
|
virtual ~Screen() = default;
|
2020-02-23 13:44:39 +01:00
|
|
|
|
2021-07-19 15:26:12 +02:00
|
|
|
static void RefreshTaskCallback(lv_task_t* task);
|
|
|
|
|
|
|
|
bool IsRunning() const {
|
|
|
|
return running;
|
|
|
|
}
|
2020-01-18 18:17:52 +01:00
|
|
|
|
2021-04-18 19:28:14 +02: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-03-15 21:01:24 +01:00
|
|
|
|
2021-04-18 19:28:14 +02:00
|
|
|
/** @return false if the event hasn't been handled by the app, true if it has been handled */
|
2021-07-15 23:07:55 +02:00
|
|
|
// Returning true will cancel lvgl tap
|
2021-04-18 19:28:14 +02:00
|
|
|
virtual bool OnTouchEvent(TouchEvents event) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
virtual bool OnTouchEvent(uint16_t x, uint16_t y) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-04 04:08:51 +02:00
|
|
|
|
2021-04-24 11:00:45 +02:00
|
|
|
protected:
|
2021-04-18 19:28:14 +02:00
|
|
|
DisplayApp* app;
|
|
|
|
bool running = true;
|
2020-01-18 18:17:52 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|