| 
									
										
										
										
											2020-09-11 18:17:39 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2020, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2020-09-11 18:17:39 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <LibWeb/HTML/HTMLInputElement.h>
 | 
					
						
							| 
									
										
										
										
											2021-04-04 11:51:36 -04:00
										 |  |  | #include <LibWeb/Layout/LabelableNode.h>
 | 
					
						
							| 
									
										
										
										
											2020-09-11 18:17:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 15:53:01 +01:00
										 |  |  | namespace Web::Layout { | 
					
						
							| 
									
										
										
										
											2020-09-11 18:17:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-04 11:51:36 -04:00
										 |  |  | class CheckBox : public LabelableNode { | 
					
						
							| 
									
										
										
										
											2020-09-11 18:17:39 +02:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2020-11-22 15:53:01 +01:00
										 |  |  |     CheckBox(DOM::Document&, HTML::HTMLInputElement&, NonnullRefPtr<CSS::StyleProperties>); | 
					
						
							|  |  |  |     virtual ~CheckBox() override; | 
					
						
							| 
									
										
										
										
											2020-09-11 18:17:39 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual void paint(PaintContext&, PaintPhase) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-04 11:51:36 -04:00
										 |  |  |     const HTML::HTMLInputElement& dom_node() const { return static_cast<const HTML::HTMLInputElement&>(LabelableNode::dom_node()); } | 
					
						
							|  |  |  |     HTML::HTMLInputElement& dom_node() { return static_cast<HTML::HTMLInputElement&>(LabelableNode::dom_node()); } | 
					
						
							| 
									
										
										
										
											2020-09-11 18:17:39 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     virtual bool wants_mouse_events() const override { return true; } | 
					
						
							|  |  |  |     virtual void handle_mousedown(Badge<EventHandler>, const Gfx::IntPoint&, unsigned button, unsigned modifiers) override; | 
					
						
							|  |  |  |     virtual void handle_mouseup(Badge<EventHandler>, const Gfx::IntPoint&, unsigned button, unsigned modifiers) override; | 
					
						
							|  |  |  |     virtual void handle_mousemove(Badge<EventHandler>, const Gfx::IntPoint&, unsigned buttons, unsigned modifiers) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-04 11:51:36 -04:00
										 |  |  |     virtual void handle_associated_label_mousedown(Badge<Label>) override; | 
					
						
							|  |  |  |     virtual void handle_associated_label_mouseup(Badge<Label>) override; | 
					
						
							|  |  |  |     virtual void handle_associated_label_mousemove(Badge<Label>, bool is_inside_node_or_label) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-11 18:17:39 +02:00
										 |  |  |     bool m_being_pressed { false }; | 
					
						
							|  |  |  |     bool m_tracking_mouse { false }; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |