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 {
|
|
|
|
|
|
|
|
class FirmwareValidation : public Screen{
|
|
|
|
public:
|
|
|
|
FirmwareValidation(DisplayApp* app, Pinetime::Controllers::FirmwareValidator& validator);
|
|
|
|
~FirmwareValidation() override;
|
|
|
|
|
|
|
|
bool Refresh() override;
|
2021-04-03 22:08:51 -04:00
|
|
|
|
2020-08-11 11:50:00 -04:00
|
|
|
|
|
|
|
void OnButtonEvent(lv_obj_t *object, lv_event_t event);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Pinetime::Controllers::FirmwareValidator& validator;
|
|
|
|
|
|
|
|
lv_obj_t* labelVersionInfo;
|
|
|
|
lv_obj_t* labelVersionValue;
|
|
|
|
char version[9];
|
|
|
|
lv_obj_t* labelIsValidated;
|
|
|
|
lv_obj_t* buttonValidate;
|
|
|
|
lv_obj_t* labelButtonValidate;
|
|
|
|
lv_obj_t* buttonReset;
|
|
|
|
lv_obj_t* labelButtonReset;
|
2021-04-03 22:08:51 -04:00
|
|
|
|
2020-08-11 11:50:00 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|