mirror of
https://github.com/RGBCube/serenity
synced 2025-06-20 02:52:08 +00:00

If you press "spacebar" while moving a selection, it will now move the origin point of the selection; and if you press "control" it will move it relatively to the center.
38 lines
985 B
C++
38 lines
985 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "Tool.h"
|
|
|
|
namespace PixelPaint {
|
|
|
|
class RectangleSelectTool final : public Tool {
|
|
public:
|
|
RectangleSelectTool();
|
|
virtual ~RectangleSelectTool();
|
|
|
|
virtual void on_mousedown(Layer&, GUI::MouseEvent&, GUI::MouseEvent&) override;
|
|
virtual void on_mousemove(Layer&, GUI::MouseEvent&, GUI::MouseEvent&) override;
|
|
virtual void on_mouseup(Layer&, GUI::MouseEvent&, GUI::MouseEvent&) override;
|
|
virtual void on_keydown(GUI::KeyEvent&) override;
|
|
virtual void on_keyup(GUI::KeyEvent&) override;
|
|
virtual void on_second_paint(Layer const&, GUI::PaintEvent&) override;
|
|
|
|
private:
|
|
enum class MovingMode {
|
|
MovingOrigin,
|
|
AroundCenter,
|
|
None,
|
|
};
|
|
|
|
bool m_selecting { false };
|
|
MovingMode m_moving_mode { MovingMode::None };
|
|
Gfx::IntPoint m_selection_start;
|
|
Gfx::IntPoint m_selection_end;
|
|
};
|
|
|
|
}
|