1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:57:44 +00:00

HexEditor: Construct user interface from GML

This commit is contained in:
Brendan Coles 2021-05-22 14:08:05 +00:00 committed by Linus Groh
parent 6738a966ec
commit e5e00bec8f
4 changed files with 75 additions and 28 deletions

View file

@ -0,0 +1,25 @@
@GUI::Widget {
name: "main"
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
spacing: 2
}
@GUI::ToolbarContainer {
name: "toolbar_container"
@GUI::Toolbar {
name: "toolbar"
}
}
@HexEditor::HexEditor {
name: "editor"
}
@GUI::Statusbar {
name: "statusbar"
label_count: 5
}
}