diff options
author | Andreas Kling <kling@serenityos.org> | 2020-09-14 18:41:22 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-14 19:55:17 +0200 |
commit | d67b421628c184256d4843446e01be70e1ae044a (patch) | |
tree | 8e498ce53a262ec9792addc85ff2b0fca3822e86 /Applications/Browser/Tab.json | |
parent | 1307f7292c5b863bf29557eb4ceda643ad237584 (diff) | |
download | serenity-d67b421628c184256d4843446e01be70e1ae044a.zip |
Browser: Move the basic Tab UI skeleton to JSON GUI
Diffstat (limited to 'Applications/Browser/Tab.json')
-rw-r--r-- | Applications/Browser/Tab.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Applications/Browser/Tab.json b/Applications/Browser/Tab.json new file mode 100644 index 0000000000..2f1ef0a0ea --- /dev/null +++ b/Applications/Browser/Tab.json @@ -0,0 +1,29 @@ +{ + "layout": { + "class": "GUI::VerticalBoxLayout" + }, + + "children": [ + { + "class": "GUI::ToolBarContainer", + "name": "toolbar_container", + "children": [ + { + "class": "GUI::ToolBar", + "name": "toolbar" + } + ] + }, + { + "class": "GUI::Widget", + "name": "webview_container", + "layout": { + "class": "GUI::VerticalBoxLayout" + } + }, + { + "class": "GUI::StatusBar", + "name": "statusbar" + } + ] +} |