mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
HackStudio: Start fleshing out the GUI for a GUI designer :^)
I'll be reconstructing parts of the VisualBuilder application here and then we can retire VisualBuilder entirely once all the functionality is available in HackStudio.
This commit is contained in:
parent
bce510bf6f
commit
d016d5e365
Notes:
sideshowbarker
2024-07-19 11:19:25 +09:00
Author: https://github.com/awesomekling
Commit: d016d5e365
9 changed files with 136 additions and 9 deletions
18
DevTools/HackStudio/FormEditorWidget.h
Normal file
18
DevTools/HackStudio/FormEditorWidget.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibGUI/GScrollableWidget.h>
|
||||
|
||||
class FormWidget;
|
||||
|
||||
class FormEditorWidget final : public GScrollableWidget {
|
||||
C_OBJECT(FormEditorWidget)
|
||||
public:
|
||||
virtual ~FormEditorWidget() override;
|
||||
|
||||
private:
|
||||
virtual void paint_event(GPaintEvent&) override;
|
||||
|
||||
explicit FormEditorWidget(GWidget* parent);
|
||||
|
||||
RefPtr<FormWidget> m_form_widget;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue