mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 11:12:54 +00:00
This introduces a new DOMTreeJSONModel, which provides the Model for the InspectorWidget when the Browser is running using the OutOfProcessWebView. This Model is constructed with a JSON object received via IPC from the WebContentServer.
38 lines
884 B
C++
38 lines
884 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Widget.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
namespace Browser {
|
|
|
|
class InspectorWidget final : public GUI::Widget {
|
|
C_OBJECT(InspectorWidget)
|
|
public:
|
|
virtual ~InspectorWidget();
|
|
|
|
void set_document(Web::DOM::Document*);
|
|
void set_dom_json(String);
|
|
|
|
private:
|
|
InspectorWidget();
|
|
|
|
void set_inspected_node(GUI::ModelIndex);
|
|
|
|
RefPtr<GUI::TreeView> m_dom_tree_view;
|
|
RefPtr<GUI::TreeView> m_layout_tree_view;
|
|
RefPtr<GUI::TableView> m_style_table_view;
|
|
RefPtr<GUI::TableView> m_computed_style_table_view;
|
|
|
|
// One of these will be available, depending on if we're
|
|
// in-process (m_document) or out-of-process (m_dom_json)
|
|
RefPtr<Web::DOM::Document> m_document;
|
|
Optional<String> m_dom_json;
|
|
};
|
|
|
|
}
|