mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:12:45 +00:00 
			
		
		
		
	 ad04d7ac9b
			
		
	
	
		ad04d7ac9b
		
	
	
	
	
		
			
			This is a concept fully defined in the Web IDL spec and doesn't belong in the DOM directory/namespace - not even DOMException, despite the name :^)
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibGfx/Color.h>
 | |
| #include <LibWeb/Bindings/PlatformObject.h>
 | |
| 
 | |
| namespace Web::HTML {
 | |
| 
 | |
| class CanvasGradient final : public Bindings::PlatformObject {
 | |
|     WEB_PLATFORM_OBJECT(CanvasGradient, Bindings::PlatformObject);
 | |
| 
 | |
| public:
 | |
|     enum class Type {
 | |
|         Linear,
 | |
|         Radial,
 | |
|         Conic,
 | |
|     };
 | |
| 
 | |
|     static JS::NonnullGCPtr<CanvasGradient> create_radial(HTML::Window&, double x0, double y0, double r0, double x1, double y1, double r1);
 | |
|     static JS::NonnullGCPtr<CanvasGradient> create_linear(HTML::Window&, double x0, double y0, double x1, double y1);
 | |
|     static JS::NonnullGCPtr<CanvasGradient> create_conic(HTML::Window&, double start_angle, double x, double y);
 | |
| 
 | |
|     WebIDL::ExceptionOr<void> add_color_stop(double offset, String const& color);
 | |
| 
 | |
|     ~CanvasGradient();
 | |
| 
 | |
| private:
 | |
|     CanvasGradient(HTML::Window&, Type);
 | |
| 
 | |
|     Type m_type {};
 | |
| 
 | |
|     struct ColorStop {
 | |
|         double offset { 0 };
 | |
|         Gfx::Color color;
 | |
|     };
 | |
| 
 | |
|     Vector<ColorStop> m_color_stops;
 | |
| };
 | |
| 
 | |
| }
 |