summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/PassKey.cpp
diff options
context:
space:
mode:
authorAvamander <avamander@gmail.com>2021-12-09 22:20:29 +0200
committerGitHub <noreply@github.com>2021-12-09 22:20:29 +0200
commite8c1302cd65dbd804d152227ae76aa786d6f0b60 (patch)
tree572ece371e587fb6e5c3b531473a528305ba1809 /src/displayapp/screens/PassKey.cpp
parent5f50f0e538e20ede353b388148b706319da161ce (diff)
parentb946b8d156175309ab778038dab75ec7996c05bc (diff)
Merge branch 'develop' into patch-weather
Diffstat (limited to 'src/displayapp/screens/PassKey.cpp')
-rw-r--r--src/displayapp/screens/PassKey.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/displayapp/screens/PassKey.cpp b/src/displayapp/screens/PassKey.cpp
new file mode 100644
index 00000000..9e43a541
--- /dev/null
+++ b/src/displayapp/screens/PassKey.cpp
@@ -0,0 +1,24 @@
+#include "PassKey.h"
+#include "displayapp/DisplayApp.h"
+
+using namespace Pinetime::Applications::Screens;
+
+PassKey::PassKey(Pinetime::Applications::DisplayApp* app, uint32_t key) : Screen(app) {
+ passkeyLabel = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_style_local_text_color(passkeyLabel, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xFFFF00));
+ lv_obj_set_style_local_text_font(passkeyLabel, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42);
+ lv_label_set_text_fmt(passkeyLabel, "%06u", key);
+ lv_obj_align(passkeyLabel, nullptr, LV_ALIGN_CENTER, 0, -20);
+
+ backgroundLabel = lv_label_create(lv_scr_act(), nullptr);
+ lv_obj_set_click(backgroundLabel, true);
+ lv_label_set_long_mode(backgroundLabel, LV_LABEL_LONG_CROP);
+ lv_obj_set_size(backgroundLabel, 240, 240);
+ lv_obj_set_pos(backgroundLabel, 0, 0);
+ lv_label_set_text(backgroundLabel, "");
+}
+
+PassKey::~PassKey() {
+ lv_obj_clean(lv_scr_act());
+}
+