summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/Tools/EraseTool.h
blob: a85196c080b7fbd2af1a096ec71acf3561c43956 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 * Copyright (c) 2021, Mustafa Quraish <mustafa@serenityos.org>
 * Copyright (c) 2022, the SerenityOS developers.
 *
 * 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() = default;
    virtual ~EraseTool() override = default;

    virtual ErrorOr<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 color, Gfx::IntPoint point) override;
    virtual NonnullRefPtr<Gfx::Bitmap> build_cursor() override;

private:
    virtual StringView tool_name() const override { return "Erase Tool"sv; }

    RefPtr<GUI::Widget> m_properties_widget;

    enum class DrawMode {
        Pencil,
        Brush,
    };
    DrawMode m_draw_mode { DrawMode::Pencil };
    bool m_use_secondary_color { false };
};

}