port-manager.hpp 296 B

12345678910111213
  1. struct PortManager : PanelList {
  2. PortManager(View*);
  3. auto show() -> void override;
  4. auto hide() -> void override;
  5. auto refresh() -> void;
  6. auto refresh(higan::Node::Object node) -> void;
  7. auto onChange() -> void;
  8. higan::Node::Object root;
  9. ListView listView{this, Size{~0, ~0}};
  10. };