mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
19 lines
233 B
C
19 lines
233 B
C
#pragma once
|
|
|
|
enum class VBWidgetType
|
|
{
|
|
None = 0,
|
|
GWidget,
|
|
GButton,
|
|
GLabel,
|
|
GSpinBox,
|
|
GTextEditor,
|
|
GProgressBar,
|
|
GCheckBox,
|
|
GRadioButton,
|
|
GScrollBar,
|
|
GGroupBox,
|
|
GSlider,
|
|
__Count
|
|
};
|