58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <lvgl/lvgl.h>
|
|
#include <cstdint>
|
|
#include <memory>
|
|
#include "displayapp/screens/Screen.h"
|
|
#include "displayapp/Apps.h"
|
|
#include "components/datetime/DateTimeController.h"
|
|
#include "components/settings/Settings.h"
|
|
#include "components/datetime/DateTimeController.h"
|
|
#include "components/battery/BatteryController.h"
|
|
#include <displayapp/screens/BatteryIcon.h>
|
|
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Screens {
|
|
class Tile : public Screen {
|
|
public:
|
|
struct Applications {
|
|
const char* icon;
|
|
Pinetime::Applications::Apps application;
|
|
};
|
|
|
|
explicit Tile(uint8_t screenID,
|
|
uint8_t numScreens,
|
|
DisplayApp* app,
|
|
Controllers::Settings& settingsController,
|
|
Pinetime::Controllers::Battery& batteryController,
|
|
Controllers::DateTime& dateTimeController,
|
|
std::array<Applications, 6>& applications);
|
|
|
|
~Tile() override;
|
|
|
|
void UpdateScreen();
|
|
void OnValueChangedEvent(lv_obj_t* obj, uint32_t buttonId);
|
|
|
|
private:
|
|
Pinetime::Controllers::Battery& batteryController;
|
|
Controllers::DateTime& dateTimeController;
|
|
|
|
lv_task_t* taskUpdate;
|
|
|
|
lv_obj_t* label_time;
|
|
lv_point_t pageIndicatorBasePoints[2];
|
|
lv_point_t pageIndicatorPoints[2];
|
|
lv_obj_t* pageIndicatorBase;
|
|
lv_obj_t* pageIndicator;
|
|
lv_obj_t* btnm1;
|
|
|
|
BatteryIcon batteryIcon;
|
|
|
|
const char* btnmMap[8];
|
|
Pinetime::Applications::Apps apps[6];
|
|
};
|
|
}
|
|
}
|
|
}
|