2020-08-11 11:50:00 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Screen.h"
|
2020-11-15 10:49:36 -05:00
|
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
2020-08-11 11:50:00 -04:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
|
|
|
class FirmwareValidator;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
class FirmwareValidation : public Screen {
|
2021-04-24 05:00:45 -04:00
|
|
|
public:
|
2021-04-18 13:28:14 -04:00
|
|
|
FirmwareValidation(DisplayApp* app, Pinetime::Controllers::FirmwareValidator& validator);
|
|
|
|
~FirmwareValidation() override;
|
|
|
|
|
|
|
|
bool Refresh() override;
|
|
|
|
|
|
|
|
void OnButtonEvent(lv_obj_t* object, lv_event_t event);
|
|
|
|
|
2021-04-24 05:00:45 -04:00
|
|
|
private:
|
2021-04-18 13:28:14 -04:00
|
|
|
Pinetime::Controllers::FirmwareValidator& validator;
|
|
|
|
|
|
|
|
lv_obj_t* labelVersionInfo;
|
|
|
|
lv_obj_t* labelVersionValue;
|
2021-05-13 18:09:40 -04:00
|
|
|
lv_obj_t* labelShortRefInfo;
|
|
|
|
lv_obj_t* labelShortRefValue;
|
2021-04-18 13:28:14 -04:00
|
|
|
char version[9];
|
2021-05-13 18:09:40 -04:00
|
|
|
char shortref[9];
|
2021-04-18 13:28:14 -04:00
|
|
|
lv_obj_t* labelIsValidated;
|
|
|
|
lv_obj_t* buttonValidate;
|
|
|
|
lv_obj_t* labelButtonValidate;
|
|
|
|
lv_obj_t* buttonReset;
|
|
|
|
lv_obj_t* labelButtonReset;
|
2020-08-11 11:50:00 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|