| 
									
										
										
										
											2020-06-12 22:30:11 +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-06-12 22:30:11 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "LayoutTreeModel.h"
 | 
					
						
							|  |  |  | #include <AK/StringBuilder.h>
 | 
					
						
							|  |  |  | #include <LibWeb/DOM/Document.h>
 | 
					
						
							|  |  |  | #include <LibWeb/DOM/Element.h>
 | 
					
						
							| 
									
										
										
										
											2021-01-01 18:55:47 +01:00
										 |  |  | #include <LibWeb/Layout/InitialContainingBlockBox.h>
 | 
					
						
							| 
									
										
										
										
											2020-11-22 15:53:01 +01:00
										 |  |  | #include <LibWeb/Layout/TextNode.h>
 | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  | #include <ctype.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Web { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-26 19:37:56 +02:00
										 |  |  | LayoutTreeModel::LayoutTreeModel(DOM::Document& document) | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |     : m_document(document) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-07-21 18:02:15 +02:00
										 |  |  |     m_document_icon.set_bitmap_for_size(16, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/filetype-html.png")); | 
					
						
							|  |  |  |     m_element_icon.set_bitmap_for_size(16, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/inspector-object.png")); | 
					
						
							|  |  |  |     m_text_icon.set_bitmap_for_size(16, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/filetype-unknown.png")); | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | LayoutTreeModel::~LayoutTreeModel() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GUI::ModelIndex LayoutTreeModel::index(int row, int column, const GUI::ModelIndex& parent) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!parent.is_valid()) | 
					
						
							|  |  |  |         return create_index(row, column, m_document->layout_node()); | 
					
						
							| 
									
										
										
										
											2020-11-22 15:53:01 +01:00
										 |  |  |     auto& parent_node = *static_cast<Layout::Node*>(parent.internal_data()); | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |     return create_index(row, column, parent_node.child_at_index(row)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GUI::ModelIndex LayoutTreeModel::parent_index(const GUI::ModelIndex& index) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!index.is_valid()) | 
					
						
							|  |  |  |         return {}; | 
					
						
							| 
									
										
										
										
											2020-11-22 15:53:01 +01:00
										 |  |  |     auto& node = *static_cast<Layout::Node*>(index.internal_data()); | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |     if (!node.parent()) | 
					
						
							|  |  |  |         return {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // No grandparent? Parent is the document!
 | 
					
						
							|  |  |  |     if (!node.parent()->parent()) { | 
					
						
							|  |  |  |         return create_index(0, 0, m_document->layout_node()); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Walk the grandparent's children to find the index of node's parent in its parent.
 | 
					
						
							|  |  |  |     // (This is needed to produce the row number of the GUI::ModelIndex corresponding to node's parent.)
 | 
					
						
							|  |  |  |     int grandparent_child_index = 0; | 
					
						
							|  |  |  |     for (auto* grandparent_child = node.parent()->parent()->first_child(); grandparent_child; grandparent_child = grandparent_child->next_sibling()) { | 
					
						
							|  |  |  |         if (grandparent_child == node.parent()) | 
					
						
							|  |  |  |             return create_index(grandparent_child_index, 0, node.parent()); | 
					
						
							|  |  |  |         ++grandparent_child_index; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-23 20:42:32 +01:00
										 |  |  |     VERIFY_NOT_REACHED(); | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |     return {}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int LayoutTreeModel::row_count(const GUI::ModelIndex& index) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!index.is_valid()) | 
					
						
							|  |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2020-11-22 15:53:01 +01:00
										 |  |  |     auto& node = *static_cast<Layout::Node*>(index.internal_data()); | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |     return node.child_count(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int LayoutTreeModel::column_count(const GUI::ModelIndex&) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static String with_whitespace_collapsed(const StringView& string) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  |     for (size_t i = 0; i < string.length(); ++i) { | 
					
						
							|  |  |  |         if (isspace(string[i])) { | 
					
						
							|  |  |  |             builder.append(' '); | 
					
						
							|  |  |  |             while (i < string.length()) { | 
					
						
							|  |  |  |                 if (isspace(string[i])) { | 
					
						
							|  |  |  |                     ++i; | 
					
						
							|  |  |  |                     continue; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 builder.append(string[i]); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             continue; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         builder.append(string[i]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return builder.to_string(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-16 16:00:07 +02:00
										 |  |  | GUI::Variant LayoutTreeModel::data(const GUI::ModelIndex& index, GUI::ModelRole role) const | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-22 15:53:01 +01:00
										 |  |  |     auto& node = *static_cast<Layout::Node*>(index.internal_data()); | 
					
						
							| 
									
										
										
										
											2020-08-16 16:00:07 +02:00
										 |  |  |     if (role == GUI::ModelRole::Icon) { | 
					
						
							| 
									
										
										
										
											2021-01-01 18:55:47 +01:00
										 |  |  |         if (is<Layout::InitialContainingBlockBox>(node)) | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |             return m_document_icon; | 
					
						
							| 
									
										
										
										
											2021-01-01 18:55:47 +01:00
										 |  |  |         if (is<Layout::TextNode>(node)) | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |             return m_text_icon; | 
					
						
							|  |  |  |         return m_element_icon; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-08-16 16:00:07 +02:00
										 |  |  |     if (role == GUI::ModelRole::Display) { | 
					
						
							| 
									
										
										
										
											2021-01-01 18:55:47 +01:00
										 |  |  |         if (is<Layout::TextNode>(node)) | 
					
						
							| 
									
										
										
										
											2021-06-24 19:53:42 +02:00
										 |  |  |             return String::formatted("TextNode: {}", with_whitespace_collapsed(verify_cast<Layout::TextNode>(node).text_for_rendering())); | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |         StringBuilder builder; | 
					
						
							|  |  |  |         builder.append(node.class_name()); | 
					
						
							|  |  |  |         builder.append(' '); | 
					
						
							|  |  |  |         if (node.is_anonymous()) { | 
					
						
							|  |  |  |             builder.append("[anonymous]"); | 
					
						
							| 
									
										
										
										
											2020-11-22 14:46:36 +01:00
										 |  |  |         } else if (!node.dom_node()->is_element()) { | 
					
						
							|  |  |  |             builder.append(node.dom_node()->node_name()); | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-06-24 19:53:42 +02:00
										 |  |  |             auto& element = verify_cast<DOM::Element>(*node.dom_node()); | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |             builder.append('<'); | 
					
						
							| 
									
										
										
										
											2020-07-23 18:18:13 +02:00
										 |  |  |             builder.append(element.local_name()); | 
					
						
							| 
									
										
										
										
											2020-06-12 22:30:11 +02:00
										 |  |  |             element.for_each_attribute([&](auto& name, auto& value) { | 
					
						
							|  |  |  |                 builder.append(' '); | 
					
						
							|  |  |  |                 builder.append(name); | 
					
						
							|  |  |  |                 builder.append('='); | 
					
						
							|  |  |  |                 builder.append('"'); | 
					
						
							|  |  |  |                 builder.append(value); | 
					
						
							|  |  |  |                 builder.append('"'); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |             builder.append('>'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return builder.to_string(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return {}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |