mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:42:43 +00:00 
			
		
		
		
	 a2baab38fd
			
		
	
	
		a2baab38fd
		
	
	
	
	
		
			
			I hereby declare these to be full nouns that we don't split, neither by space, nor by underscore: - Breadcrumbbar - Coolbar - Menubar - Progressbar - Scrollbar - Statusbar - Taskbar - Toolbar This patch makes everything consistent by replacing every other variant of these with the proper one. :^)
		
			
				
	
	
		
			168 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			168 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     name: "sliders_tab"
 | |
|     layout: @GUI::VerticalBoxLayout {
 | |
|         margins: [4, 4, 4, 4]
 | |
|     }
 | |
| 
 | |
|     @GUI::GroupBox {
 | |
|         fixed_height: 129
 | |
|         layout: @GUI::VerticalBoxLayout {
 | |
|             margins: [8, 8, 8, 8]
 | |
|         }
 | |
| 
 | |
|         @GUI::OpacitySlider {
 | |
|             name: "opacity_slider"
 | |
|         }
 | |
| 
 | |
|         @GUI::HorizontalSeparator {
 | |
|         }
 | |
| 
 | |
|         @GUI::Frame {
 | |
|             shape: "Panel"
 | |
|             shadow: "Sunken"
 | |
|             thickness: 1
 | |
|             max_width: 394
 | |
|             max_height: 79
 | |
|             layout: @GUI::VerticalBoxLayout {
 | |
|                 margins: [1, 1, 1, 1]
 | |
|             }
 | |
| 
 | |
|             @GUI::ImageWidget {
 | |
|                 name: "opacity_imagewidget"
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         fixed_height: 88
 | |
|         layout: @GUI::VerticalBoxLayout {
 | |
|             margins: [8, 0, 8, 0]
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|         }
 | |
| 
 | |
|         @GUI::Scrollbar {
 | |
|             name: "enabled_scrollbar"
 | |
|             fixed_height: 16
 | |
|             fixed_width: -1
 | |
|             min: 0
 | |
|             max: 100
 | |
|             value: 50
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|         }
 | |
| 
 | |
|         @GUI::HorizontalSeparator {
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|         }
 | |
| 
 | |
|         @GUI::Scrollbar {
 | |
|             name: "disabled_scrollbar"
 | |
|             fixed_height: 16
 | |
|             fixed_width: -1
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::GroupBox {
 | |
|         layout: @GUI::HorizontalBoxLayout {
 | |
|             margins: [8, 8, 8, 8]
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalProgressbar {
 | |
|             name: "vertical_progressbar_left"
 | |
|             fixed_width: 36
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalSlider {
 | |
|             name: "vertical_slider_left"
 | |
|             knob_size_mode: "Fixed"
 | |
|             min: 0
 | |
|             max: 100
 | |
|             value: 100
 | |
|             tooltip: "Fixed"
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalSeparator {
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalSlider {
 | |
|             enabled: false
 | |
|             tooltip: "Disabled"
 | |
|             min: 0
 | |
|             max: 10
 | |
|             value: 5
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalSeparator {
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalProgressbar {
 | |
|             name: "vertical_progressbar_right"
 | |
|             fixed_width: 36
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalSlider {
 | |
|             name: "vertical_slider_right"
 | |
|             knob_size_mode: "Proportional"
 | |
|             min: 0
 | |
|             max: 4
 | |
|             value: 0
 | |
|             tooltip: "Proportional"
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::GroupBox {
 | |
|         layout: @GUI::VerticalBoxLayout {
 | |
|             margins: [8, 8, 8, 8]
 | |
|         }
 | |
| 
 | |
|         @GUI::Widget {
 | |
|             layout: @GUI::HorizontalBoxLayout {
 | |
|             }
 | |
| 
 | |
|             @GUI::HorizontalSlider {
 | |
|                 name: "horizontal_slider_left"
 | |
|                 knob_size_mode: "Fixed"
 | |
|                 min: 0
 | |
|                 max: 100
 | |
|                 value: 0
 | |
|             }
 | |
| 
 | |
|             @GUI::VerticalSeparator {
 | |
|             }
 | |
| 
 | |
|             @GUI::HorizontalSlider {
 | |
|                 enabled: false
 | |
|                 min: 0
 | |
|                 max: 10
 | |
|                 value: 5
 | |
|             }
 | |
| 
 | |
|             @GUI::VerticalSeparator {
 | |
|             }
 | |
| 
 | |
|             @GUI::HorizontalSlider {
 | |
|                 name: "horizontal_slider_right"
 | |
|                 knob_size_mode: "Proportional"
 | |
|                 min: 0
 | |
|                 max: 5
 | |
|                 value: 0
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         @GUI::HorizontalSeparator {
 | |
|         }
 | |
| 
 | |
|         @GUI::HorizontalProgressbar {
 | |
|             name: "horizontal_progressbar"
 | |
|             fixed_height: 20
 | |
|         }
 | |
|     }
 | |
| }
 |