2020-03-22 12:03:17 +01:00
|
|
|
#pragma once
|
|
|
|
|
2021-10-13 22:08:35 +02:00
|
|
|
#include "displayapp/screens/Screen.h"
|
2022-07-05 08:41:09 +03:00
|
|
|
#include "displayapp/widgets/PageIndicator.h"
|
2020-08-14 09:46:37 +02:00
|
|
|
#include <lvgl/lvgl.h>
|
2020-03-22 12:03:17 +01:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
2020-08-14 09:46:37 +02:00
|
|
|
|
2020-08-14 10:05:44 +02:00
|
|
|
class Label : public Screen {
|
2021-04-24 12:00:45 +03:00
|
|
|
public:
|
2021-04-18 20:28:14 +03:00
|
|
|
Label(uint8_t screenID, uint8_t numScreens, DisplayApp* app, lv_obj_t* labelText);
|
|
|
|
~Label() override;
|
2020-08-14 09:46:37 +02:00
|
|
|
|
2021-04-24 12:00:45 +03:00
|
|
|
private:
|
2021-04-18 20:28:14 +03:00
|
|
|
lv_obj_t* labelText = nullptr;
|
2022-07-05 08:41:09 +03:00
|
|
|
Widgets::PageIndicator pageIndicator;
|
2020-08-14 09:46:37 +02:00
|
|
|
};
|
2020-03-22 12:03:17 +01:00
|
|
|
}
|
|
|
|
}
|
2021-07-19 16:26:12 +03:00
|
|
|
}
|