mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
34 lines
624 B
C++
34 lines
624 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Frame.h>
|
|
|
|
namespace PixelPaint {
|
|
|
|
class ImageEditor;
|
|
|
|
class PaletteWidget final : public GUI::Frame {
|
|
C_OBJECT(PaletteWidget);
|
|
|
|
public:
|
|
virtual ~PaletteWidget() override;
|
|
|
|
void set_primary_color(Color);
|
|
void set_secondary_color(Color);
|
|
|
|
void set_image_editor(ImageEditor&);
|
|
|
|
private:
|
|
explicit PaletteWidget();
|
|
|
|
ImageEditor* m_editor { nullptr };
|
|
RefPtr<GUI::Frame> m_primary_color_widget;
|
|
RefPtr<GUI::Frame> m_secondary_color_widget;
|
|
};
|
|
|
|
}
|