diff options
author | Andreas Kling <kling@serenityos.org> | 2021-09-13 17:17:43 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-13 19:11:33 +0200 |
commit | af8732435c652d418a747d76a59d4829421396e9 (patch) | |
tree | 05df5502fe8105a78015a04ccff340c14bae2271 /Userland/Applications/Browser | |
parent | 99f9609e451ddf00318c8887545bfb77c2e59b4e (diff) | |
download | serenity-af8732435c652d418a747d76a59d4829421396e9.zip |
Browser: Add some UI padding in the Inspector widget
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r-- | Userland/Applications/Browser/InspectorWidget.cpp | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/Userland/Applications/Browser/InspectorWidget.cpp b/Userland/Applications/Browser/InspectorWidget.cpp index 072b42ec3e..62d7e94efc 100644 --- a/Userland/Applications/Browser/InspectorWidget.cpp +++ b/Userland/Applications/Browser/InspectorWidget.cpp @@ -58,18 +58,27 @@ void InspectorWidget::set_inspected_node(GUI::ModelIndex const index) InspectorWidget::InspectorWidget() { - set_layout<GUI::VerticalBoxLayout>(); + set_fill_with_background_color(true); + + auto& layout = set_layout<GUI::VerticalBoxLayout>(); + layout.set_margins({ 4, 4, 4, 4 }); auto& splitter = add<GUI::VerticalSplitter>(); auto& top_tab_widget = splitter.add<GUI::TabWidget>(); - m_dom_tree_view = top_tab_widget.add_tab<GUI::TreeView>("DOM"); + auto& dom_tree_container = top_tab_widget.add_tab<GUI::Widget>("DOM"); + dom_tree_container.set_layout<GUI::VerticalBoxLayout>(); + dom_tree_container.layout()->set_margins({ 4, 4, 4, 4 }); + m_dom_tree_view = dom_tree_container.add<GUI::TreeView>(); m_dom_tree_view->on_selection_change = [this] { const auto& index = m_dom_tree_view->selection().first(); set_inspected_node(index); }; - m_layout_tree_view = top_tab_widget.add_tab<GUI::TreeView>("Layout"); + auto& layout_tree_container = top_tab_widget.add_tab<GUI::Widget>("Layout"); + layout_tree_container.set_layout<GUI::VerticalBoxLayout>(); + layout_tree_container.layout()->set_margins({ 4, 4, 4, 4 }); + m_layout_tree_view = layout_tree_container.add<GUI::TreeView>(); m_layout_tree_view->on_selection_change = [this] { const auto& index = m_layout_tree_view->selection().first(); set_inspected_node(index); @@ -77,8 +86,17 @@ InspectorWidget::InspectorWidget() auto& bottom_tab_widget = splitter.add<GUI::TabWidget>(); - m_style_table_view = bottom_tab_widget.add_tab<GUI::TableView>("Styles"); - m_computed_style_table_view = bottom_tab_widget.add_tab<GUI::TableView>("Computed"); + auto& style_table_container = bottom_tab_widget.add_tab<GUI::Widget>("Styles"); + style_table_container.set_layout<GUI::VerticalBoxLayout>(); + style_table_container.layout()->set_margins({ 4, 4, 4, 4 }); + m_style_table_view = style_table_container.add<GUI::TableView>(); + + auto& computed_style_table_container = bottom_tab_widget.add_tab<GUI::Widget>("Computed"); + computed_style_table_container.set_layout<GUI::VerticalBoxLayout>(); + computed_style_table_container.layout()->set_margins({ 4, 4, 4, 4 }); + m_computed_style_table_view = computed_style_table_container.add<GUI::TableView>(); + + m_dom_tree_view->set_focus(true); } InspectorWidget::~InspectorWidget() |