mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:58:12 +00:00

To prepare for paintable inline content, we take the basic painting functionality and hoist it into a base class.
26 lines
546 B
C++
26 lines
546 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Layout/ButtonBox.h>
|
|
#include <LibWeb/Painting/Paintable.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
class ButtonPaintable final : public PaintableBox {
|
|
public:
|
|
static NonnullOwnPtr<ButtonPaintable> create(Layout::ButtonBox const&);
|
|
|
|
virtual void paint(PaintContext&, PaintPhase) const override;
|
|
|
|
Layout::ButtonBox const& layout_box() const;
|
|
|
|
private:
|
|
ButtonPaintable(Layout::ButtonBox const&);
|
|
};
|
|
|
|
}
|