OMOTE/Platformio/OmoteUI/UIs/BasicRefactored/page/SystemSettings.hpp
MatthewColvin efa2d4a137 Rework Mains so they are basically as identical as possible.
Create HardwareFactory which is responsible for providing the HardwareAbstract to any part of the program based on compiler defines
2023-10-15 08:24:29 -05:00

23 lines
No EOL
382 B
C++

#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