#include #include #include #include #include namespace ui { class UsersLayout : public pu::ui::Layout { private: pu::ui::elm::Menu::Ref usersMenu; pu::ui::elm::Rectangle::Ref loadingBg; pu::ui::elm::TextBlock::Ref loadingText; std::unique_ptr header; std::unique_ptr hints; public: UsersLayout(); void onInput(u64 Down, u64 Up, u64 Held, pu::ui::TouchPoint Pos); int32_t GetCurrentIndex(); PU_SMART_CTOR(UsersLayout) }; } // namespace ui