mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 19:10:26 +00:00
7af87e8e6b
Extra stuff done in this commit to facilitate the above (if you want to really push my commit count, ask for more atomicisation): - Register a bunch of widgets that are used in the process window. - Allow setting the pid after the fact for the process state widget.
27 lines
491 B
C++
27 lines
491 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace SystemMonitor {
|
|
|
|
class ProcessStateWidget final : public GUI::Widget {
|
|
C_OBJECT(ProcessStateWidget);
|
|
|
|
public:
|
|
virtual ~ProcessStateWidget() override = default;
|
|
|
|
void set_pid(pid_t);
|
|
|
|
private:
|
|
ProcessStateWidget();
|
|
RefPtr<GUI::TableView> m_table_view;
|
|
};
|
|
|
|
}
|