mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 10:04:59 +00:00

Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
18 lines
509 B
C++
18 lines
509 B
C++
#include <LibGUI/GWidget.h>
|
|
|
|
class GResizeCorner : public GWidget {
|
|
public:
|
|
explicit GResizeCorner(GWidget* parent);
|
|
virtual ~GResizeCorner() override;
|
|
|
|
virtual const char* class_name() const override { return "GResizeCorner"; }
|
|
|
|
protected:
|
|
virtual void paint_event(GPaintEvent&) override;
|
|
virtual void mousedown_event(GMouseEvent&) override;
|
|
virtual void enter_event(CEvent&) override;
|
|
virtual void leave_event(CEvent&) override;
|
|
|
|
private:
|
|
RefPtr<GraphicsBitmap> m_bitmap;
|
|
};
|