mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 18:32:28 -05:00
04b9dc2d30
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
19 lines
458 B
C++
19 lines
458 B
C++
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
#include <AK/Function.h>
|
|
#include <LibGUI/GAbstractButton.h>
|
|
|
|
class GCheckBox : public GAbstractButton {
|
|
public:
|
|
GCheckBox(const StringView&, GWidget* parent);
|
|
explicit GCheckBox(GWidget* parent);
|
|
virtual ~GCheckBox() override;
|
|
|
|
virtual void click() override;
|
|
|
|
virtual const char* class_name() const override { return "GCheckBox"; }
|
|
|
|
private:
|
|
virtual void paint_event(GPaintEvent&) override;
|
|
};
|