color_picker.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /*************************************************************************/
  2. /* color_picker.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 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. Control *screen;
  47. Control *uv_edit;
  48. Control *w_edit;
  49. TextureRect *sample;
  50. TextureRect *preset;
  51. HBoxContainer *preset_container;
  52. HBoxContainer *preset_container2;
  53. HSeparator *preset_separator;
  54. Button *bt_add_preset;
  55. List<Color> presets;
  56. ToolButton *btn_pick;
  57. CheckButton *btn_hsv;
  58. CheckButton *btn_raw;
  59. HSlider *scroll[4];
  60. SpinBox *values[4];
  61. Label *labels[4];
  62. Button *text_type;
  63. LineEdit *c_text;
  64. bool edit_alpha;
  65. Size2i ms;
  66. bool text_is_constructor;
  67. int presets_per_row;
  68. Color color;
  69. bool raw_mode_enabled;
  70. bool hsv_mode_enabled;
  71. bool deferred_mode_enabled;
  72. bool updating;
  73. bool changing_color;
  74. bool presets_enabled;
  75. bool presets_visible;
  76. float h, s, v;
  77. Color last_hsv;
  78. void _html_entered(const String &p_html);
  79. void _value_changed(double);
  80. void _update_controls();
  81. void _update_color(bool p_update_sliders = true);
  82. void _update_presets();
  83. void _update_text_value();
  84. void _text_type_toggled();
  85. void _sample_draw();
  86. void _hsv_draw(int p_which, Control *c);
  87. void _uv_input(const Ref<InputEvent> &p_event);
  88. void _w_input(const Ref<InputEvent> &p_event);
  89. void _preset_input(const Ref<InputEvent> &p_event);
  90. void _screen_input(const Ref<InputEvent> &p_event);
  91. void _add_preset_pressed();
  92. void _screen_pick_pressed();
  93. void _focus_enter();
  94. void _focus_exit();
  95. void _html_focus_exit();
  96. protected:
  97. void _notification(int);
  98. static void _bind_methods();
  99. public:
  100. void set_edit_alpha(bool p_show);
  101. bool is_editing_alpha() const;
  102. void _set_pick_color(const Color &p_color, bool p_update_sliders);
  103. void set_pick_color(const Color &p_color);
  104. Color get_pick_color() const;
  105. void add_preset(const Color &p_color);
  106. void erase_preset(const Color &p_color);
  107. PoolColorArray get_presets() const;
  108. void set_hsv_mode(bool p_enabled);
  109. bool is_hsv_mode() const;
  110. void set_raw_mode(bool p_enabled);
  111. bool is_raw_mode() const;
  112. void set_deferred_mode(bool p_enabled);
  113. bool is_deferred_mode() const;
  114. void set_presets_enabled(bool p_enabled);
  115. bool are_presets_enabled() const;
  116. void set_presets_visible(bool p_visible);
  117. bool are_presets_visible() const;
  118. void set_focus_on_line_edit();
  119. ColorPicker();
  120. };
  121. class ColorPickerButton : public Button {
  122. GDCLASS(ColorPickerButton, Button);
  123. PopupPanel *popup;
  124. ColorPicker *picker;
  125. Color color;
  126. bool edit_alpha;
  127. void _color_changed(const Color &p_color);
  128. void _modal_closed();
  129. virtual void pressed();
  130. void _update_picker();
  131. protected:
  132. void _notification(int);
  133. static void _bind_methods();
  134. public:
  135. void set_pick_color(const Color &p_color);
  136. Color get_pick_color() const;
  137. void set_edit_alpha(bool p_show);
  138. bool is_editing_alpha() const;
  139. ColorPicker *get_picker();
  140. PopupPanel *get_popup();
  141. ColorPickerButton();
  142. };
  143. #endif // COLOR_PICKER_H