mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13: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.
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			635 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			635 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 ProcessMemoryMapWidget final : public GUI::Widget {
 | |
|     C_OBJECT(ProcessMemoryMapWidget);
 | |
| 
 | |
| public:
 | |
|     virtual ~ProcessMemoryMapWidget() override = default;
 | |
| 
 | |
|     void set_pid(pid_t);
 | |
|     void refresh();
 | |
| 
 | |
| private:
 | |
|     ProcessMemoryMapWidget();
 | |
|     RefPtr<GUI::TableView> m_table_view;
 | |
|     RefPtr<GUI::JsonArrayModel> m_json_model;
 | |
|     pid_t m_pid { -1 };
 | |
|     RefPtr<Core::Timer> m_timer;
 | |
| };
 | |
| 
 | |
| }
 |