/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, Mustafa Quraish * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include "Tool.h" namespace PixelPaint { class PickerTool final : public Tool { public: PickerTool() = default; virtual ~PickerTool() override = default; virtual void on_mousedown(Layer*, MouseEvent&) override; virtual GUI::Widget* get_properties_widget() override; virtual Variant> cursor() override { return Gfx::StandardCursor::Eyedropper; } private: RefPtr m_properties_widget; bool m_sample_all_layers { false }; }; }