/* * Copyright (c) 2018-2021, Andreas Kling * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #include "ToolboxWidget.h" #include "Tools/BrushTool.h" #include "Tools/BucketTool.h" #include "Tools/CloneTool.h" #include "Tools/EllipseTool.h" #include "Tools/EraseTool.h" #include "Tools/GuideTool.h" #include "Tools/LineTool.h" #include "Tools/MoveTool.h" #include "Tools/PenTool.h" #include "Tools/PickerTool.h" #include "Tools/RectangleSelectTool.h" #include "Tools/RectangleTool.h" #include "Tools/SprayTool.h" #include "Tools/ZoomTool.h" #include #include #include #include REGISTER_WIDGET(PixelPaint, ToolboxWidget); namespace PixelPaint { ToolboxWidget::ToolboxWidget() { set_fill_with_background_color(true); set_fixed_width(26); set_layout(); layout()->set_spacing(0); layout()->set_margins(2); m_action_group.set_exclusive(true); m_action_group.set_unchecking_allowed(false); m_toolbar = add(Gfx::Orientation::Vertical); setup_tools(); } void ToolboxWidget::setup_tools() { auto add_tool = [&](String name, StringView icon_name, GUI::Shortcut const& shortcut, NonnullOwnPtr tool) { auto action = GUI::Action::create_checkable(move(name), shortcut, Gfx::Bitmap::try_load_from_file(String::formatted("/res/icons/pixelpaint/{}.png", icon_name)).release_value_but_fixme_should_propagate_errors(), [this, tool = tool.ptr()](auto& action) { if (action.is_checked()) { on_tool_selection(tool); m_active_tool = tool; } else { on_tool_selection(nullptr); } }); m_action_group.add_action(action); auto& button = m_toolbar->add_action(action); button.on_context_menu_request = [action = action.ptr(), tool = tool.ptr()](auto& event) { action->activate(); tool->on_tool_button_contextmenu(event); }; tool->set_action(action); m_tools.append(move(tool)); }; add_tool("Move", "move", { 0, Key_M }, make()); add_tool("Pen", "pen", { 0, Key_N }, make()); add_tool("Brush", "brush", { 0, Key_P }, make()); add_tool("Bucket Fill", "bucket", { Mod_Shift, Key_B }, make()); add_tool("Spray", "spray", { Mod_Shift, Key_S }, make()); add_tool("Color Picker", "picker", { 0, Key_O }, make()); add_tool("Erase", "eraser", { Mod_Shift, Key_E }, make()); add_tool("Line", "line", { Mod_Ctrl | Mod_Shift, Key_L }, make()); add_tool("Rectangle", "rectangle", { Mod_Ctrl | Mod_Shift, Key_R }, make()); add_tool("Ellipse", "circle", { Mod_Ctrl | Mod_Shift, Key_E }, make()); add_tool("Zoom", "zoom", { 0, Key_Z }, make()); add_tool("Rectangle Select", "rectangle-select", { 0, Key_R }, make()); add_tool("Guides", "guides", { 0, Key_G }, make()); add_tool("Clone Tool", "clone", { 0, Key_C }, make()); } }