blob: 75bf61fa8a3751cb1579f6879eaa5480dfdd6a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/TableView.h>
#include <LibGUI/Widget.h>
namespace SystemMonitor {
class ThreadStackWidget final : public GUI::Widget {
C_OBJECT(ThreadStackWidget)
public:
virtual ~ThreadStackWidget() override = default;
void set_ids(pid_t pid, pid_t tid);
void refresh();
private:
ThreadStackWidget();
virtual void show_event(GUI::ShowEvent&) override;
virtual void hide_event(GUI::HideEvent&) override;
virtual void custom_event(Core::CustomEvent&) override;
pid_t m_pid { -1 };
pid_t m_tid { -1 };
RefPtr<GUI::TableView> m_stack_table;
RefPtr<Core::Timer> m_timer;
};
}
|