/* * 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 CustomColorWidget final : public GUI::Frame { C_OBJECT(CustomColorWidget); public: Function on_pick; void clear_last_position(); private: CustomColorWidget(); RefPtr m_custom_colors; bool m_being_pressed { false }; Gfx::IntPoint m_last_position; void pick_color_at_position(GUI::MouseEvent& event); 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; }; 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(530, 325); build_ui(); } ColorPicker::~ColorPicker() { } 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