2021-04-11 08:24:59 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-04-11 08:24:59 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibGUI/Widget.h>
|
|
|
|
|
|
|
|
|
|
class ProcessStateWidget final : public GUI::Widget {
|
|
|
|
|
C_OBJECT(ProcessStateWidget);
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
virtual ~ProcessStateWidget() override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
explicit ProcessStateWidget(pid_t);
|
|
|
|
|
RefPtr<GUI::TableView> m_table_view;
|
|
|
|
|
};
|