diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-11-27 21:15:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-27 21:15:49 +0000 |
commit | 85d87116e184e7923b8d6804cab2681b61c62d83 (patch) | |
tree | 55ec5bfa061a5c27272b831e697b78ed1b756a70 /scene/gui/color_picker.h | |
parent | b06d20bf39d15ec736d08d4e4fcb32e0c3c1ce1e (diff) | |
parent | 721f53fde47c2727d99e3ecccdb789a67df36de0 (diff) | |
download | redot-engine-85d87116e184e7923b8d6804cab2681b61c62d83.tar.gz |
Merge commit godotengine/godot@f128f38
Diffstat (limited to 'scene/gui/color_picker.h')
-rw-r--r-- | scene/gui/color_picker.h | 40 |
1 files changed, 18 insertions, 22 deletions
diff --git a/scene/gui/color_picker.h b/scene/gui/color_picker.h index 95aa94603b..ec7b22a64f 100644 --- a/scene/gui/color_picker.h +++ b/scene/gui/color_picker.h @@ -33,28 +33,24 @@ #ifndef COLOR_PICKER_H #define COLOR_PICKER_H -#include "scene/gui/aspect_ratio_container.h" #include "scene/gui/box_container.h" #include "scene/gui/button.h" -#include "scene/gui/control.h" -#include "scene/gui/grid_container.h" -#include "scene/gui/label.h" -#include "scene/gui/line_edit.h" -#include "scene/gui/menu_button.h" -#include "scene/gui/option_button.h" -#include "scene/gui/panel.h" #include "scene/gui/popup.h" -#include "scene/gui/separator.h" -#include "scene/gui/slider.h" -#include "scene/gui/spin_box.h" -#include "scene/gui/texture_rect.h" -#include "scene/resources/style_box_flat.h" +class AspectRatioContainer; class ColorMode; -class ColorModeRGB; -class ColorModeHSV; -class ColorModeRAW; -class ColorModeOKHSL; +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 ColorPresetButton : public BaseButton { GDCLASS(ColorPresetButton, BaseButton); @@ -112,11 +108,11 @@ public: static const int SLIDER_COUNT = 4; private: - static Ref<Shader> wheel_shader; - static Ref<Shader> circle_shader; - static Ref<Shader> circle_ok_color_shader; - static List<Color> preset_cache; - static List<Color> recent_preset_cache; + 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; |