node-manager.hpp 402 B

1234567891011121314
  1. struct NodeManager : PanelList {
  2. NodeManager(View*);
  3. auto show() -> void override;
  4. auto hide() -> void override;
  5. auto refresh() -> void;
  6. auto refresh(higan::Node::Object node, uint depth) -> void;
  7. auto refreshSettings() -> void;
  8. auto name(higan::Node::Object node, uint depth) -> string;
  9. auto onChange() -> void;
  10. higan::Node::Object root;
  11. ListView listView{this, Size{~0, ~0}};
  12. };