2020-02-16 17:32:36 +00:00
|
|
|
#include <libs/lvgl/src/lv_core/lv_obj.h>
|
|
|
|
#include <libs/lvgl/src/lv_font/lv_font.h>
|
|
|
|
#include <libs/lvgl/lvgl.h>
|
|
|
|
#include "Tile.h"
|
|
|
|
#include <DisplayApp/DisplayApp.h>
|
2020-07-04 11:58:15 +00:00
|
|
|
#include "Symbols.h"
|
|
|
|
#include "../../Version.h"
|
2020-02-16 17:32:36 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
|
|
|
|
extern lv_font_t jetbrains_mono_bold_20;
|
|
|
|
|
|
|
|
static void event_handler(lv_obj_t * obj, lv_event_t event) {
|
|
|
|
Tile* screen = static_cast<Tile *>(obj->user_data);
|
2020-02-23 15:14:03 +00:00
|
|
|
uint32_t* eventDataPtr = (uint32_t*) lv_event_get_data();
|
|
|
|
uint32_t eventData = *eventDataPtr;
|
|
|
|
screen->OnObjectEvent(obj, event, eventData);
|
2020-02-16 17:32:36 +00:00
|
|
|
}
|
|
|
|
|
2020-08-14 07:46:37 +00:00
|
|
|
Tile::Tile(DisplayApp* app, std::array<Applications, 6>& applications) : Screen(app) {
|
|
|
|
for(int i = 0, appIndex = 0; i < 8; i++) {
|
|
|
|
if(i == 3) btnm_map1[i] = "\n";
|
|
|
|
else if(i == 7) btnm_map1[i] = "";
|
|
|
|
else {
|
|
|
|
btnm_map1[i] = applications[appIndex].icon;
|
|
|
|
apps[appIndex] = applications[appIndex].application;
|
|
|
|
appIndex++;
|
|
|
|
}
|
|
|
|
}
|
2020-02-26 19:49:26 +00:00
|
|
|
modal.reset(new Modal(app));
|
2020-02-16 17:32:36 +00:00
|
|
|
|
2020-03-01 15:01:53 +00:00
|
|
|
btnm1 = lv_btnm_create(lv_scr_act(), NULL);
|
2020-02-16 17:32:36 +00:00
|
|
|
lv_btnm_set_map(btnm1, btnm_map1);
|
|
|
|
lv_obj_set_size(btnm1, LV_HOR_RES, LV_VER_RES);
|
|
|
|
|
|
|
|
btnm1->user_data = this;
|
|
|
|
lv_obj_set_event_cb(btnm1, event_handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
Tile::~Tile() {
|
|
|
|
lv_obj_clean(lv_scr_act());
|
|
|
|
}
|
|
|
|
|
2020-02-23 15:14:03 +00:00
|
|
|
bool Tile::Refresh() {
|
2020-02-23 12:44:39 +00:00
|
|
|
return running;
|
2020-02-16 17:32:36 +00:00
|
|
|
}
|
|
|
|
|
2020-02-23 15:14:03 +00:00
|
|
|
void Tile::OnObjectEvent(lv_obj_t *obj, lv_event_t event, uint32_t buttonId) {
|
|
|
|
if(event == LV_EVENT_VALUE_CHANGED) {
|
2020-08-14 07:46:37 +00:00
|
|
|
app->StartApp(apps[buttonId]);
|
|
|
|
running = false;
|
2020-02-16 17:32:36 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-23 12:44:39 +00:00
|
|
|
|
|
|
|
bool Tile::OnButtonPushed() {
|
2020-08-14 07:46:37 +00:00
|
|
|
app->StartApp(Apps::Clock);
|
2020-02-23 12:44:39 +00:00
|
|
|
running = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-26 19:49:26 +00:00
|
|
|
|