mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:02:46 +00:00 
			
		
		
		
	 4270ede7c4
			
		
	
	
		4270ede7c4
		
	
	
	
	
		
			
			We no longer access Bindings::FooWrapper anywhere for a Foo platform object, so these can be removed :^)
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			1,002 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			1,002 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibGfx/Forward.h>
 | |
| #include <LibWeb/Bindings/PlatformObject.h>
 | |
| 
 | |
| namespace Web::HTML {
 | |
| 
 | |
| class ImageData final : public Bindings::PlatformObject {
 | |
|     WEB_PLATFORM_OBJECT(ImageData, Bindings::PlatformObject);
 | |
| 
 | |
| public:
 | |
|     static JS::GCPtr<ImageData> create_with_size(HTML::Window&, int width, int height);
 | |
| 
 | |
|     virtual ~ImageData() override;
 | |
| 
 | |
|     unsigned width() const;
 | |
|     unsigned height() const;
 | |
| 
 | |
|     Gfx::Bitmap& bitmap() { return m_bitmap; }
 | |
|     Gfx::Bitmap const& bitmap() const { return m_bitmap; }
 | |
| 
 | |
|     JS::Uint8ClampedArray* data();
 | |
|     const JS::Uint8ClampedArray* data() const;
 | |
| 
 | |
| private:
 | |
|     explicit ImageData(HTML::Window&, NonnullRefPtr<Gfx::Bitmap>, JS::NonnullGCPtr<JS::Uint8ClampedArray>);
 | |
| 
 | |
|     virtual void visit_edges(Cell::Visitor&) override;
 | |
| 
 | |
|     NonnullRefPtr<Gfx::Bitmap> m_bitmap;
 | |
|     JS::NonnullGCPtr<JS::Uint8ClampedArray> m_data;
 | |
| };
 | |
| 
 | |
| }
 |