summaryrefslogtreecommitdiff
path: root/Applications/Browser/Tab.json
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-09-14 18:41:22 +0200
committerAndreas Kling <kling@serenityos.org>2020-09-14 19:55:17 +0200
commitd67b421628c184256d4843446e01be70e1ae044a (patch)
tree8e498ce53a262ec9792addc85ff2b0fca3822e86 /Applications/Browser/Tab.json
parent1307f7292c5b863bf29557eb4ceda643ad237584 (diff)
downloadserenity-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.json29
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"
+ }
+ ]
+}