summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/ProcessChooser.h
AgeCommit message (Collapse)Author
2020-09-25Meta+LibC through LibHTTP: Make clang-format-10 cleanBen Wiederhake
Why break at LibHTTP? Because "Meta+Libraries" would be insanely large, and breaking between LibHTTP and LibJS makes the commits roughly evenly large.
2020-08-15LibGUI: Make ProcessChooser accept double clicks on rows as "Ok" clickNico Weber
2020-08-15LibGUI: Remove reference captures of stack variables in ProcessChooserNico Weber
Since all reference-captured variables where pointers to non-stack objects whose owners outlive the lambdas, things were fine in practice, but it's a bit brittle and it makes a change I want to make in this code more difficult.
2020-08-15LibGUI: Add a timer in ProcessChooser to get processes for every 1000msUma Sankar
2020-07-28DevTools+LibGUI: Make ProcessChooser a general Dialog in LibGUIthankyouverycool
Moves ProcessChooser and RunningProcessesModel to LibGUI and generalizes their construction for use by other apps. Updates Profiler to reflect the change and use its new icons.