2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2022-08-31 22:45:04 +02:00
|
|
|
/* gradient_editor.h */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2016-06-18 14:46:12 +02:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2022-08-31 22:45:04 +02:00
|
|
|
#ifndef GRADIENT_EDITOR_H
|
|
|
|
#define GRADIENT_EDITOR_H
|
2015-05-24 20:18:52 +02:00
|
|
|
|
|
|
|
#include "scene/gui/color_picker.h"
|
|
|
|
#include "scene/gui/popup.h"
|
2019-02-12 17:18:13 +01:00
|
|
|
#include "scene/resources/gradient.h"
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2022-08-31 22:45:04 +02:00
|
|
|
class GradientEditor : public Control {
|
|
|
|
GDCLASS(GradientEditor, Control);
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
PopupPanel *popup = nullptr;
|
|
|
|
ColorPicker *picker = nullptr;
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2021-02-09 18:24:36 +01:00
|
|
|
bool grabbing = false;
|
|
|
|
int grabbed = -1;
|
2017-05-29 02:46:48 +02:00
|
|
|
Vector<Gradient::Point> points;
|
2021-11-08 19:11:36 +01:00
|
|
|
Gradient::InterpolationMode interpolation_mode = Gradient::GRADIENT_INTERPOLATE_LINEAR;
|
|
|
|
|
2022-08-31 22:45:04 +02:00
|
|
|
bool editing = false;
|
|
|
|
Ref<Gradient> gradient;
|
2021-11-08 19:11:36 +01:00
|
|
|
Ref<Gradient> gradient_cache;
|
|
|
|
Ref<GradientTexture1D> preview_texture;
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2021-10-02 22:07:42 +02:00
|
|
|
// Make sure to use the scaled value below.
|
|
|
|
const int BASE_SPACING = 3;
|
2022-11-21 18:19:44 +01:00
|
|
|
const int BASE_HANDLE_WIDTH = 8;
|
2021-10-02 22:07:42 +02:00
|
|
|
|
|
|
|
int draw_spacing = BASE_SPACING;
|
2022-11-21 18:19:44 +01:00
|
|
|
int handle_width = BASE_HANDLE_WIDTH;
|
2021-10-02 22:07:42 +02:00
|
|
|
|
2022-08-31 22:45:04 +02:00
|
|
|
void _gradient_changed();
|
|
|
|
void _ramp_changed();
|
2015-05-24 20:18:52 +02:00
|
|
|
void _color_changed(const Color &p_color);
|
2022-08-31 22:45:04 +02:00
|
|
|
|
2015-05-24 20:18:52 +02:00
|
|
|
int _get_point_from_pos(int x);
|
|
|
|
void _show_color_picker();
|
|
|
|
|
|
|
|
protected:
|
2021-08-22 17:37:22 +02:00
|
|
|
virtual void gui_input(const Ref<InputEvent> &p_event) override;
|
2015-05-24 20:18:52 +02:00
|
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2022-08-31 22:45:04 +02:00
|
|
|
void set_gradient(const Ref<Gradient> &p_gradient);
|
|
|
|
void reverse_gradient();
|
|
|
|
|
2022-06-28 19:55:08 +02:00
|
|
|
void set_ramp(const Vector<float> &p_offsets, const Vector<Color> &p_colors);
|
2022-08-31 22:45:04 +02:00
|
|
|
|
2022-06-28 19:55:08 +02:00
|
|
|
Vector<float> get_offsets() const;
|
2015-05-24 20:18:52 +02:00
|
|
|
Vector<Color> get_colors() const;
|
2017-05-29 02:46:48 +02:00
|
|
|
void set_points(Vector<Gradient::Point> &p_points);
|
|
|
|
Vector<Gradient::Point> &get_points();
|
2022-08-31 22:45:04 +02:00
|
|
|
|
2021-11-08 19:11:36 +01:00
|
|
|
void set_interpolation_mode(Gradient::InterpolationMode p_interp_mode);
|
|
|
|
Gradient::InterpolationMode get_interpolation_mode();
|
2022-08-31 22:45:04 +02:00
|
|
|
|
2021-12-20 15:34:29 +01:00
|
|
|
ColorPicker *get_picker();
|
2022-07-01 05:43:46 +02:00
|
|
|
PopupPanel *get_popup();
|
2021-11-08 19:11:36 +01:00
|
|
|
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual Size2 get_minimum_size() const override;
|
2015-05-24 20:18:52 +02:00
|
|
|
|
2022-08-31 22:45:04 +02:00
|
|
|
GradientEditor();
|
|
|
|
virtual ~GradientEditor();
|
2015-05-24 20:18:52 +02:00
|
|
|
};
|
|
|
|
|
2022-08-31 22:45:04 +02:00
|
|
|
#endif // GRADIENT_EDITOR_H
|