mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:52:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2018-2020, Adam Hodgen <ant1441@gmail.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/HashMap.h>
 | |
| #include <AK/JsonObject.h>
 | |
| #include <LibGUI/Model.h>
 | |
| #include <LibWeb/CSS/Selector.h>
 | |
| #include <LibWeb/Forward.h>
 | |
| 
 | |
| namespace WebView {
 | |
| 
 | |
| class DOMTreeModel final : public GUI::Model {
 | |
| public:
 | |
|     static NonnullRefPtr<DOMTreeModel> create(StringView dom_tree, GUI::TreeView& tree_view)
 | |
|     {
 | |
|         auto json_or_error = JsonValue::from_string(dom_tree).release_value_but_fixme_should_propagate_errors();
 | |
|         return adopt_ref(*new DOMTreeModel(json_or_error.as_object(), &tree_view));
 | |
|     }
 | |
| 
 | |
|     static NonnullRefPtr<DOMTreeModel> create(StringView dom_tree)
 | |
|     {
 | |
|         auto json_or_error = JsonValue::from_string(dom_tree).release_value_but_fixme_should_propagate_errors();
 | |
|         return adopt_ref(*new DOMTreeModel(json_or_error.as_object(), nullptr));
 | |
|     }
 | |
| 
 | |
|     virtual ~DOMTreeModel() override;
 | |
| 
 | |
|     virtual int row_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override;
 | |
|     virtual int column_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override;
 | |
|     virtual GUI::Variant data(const GUI::ModelIndex&, GUI::ModelRole) const override;
 | |
|     virtual GUI::ModelIndex index(int row, int column, const GUI::ModelIndex& parent = GUI::ModelIndex()) const override;
 | |
|     virtual GUI::ModelIndex parent_index(const GUI::ModelIndex&) const override;
 | |
| 
 | |
|     GUI::ModelIndex index_for_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement> pseudo_element) const;
 | |
| 
 | |
| private:
 | |
|     DOMTreeModel(JsonObject, GUI::TreeView*);
 | |
| 
 | |
|     ALWAYS_INLINE JsonObject const* get_parent(JsonObject const& o) const
 | |
|     {
 | |
|         auto parent_node = m_dom_node_to_parent_map.get(&o);
 | |
|         VERIFY(parent_node.has_value());
 | |
|         return *parent_node;
 | |
|     }
 | |
| 
 | |
|     ALWAYS_INLINE static Optional<JsonArray const&> const get_children(JsonObject const& o)
 | |
|     {
 | |
|         return o.get_array("children"sv);
 | |
|     }
 | |
| 
 | |
|     void map_dom_nodes_to_parent(JsonObject const* parent, JsonObject const* child);
 | |
| 
 | |
|     GUI::TreeView* m_tree_view { nullptr };
 | |
|     GUI::Icon m_document_icon;
 | |
|     GUI::Icon m_element_icon;
 | |
|     GUI::Icon m_text_icon;
 | |
|     JsonObject m_dom_tree;
 | |
|     HashMap<JsonObject const*, JsonObject const*> m_dom_node_to_parent_map;
 | |
|     HashMap<i32, JsonObject const*> m_node_id_to_dom_node_map;
 | |
| };
 | |
| 
 | |
| }
 | 
