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:
parent
6738a966ec
commit
e5e00bec8f
4 changed files with 75 additions and 28 deletions
25
Userland/Applications/HexEditor/HexEditorWindow.gml
Normal file
25
Userland/Applications/HexEditor/HexEditorWindow.gml
Normal 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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue