summaryrefslogtreecommitdiff
path: root/Applications/Browser/InspectorWidget.h
blob: 5a1e0de62aeaa261101939bfbca23084c99e7906 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <LibGUI/GWidget.h>

class Document;
class GTableView;
class GTreeView;

class InspectorWidget final : public GWidget {
    C_OBJECT(InspectorWidget)
public:
    virtual ~InspectorWidget();

    void set_document(Document*);

private:
    explicit InspectorWidget(GWidget* parent);

    RefPtr<GTreeView> m_dom_tree_view;
    RefPtr<GTableView> m_style_table_view;
    RefPtr<Document> m_document;
};