/* * Copyright (c) 2018-2020, Andreas Kling * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include #include namespace GUI { class ColorButton : public AbstractButton { C_OBJECT(ColorButton) public: virtual ~ColorButton() override; void set_selected(bool selected); Color color() const { return m_color; } Function on_click; protected: virtual void click(unsigned modifiers = 0) override; virtual void doubleclick_event(GUI::MouseEvent&) override; virtual void paint_event(PaintEvent&) override; private: explicit ColorButton(ColorPicker& picker, Color color = {}); ColorPicker& m_picker; Color m_color; bool m_selected { false }; }; class ColorField final : public GUI::Frame { C_OBJECT(ColorField); public: Function on_pick; void set_color(Color); void set_hue(double); void set_hue_from_pick(double); private: ColorField(Color color); Color m_color; // save hue separately so full white color doesn't reset it to 0 double m_hue; RefPtr m_color_bitmap; bool m_being_pressed { false }; Gfx::IntPoint m_last_position; void create_color_bitmap(); void pick_color_at_position(GUI::MouseEvent& event); void recalculate_position(); virtual void mousedown_event(GUI::MouseEvent&) override; virtual void mouseup_event(GUI::MouseEvent&) override; virtual void mousemove_event(GUI::MouseEvent&) override; virtual void paint_event(GUI::PaintEvent&) override; virtual void resize_event(ResizeEvent&) override; }; class ColorSlider final : public GUI::Frame { C_OBJECT(ColorSlider); public: Function on_pick; void set_value(double); private: ColorSlider(double value); double m_value; RefPtr m_color_bitmap; bool m_being_pressed { false }; int m_last_position; void pick_value_at_position(GUI::MouseEvent& event); void recalculate_position(); virtual void mousedown_event(GUI::MouseEvent&) override; virtual void mouseup_event(GUI::MouseEvent&) override; virtual void mousemove_event(GUI::MouseEvent&) override; virtual void paint_event(GUI::PaintEvent&) override; virtual void resize_event(ResizeEvent&) override; }; class ColorPreview final : public GUI::Widget { C_OBJECT(ColorPreview); public: void set_color(Color); private: ColorPreview(Color); Color m_color; virtual void paint_event(GUI::PaintEvent&) override; }; class CustomColorWidget final : public GUI::Widget { C_OBJECT(CustomColorWidget); public: Function on_pick; void set_color(Color); private: CustomColorWidget(Color); RefPtr m_color_field; RefPtr m_color_slider; }; ColorPicker::ColorPicker(Color color, Window* parent_window, String title) : Dialog(parent_window) , m_color(color) { set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/color-chooser.png")); set_title(title); set_resizable(false); resize(458, 326); build_ui(); } ColorPicker::~ColorPicker() { } void ColorPicker::set_color_has_alpha_channel(bool has_alpha) { if (m_color_has_alpha_channel == has_alpha) return; m_color_has_alpha_channel = has_alpha; update_color_widgets(); } void ColorPicker::build_ui() { auto& root_container = set_main_widget(); root_container.set_layout(); root_container.layout()->set_margins({ 4, 4, 4, 4 }); root_container.set_fill_with_background_color(true); auto& tab_widget = root_container.add(); auto& tab_palette = tab_widget.add_tab("Palette"); tab_palette.set_size_policy(SizePolicy::Fill, SizePolicy::Fill); tab_palette.set_layout(); tab_palette.layout()->set_margins({ 4, 4, 4, 4 }); tab_palette.layout()->set_spacing(4); build_ui_palette(tab_palette); auto& tab_custom_color = tab_widget.add_tab("Custom Color"); tab_custom_color.set_size_policy(SizePolicy::Fill, SizePolicy::Fill); tab_custom_color.set_layout(); tab_custom_color.layout()->set_margins({ 4, 4, 4, 4 }); tab_custom_color.layout()->set_spacing(4); build_ui_custom(tab_custom_color); auto& button_container = root_container.add(); button_container.set_size_policy(SizePolicy::Fill, SizePolicy::Fixed); button_container.set_preferred_size(0, 22); button_container.set_layout(); button_container.layout()->set_spacing(4); button_container.layout()->add_spacer(); auto& ok_button = button_container.add