mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:12:45 +00:00 
			
		
		
		
	 f52e66ceda
			
		
	
	
		f52e66ceda
		
	
	
	
	
		
			
			I need somewhere to centralize the knowledge about the different widget types available. And VBProperty represents a property key/value of arbitrary type (it uses a GVariant for the value.)
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			202 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| enum class VBWidgetType {
 | |
|     None = 0,
 | |
|     GWidget,
 | |
|     GButton,
 | |
|     GLabel,
 | |
|     GSpinBox,
 | |
|     GTextEditor,
 | |
|     GProgressBar,
 | |
|     GCheckBox,
 | |
|     GScrollBar,
 | |
|     GGroupBox,
 | |
|     __Count
 | |
| };
 |