#pragma once #include "PageBase.hpp" #include "wifiHandlerInterface.h" namespace UI::Widget { class List; class Label; class Keyboard; } // namespace UI::Widget namespace UI::Page { class WifiSettings : public Base { public: WifiSettings(std::shared_ptr aWifi); std::string GetTitle() override { return "Wifi Settings"; }; void SetHeight(lv_coord_t aHeight) override; private: std::shared_ptr mWifi; Handler mScanCompleteHandler; Handler mScanStatusHandler; UI::Widget::Label *mScanningText; UI::Widget::List *mWifiNetworks; UI::Widget::Keyboard *mPasswordGetter; }; } // namespace UI::Page