mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 15:37:46 +00:00
WidgetGallery: Convert layout to GML and add new Icons gallery
This commit is contained in:
parent
0fc81d23f4
commit
35897651af
11 changed files with 1347 additions and 514 deletions
25
Userland/Demos/WidgetGallery/GalleryGML/WizardsTab.gml
Normal file
25
Userland/Demos/WidgetGallery/GalleryGML/WizardsTab.gml
Normal file
|
@ -0,0 +1,25 @@
|
|||
@GUI::Widget {
|
||||
name: "wizards_tab"
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
margins: [4, 4, 4, 4]
|
||||
}
|
||||
|
||||
@GUI::GroupBox {
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
margins: [8, 8, 8, 8]
|
||||
}
|
||||
|
||||
@GUI::Button {
|
||||
name: "wizard_button"
|
||||
text: "Start wizard"
|
||||
}
|
||||
|
||||
@GUI::HorizontalSeparator {
|
||||
}
|
||||
|
||||
@GUI::TextEditor {
|
||||
name: "wizard_output"
|
||||
mode: "ReadOnly"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue