| 
									
										
										
										
											2019-02-28 01:43:50 +01:00
										 |  |  | #include <LibGUI/GWindow.h>
 | 
					
						
							|  |  |  | #include <LibGUI/GWidget.h>
 | 
					
						
							|  |  |  | #include <LibGUI/GBoxLayout.h>
 | 
					
						
							|  |  |  | #include <LibGUI/GApplication.h>
 | 
					
						
							|  |  |  | #include <LibGUI/GToolBar.h>
 | 
					
						
							|  |  |  | #include <LibGUI/GMenuBar.h>
 | 
					
						
							|  |  |  | #include <LibGUI/GAction.h>
 | 
					
						
							|  |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <signal.h>
 | 
					
						
							| 
									
										
										
										
											2019-02-28 10:57:09 +01:00
										 |  |  | #include "ProcessTableView.h"
 | 
					
						
							| 
									
										
										
										
											2019-03-10 12:13:22 +01:00
										 |  |  | #include "MemoryStatsWidget.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-28 01:43:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | int main(int argc, char** argv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     GApplication app(argc, argv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto* widget = new GWidget; | 
					
						
							|  |  |  |     widget->set_layout(make<GBoxLayout>(Orientation::Vertical)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto* toolbar = new GToolBar(widget); | 
					
						
							| 
									
										
										
										
											2019-02-28 10:57:09 +01:00
										 |  |  |     auto* process_table_view = new ProcessTableView(widget); | 
					
						
							| 
									
										
										
										
											2019-03-10 12:13:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     new MemoryStatsWidget(widget); | 
					
						
							| 
									
										
										
										
											2019-02-28 01:43:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-28 10:57:09 +01:00
										 |  |  |     auto kill_action = GAction::create("Kill process", GraphicsBitmap::load_from_file(GraphicsBitmap::Format::RGBA32, "/res/icons/kill16.rgb", { 16, 16 }), [process_table_view] (const GAction&) { | 
					
						
							|  |  |  |         pid_t pid = process_table_view->selected_pid(); | 
					
						
							| 
									
										
										
										
											2019-02-28 01:43:50 +01:00
										 |  |  |         if (pid != -1) | 
					
						
							|  |  |  |             kill(pid, SIGKILL); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2019-02-28 12:06:19 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     auto stop_action = GAction::create("Stop process", GraphicsBitmap::load_from_file(GraphicsBitmap::Format::RGBA32, "/res/icons/stop16.rgb", { 16, 16 }), [process_table_view] (const GAction&) { | 
					
						
							|  |  |  |         pid_t pid = process_table_view->selected_pid(); | 
					
						
							|  |  |  |         if (pid != -1) | 
					
						
							|  |  |  |             kill(pid, SIGSTOP); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-28 13:02:55 +01:00
										 |  |  |     auto continue_action = GAction::create("Continue process", GraphicsBitmap::load_from_file(GraphicsBitmap::Format::RGBA32, "/res/icons/continue16.rgb", { 16, 16 }), [process_table_view] (const GAction&) { | 
					
						
							|  |  |  |         pid_t pid = process_table_view->selected_pid(); | 
					
						
							|  |  |  |         if (pid != -1) | 
					
						
							|  |  |  |             kill(pid, SIGCONT); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-28 01:43:50 +01:00
										 |  |  |     toolbar->add_action(kill_action.copy_ref()); | 
					
						
							| 
									
										
										
										
											2019-02-28 12:06:19 +01:00
										 |  |  |     toolbar->add_action(stop_action.copy_ref()); | 
					
						
							| 
									
										
										
										
											2019-02-28 13:02:55 +01:00
										 |  |  |     toolbar->add_action(continue_action.copy_ref()); | 
					
						
							| 
									
										
										
										
											2019-02-28 01:43:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     auto menubar = make<GMenuBar>(); | 
					
						
							|  |  |  |     auto app_menu = make<GMenu>("ProcessManager"); | 
					
						
							| 
									
										
										
										
											2019-03-03 02:52:22 +01:00
										 |  |  |     app_menu->add_action(GAction::create("Quit", { Mod_Alt, Key_F4 }, [] (const GAction&) { | 
					
						
							| 
									
										
										
										
											2019-02-28 01:43:50 +01:00
										 |  |  |         GApplication::the().quit(0); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  |     menubar->add_menu(move(app_menu)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-28 13:02:55 +01:00
										 |  |  |     auto process_menu = make<GMenu>("Process"); | 
					
						
							|  |  |  |     process_menu->add_action(kill_action.copy_ref()); | 
					
						
							|  |  |  |     process_menu->add_action(stop_action.copy_ref()); | 
					
						
							|  |  |  |     process_menu->add_action(continue_action.copy_ref()); | 
					
						
							|  |  |  |     menubar->add_menu(move(process_menu)); | 
					
						
							| 
									
										
										
										
											2019-02-28 01:43:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     auto help_menu = make<GMenu>("Help"); | 
					
						
							|  |  |  |     help_menu->add_action(GAction::create("About", [] (const GAction&) { | 
					
						
							|  |  |  |         dbgprintf("FIXME: Implement Help/About\n"); | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  |     menubar->add_menu(move(help_menu)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     app.set_menubar(move(menubar)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     auto* window = new GWindow; | 
					
						
							|  |  |  |     window->set_title("ProcessManager"); | 
					
						
							| 
									
										
										
										
											2019-02-28 14:12:53 +01:00
										 |  |  |     window->set_rect(20, 200, 640, 400); | 
					
						
							| 
									
										
										
										
											2019-02-28 01:43:50 +01:00
										 |  |  |     window->set_main_widget(widget); | 
					
						
							|  |  |  |     window->set_should_exit_app_on_close(true); | 
					
						
							|  |  |  |     window->show(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return app.exec(); | 
					
						
							|  |  |  | } |