
The DisplayApp class isn't used in the Screen base class and most screens, so requiring it is pointless. In this commit, DisplayApp pointers were added to screens which use it and the explicit Screen constructor was removed in those screens.
32 lines
744 B
C++
32 lines
744 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include <cstdint>
|
|
#include <lvgl/lvgl.h>
|
|
|
|
#include "components/settings/Settings.h"
|
|
#include "displayapp/screens/Screen.h"
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Applications {
|
|
namespace Screens {
|
|
|
|
class SettingDisplay : public Screen {
|
|
public:
|
|
SettingDisplay(DisplayApp* app, Pinetime::Controllers::Settings& settingsController);
|
|
~SettingDisplay() override;
|
|
|
|
void UpdateSelected(lv_obj_t* object, lv_event_t event);
|
|
|
|
private:
|
|
DisplayApp* app;
|
|
static constexpr std::array<uint16_t, 6> options = {5000, 7000, 10000, 15000, 20000, 30000};
|
|
|
|
Controllers::Settings& settingsController;
|
|
lv_obj_t* cbOption[options.size()];
|
|
};
|
|
}
|
|
}
|
|
}
|