1d3742e14f
new navigation add some color to the apps redesign menus new settings menu new quick settings code clean up size reduction by converting navigation images to font and more...
42 lines
1 KiB
C++
42 lines
1 KiB
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <chrono>
|
|
#include "Screen.h"
|
|
#include <bits/unique_ptr.h>
|
|
#include "systemtask/SystemTask.h"
|
|
#include <libs/lvgl/src/lv_core/lv_style.h>
|
|
#include <libs/lvgl/src/lv_core/lv_obj.h>
|
|
|
|
namespace Pinetime {
|
|
namespace Controllers {
|
|
class HeartRateController;
|
|
}
|
|
namespace Applications {
|
|
namespace Screens {
|
|
|
|
class HeartRate : public Screen{
|
|
public:
|
|
HeartRate(DisplayApp* app, Controllers::HeartRateController& HeartRateController, System::SystemTask &systemTask);
|
|
~HeartRate() override;
|
|
|
|
bool Refresh() override;
|
|
|
|
void OnStartStopEvent(lv_event_t event);
|
|
|
|
private:
|
|
Controllers::HeartRateController& heartRateController;
|
|
Pinetime::System::SystemTask& systemTask;
|
|
void UpdateStartStopButton(bool isRunning);
|
|
lv_obj_t* label_hr;
|
|
lv_obj_t* label_bpm;
|
|
lv_obj_t* label_status;
|
|
lv_obj_t* btn_startStop;
|
|
lv_obj_t* label_startStop;
|
|
|
|
|
|
|
|
};
|
|
}
|
|
}
|
|
}
|