1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

Move VisualBuilder into a new DevTools directory.

This commit is contained in:
Andreas Kling 2019-05-08 13:53:34 +02:00
parent 6b40b081b2
commit 3ae9fc5d88
18 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,16 @@
#pragma once
enum class VBWidgetType {
None = 0,
GWidget,
GButton,
GLabel,
GSpinBox,
GTextEditor,
GProgressBar,
GCheckBox,
GScrollBar,
GGroupBox,
GSlider,
__Count
};