mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:52:45 +00:00 
			
		
		
		
	 687a12d7fb
			
		
	
	
		687a12d7fb
		
	
	
	
	
		
			
			Applications previously had to create a GUI::Menubar object, add menus to it, and then call GUI::Window::set_menubar(). This patch introduces GUI::Window::add_menu() which creates the menubar automatically and adds items to it. Application code becomes slightly simpler as a result. :^)
		
			
				
	
	
		
			85 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Valtteri Koskivuori <vkoskiv@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "MagnifierWidget.h"
 | |
| #include <LibGUI/ActionGroup.h>
 | |
| #include <LibGUI/Application.h>
 | |
| #include <LibGUI/Icon.h>
 | |
| #include <LibGUI/Menu.h>
 | |
| #include <LibGUI/Menubar.h>
 | |
| #include <LibGUI/Window.h>
 | |
| #include <unistd.h>
 | |
| 
 | |
| int main(int argc, char** argv)
 | |
| {
 | |
|     if (pledge("stdio cpath rpath recvfd sendfd unix", nullptr) < 0) {
 | |
|         perror("pledge");
 | |
|         return 1;
 | |
|     }
 | |
| 
 | |
|     auto app = GUI::Application::construct(argc, argv);
 | |
| 
 | |
|     if (pledge("stdio cpath rpath recvfd sendfd", nullptr) < 0) {
 | |
|         perror("pledge");
 | |
|         return 1;
 | |
|     }
 | |
| 
 | |
|     if (unveil("/res", "r") < 0) {
 | |
|         perror("unveil");
 | |
|         return 1;
 | |
|     }
 | |
| 
 | |
|     if (unveil(nullptr, nullptr) < 0) {
 | |
|         perror("unveil");
 | |
|         return 1;
 | |
|     }
 | |
| 
 | |
|     auto app_icon = GUI::Icon::default_icon("app-magnifier");
 | |
| 
 | |
|     // 4px on each side for padding
 | |
|     constexpr int window_dimensions = 200 + 4 + 4;
 | |
|     auto window = GUI::Window::construct();
 | |
|     window->set_title("Magnifier");
 | |
|     window->resize(window_dimensions, window_dimensions);
 | |
|     window->set_minimizable(false);
 | |
|     window->set_icon(app_icon.bitmap_for_size(16));
 | |
|     auto& magnifier = window->set_main_widget<MagnifierWidget>();
 | |
| 
 | |
|     auto& file_menu = window->add_menu("&File");
 | |
|     file_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) {
 | |
|         app->quit();
 | |
|     }));
 | |
| 
 | |
|     auto size_action_group = make<GUI::ActionGroup>();
 | |
| 
 | |
|     auto two_x_action = GUI::Action::create_checkable(
 | |
|         "&2x", [&](auto&) {
 | |
|             magnifier.set_scale_factor(2);
 | |
|         });
 | |
| 
 | |
|     auto four_x_action = GUI::Action::create_checkable(
 | |
|         "&4x", [&](auto&) {
 | |
|             magnifier.set_scale_factor(4);
 | |
|         });
 | |
| 
 | |
|     size_action_group->add_action(two_x_action);
 | |
|     size_action_group->add_action(four_x_action);
 | |
|     size_action_group->set_exclusive(true);
 | |
| 
 | |
|     auto& view_menu = window->add_menu("&View");
 | |
|     view_menu.add_action(two_x_action);
 | |
|     view_menu.add_action(four_x_action);
 | |
|     two_x_action->set_checked(true);
 | |
| 
 | |
|     auto& help_menu = window->add_menu("&Help");
 | |
|     help_menu.add_action(GUI::CommonActions::make_about_action("Magnifier", app_icon, window));
 | |
| 
 | |
|     window->show();
 | |
| 
 | |
|     magnifier.track_cursor_globally();
 | |
| 
 | |
|     return app->exec();
 | |
| }
 |