2020-10-18 11:35:36 -04:00
|
|
|
#pragma once
|
|
|
|
|
2020-10-19 15:46:41 -04:00
|
|
|
#include <functional>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-10-18 11:35:36 -04:00
|
|
|
#include "Screen.h"
|
2020-10-19 15:46:41 -04:00
|
|
|
#include "ScreenList.h"
|
|
|
|
|
2020-10-18 11:35:36 -04:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
class Notifications : public Screen {
|
|
|
|
public:
|
2020-10-20 14:57:39 -04:00
|
|
|
enum class Modes {Normal, Preview};
|
|
|
|
explicit Notifications(DisplayApp* app, Pinetime::Controllers::NotificationManager& notificationManager, Modes mode);
|
2020-10-18 11:35:36 -04:00
|
|
|
~Notifications() override;
|
|
|
|
|
|
|
|
bool Refresh() override;
|
|
|
|
bool OnButtonPushed() override;
|
|
|
|
bool OnTouchEvent(Pinetime::Applications::TouchEvents event) override;
|
|
|
|
|
|
|
|
private:
|
2020-10-19 15:46:41 -04:00
|
|
|
bool running = true;
|
|
|
|
|
2020-10-20 14:57:39 -04:00
|
|
|
class NotificationItem {
|
2020-10-18 11:35:36 -04:00
|
|
|
public:
|
2020-10-20 14:57:39 -04:00
|
|
|
NotificationItem(const char* title, const char* msg, uint8_t notifNr, uint8_t notifNb, Modes mode);
|
|
|
|
~NotificationItem();
|
|
|
|
bool Refresh() {return false;}
|
2020-10-19 15:46:41 -04:00
|
|
|
|
2020-10-18 11:35:36 -04:00
|
|
|
private:
|
2020-10-19 15:46:41 -04:00
|
|
|
uint8_t notifNr = 0;
|
|
|
|
uint8_t notifNb = 0;
|
|
|
|
char pageText[4];
|
2020-10-20 14:57:39 -04:00
|
|
|
|
|
|
|
lv_obj_t* container1;
|
|
|
|
lv_obj_t* t1;
|
|
|
|
lv_obj_t* l1;
|
|
|
|
Modes mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NotificationData {
|
|
|
|
const char* title;
|
|
|
|
const char* text;
|
2020-10-18 11:35:36 -04:00
|
|
|
};
|
2020-10-20 14:57:39 -04:00
|
|
|
Pinetime::Controllers::NotificationManager& notificationManager;
|
|
|
|
Modes mode = Modes::Normal;
|
|
|
|
std::unique_ptr<NotificationItem> currentItem;
|
|
|
|
Controllers::NotificationManager::Notification::Id currentId;
|
|
|
|
bool validDisplay = false;
|
|
|
|
|
|
|
|
lv_point_t timeoutLinePoints[2] { {0, 237}, {239, 237} };
|
|
|
|
lv_obj_t* timeoutLine;
|
|
|
|
uint32_t timeoutTickCountStart;
|
|
|
|
uint32_t timeoutTickCountEnd;
|
2020-10-18 11:35:36 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|