mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:12:43 +00:00 
			
		
		
		
	 cb0c5390ff
			
		
	
	
		cb0c5390ff
		
	
	
	
	
		
			
			Input events have nothing to do with layout, so let's not send them to layout nodes. The job of Paintable starts to become clear. It represents a paintable item that can be rendered into the viewport, which means it can also be targeted by the mouse cursor.
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			610 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			610 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Tim Flynn <trflynn89@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/Forward.h>
 | |
| #include <LibWeb/Layout/ReplacedBox.h>
 | |
| 
 | |
| namespace Web::Layout {
 | |
| 
 | |
| class LabelableNode : public ReplacedBox {
 | |
| public:
 | |
|     Painting::LabelablePaintable* paintable();
 | |
|     Painting::LabelablePaintable const* paintable() const;
 | |
| 
 | |
| protected:
 | |
|     LabelableNode(DOM::Document& document, DOM::Element& element, NonnullRefPtr<CSS::StyleProperties> style)
 | |
|         : ReplacedBox(document, element, move(style))
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     virtual ~LabelableNode() = default;
 | |
| };
 | |
| 
 | |
| }
 |