123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /*
- * Copyright (c) 2023, Torsten Engelmann <engelTorsten@gmx.de>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include "../ImageEditor.h"
- #include "Tool.h"
- namespace PixelPaint {
- class GradientTool : public Tool {
- public:
- GradientTool() = default;
- virtual ~GradientTool() override = default;
- virtual void on_mousedown(Layer*, MouseEvent&) override;
- virtual void on_mousemove(Layer*, MouseEvent&) override;
- virtual void on_mouseup(Layer*, MouseEvent&) override;
- virtual bool on_keydown(GUI::KeyEvent&) override;
- virtual void on_keyup(GUI::KeyEvent&) override;
- virtual void on_primary_color_change(Color) override;
- virtual void on_secondary_color_change(Color) override;
- virtual void on_tool_activation() override;
- virtual NonnullRefPtr<GUI::Widget> get_properties_widget() override;
- virtual Variant<Gfx::StandardCursor, NonnullRefPtr<Gfx::Bitmap const>> cursor() override;
- virtual void on_second_paint(Layer const*, GUI::PaintEvent&) override;
- protected:
- virtual StringView tool_name() const override { return "Gradient Tool"sv; }
- private:
- enum class GradientMode {
- Linear,
- Radial,
- __Count,
- };
- enum class IconStyle {
- None,
- ChangeWidthAndAngle,
- RadialWidth,
- };
- RefPtr<GUI::Widget> m_properties_widget;
- Optional<Gfx::IntPoint> m_gradient_start;
- Optional<Gfx::IntPoint> m_gradient_center;
- Optional<Gfx::IntPoint> m_gradient_end;
- Optional<Gfx::IntPoint> m_gradient_transversal_a;
- Optional<Gfx::IntPoint> m_gradient_transversal_b;
- Gfx::IntPoint m_perpendicular_point;
- GradientMode m_mode = GradientMode::Linear;
- int m_hardness = 25;
- float m_gradient_half_length = 0;
- float m_physical_diagonal_layer_length = 0;
- bool m_button_pressed = false;
- bool m_shift_pressed = false;
- bool m_hover_over_drag_handle = false;
- bool m_hover_over_start_handle = false;
- bool m_hover_over_end_handle = false;
- bool m_hover_over_transversal_a_handle = false;
- bool m_hover_over_transversal_b_handle = false;
- int m_opacity = 100;
- bool m_use_secondary_color { false };
- Gfx::FloatLine m_gradient_begin_line;
- Gfx::FloatLine m_gradient_center_line;
- Gfx::FloatLine m_gradient_end_line;
- void calculate_gradient_lines();
- void calculate_transversal_points(float scale_fraction);
- void draw_gradient(GUI::Painter&, bool with_guidelines = false, const Gfx::FloatPoint drawing_offset = { 0.0f, 0.0f }, float scale = 1, Optional<Gfx::IntRect const&> gradient_clip = {});
- bool has_gradient_data() { return m_gradient_center.has_value() && m_gradient_end.has_value() && m_gradient_start.has_value(); }
- void move_gradient_position(Gfx::IntPoint const movement_delta);
- void rasterize_gradient();
- void reset();
- void rotate_gradient_points(Gfx::IntPoint const delta);
- void update_gradient_with_initial_values(Gfx::IntPoint const);
- };
- }
|