mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:52:43 +00:00 
			
		
		
		
	 7af87e8e6b
			
		
	
	
		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.
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			594 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			594 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * 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 };
 | |
| };
 | |
| 
 | |
| }
 |