mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 04:14:58 +00:00

This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
54 lines
1.7 KiB
C++
54 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../Selection.h"
|
|
#include "Tool.h"
|
|
|
|
#include <AK/Vector.h>
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace PixelPaint {
|
|
|
|
class RectangleSelectTool final : public Tool {
|
|
public:
|
|
RectangleSelectTool() = default;
|
|
virtual ~RectangleSelectTool() = default;
|
|
|
|
virtual void on_mousedown(Layer*, MouseEvent& event) override;
|
|
virtual void on_mousemove(Layer*, MouseEvent& event) override;
|
|
virtual void on_mouseup(Layer*, MouseEvent& event) override;
|
|
virtual bool on_keydown(GUI::KeyEvent&) override;
|
|
virtual void on_keyup(GUI::KeyEvent&) override;
|
|
virtual void on_second_paint(Layer const*, GUI::PaintEvent&) override;
|
|
virtual NonnullRefPtr<GUI::Widget> get_properties_widget() override;
|
|
virtual Variant<Gfx::StandardCursor, NonnullRefPtr<Gfx::Bitmap const>> cursor() override { return Gfx::StandardCursor::Crosshair; }
|
|
virtual Gfx::IntPoint point_position_to_preferred_cell(Gfx::FloatPoint position) const override;
|
|
|
|
private:
|
|
virtual StringView tool_name() const override { return "Rectangle Select Tool"sv; }
|
|
|
|
enum class MovingMode {
|
|
MovingOrigin,
|
|
AroundCenter,
|
|
None,
|
|
};
|
|
|
|
RefPtr<GUI::Widget> m_properties_widget;
|
|
Vector<ByteString> m_merge_mode_names {};
|
|
Selection::MergeMode m_merge_mode { Selection::MergeMode::Set };
|
|
float m_edge_feathering { 0.0f };
|
|
bool m_selecting { false };
|
|
MovingMode m_moving_mode { MovingMode::None };
|
|
Gfx::IntPoint m_selection_start;
|
|
Gfx::IntPoint m_selection_end;
|
|
|
|
Gfx::IntRect selection_rect() const;
|
|
};
|
|
|
|
}
|