123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- /**************************************************************************/
- /* 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. */
- /**************************************************************************/
- #ifndef COLOR_PICKER_H
- #define COLOR_PICKER_H
- #include "scene/gui/box_container.h"
- #include "scene/gui/button.h"
- #include "scene/gui/popup.h"
- class AspectRatioContainer;
- class ColorMode;
- class ColorPickerShape;
- class GridContainer;
- class HSlider;
- class Label;
- class LineEdit;
- class MarginContainer;
- class MenuButton;
- class OptionButton;
- class PopupMenu;
- class SpinBox;
- class StyleBoxFlat;
- class TextureRect;
- class FileDialog;
- class ColorPresetButton : public BaseButton {
- GDCLASS(ColorPresetButton, BaseButton);
- Color preset_color;
- struct ThemeCache {
- Ref<StyleBox> foreground_style;
- Ref<Texture2D> background_icon;
- Ref<Texture2D> overbright_indicator;
- } theme_cache;
- protected:
- void _notification(int);
- static void _bind_methods();
- public:
- void set_preset_color(const Color &p_color);
- Color get_preset_color() const;
- ColorPresetButton(Color p_color, int p_size);
- ~ColorPresetButton();
- };
- class ColorPicker : public VBoxContainer {
- GDCLASS(ColorPicker, VBoxContainer);
- // These classes poke into theme items for their internal logic.
- friend class ColorModeRGB;
- friend class ColorModeHSV;
- friend class ColorModeRAW;
- friend class ColorModeOKHSL;
- public:
- enum ColorModeType {
- MODE_RGB,
- MODE_HSV,
- MODE_RAW,
- MODE_OKHSL,
- MODE_MAX
- };
- enum PickerShapeType {
- SHAPE_HSV_RECTANGLE,
- SHAPE_HSV_WHEEL,
- SHAPE_VHS_CIRCLE,
- SHAPE_OKHSL_CIRCLE,
- SHAPE_NONE,
- SHAPE_MAX
- };
- static const int SLIDER_COUNT = 4;
- private:
- enum class MenuOption {
- MENU_SAVE,
- MENU_SAVE_AS,
- MENU_LOAD,
- MENU_QUICKLOAD,
- MENU_CLEAR,
- };
- static inline Ref<Shader> wheel_shader;
- static inline Ref<Shader> circle_shader;
- static inline Ref<Shader> circle_ok_color_shader;
- static inline List<Color> preset_cache;
- static inline List<Color> recent_preset_cache;
- #ifdef TOOLS_ENABLED
- Object *editor_settings = nullptr;
- #endif
- int current_slider_count = SLIDER_COUNT;
- static const int MODE_BUTTON_COUNT = 3;
- bool slider_theme_modified = true;
- Vector<ColorMode *> modes;
- Popup *picker_window = nullptr;
- 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;
- // Legacy color picking.
- TextureRect *picker_texture_rect = nullptr;
- Color picker_color;
- FileDialog *file_dialog = nullptr;
- Button *menu_btn = nullptr;
- PopupMenu *options_menu = nullptr;
- MarginContainer *internal_margin = nullptr;
- Control *uv_edit = nullptr;
- Control *w_edit = nullptr;
- AspectRatioContainer *wheel_edit = nullptr;
- MarginContainer *wheel_margin = nullptr;
- Ref<ShaderMaterial> wheel_mat;
- Ref<ShaderMaterial> circle_mat;
- Control *wheel = nullptr;
- Control *wheel_uv = nullptr;
- TextureRect *sample = nullptr;
- GridContainer *preset_container = nullptr;
- HBoxContainer *recent_preset_hbc = nullptr;
- Button *btn_add_preset = nullptr;
- Button *btn_pick = nullptr;
- Label *palette_name = nullptr;
- String palette_path;
- Button *btn_preset = nullptr;
- Button *btn_recent_preset = nullptr;
- PopupMenu *shape_popup = nullptr;
- PopupMenu *mode_popup = nullptr;
- MenuButton *btn_shape = nullptr;
- HBoxContainer *mode_hbc = nullptr;
- HBoxContainer *sample_hbc = nullptr;
- GridContainer *slider_gc = nullptr;
- HBoxContainer *hex_hbc = nullptr;
- MenuButton *btn_mode = nullptr;
- Button *mode_btns[MODE_BUTTON_COUNT];
- Ref<ButtonGroup> mode_group = nullptr;
- ColorPresetButton *selected_recent_preset = nullptr;
- Ref<ButtonGroup> preset_group;
- Ref<ButtonGroup> recent_preset_group;
- #ifdef TOOLS_ENABLED
- Callable quick_open_callback;
- Callable palette_saved_callback;
- #endif // TOOLS_ENABLED
- OptionButton *mode_option_button = nullptr;
- HSlider *sliders[SLIDER_COUNT];
- SpinBox *values[SLIDER_COUNT];
- Label *labels[SLIDER_COUNT];
- Button *text_type = nullptr;
- LineEdit *c_text = nullptr;
- HSlider *alpha_slider = nullptr;
- SpinBox *alpha_value = nullptr;
- Label *alpha_label = nullptr;
- bool edit_alpha = true;
- Size2i ms;
- bool text_is_constructor = false;
- PickerShapeType current_shape = SHAPE_HSV_RECTANGLE;
- ColorModeType current_mode = MODE_RGB;
- bool colorize_sliders = true;
- const int PRESET_COLUMN_COUNT = 9;
- int prev_preset_size = 0;
- int prev_rencet_preset_size = 0;
- List<Color> presets;
- List<Color> recent_presets;
- Color color;
- Color old_color;
- bool is_picking_color = false;
- bool display_old_color = false;
- bool deferred_mode_enabled = false;
- bool updating = true;
- bool changing_color = false;
- bool spinning = false;
- bool can_add_swatches = true;
- bool presets_visible = true;
- bool color_modes_visible = true;
- bool sampler_visible = true;
- bool sliders_visible = true;
- bool hex_visible = true;
- bool line_edit_mouse_release = false;
- bool text_changed = false;
- bool currently_dragging = false;
- float h = 0.0;
- float s = 0.0;
- float v = 0.0;
- float ok_hsl_h = 0.0;
- float ok_hsl_s = 0.0;
- float ok_hsl_l = 0.0;
- Color last_color;
- 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;
- bool center_slider_grabbers = true;
- Ref<Texture2D> menu_option;
- 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;
- Ref<Texture2D> sample_bg;
- Ref<Texture2D> sample_revert;
- Ref<Texture2D> overbright_indicator;
- Ref<Texture2D> picker_cursor;
- Ref<Texture2D> color_hue;
- Ref<Texture2D> color_okhsl_hue;
- /* Mode buttons */
- Ref<StyleBox> mode_button_normal;
- Ref<StyleBox> mode_button_pressed;
- Ref<StyleBox> mode_button_hover;
- } theme_cache;
- void _copy_color_to_hsv();
- void _copy_hsv_to_color();
- PickerShapeType _get_actual_shape() const;
- void create_slider(GridContainer *gc, int idx);
- void _reset_sliders_theme();
- void _html_submitted(const String &p_html);
- void _slider_drag_started();
- void _slider_value_changed();
- void _slider_drag_ended();
- void _update_controls();
- void _update_color(bool p_update_sliders = true);
- void _update_text_value();
- void _text_type_toggled();
- void _sample_input(const Ref<InputEvent> &p_event);
- void _sample_draw();
- void _hsv_draw(int p_which, Control *c);
- void _slider_draw(int p_which);
- void _uv_input(const Ref<InputEvent> &p_event, Control *c);
- void _w_input(const Ref<InputEvent> &p_event);
- void _slider_or_spin_input(const Ref<InputEvent> &p_event);
- void _line_edit_input(const Ref<InputEvent> &p_event);
- void _preset_input(const Ref<InputEvent> &p_event, const Color &p_color);
- void _recent_preset_pressed(const bool pressed, ColorPresetButton *p_preset);
- void _text_changed(const String &p_new_text);
- void _add_preset_pressed();
- void _html_focus_exit();
- void _pick_button_pressed();
- void _target_gui_input(const Ref<InputEvent> &p_event);
- void _pick_finished();
- void _update_menu_items();
- void _update_menu();
- void _options_menu_cbk(int p_which);
- // Legacy color picking.
- void _pick_button_pressed_legacy();
- void _picker_texture_input(const Ref<InputEvent> &p_event);
- inline int _get_preset_size();
- void _add_preset_button(int p_size, const Color &p_color);
- void _add_recent_preset_button(int p_size, const Color &p_color);
- void _save_palette(bool p_is_save_as);
- void _load_palette();
- 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);
- protected:
- virtual void _update_theme_item_cache() override;
- void _notification(int);
- static void _bind_methods();
- public:
- #ifdef TOOLS_ENABLED
- void set_editor_settings(Object *p_editor_settings);
- void set_quick_open_callback(const Callable &p_file_selected);
- void set_palette_saved_callback(const Callable &p_palette_saved);
- #endif
- HSlider *get_slider(int idx);
- Vector<float> get_active_slider_values();
- static void init_shaders();
- static void finish_shaders();
- void add_mode(ColorMode *p_mode);
- void set_edit_alpha(bool p_show);
- bool is_editing_alpha() const;
- void _set_pick_color(const Color &p_color, bool p_update_sliders);
- void set_pick_color(const Color &p_color);
- Color get_pick_color() const;
- void set_old_color(const Color &p_color);
- Color get_old_color() const;
- void _quick_open_palette_file_selected(const String &p_path);
- void _palette_file_selected(const String &p_path);
- void set_display_old_color(bool p_enabled);
- bool is_displaying_old_color() const;
- void set_picker_shape(PickerShapeType p_shape);
- PickerShapeType get_picker_shape() const;
- void add_preset(const Color &p_color);
- void add_recent_preset(const Color &p_color);
- void erase_preset(const Color &p_color);
- void erase_recent_preset(const Color &p_color);
- PackedColorArray get_presets() const;
- PackedColorArray get_recent_presets() const;
- void _update_presets();
- void _update_recent_presets();
- void _select_from_preset_container(const Color &p_color);
- bool _select_from_recent_preset_hbc(const Color &p_color);
- void set_color_mode(ColorModeType p_mode);
- ColorModeType get_color_mode() const;
- void set_colorize_sliders(bool p_colorize_sliders);
- bool is_colorizing_sliders() const;
- void set_deferred_mode(bool p_enabled);
- bool is_deferred_mode() const;
- void set_can_add_swatches(bool p_enabled);
- bool are_swatches_enabled() const;
- void set_presets_visible(bool p_visible);
- bool are_presets_visible() const;
- 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;
- void set_focus_on_line_edit();
- ColorPicker();
- ~ColorPicker();
- };
- class ColorPickerPopupPanel : public PopupPanel {
- virtual void _input_from_window(const Ref<InputEvent> &p_event) override;
- };
- class ColorPickerButton : public Button {
- GDCLASS(ColorPickerButton, Button);
- // 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;
- Color color;
- bool edit_alpha = true;
- struct ThemeCache {
- Ref<StyleBox> normal_style;
- Ref<Texture2D> background_icon;
- Ref<Texture2D> overbright_indicator;
- } theme_cache;
- void _about_to_popup();
- void _color_changed(const Color &p_color);
- void _modal_closed();
- virtual void pressed() override;
- void _update_picker();
- protected:
- void _notification(int);
- static void _bind_methods();
- public:
- void set_pick_color(const Color &p_color);
- Color get_pick_color() const;
- void set_edit_alpha(bool p_show);
- bool is_editing_alpha() const;
- ColorPicker *get_picker();
- PopupPanel *get_popup();
- ColorPickerButton(const String &p_text = String());
- };
- VARIANT_ENUM_CAST(ColorPicker::PickerShapeType);
- VARIANT_ENUM_CAST(ColorPicker::ColorModeType);
- #endif // COLOR_PICKER_H
|