mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:32:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			233 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| enum class VBWidgetType {
 | |
|     None = 0,
 | |
|     GWidget,
 | |
|     GButton,
 | |
|     GLabel,
 | |
|     GSpinBox,
 | |
|     GTextEditor,
 | |
|     GProgressBar,
 | |
|     GCheckBox,
 | |
|     GRadioButton,
 | |
|     GScrollBar,
 | |
|     GGroupBox,
 | |
|     GSlider,
 | |
|     __Count
 | |
| };
 | 
