event-manager.hpp 318 B

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