mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 09:27:35 +00:00
Move VisualBuilder into a new DevTools directory.
This commit is contained in:
parent
6b40b081b2
commit
3ae9fc5d88
18 changed files with 3 additions and 3 deletions
21
DevTools/VisualBuilder/VBWidgetRegistry.h
Normal file
21
DevTools/VisualBuilder/VBWidgetRegistry.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#pragma once
|
||||
|
||||
#include "VBWidgetType.h"
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/OwnPtr.h>
|
||||
#include <AK/AKString.h>
|
||||
|
||||
class GWidget;
|
||||
class VBProperty;
|
||||
class VBWidget;
|
||||
|
||||
class VBWidgetRegistry {
|
||||
public:
|
||||
template<typename Callback> static void for_each_widget_type(Callback callback)
|
||||
{
|
||||
for (unsigned i = 1; i < (unsigned)VBWidgetType::__Count; ++i)
|
||||
callback((VBWidgetType)i);
|
||||
}
|
||||
|
||||
static GWidget* build_gwidget(VBWidget&, VBWidgetType, GWidget* parent, Vector<OwnPtr<VBProperty>>&);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue