1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:17:44 +00:00

ProcessManager: Add ProcessTableView::on_process_selected() callback.

This will be useful for doing something in response to the user selecting
a different process.
This commit is contained in:
Andreas Kling 2019-07-27 09:37:26 +02:00
parent f1af5f26eb
commit c452528952
2 changed files with 7 additions and 0 deletions

View file

@ -16,6 +16,8 @@ public:
void refresh();
Function<void(pid_t)> on_process_selected;
private:
virtual void model_notification(const GModelNotification&) override;
};