mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:52:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			673 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <LibGUI/GMenuItem.h>
 | |
| #include <AK/Function.h>
 | |
| #include <AK/Vector.h>
 | |
| 
 | |
| class GAction;
 | |
| class Point;
 | |
| 
 | |
| class GMenu {
 | |
| public:
 | |
|     explicit GMenu(const String& name);
 | |
|     ~GMenu();
 | |
| 
 | |
|     static GMenu* from_menu_id(int);
 | |
| 
 | |
|     GAction* action_at(int);
 | |
| 
 | |
|     void add_action(Retained<GAction>&&);
 | |
|     void add_separator();
 | |
| 
 | |
|     void popup(const Point& screen_position);
 | |
|     void dismiss();
 | |
| 
 | |
|     Function<void(unsigned)> on_item_activation;
 | |
| 
 | |
| private:
 | |
|     friend class GMenuBar;
 | |
|     int menu_id() const { return m_menu_id; }
 | |
|     int realize_menu();
 | |
|     void unrealize_menu();
 | |
| 
 | |
|     int m_menu_id { 0 };
 | |
|     String m_name;
 | |
|     Vector<OwnPtr<GMenuItem>> m_items;
 | |
| };
 | 
