| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-06 15:34:26 +02:00
										 |  |  | #include <AK/String.h>
 | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  | #include <AK/Badge.h>
 | 
					
						
							| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  | #include <AK/Function.h>
 | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  | #include <AK/HashTable.h>
 | 
					
						
							| 
									
										
										
										
											2019-06-21 18:45:35 +02:00
										 |  |  | #include <AK/NonnullRefPtr.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-01 15:28:07 -05:00
										 |  |  | #include <AK/RefCounted.h>
 | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  | #include <AK/WeakPtr.h>
 | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  | #include <AK/Weakable.h>
 | 
					
						
							| 
									
										
										
										
											2019-07-18 10:15:00 +02:00
										 |  |  | #include <LibDraw/GraphicsBitmap.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-01 15:28:07 -05:00
										 |  |  | #include <LibGUI/GShortcut.h>
 | 
					
						
							|  |  |  | #include <LibGUI/GWindow.h>
 | 
					
						
							| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-01 15:28:07 -05:00
										 |  |  | class GAction; | 
					
						
							| 
									
										
										
										
											2019-07-09 22:10:03 +02:00
										 |  |  | class GActionGroup; | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  | class GButton; | 
					
						
							|  |  |  | class GMenuItem; | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  | class GWidget; | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-01 15:28:07 -05:00
										 |  |  | namespace GCommonActions { | 
					
						
							|  |  |  | NonnullRefPtr<GAction> make_cut_action(Function<void()>, GWidget* widget); | 
					
						
							|  |  |  | NonnullRefPtr<GAction> make_copy_action(Function<void()>, GWidget* widget); | 
					
						
							|  |  |  | NonnullRefPtr<GAction> make_paste_action(Function<void()>, GWidget* widget); | 
					
						
							|  |  |  | NonnullRefPtr<GAction> make_quit_action(Function<void()>); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 15:29:31 +02:00
										 |  |  | class GAction : public RefCounted<GAction> | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  |     , public Weakable<GAction> { | 
					
						
							| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2019-06-07 17:13:23 +02:00
										 |  |  |     enum class ShortcutScope { | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  |         None, | 
					
						
							|  |  |  |         ApplicationGlobal, | 
					
						
							|  |  |  |         WidgetLocal, | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2019-06-21 18:37:47 +02:00
										 |  |  |     static NonnullRefPtr<GAction> create(const StringView& text, Function<void(GAction&)> callback, GWidget* widget = nullptr) | 
					
						
							| 
									
										
										
										
											2019-02-20 02:39:46 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  |         return adopt(*new GAction(text, move(callback), widget)); | 
					
						
							| 
									
										
										
										
											2019-02-20 02:39:46 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-06-21 18:37:47 +02:00
										 |  |  |     static NonnullRefPtr<GAction> create(const StringView& text, RefPtr<GraphicsBitmap>&& icon, Function<void(GAction&)> callback, GWidget* widget = nullptr) | 
					
						
							| 
									
										
										
										
											2019-02-20 02:39:46 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  |         return adopt(*new GAction(text, move(icon), move(callback), widget)); | 
					
						
							| 
									
										
										
										
											2019-02-20 02:39:46 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-06-21 18:37:47 +02:00
										 |  |  |     static NonnullRefPtr<GAction> create(const StringView& text, const GShortcut& shortcut, Function<void(GAction&)> callback, GWidget* widget = nullptr) | 
					
						
							| 
									
										
										
										
											2019-03-03 02:52:22 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  |         return adopt(*new GAction(text, shortcut, move(callback), widget)); | 
					
						
							| 
									
										
										
										
											2019-03-03 02:52:22 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-06-21 18:37:47 +02:00
										 |  |  |     static NonnullRefPtr<GAction> create(const StringView& text, const GShortcut& shortcut, RefPtr<GraphicsBitmap>&& icon, Function<void(GAction&)> callback, GWidget* widget = nullptr) | 
					
						
							| 
									
										
										
										
											2019-03-02 10:04:49 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  |         return adopt(*new GAction(text, shortcut, move(icon), move(callback), widget)); | 
					
						
							| 
									
										
										
										
											2019-03-02 10:04:49 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  |     ~GAction(); | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  |     GWidget* widget() { return m_widget.ptr(); } | 
					
						
							|  |  |  |     const GWidget* widget() const { return m_widget.ptr(); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  |     String text() const { return m_text; } | 
					
						
							| 
									
										
										
										
											2019-03-02 10:04:49 +01:00
										 |  |  |     GShortcut shortcut() const { return m_shortcut; } | 
					
						
							| 
									
										
										
										
											2019-02-20 02:39:46 +01:00
										 |  |  |     const GraphicsBitmap* icon() const { return m_icon.ptr(); } | 
					
						
							| 
									
										
										
										
											2019-08-26 18:54:44 +02:00
										 |  |  |     void set_icon(const GraphicsBitmap* icon) { m_icon = icon; } | 
					
						
							| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Function<void(GAction&)> on_activation; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     void activate(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  |     bool is_enabled() const { return m_enabled; } | 
					
						
							|  |  |  |     void set_enabled(bool); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-26 21:09:56 +02:00
										 |  |  |     bool is_checkable() const { return m_checkable; } | 
					
						
							|  |  |  |     void set_checkable(bool checkable) { m_checkable = checkable; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  |     bool is_checked() const | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         ASSERT(is_checkable()); | 
					
						
							|  |  |  |         return m_checked; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-04-26 21:09:56 +02:00
										 |  |  |     void set_checked(bool); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  |     void register_button(Badge<GButton>, GButton&); | 
					
						
							|  |  |  |     void unregister_button(Badge<GButton>, GButton&); | 
					
						
							|  |  |  |     void register_menu_item(Badge<GMenuItem>, GMenuItem&); | 
					
						
							|  |  |  |     void unregister_menu_item(Badge<GMenuItem>, GMenuItem&); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-09 22:10:03 +02:00
										 |  |  |     const GActionGroup* group() const { return m_action_group.ptr(); } | 
					
						
							|  |  |  |     void set_group(Badge<GActionGroup>, GActionGroup*); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2019-06-02 14:58:02 +02:00
										 |  |  |     GAction(const StringView& text, Function<void(GAction&)> = nullptr, GWidget* = nullptr); | 
					
						
							|  |  |  |     GAction(const StringView& text, const GShortcut&, Function<void(GAction&)> = nullptr, GWidget* = nullptr); | 
					
						
							| 
									
										
										
										
											2019-06-21 18:37:47 +02:00
										 |  |  |     GAction(const StringView& text, const GShortcut&, RefPtr<GraphicsBitmap>&& icon, Function<void(GAction&)> = nullptr, GWidget* = nullptr); | 
					
						
							|  |  |  |     GAction(const StringView& text, RefPtr<GraphicsBitmap>&& icon, Function<void(GAction&)> = nullptr, GWidget* = nullptr); | 
					
						
							| 
									
										
										
										
											2019-02-20 02:39:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  |     template<typename Callback> | 
					
						
							|  |  |  |     void for_each_toolbar_button(Callback); | 
					
						
							|  |  |  |     template<typename Callback> | 
					
						
							|  |  |  |     void for_each_menu_item(Callback); | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  |     String m_text; | 
					
						
							| 
									
										
										
										
											2019-06-21 18:37:47 +02:00
										 |  |  |     RefPtr<GraphicsBitmap> m_icon; | 
					
						
							| 
									
										
										
										
											2019-03-02 10:04:49 +01:00
										 |  |  |     GShortcut m_shortcut; | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  |     bool m_enabled { true }; | 
					
						
							| 
									
										
										
										
											2019-04-26 21:09:56 +02:00
										 |  |  |     bool m_checkable { false }; | 
					
						
							|  |  |  |     bool m_checked { false }; | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  |     ShortcutScope m_scope { ShortcutScope::None }; | 
					
						
							| 
									
										
										
										
											2019-04-12 02:53:27 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     HashTable<GButton*> m_buttons; | 
					
						
							|  |  |  |     HashTable<GMenuItem*> m_menu_items; | 
					
						
							| 
									
										
										
										
											2019-04-20 21:56:56 +02:00
										 |  |  |     WeakPtr<GWidget> m_widget; | 
					
						
							| 
									
										
										
										
											2019-07-09 22:10:03 +02:00
										 |  |  |     WeakPtr<GActionGroup> m_action_group; | 
					
						
							| 
									
										
										
										
											2019-02-12 14:09:48 +01:00
										 |  |  | }; |