mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 08:52:44 +00:00 
			
		
		
		
	 1682f0b760
			
		
	
	
		1682f0b760
		
	
	
	
	
		
			
			SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
		
			
				
	
	
		
			91 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "MenuItem.h"
 | |
| #include "ClientConnection.h"
 | |
| #include "Menu.h"
 | |
| #include "WindowManager.h"
 | |
| #include <LibGfx/Bitmap.h>
 | |
| 
 | |
| namespace WindowServer {
 | |
| 
 | |
| MenuItem::MenuItem(Menu& menu, unsigned identifier, const String& text, const String& shortcut_text, bool enabled, bool checkable, bool checked, const Gfx::Bitmap* icon)
 | |
|     : m_menu(menu)
 | |
|     , m_type(Text)
 | |
|     , m_enabled(enabled)
 | |
|     , m_checkable(checkable)
 | |
|     , m_checked(checked)
 | |
|     , m_identifier(identifier)
 | |
|     , m_text(text)
 | |
|     , m_shortcut_text(shortcut_text)
 | |
|     , m_icon(icon)
 | |
| {
 | |
| }
 | |
| 
 | |
| MenuItem::MenuItem(Menu& menu, Type type)
 | |
|     : m_menu(menu)
 | |
|     , m_type(type)
 | |
| {
 | |
| }
 | |
| 
 | |
| MenuItem::~MenuItem()
 | |
| {
 | |
| }
 | |
| 
 | |
| void MenuItem::set_enabled(bool enabled)
 | |
| {
 | |
|     if (m_enabled == enabled)
 | |
|         return;
 | |
|     m_enabled = enabled;
 | |
|     m_menu.redraw();
 | |
| }
 | |
| 
 | |
| void MenuItem::set_checked(bool checked)
 | |
| {
 | |
|     if (m_checked == checked)
 | |
|         return;
 | |
|     m_checked = checked;
 | |
|     m_menu.redraw();
 | |
| }
 | |
| 
 | |
| void MenuItem::set_default(bool is_default)
 | |
| {
 | |
|     if (m_default == is_default)
 | |
|         return;
 | |
|     m_default = is_default;
 | |
|     m_menu.redraw();
 | |
| }
 | |
| 
 | |
| Menu* MenuItem::submenu()
 | |
| {
 | |
|     VERIFY(is_submenu());
 | |
|     VERIFY(m_menu.client());
 | |
|     return m_menu.client()->find_menu_by_id(m_submenu_id);
 | |
| }
 | |
| 
 | |
| const Menu* MenuItem::submenu() const
 | |
| {
 | |
|     VERIFY(is_submenu());
 | |
|     VERIFY(m_menu.client());
 | |
|     return m_menu.client()->find_menu_by_id(m_submenu_id);
 | |
| }
 | |
| 
 | |
| Gfx::IntRect MenuItem::rect() const
 | |
| {
 | |
|     if (!m_menu.is_scrollable())
 | |
|         return m_rect;
 | |
|     return m_rect.translated(0, m_menu.item_height() - (m_menu.scroll_offset() * m_menu.item_height()));
 | |
| }
 | |
| 
 | |
| void MenuItem::set_icon(const Gfx::Bitmap* icon)
 | |
| {
 | |
|     if (m_icon == icon)
 | |
|         return;
 | |
|     m_icon = icon;
 | |
|     m_menu.redraw();
 | |
| }
 | |
| 
 | |
| }
 |