2020-08-11 15:50:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-10-13 20:08:35 +00:00
|
|
|
#include "displayapp/screens/Screen.h"
|
2020-11-15 15:49:36 +00:00
|
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
2020-08-11 15:50:00 +00:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
|
|
|
class FirmwareValidator;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
class FirmwareValidation : public Screen {
|
2021-04-24 09:00:45 +00:00
|
|
|
public:
|
2021-04-18 17:28:14 +00:00
|
|
|
FirmwareValidation(DisplayApp* app, Pinetime::Controllers::FirmwareValidator& validator);
|
|
|
|
~FirmwareValidation() override;
|
|
|
|
|
|
|
|
void OnButtonEvent(lv_obj_t* object, lv_event_t event);
|
|
|
|
|
2021-04-24 09:00:45 +00:00
|
|
|
private:
|
2021-04-18 17:28:14 +00:00
|
|
|
Pinetime::Controllers::FirmwareValidator& validator;
|
|
|
|
|
2021-07-03 10:32:35 +00:00
|
|
|
lv_obj_t* labelVersion;
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_obj_t* labelIsValidated;
|
|
|
|
lv_obj_t* buttonValidate;
|
|
|
|
lv_obj_t* labelButtonValidate;
|
|
|
|
lv_obj_t* buttonReset;
|
|
|
|
lv_obj_t* labelButtonReset;
|
2020-08-11 15:50:00 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|