summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/Tools/Tool.cpp
blob: d1e6f9f6b26b1220ee99772f5d801cda063c38b4 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 * Copyright (c) 2021, Mustafa Quraish <mustafa@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include "Tool.h"
#include "../ImageEditor.h"
#include <LibGUI/Action.h>

namespace PixelPaint {

Tool::Tool()
{
}

Tool::~Tool()
{
}

void Tool::setup(ImageEditor& editor)
{
    m_editor = editor;
}

void Tool::set_action(GUI::Action* action)
{
    m_action = action;
}

void Tool::on_keydown(GUI::KeyEvent& event)
{
    switch (event.key()) {
    case KeyCode::Key_LeftBracket:
        if (m_primary_slider)
            m_primary_slider->set_value(m_primary_slider->value() - 1);
        break;
    case KeyCode::Key_RightBracket:
        if (m_primary_slider)
            m_primary_slider->set_value(m_primary_slider->value() + 1);
        break;
    case KeyCode::Key_LeftBrace:
        if (m_secondary_slider)
            m_secondary_slider->set_value(m_secondary_slider->value() - 1);
        break;
    case KeyCode::Key_RightBrace:
        if (m_secondary_slider)
            m_secondary_slider->set_value(m_secondary_slider->value() + 1);
        break;
    default:
        break;
    }
}

Gfx::IntPoint Tool::editor_stroke_position(Gfx::IntPoint const& pixel_coords, int stroke_thickness) const
{
    auto position = m_editor->image_position_to_editor_position(pixel_coords);
    auto offset = (stroke_thickness % 2 == 0) ? 0 : m_editor->scale() / 2;
    position = position.translated(offset, offset);
    return position.to_type<int>();
}

}