mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:12:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			451 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			451 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <LibGUI/GTableView.h>
 | |
| #include <AK/Function.h>
 | |
| #include <unistd.h>
 | |
| 
 | |
| class ProcessTableModel;
 | |
| 
 | |
| class ProcessTableView final : public GTableView {
 | |
| public:
 | |
|     explicit ProcessTableView(GWidget* parent);
 | |
|     virtual ~ProcessTableView() override;
 | |
| 
 | |
|     pid_t selected_pid() const;
 | |
| 
 | |
| protected:
 | |
|     virtual void model_notification(const GModelNotification&) override;
 | |
| 
 | |
| private:
 | |
|     virtual void timer_event(GTimerEvent&) override;
 | |
| };
 | |
| 
 | 
