1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

PixelPaint: Move Tools to it's own subdirectory

The PixelPaint source directory was getting a bit large, let's move all
the Tools to it's own subdirectory. Also remove some unused includes.
This commit is contained in:
Marcus Nilsson 2021-09-17 09:54:55 +02:00 committed by Brian Gianforcaro
parent 61ad239ee0
commit f9e0815c3b
35 changed files with 67 additions and 69 deletions

View file

@ -0,0 +1,39 @@
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2021, Mustafa Quraish <mustafa@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "BrushTool.h"
#include <LibGUI/ActionGroup.h>
#include <LibGfx/Forward.h>
#include <LibGfx/Point.h>
namespace PixelPaint {
class EraseTool final : public BrushTool {
public:
EraseTool();
virtual ~EraseTool() override;
virtual GUI::Widget* get_properties_widget() override;
protected:
virtual Color color_for(GUI::MouseEvent const& event) override;
virtual void draw_point(Gfx::Bitmap& bitmap, Gfx::Color const& color, Gfx::IntPoint const& point) override;
private:
RefPtr<GUI::Widget> m_properties_widget;
enum class DrawMode {
Pencil,
Brush,
};
DrawMode m_draw_mode { DrawMode::Brush };
bool m_use_secondary_color { false };
};
}