2020-08-14 07:46:37 +00:00
|
|
|
#include "ApplicationList.h"
|
2020-11-15 15:49:36 +00:00
|
|
|
#include <lvgl/lvgl.h>
|
|
|
|
#include <array>
|
2020-08-14 07:46:37 +00:00
|
|
|
#include "Symbols.h"
|
2020-11-15 15:49:36 +00:00
|
|
|
#include "Tile.h"
|
|
|
|
#include "displayapp/Apps.h"
|
|
|
|
#include "../DisplayApp.h"
|
2020-08-14 07:46:37 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
ApplicationList::ApplicationList(Pinetime::Applications::DisplayApp* app,
|
|
|
|
Pinetime::Controllers::Settings& settingsController,
|
|
|
|
Pinetime::Controllers::Battery& batteryController,
|
|
|
|
Controllers::DateTime& dateTimeController)
|
|
|
|
: Screen(app),
|
|
|
|
settingsController {settingsController},
|
|
|
|
batteryController {batteryController},
|
|
|
|
dateTimeController {dateTimeController},
|
|
|
|
screens {app,
|
|
|
|
settingsController.GetAppMenu(),
|
|
|
|
{
|
|
|
|
[this]() -> std::unique_ptr<Screen> {
|
|
|
|
return CreateScreen1();
|
|
|
|
},
|
|
|
|
[this]() -> std::unique_ptr<Screen> {
|
|
|
|
return CreateScreen2();
|
|
|
|
},
|
|
|
|
//[this]() -> std::unique_ptr<Screen> { return CreateScreen3(); }
|
|
|
|
},
|
|
|
|
Screens::ScreenListModes::UpDown} {
|
|
|
|
}
|
2020-08-14 07:46:37 +00:00
|
|
|
|
|
|
|
ApplicationList::~ApplicationList() {
|
|
|
|
lv_obj_clean(lv_scr_act());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ApplicationList::Refresh() {
|
2021-04-18 17:28:14 +00:00
|
|
|
if (running)
|
2020-08-14 07:46:37 +00:00
|
|
|
running = screens.Refresh();
|
|
|
|
return running;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ApplicationList::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
|
|
|
return screens.OnTouchEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Screen> ApplicationList::CreateScreen1() {
|
2021-04-18 17:28:14 +00:00
|
|
|
std::array<Screens::Tile::Applications, 6> applications {{
|
|
|
|
{Symbols::stopWatch, Apps::StopWatch},
|
|
|
|
{Symbols::music, Apps::Music},
|
|
|
|
{Symbols::map, Apps::Navigation},
|
2021-04-26 20:29:48 +00:00
|
|
|
{Symbols::shoe, Apps::Steps},
|
2021-04-18 17:28:14 +00:00
|
|
|
{Symbols::heartBeat, Apps::HeartRate},
|
2021-05-20 18:43:54 +00:00
|
|
|
{Symbols::hourGlass, Apps::Timer},
|
2021-04-18 17:28:14 +00:00
|
|
|
}};
|
2020-08-14 07:46:37 +00:00
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
return std::make_unique<Screens::Tile>(0, 2, app, settingsController, batteryController, dateTimeController, applications);
|
2020-08-14 07:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Screen> ApplicationList::CreateScreen2() {
|
2021-04-18 17:28:14 +00:00
|
|
|
std::array<Screens::Tile::Applications, 6> applications {{
|
|
|
|
{Symbols::paintbrush, Apps::Paint},
|
|
|
|
{Symbols::paddle, Apps::Paddle},
|
|
|
|
{"2", Apps::Twos},
|
2021-04-26 20:29:48 +00:00
|
|
|
{"M", Apps::Motion},
|
2021-06-12 13:06:58 +00:00
|
|
|
{"b", Apps::Metronome},
|
2021-04-18 17:28:14 +00:00
|
|
|
{"", Apps::None},
|
|
|
|
}};
|
2020-08-14 07:46:37 +00:00
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
return std::make_unique<Screens::Tile>(1, 2, app, settingsController, batteryController, dateTimeController, applications);
|
2020-08-14 07:46:37 +00:00
|
|
|
}
|
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
/*std::unique_ptr<Screen> ApplicationList::CreateScreen3() {
|
2020-08-14 07:46:37 +00:00
|
|
|
std::array<Screens::Tile::Applications, 6> applications {
|
|
|
|
{{"A", Apps::Meter},
|
2021-02-23 20:18:59 +00:00
|
|
|
{"B", Apps::Navigation},
|
2020-08-14 07:46:37 +00:00
|
|
|
{"C", Apps::Clock},
|
|
|
|
{"D", Apps::Music},
|
|
|
|
{"E", Apps::SysInfo},
|
|
|
|
{"F", Apps::Brightness}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-04-04 02:08:51 +00:00
|
|
|
return std::make_unique<Screens::Tile>(2, 3, app, settingsController, batteryController, dateTimeController, applications);
|
|
|
|
}*/
|