mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	 f87041bf3a
			
		
	
	
		f87041bf3a
		
	
	
	
	
		
			
			Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/Forward.h>
 | |
| #include <LibWeb/Painting/LabelablePaintable.h>
 | |
| 
 | |
| namespace Web::Painting {
 | |
| 
 | |
| class CheckBoxPaintable final : public LabelablePaintable {
 | |
|     GC_CELL(CheckBoxPaintable, LabelablePaintable);
 | |
|     GC_DECLARE_ALLOCATOR(CheckBoxPaintable);
 | |
| 
 | |
| public:
 | |
|     static GC::Ref<CheckBoxPaintable> create(Layout::CheckBox const&);
 | |
| 
 | |
|     Layout::CheckBox const& layout_box() const;
 | |
|     Layout::CheckBox& layout_box();
 | |
| 
 | |
|     virtual void paint(PaintContext&, PaintPhase) const override;
 | |
| 
 | |
| private:
 | |
|     CheckBoxPaintable(Layout::CheckBox const&);
 | |
| };
 | |
| 
 | |
| }
 |