summaryrefslogtreecommitdiff
path: root/Userland/Applications/SystemMonitor/ProcessUnveiledPathsWidget.h
blob: 7617af2568fc5c36ed1e1e4fa8528cb5383ca038 (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
/*
 * 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/Widget.h>

namespace SystemMonitor {

class ProcessUnveiledPathsWidget final : public GUI::Widget {
    C_OBJECT(ProcessUnveiledPathsWidget);

public:
    virtual ~ProcessUnveiledPathsWidget() override = default;

    void set_pid(pid_t);

private:
    ProcessUnveiledPathsWidget();

    RefPtr<GUI::TableView> m_table_view;
    RefPtr<GUI::JsonArrayModel> m_model;
    pid_t m_pid { -1 };
};

}