mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
33 lines
957 B
C++
33 lines
957 B
C++
#pragma once
|
|
|
|
#include <LibGUI/GWidget.h>
|
|
#include <AK/Vector.h>
|
|
#include "VBWidget.h"
|
|
|
|
class VBForm : public GWidget {
|
|
public:
|
|
explicit VBForm(const String& name, GWidget* parent = nullptr);
|
|
virtual ~VBForm() override;
|
|
|
|
bool is_selected(const VBWidget&) const;
|
|
VBWidget* widget_at(const Point&);
|
|
|
|
void set_should_snap_to_grip(bool snap) { m_should_snap_to_grid = snap; }
|
|
bool should_snap_to_grid() const { return m_should_snap_to_grid; }
|
|
|
|
protected:
|
|
virtual void paint_event(GPaintEvent&) override;
|
|
virtual void mousedown_event(GMouseEvent&) override;
|
|
virtual void mousemove_event(GMouseEvent&) override;
|
|
virtual void mouseup_event(GMouseEvent&) override;
|
|
|
|
private:
|
|
String m_name;
|
|
int m_grid_size { 5 };
|
|
bool m_should_snap_to_grid { true };
|
|
Vector<Retained<VBWidget>> m_widgets;
|
|
WeakPtr<VBWidget> m_selected_widget;
|
|
Point m_transform_event_origin;
|
|
Rect m_transform_widget_origin_rect;
|
|
};
|