/* * Copyright (c) 2018-2020, Andreas Kling * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include namespace GUI { namespace CommonActions { NonnullRefPtr make_about_action(const String& app_name, const Icon& app_icon, Window* parent = nullptr); NonnullRefPtr make_open_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_save_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_save_as_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_undo_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_redo_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_cut_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_copy_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_paste_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_delete_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_move_to_front_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_move_to_back_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_fullscreen_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_quit_action(Function); NonnullRefPtr make_help_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_go_back_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_go_forward_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_go_home_action(Function callback, Core::Object* parent = nullptr); NonnullRefPtr make_reload_action(Function, Core::Object* parent = nullptr); NonnullRefPtr make_select_all_action(Function, Core::Object* parent = nullptr); }; class Action final : public Core::Object { C_OBJECT(Action) public: enum class ShortcutScope { None, WidgetLocal, WindowLocal, ApplicationGlobal, }; static NonnullRefPtr create(String text, Function callback, Core::Object* parent = nullptr); static NonnullRefPtr create(String text, RefPtr icon, Function callback, Core::Object* parent = nullptr); static NonnullRefPtr create(String text, const Shortcut& shortcut, Function callback, Core::Object* parent = nullptr); static NonnullRefPtr create(String text, const Shortcut& shortcut, RefPtr icon, Function callback, Core::Object* parent = nullptr); static NonnullRefPtr create_checkable(String text, Function callback, Core::Object* parent = nullptr); static NonnullRefPtr create_checkable(String text, RefPtr icon, Function callback, Core::Object* parent = nullptr); static NonnullRefPtr create_checkable(String text, const Shortcut& shortcut, Function callback, Core::Object* parent = nullptr); static NonnullRefPtr create_checkable(String text, const Shortcut& shortcut, RefPtr icon, Function callback, Core::Object* parent = nullptr); virtual ~Action() override; String text() const { return m_text; } void set_text(String text) { m_text = move(text); } Shortcut shortcut() const { return m_shortcut; } const Gfx::Bitmap* icon() const { return m_icon.ptr(); } void set_icon(const Gfx::Bitmap*); const Core::Object* activator() const { return m_activator.ptr(); } Core::Object* activator() { return m_activator.ptr(); } Function on_activation; void activate(Core::Object* activator = nullptr); bool is_enabled() const { return m_enabled; } void set_enabled(bool); bool is_checkable() const { return m_checkable; } void set_checkable(bool checkable) { m_checkable = checkable; } bool is_checked() const { VERIFY(is_checkable()); return m_checked; } void set_checked(bool); bool swallow_key_event_when_disabled() const { return m_swallow_key_event_when_disabled; } void set_swallow_key_event_when_disabled(bool swallow) { m_swallow_key_event_when_disabled = swallow; } void register_button(Badge