mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 11:25:08 +00:00
19 lines
391 B
C++
19 lines
391 B
C++
#pragma once
|
|
|
|
#include <LibGUI/GWidget.h>
|
|
|
|
class GGroupBox : public GWidget {
|
|
public:
|
|
GGroupBox(const String& name, GWidget* parent);
|
|
virtual ~GGroupBox() override;
|
|
|
|
String name() const { return m_name; }
|
|
|
|
virtual const char* class_name() const override { return "GGroupBox"; }
|
|
|
|
protected:
|
|
virtual void paint_event(GPaintEvent&) override;
|
|
|
|
private:
|
|
String m_name;
|
|
};
|