2014-02-09 22:10:30 -03:00
|
|
|
/**************************************************************************/
|
|
|
|
|
/* color_picker.h */
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
/* This file is part of: */
|
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
|
/* https://godotengine.org */
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
|
/* */
|
|
|
|
|
/* 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
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "scene/gui/box_container.h"
|
|
|
|
|
#include "scene/gui/button.h"
|
|
|
|
|
#include "scene/gui/popup.h"
|
2025-10-08 11:53:08 +02:00
|
|
|
#include "scene/resources/shader.h"
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2024-11-22 01:09:24 +01:00
|
|
|
class AspectRatioContainer;
|
2022-05-29 20:47:37 +05:30
|
|
|
class ColorMode;
|
2024-11-22 01:09:24 +01:00
|
|
|
class ColorPickerShape;
|
2025-01-17 18:12:36 +02:00
|
|
|
class FileDialog;
|
2024-11-22 01:09:24 +01:00
|
|
|
class GridContainer;
|
|
|
|
|
class HSlider;
|
|
|
|
|
class Label;
|
|
|
|
|
class LineEdit;
|
|
|
|
|
class MarginContainer;
|
|
|
|
|
class MenuButton;
|
|
|
|
|
class OptionButton;
|
|
|
|
|
class PopupMenu;
|
|
|
|
|
class SpinBox;
|
|
|
|
|
class StyleBoxFlat;
|
|
|
|
|
class TextureRect;
|
2022-05-29 20:47:37 +05:30
|
|
|
|
2021-08-18 02:09:48 +02:00
|
|
|
class ColorPresetButton : public BaseButton {
|
|
|
|
|
GDCLASS(ColorPresetButton, BaseButton);
|
|
|
|
|
|
|
|
|
|
Color preset_color;
|
2025-04-29 10:42:28 +08:00
|
|
|
bool recent = false;
|
2021-08-18 02:09:48 +02:00
|
|
|
|
2023-04-03 18:01:11 +02:00
|
|
|
struct ThemeCache {
|
|
|
|
|
Ref<StyleBox> foreground_style;
|
2024-11-07 13:27:11 +01:00
|
|
|
Ref<StyleBox> focus_style;
|
2023-04-03 18:01:11 +02:00
|
|
|
|
|
|
|
|
Ref<Texture2D> background_icon;
|
|
|
|
|
Ref<Texture2D> overbright_indicator;
|
|
|
|
|
} theme_cache;
|
|
|
|
|
|
2021-08-18 02:09:48 +02:00
|
|
|
protected:
|
|
|
|
|
void _notification(int);
|
2023-09-08 21:00:10 +02:00
|
|
|
static void _bind_methods();
|
2021-08-18 02:09:48 +02:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
void set_preset_color(const Color &p_color);
|
|
|
|
|
Color get_preset_color() const;
|
|
|
|
|
|
2025-04-29 10:42:28 +08:00
|
|
|
virtual String get_tooltip(const Point2 &p_pos) const override;
|
|
|
|
|
|
|
|
|
|
ColorPresetButton(Color p_color, int p_size, bool p_recent);
|
2021-08-18 02:09:48 +02:00
|
|
|
~ColorPresetButton();
|
|
|
|
|
};
|
|
|
|
|
|
2022-11-04 09:46:13 -04:00
|
|
|
class ColorPicker : public VBoxContainer {
|
|
|
|
|
GDCLASS(ColorPicker, VBoxContainer);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2023-09-12 15:01:42 +02:00
|
|
|
// These classes poke into theme items for their internal logic.
|
2024-11-20 23:26:52 +01:00
|
|
|
friend class ColorPickerShape;
|
|
|
|
|
friend class ColorPickerShapeRectangle;
|
|
|
|
|
friend class ColorPickerShapeWheel;
|
|
|
|
|
friend class ColorPickerShapeCircle;
|
|
|
|
|
friend class ColorPickerShapeVHSCircle;
|
|
|
|
|
friend class ColorPickerShapeOKHSLCircle;
|
2025-06-07 22:30:40 +08:00
|
|
|
friend class ColorPickerShapeOKHSRectangle;
|
|
|
|
|
friend class ColorPickerShapeOKHLRectangle;
|
2024-11-20 23:26:52 +01:00
|
|
|
|
2023-09-12 15:01:42 +02:00
|
|
|
friend class ColorModeRGB;
|
|
|
|
|
friend class ColorModeHSV;
|
2025-05-23 12:45:29 +08:00
|
|
|
friend class ColorModeLinear;
|
2023-09-12 15:01:42 +02:00
|
|
|
friend class ColorModeOKHSL;
|
|
|
|
|
|
2021-02-23 17:22:46 +07:00
|
|
|
public:
|
2022-05-29 20:47:37 +05:30
|
|
|
enum ColorModeType {
|
|
|
|
|
MODE_RGB,
|
|
|
|
|
MODE_HSV,
|
2025-05-23 12:45:29 +08:00
|
|
|
#ifndef DISABLE_DEPRECATED
|
|
|
|
|
MODE_RAW = 2,
|
|
|
|
|
#endif
|
|
|
|
|
MODE_LINEAR = 2,
|
2022-05-29 20:47:37 +05:30
|
|
|
MODE_OKHSL,
|
|
|
|
|
|
|
|
|
|
MODE_MAX
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-23 17:22:46 +07:00
|
|
|
enum PickerShapeType {
|
|
|
|
|
SHAPE_HSV_RECTANGLE,
|
|
|
|
|
SHAPE_HSV_WHEEL,
|
|
|
|
|
SHAPE_VHS_CIRCLE,
|
2022-04-18 11:29:29 -07:00
|
|
|
SHAPE_OKHSL_CIRCLE,
|
2022-10-21 23:20:28 -04:00
|
|
|
SHAPE_NONE,
|
2025-06-07 22:30:40 +08:00
|
|
|
SHAPE_OK_HS_RECTANGLE,
|
|
|
|
|
SHAPE_OK_HL_RECTANGLE,
|
2021-02-23 17:22:46 +07:00
|
|
|
|
|
|
|
|
SHAPE_MAX
|
|
|
|
|
};
|
|
|
|
|
|
2025-06-07 22:30:40 +08:00
|
|
|
private:
|
|
|
|
|
// Ideally, `SHAPE_NONE` should be -1 so that we don't need to convert shape type to index.
|
|
|
|
|
// In order to avoid breaking compatibility, we have to use these methods for conversion.
|
|
|
|
|
inline int get_current_shape_index() {
|
|
|
|
|
return shape_to_index(current_shape);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline int shape_to_index(PickerShapeType p_shape) {
|
|
|
|
|
if (p_shape == SHAPE_NONE) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
if (p_shape > SHAPE_NONE) {
|
|
|
|
|
return p_shape - 1;
|
|
|
|
|
}
|
|
|
|
|
return p_shape;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline PickerShapeType index_to_shape(int p_index) {
|
|
|
|
|
if (p_index == -1) {
|
|
|
|
|
return SHAPE_NONE;
|
|
|
|
|
}
|
|
|
|
|
if (p_index >= SHAPE_NONE) {
|
|
|
|
|
return (PickerShapeType)(p_index + 1);
|
|
|
|
|
}
|
|
|
|
|
return (PickerShapeType)p_index;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
static const int MODE_SLIDER_COUNT = 3;
|
|
|
|
|
|
2025-05-23 12:45:29 +08:00
|
|
|
enum SLIDER_EXTRA {
|
2025-06-07 22:30:40 +08:00
|
|
|
SLIDER_INTENSITY = MODE_SLIDER_COUNT,
|
2025-05-23 12:45:29 +08:00
|
|
|
SLIDER_ALPHA,
|
|
|
|
|
|
|
|
|
|
SLIDER_MAX
|
|
|
|
|
};
|
2022-05-29 20:47:37 +05:30
|
|
|
|
2024-05-18 10:45:16 +07:00
|
|
|
enum class MenuOption {
|
|
|
|
|
MENU_SAVE,
|
|
|
|
|
MENU_SAVE_AS,
|
|
|
|
|
MENU_LOAD,
|
|
|
|
|
MENU_QUICKLOAD,
|
|
|
|
|
MENU_CLEAR,
|
|
|
|
|
};
|
|
|
|
|
|
2025-06-07 22:30:40 +08:00
|
|
|
private:
|
2024-11-22 01:09:24 +01:00
|
|
|
static inline Ref<Shader> wheel_shader;
|
|
|
|
|
static inline Ref<Shader> circle_shader;
|
|
|
|
|
static inline Ref<Shader> circle_ok_color_shader;
|
2025-06-07 22:30:40 +08:00
|
|
|
static inline Ref<Shader> rectangle_ok_color_hs_shader;
|
|
|
|
|
static inline Ref<Shader> rectangle_ok_color_hl_shader;
|
2024-11-22 01:09:24 +01:00
|
|
|
static inline List<Color> preset_cache;
|
|
|
|
|
static inline List<Color> recent_preset_cache;
|
2021-05-13 15:51:46 +02:00
|
|
|
|
2022-10-11 14:57:20 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
|
Object *editor_settings = nullptr;
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-06-07 22:30:40 +08:00
|
|
|
int current_slider_count = MODE_SLIDER_COUNT;
|
2024-11-07 13:27:11 +01:00
|
|
|
|
|
|
|
|
const float DEFAULT_GAMEPAD_EVENT_DELAY_MS = 1.0 / 2;
|
|
|
|
|
const float GAMEPAD_EVENT_REPEAT_RATE_MS = 1.0 / 30;
|
|
|
|
|
float gamepad_event_delay_ms = DEFAULT_GAMEPAD_EVENT_DELAY_MS;
|
2024-11-20 23:26:52 +01:00
|
|
|
|
|
|
|
|
static constexpr int MODE_BUTTON_COUNT = 3;
|
2022-05-29 20:47:37 +05:30
|
|
|
|
|
|
|
|
bool slider_theme_modified = true;
|
|
|
|
|
|
2024-11-20 23:26:52 +01:00
|
|
|
LocalVector<ColorMode *> modes;
|
|
|
|
|
LocalVector<ColorPickerShape *> shapes;
|
2022-05-29 20:47:37 +05:30
|
|
|
|
2023-02-05 17:35:39 +01:00
|
|
|
Popup *picker_window = nullptr;
|
2024-02-27 22:19:47 +02:00
|
|
|
TextureRect *picker_texture_zoom = nullptr;
|
|
|
|
|
Panel *picker_preview = nullptr;
|
|
|
|
|
Panel *picker_preview_color = nullptr;
|
|
|
|
|
Ref<StyleBoxFlat> picker_preview_style_box;
|
|
|
|
|
Ref<StyleBoxFlat> picker_preview_style_box_color;
|
|
|
|
|
|
2023-03-15 23:30:42 +01:00
|
|
|
// Legacy color picking.
|
2023-02-05 17:35:39 +01:00
|
|
|
TextureRect *picker_texture_rect = nullptr;
|
|
|
|
|
Color picker_color;
|
2024-05-18 10:45:16 +07:00
|
|
|
FileDialog *file_dialog = nullptr;
|
2025-01-22 19:23:29 +01:00
|
|
|
MenuButton *menu_btn = nullptr;
|
2024-05-18 10:45:16 +07:00
|
|
|
PopupMenu *options_menu = nullptr;
|
2023-03-15 23:30:42 +01:00
|
|
|
|
2023-06-20 12:47:52 +02:00
|
|
|
MarginContainer *internal_margin = nullptr;
|
2024-11-20 23:26:52 +01:00
|
|
|
HBoxContainer *shape_container = nullptr;
|
2022-05-29 20:47:37 +05:30
|
|
|
TextureRect *sample = nullptr;
|
2025-01-22 13:42:30 +01:00
|
|
|
VBoxContainer *swatches_vbc = nullptr;
|
2022-05-29 20:47:37 +05:30
|
|
|
GridContainer *preset_container = nullptr;
|
2022-06-30 17:04:32 +05:30
|
|
|
HBoxContainer *recent_preset_hbc = nullptr;
|
2022-05-29 20:47:37 +05:30
|
|
|
Button *btn_add_preset = nullptr;
|
|
|
|
|
Button *btn_pick = nullptr;
|
2024-05-18 10:45:16 +07:00
|
|
|
Label *palette_name = nullptr;
|
|
|
|
|
String palette_path;
|
2022-06-30 17:04:32 +05:30
|
|
|
Button *btn_preset = nullptr;
|
|
|
|
|
Button *btn_recent_preset = nullptr;
|
|
|
|
|
PopupMenu *shape_popup = nullptr;
|
|
|
|
|
PopupMenu *mode_popup = nullptr;
|
|
|
|
|
MenuButton *btn_shape = nullptr;
|
2022-10-21 23:20:28 -04:00
|
|
|
HBoxContainer *mode_hbc = nullptr;
|
|
|
|
|
HBoxContainer *sample_hbc = nullptr;
|
|
|
|
|
GridContainer *slider_gc = nullptr;
|
|
|
|
|
HBoxContainer *hex_hbc = nullptr;
|
2025-05-23 12:45:29 +08:00
|
|
|
Label *hex_label = nullptr;
|
2022-06-30 17:04:32 +05:30
|
|
|
MenuButton *btn_mode = nullptr;
|
|
|
|
|
Button *mode_btns[MODE_BUTTON_COUNT];
|
2025-04-29 10:42:28 +08:00
|
|
|
Ref<ButtonGroup> mode_group;
|
2022-06-30 17:04:32 +05:30
|
|
|
ColorPresetButton *selected_recent_preset = nullptr;
|
|
|
|
|
Ref<ButtonGroup> preset_group;
|
|
|
|
|
Ref<ButtonGroup> recent_preset_group;
|
2024-11-20 23:26:52 +01:00
|
|
|
|
2025-04-18 00:05:49 +03:00
|
|
|
HBoxContainer *perm_hb = nullptr;
|
|
|
|
|
void _req_permission();
|
|
|
|
|
|
2024-05-18 10:45:16 +07:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
|
Callable quick_open_callback;
|
|
|
|
|
Callable palette_saved_callback;
|
|
|
|
|
#endif // TOOLS_ENABLED
|
2022-05-29 20:47:37 +05:30
|
|
|
|
|
|
|
|
OptionButton *mode_option_button = nullptr;
|
|
|
|
|
|
2025-05-23 12:45:29 +08:00
|
|
|
HSlider *sliders[SLIDER_MAX];
|
|
|
|
|
SpinBox *values[SLIDER_MAX];
|
|
|
|
|
Label *labels[SLIDER_MAX];
|
|
|
|
|
|
2022-05-29 20:47:37 +05:30
|
|
|
Button *text_type = nullptr;
|
|
|
|
|
LineEdit *c_text = nullptr;
|
|
|
|
|
|
|
|
|
|
HSlider *alpha_slider = nullptr;
|
|
|
|
|
SpinBox *alpha_value = nullptr;
|
|
|
|
|
Label *alpha_label = nullptr;
|
2021-08-18 02:09:48 +02:00
|
|
|
|
2021-02-09 18:24:36 +01:00
|
|
|
bool edit_alpha = true;
|
2025-05-23 12:45:29 +08:00
|
|
|
|
|
|
|
|
HSlider *intensity_slider = nullptr;
|
|
|
|
|
SpinBox *intensity_value = nullptr;
|
|
|
|
|
Label *intensity_label = nullptr;
|
|
|
|
|
|
|
|
|
|
bool edit_intensity = true;
|
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
Size2i ms;
|
2021-02-09 18:24:36 +01:00
|
|
|
bool text_is_constructor = false;
|
2022-05-29 20:47:37 +05:30
|
|
|
PickerShapeType current_shape = SHAPE_HSV_RECTANGLE;
|
|
|
|
|
ColorModeType current_mode = MODE_RGB;
|
2022-06-30 17:04:32 +05:30
|
|
|
bool colorize_sliders = true;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2022-06-30 17:04:32 +05:30
|
|
|
const int PRESET_COLUMN_COUNT = 9;
|
2021-08-18 02:09:48 +02:00
|
|
|
int prev_preset_size = 0;
|
2022-06-30 17:04:32 +05:30
|
|
|
int prev_rencet_preset_size = 0;
|
2021-08-18 02:09:48 +02:00
|
|
|
List<Color> presets;
|
2022-06-30 17:04:32 +05:30
|
|
|
List<Color> recent_presets;
|
2021-08-18 02:09:48 +02:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
Color color;
|
2025-05-23 12:45:29 +08:00
|
|
|
Color color_normalized;
|
2020-01-05 18:01:24 +01:00
|
|
|
Color old_color;
|
2025-02-01 21:23:51 +02:00
|
|
|
Color pre_picking_color;
|
2023-03-15 23:30:42 +01:00
|
|
|
bool is_picking_color = false;
|
2021-08-18 02:09:48 +02:00
|
|
|
|
2020-01-05 18:01:24 +01:00
|
|
|
bool display_old_color = false;
|
2021-02-09 18:24:36 +01:00
|
|
|
bool deferred_mode_enabled = false;
|
|
|
|
|
bool updating = true;
|
|
|
|
|
bool changing_color = false;
|
2021-02-23 17:22:46 +07:00
|
|
|
bool spinning = false;
|
2022-10-21 23:20:28 -04:00
|
|
|
bool can_add_swatches = true;
|
2021-02-09 18:24:36 +01:00
|
|
|
bool presets_visible = true;
|
2022-10-21 23:20:28 -04:00
|
|
|
bool color_modes_visible = true;
|
|
|
|
|
bool sampler_visible = true;
|
|
|
|
|
bool sliders_visible = true;
|
|
|
|
|
bool hex_visible = true;
|
2022-06-30 17:04:32 +05:30
|
|
|
bool line_edit_mouse_release = false;
|
|
|
|
|
bool text_changed = false;
|
2023-09-19 10:47:46 +02:00
|
|
|
bool currently_dragging = false;
|
2021-08-18 02:09:48 +02:00
|
|
|
|
2021-02-09 18:24:36 +01:00
|
|
|
float h = 0.0;
|
|
|
|
|
float s = 0.0;
|
|
|
|
|
float v = 0.0;
|
2024-11-20 19:34:31 +08:00
|
|
|
|
|
|
|
|
float ok_hsl_h = 0.0;
|
|
|
|
|
float ok_hsl_s = 0.0;
|
|
|
|
|
float ok_hsl_l = 0.0;
|
|
|
|
|
|
2025-05-23 12:45:29 +08:00
|
|
|
bool hsv_cached = false;
|
|
|
|
|
bool okhsl_cached = false;
|
|
|
|
|
|
|
|
|
|
float intensity = 0.0;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2023-04-03 18:01:11 +02:00
|
|
|
struct ThemeCache {
|
|
|
|
|
float base_scale = 1.0;
|
|
|
|
|
|
|
|
|
|
int content_margin = 0;
|
|
|
|
|
int label_width = 0;
|
|
|
|
|
|
|
|
|
|
int sv_height = 0;
|
|
|
|
|
int sv_width = 0;
|
|
|
|
|
int h_width = 0;
|
|
|
|
|
|
2022-11-23 14:56:10 +01:00
|
|
|
bool center_slider_grabbers = true;
|
|
|
|
|
|
2024-11-07 13:27:11 +01:00
|
|
|
Ref<StyleBox> picker_focus_rectangle;
|
|
|
|
|
Ref<StyleBox> picker_focus_circle;
|
|
|
|
|
Color focused_not_editing_cursor_color;
|
2024-05-18 10:45:16 +07:00
|
|
|
Ref<Texture2D> menu_option;
|
2023-04-03 18:01:11 +02:00
|
|
|
Ref<Texture2D> screen_picker;
|
|
|
|
|
Ref<Texture2D> expanded_arrow;
|
|
|
|
|
Ref<Texture2D> folded_arrow;
|
|
|
|
|
Ref<Texture2D> add_preset;
|
|
|
|
|
|
|
|
|
|
Ref<Texture2D> shape_rect;
|
|
|
|
|
Ref<Texture2D> shape_rect_wheel;
|
|
|
|
|
Ref<Texture2D> shape_circle;
|
|
|
|
|
|
|
|
|
|
Ref<Texture2D> bar_arrow;
|
2023-09-12 15:01:42 +02:00
|
|
|
Ref<Texture2D> sample_bg;
|
2023-11-06 14:53:52 +01:00
|
|
|
Ref<Texture2D> sample_revert;
|
2024-11-07 13:27:11 +01:00
|
|
|
Ref<StyleBox> sample_focus;
|
2023-04-03 18:01:11 +02:00
|
|
|
Ref<Texture2D> overbright_indicator;
|
|
|
|
|
Ref<Texture2D> picker_cursor;
|
2025-01-10 09:55:54 +02:00
|
|
|
Ref<Texture2D> picker_cursor_bg;
|
2023-09-12 15:01:42 +02:00
|
|
|
Ref<Texture2D> color_hue;
|
2023-04-03 18:01:11 +02:00
|
|
|
|
2025-05-23 12:45:29 +08:00
|
|
|
Ref<Texture2D> color_script;
|
|
|
|
|
|
2023-04-03 18:01:11 +02:00
|
|
|
/* Mode buttons */
|
|
|
|
|
Ref<StyleBox> mode_button_normal;
|
|
|
|
|
Ref<StyleBox> mode_button_pressed;
|
|
|
|
|
Ref<StyleBox> mode_button_hover;
|
|
|
|
|
} theme_cache;
|
|
|
|
|
|
2025-05-23 12:45:29 +08:00
|
|
|
void _copy_normalized_to_hsv_okhsl();
|
|
|
|
|
void _copy_hsv_okhsl_to_normalized();
|
|
|
|
|
|
|
|
|
|
Color _color_apply_intensity(const Color &col) const;
|
|
|
|
|
void _normalized_apply_intensity_to_color();
|
|
|
|
|
void _copy_color_to_normalized_and_intensity();
|
2022-08-01 22:54:33 +02:00
|
|
|
|
2022-05-29 20:47:37 +05:30
|
|
|
void create_slider(GridContainer *gc, int idx);
|
2023-04-03 18:01:11 +02:00
|
|
|
void _reset_sliders_theme();
|
2021-06-16 09:43:34 -07:00
|
|
|
void _html_submitted(const String &p_html);
|
2023-09-19 10:47:46 +02:00
|
|
|
void _slider_drag_started();
|
|
|
|
|
void _slider_value_changed();
|
|
|
|
|
void _slider_drag_ended();
|
2014-02-09 22:10:30 -03:00
|
|
|
void _update_controls();
|
2019-05-03 19:38:45 +02:00
|
|
|
void _update_color(bool p_update_sliders = true);
|
2016-07-02 20:08:25 -05:00
|
|
|
void _update_text_value();
|
2025-04-29 10:42:28 +08:00
|
|
|
#ifdef TOOLS_ENABLED
|
2016-01-26 19:10:56 -03:00
|
|
|
void _text_type_toggled();
|
2025-04-29 10:42:28 +08:00
|
|
|
#endif // TOOLS_ENABLED
|
2021-05-10 16:59:46 +02:00
|
|
|
void _sample_input(const Ref<InputEvent> &p_event);
|
2015-11-21 02:51:42 -03:00
|
|
|
void _sample_draw();
|
2021-02-17 12:30:56 +07:00
|
|
|
void _slider_draw(int p_which);
|
2025-05-23 12:45:29 +08:00
|
|
|
void _alpha_slider_draw();
|
2024-11-20 23:26:52 +01:00
|
|
|
|
2022-06-30 17:04:32 +05:30
|
|
|
void _slider_or_spin_input(const Ref<InputEvent> &p_event);
|
|
|
|
|
void _line_edit_input(const Ref<InputEvent> &p_event);
|
2021-08-18 02:09:48 +02:00
|
|
|
void _preset_input(const Ref<InputEvent> &p_event, const Color &p_color);
|
2022-06-30 17:04:32 +05:30
|
|
|
void _recent_preset_pressed(const bool pressed, ColorPresetButton *p_preset);
|
|
|
|
|
void _text_changed(const String &p_new_text);
|
2015-12-23 23:17:09 -03:00
|
|
|
void _add_preset_pressed();
|
2018-03-09 21:02:58 +01:00
|
|
|
void _html_focus_exit();
|
2023-03-15 23:30:42 +01:00
|
|
|
void _pick_button_pressed();
|
2024-02-27 22:19:47 +02:00
|
|
|
void _target_gui_input(const Ref<InputEvent> &p_event);
|
2023-03-15 23:30:42 +01:00
|
|
|
void _pick_finished();
|
2024-05-18 10:45:16 +07:00
|
|
|
void _update_menu_items();
|
|
|
|
|
void _options_menu_cbk(int p_which);
|
2024-11-07 13:27:11 +01:00
|
|
|
void _block_input_on_popup_show();
|
|
|
|
|
void _enable_input_on_popup_hide();
|
2024-05-18 10:45:16 +07:00
|
|
|
|
2025-01-14 15:15:34 +02:00
|
|
|
// Native color picking.
|
|
|
|
|
void _pick_button_pressed_native();
|
|
|
|
|
void _native_cb(bool p_status, const Color &p_color);
|
|
|
|
|
|
2023-03-15 23:30:42 +01:00
|
|
|
// Legacy color picking.
|
|
|
|
|
void _pick_button_pressed_legacy();
|
|
|
|
|
void _picker_texture_input(const Ref<InputEvent> &p_event);
|
2016-02-01 21:32:47 -03:00
|
|
|
|
2021-08-18 02:09:48 +02:00
|
|
|
inline int _get_preset_size();
|
|
|
|
|
void _add_preset_button(int p_size, const Color &p_color);
|
2022-06-30 17:04:32 +05:30
|
|
|
void _add_recent_preset_button(int p_size, const Color &p_color);
|
2024-05-18 10:45:16 +07:00
|
|
|
void _save_palette(bool p_is_save_as);
|
|
|
|
|
void _load_palette();
|
2021-08-18 02:09:48 +02:00
|
|
|
|
2022-06-30 17:04:32 +05:30
|
|
|
void _show_hide_preset(const bool &p_is_btn_pressed, Button *p_btn_preset, Container *p_preset_container);
|
|
|
|
|
void _update_drop_down_arrow(const bool &p_is_btn_pressed, Button *p_btn_preset);
|
|
|
|
|
|
|
|
|
|
void _set_mode_popup_value(ColorModeType p_mode);
|
|
|
|
|
|
|
|
|
|
Variant _get_drag_data_fw(const Point2 &p_point, Control *p_from_control);
|
|
|
|
|
bool _can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from_control) const;
|
|
|
|
|
void _drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from_control);
|
2022-05-29 20:47:37 +05:30
|
|
|
|
2025-04-29 10:42:28 +08:00
|
|
|
void _ensure_file_dialog();
|
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
protected:
|
2023-04-03 18:01:11 +02:00
|
|
|
virtual void _update_theme_item_cache() override;
|
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
void _notification(int);
|
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2022-10-11 14:57:20 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
|
void set_editor_settings(Object *p_editor_settings);
|
2024-05-18 10:45:16 +07:00
|
|
|
void set_quick_open_callback(const Callable &p_file_selected);
|
|
|
|
|
void set_palette_saved_callback(const Callable &p_palette_saved);
|
2025-04-29 10:42:28 +08:00
|
|
|
|
|
|
|
|
void _quick_open_palette_file_selected(const String &p_path);
|
2022-10-11 14:57:20 +02:00
|
|
|
#endif
|
2025-04-29 10:42:28 +08:00
|
|
|
|
2025-06-07 22:30:40 +08:00
|
|
|
GridContainer *get_slider_container();
|
2022-05-29 20:47:37 +05:30
|
|
|
HSlider *get_slider(int idx);
|
|
|
|
|
Vector<float> get_active_slider_values();
|
|
|
|
|
|
2021-05-13 15:51:46 +02:00
|
|
|
static void init_shaders();
|
|
|
|
|
static void finish_shaders();
|
|
|
|
|
|
2022-05-29 20:47:37 +05:30
|
|
|
void add_mode(ColorMode *p_mode);
|
2024-11-20 23:26:52 +01:00
|
|
|
void add_shape(ColorPickerShape *p_shape);
|
2022-05-29 20:47:37 +05:30
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
void set_edit_alpha(bool p_show);
|
|
|
|
|
bool is_editing_alpha() const;
|
|
|
|
|
|
2025-05-23 12:45:29 +08:00
|
|
|
void set_edit_intensity(bool p_show);
|
|
|
|
|
bool is_editing_intensity() const;
|
|
|
|
|
|
|
|
|
|
void _set_pick_color(const Color &p_color, bool p_update_sliders, bool p_calc_intensity);
|
2019-06-19 14:52:54 +02:00
|
|
|
void set_pick_color(const Color &p_color);
|
2017-01-14 11:07:57 -03:00
|
|
|
Color get_pick_color() const;
|
2020-01-05 18:01:24 +01:00
|
|
|
void set_old_color(const Color &p_color);
|
2024-02-22 18:01:28 -06:00
|
|
|
Color get_old_color() const;
|
2025-04-29 10:42:28 +08:00
|
|
|
|
2024-05-18 10:45:16 +07:00
|
|
|
void _palette_file_selected(const String &p_path);
|
2020-01-05 18:01:24 +01:00
|
|
|
|
|
|
|
|
void set_display_old_color(bool p_enabled);
|
|
|
|
|
bool is_displaying_old_color() const;
|
2015-12-23 23:17:09 -03:00
|
|
|
|
2022-05-29 20:47:37 +05:30
|
|
|
void set_picker_shape(PickerShapeType p_shape);
|
2021-02-23 17:22:46 +07:00
|
|
|
PickerShapeType get_picker_shape() const;
|
|
|
|
|
|
2015-12-23 23:17:09 -03:00
|
|
|
void add_preset(const Color &p_color);
|
2022-06-30 17:04:32 +05:30
|
|
|
void add_recent_preset(const Color &p_color);
|
2018-10-03 16:12:38 +02:00
|
|
|
void erase_preset(const Color &p_color);
|
2022-06-30 17:04:32 +05:30
|
|
|
void erase_recent_preset(const Color &p_color);
|
2020-02-17 18:06:54 -03:00
|
|
|
PackedColorArray get_presets() const;
|
2022-06-30 17:04:32 +05:30
|
|
|
PackedColorArray get_recent_presets() const;
|
2021-08-18 02:09:48 +02:00
|
|
|
void _update_presets();
|
2022-06-30 17:04:32 +05:30
|
|
|
void _update_recent_presets();
|
|
|
|
|
|
|
|
|
|
void _select_from_preset_container(const Color &p_color);
|
|
|
|
|
bool _select_from_recent_preset_hbc(const Color &p_color);
|
2018-10-03 16:12:38 +02:00
|
|
|
|
2022-05-29 20:47:37 +05:30
|
|
|
void set_color_mode(ColorModeType p_mode);
|
|
|
|
|
ColorModeType get_color_mode() const;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2022-06-30 17:04:32 +05:30
|
|
|
void set_colorize_sliders(bool p_colorize_sliders);
|
|
|
|
|
bool is_colorizing_sliders() const;
|
|
|
|
|
|
2018-05-29 15:21:06 +03:00
|
|
|
void set_deferred_mode(bool p_enabled);
|
|
|
|
|
bool is_deferred_mode() const;
|
|
|
|
|
|
2022-10-21 23:20:28 -04:00
|
|
|
void set_can_add_swatches(bool p_enabled);
|
|
|
|
|
bool are_swatches_enabled() const;
|
2019-02-24 14:42:46 -06:00
|
|
|
|
|
|
|
|
void set_presets_visible(bool p_visible);
|
|
|
|
|
bool are_presets_visible() const;
|
|
|
|
|
|
2022-10-21 23:20:28 -04:00
|
|
|
void set_modes_visible(bool p_visible);
|
|
|
|
|
bool are_modes_visible() const;
|
|
|
|
|
|
|
|
|
|
void set_sampler_visible(bool p_visible);
|
|
|
|
|
bool is_sampler_visible() const;
|
|
|
|
|
|
|
|
|
|
void set_sliders_visible(bool p_visible);
|
|
|
|
|
bool are_sliders_visible() const;
|
|
|
|
|
|
|
|
|
|
void set_hex_visible(bool p_visible);
|
|
|
|
|
bool is_hex_visible() const;
|
|
|
|
|
|
2016-07-01 10:55:35 -03:00
|
|
|
void set_focus_on_line_edit();
|
2024-11-07 13:27:11 +01:00
|
|
|
void set_focus_on_picker_shape();
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
|
ColorPicker();
|
2022-05-29 20:47:37 +05:30
|
|
|
~ColorPicker();
|
2014-02-09 22:10:30 -03:00
|
|
|
};
|
|
|
|
|
|
2024-02-22 18:01:28 -06:00
|
|
|
class ColorPickerPopupPanel : public PopupPanel {
|
|
|
|
|
virtual void _input_from_window(const Ref<InputEvent> &p_event) override;
|
|
|
|
|
};
|
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
class ColorPickerButton : public Button {
|
2017-01-02 23:03:46 -03:00
|
|
|
GDCLASS(ColorPickerButton, Button);
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2021-02-09 18:24:36 +01:00
|
|
|
// Initialization is now done deferred,
|
|
|
|
|
// this improves performance in the inspector as the color picker
|
|
|
|
|
// can be expensive to initialize.
|
|
|
|
|
|
|
|
|
|
PopupPanel *popup = nullptr;
|
|
|
|
|
ColorPicker *picker = nullptr;
|
2018-05-15 17:12:35 -03:00
|
|
|
Color color;
|
2021-02-09 18:24:36 +01:00
|
|
|
bool edit_alpha = true;
|
2025-05-23 12:45:29 +08:00
|
|
|
bool edit_intensity = true;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2023-04-03 18:01:11 +02:00
|
|
|
struct ThemeCache {
|
|
|
|
|
Ref<StyleBox> normal_style;
|
|
|
|
|
Ref<Texture2D> background_icon;
|
|
|
|
|
|
|
|
|
|
Ref<Texture2D> overbright_indicator;
|
|
|
|
|
} theme_cache;
|
|
|
|
|
|
2020-01-05 18:01:24 +01:00
|
|
|
void _about_to_popup();
|
2014-02-09 22:10:30 -03:00
|
|
|
void _color_changed(const Color &p_color);
|
2018-04-12 16:47:53 -05:00
|
|
|
void _modal_closed();
|
|
|
|
|
|
2020-07-10 11:34:39 +01:00
|
|
|
virtual void pressed() override;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2018-05-15 17:12:35 -03:00
|
|
|
void _update_picker();
|
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
protected:
|
|
|
|
|
void _notification(int);
|
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
2017-01-14 11:07:57 -03:00
|
|
|
public:
|
|
|
|
|
void set_pick_color(const Color &p_color);
|
|
|
|
|
Color get_pick_color() const;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
|
void set_edit_alpha(bool p_show);
|
|
|
|
|
bool is_editing_alpha() const;
|
|
|
|
|
|
2025-05-23 12:45:29 +08:00
|
|
|
void set_edit_intensity(bool p_show);
|
|
|
|
|
bool is_editing_intensity() const;
|
|
|
|
|
|
2018-05-15 17:12:35 -03:00
|
|
|
ColorPicker *get_picker();
|
2018-07-10 15:06:36 +02:00
|
|
|
PopupPanel *get_popup();
|
2016-06-19 02:08:22 -03:00
|
|
|
|
2022-03-04 09:18:44 +01:00
|
|
|
ColorPickerButton(const String &p_text = String());
|
2014-02-09 22:10:30 -03:00
|
|
|
};
|
|
|
|
|
|
2021-02-23 17:22:46 +07:00
|
|
|
VARIANT_ENUM_CAST(ColorPicker::PickerShapeType);
|
2022-05-29 20:47:37 +05:30
|
|
|
VARIANT_ENUM_CAST(ColorPicker::ColorModeType);
|