color_picker.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /*************************************************************************/
  2. /* color_picker.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef COLOR_PICKER_H
  31. #define COLOR_PICKER_H
  32. #include "scene/gui/box_container.h"
  33. #include "scene/gui/button.h"
  34. #include "scene/gui/check_button.h"
  35. #include "scene/gui/label.h"
  36. #include "scene/gui/line_edit.h"
  37. #include "scene/gui/popup.h"
  38. #include "scene/gui/separator.h"
  39. #include "scene/gui/slider.h"
  40. #include "scene/gui/spin_box.h"
  41. #include "scene/gui/texture_rect.h"
  42. #include "scene/gui/tool_button.h"
  43. class ColorPicker : public BoxContainer {
  44. GDCLASS(ColorPicker, BoxContainer);
  45. private:
  46. static List<Color> preset_cache;
  47. Control *screen;
  48. Control *uv_edit;
  49. Control *w_edit;
  50. TextureRect *sample;
  51. TextureRect *preset;
  52. HBoxContainer *preset_container;
  53. HBoxContainer *preset_container2;
  54. HSeparator *preset_separator;
  55. Button *bt_add_preset;
  56. List<Color> presets;
  57. ToolButton *btn_pick;
  58. CheckButton *btn_hsv;
  59. CheckButton *btn_raw;
  60. HSlider *scroll[4];
  61. SpinBox *values[4];
  62. Label *labels[4];
  63. Button *text_type;
  64. LineEdit *c_text;
  65. bool edit_alpha;
  66. Size2i ms;
  67. bool text_is_constructor;
  68. int presets_per_row;
  69. Color color;
  70. Color old_color;
  71. bool display_old_color = false;
  72. bool raw_mode_enabled;
  73. bool hsv_mode_enabled;
  74. bool deferred_mode_enabled;
  75. bool updating;
  76. bool changing_color;
  77. bool presets_enabled;
  78. bool presets_visible;
  79. float h, s, v;
  80. Color last_hsv;
  81. void _html_entered(const String &p_html);
  82. void _value_changed(double);
  83. void _update_controls();
  84. void _update_color(bool p_update_sliders = true);
  85. void _update_presets();
  86. void _update_text_value();
  87. void _text_type_toggled();
  88. void _sample_input(const Ref<InputEvent> &p_event);
  89. void _sample_draw();
  90. void _hsv_draw(int p_which, Control *c);
  91. void _uv_input(const Ref<InputEvent> &p_event);
  92. void _w_input(const Ref<InputEvent> &p_event);
  93. void _preset_input(const Ref<InputEvent> &p_event);
  94. void _screen_input(const Ref<InputEvent> &p_event);
  95. void _add_preset_pressed();
  96. void _screen_pick_pressed();
  97. void _focus_enter();
  98. void _focus_exit();
  99. void _html_focus_exit();
  100. protected:
  101. void _notification(int);
  102. static void _bind_methods();
  103. public:
  104. void set_edit_alpha(bool p_show);
  105. bool is_editing_alpha() const;
  106. void _set_pick_color(const Color &p_color, bool p_update_sliders);
  107. void set_pick_color(const Color &p_color);
  108. Color get_pick_color() const;
  109. void set_old_color(const Color &p_color);
  110. void set_display_old_color(bool p_enabled);
  111. bool is_displaying_old_color() const;
  112. void add_preset(const Color &p_color);
  113. void erase_preset(const Color &p_color);
  114. PoolColorArray get_presets() const;
  115. void set_hsv_mode(bool p_enabled);
  116. bool is_hsv_mode() const;
  117. void set_raw_mode(bool p_enabled);
  118. bool is_raw_mode() const;
  119. void set_deferred_mode(bool p_enabled);
  120. bool is_deferred_mode() const;
  121. void set_presets_enabled(bool p_enabled);
  122. bool are_presets_enabled() const;
  123. void set_presets_visible(bool p_visible);
  124. bool are_presets_visible() const;
  125. void set_focus_on_line_edit();
  126. ColorPicker();
  127. };
  128. class ColorPickerButton : public Button {
  129. GDCLASS(ColorPickerButton, Button);
  130. PopupPanel *popup;
  131. ColorPicker *picker;
  132. Color color;
  133. bool edit_alpha;
  134. void _about_to_show();
  135. void _color_changed(const Color &p_color);
  136. void _modal_closed();
  137. virtual void pressed();
  138. void _update_picker();
  139. protected:
  140. void _notification(int);
  141. static void _bind_methods();
  142. public:
  143. void set_pick_color(const Color &p_color);
  144. Color get_pick_color() const;
  145. void set_edit_alpha(bool p_show);
  146. bool is_editing_alpha() const;
  147. ColorPicker *get_picker();
  148. PopupPanel *get_popup();
  149. ColorPickerButton();
  150. };
  151. #endif // COLOR_PICKER_H