OMOTE/Platformio/OmoteUI/UIs/BasicRefactored/page/SystemSettings.hpp

23 lines
382 B
C++
Raw Normal View History

2023-10-22 14:35:49 -04:00
#pragma once
#include "DropDown.hpp"
#include "PageBase.hpp"
namespace UI::Widget {
class Label;
}
namespace UI::Page {
class SystemSettings : public Base {
public:
SystemSettings();
protected:
std::string GetTitle() override { return "System Settings"; }
private:
Widget::Label *mTimeoutLabel;
Widget::DropDown<int> *mScreenTimeOutDropDown;
};
} // namespace UI::Page