mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:07:45 +00:00
Applications: Move to Userland/Applications/
This commit is contained in:
parent
aa939c4b4b
commit
dc28c07fa5
287 changed files with 1 additions and 1 deletions
53
Userland/Applications/FileManager/FileManagerWindow.gml
Normal file
53
Userland/Applications/FileManager/FileManagerWindow.gml
Normal file
|
@ -0,0 +1,53 @@
|
|||
@GUI::Widget {
|
||||
fill_with_background_color: true
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
spacing: 2
|
||||
}
|
||||
|
||||
@GUI::ToolBarContainer {
|
||||
@GUI::ToolBar {
|
||||
name: "main_toolbar"
|
||||
}
|
||||
@GUI::ToolBar {
|
||||
name: "location_toolbar"
|
||||
visible: false
|
||||
|
||||
@GUI::Label {
|
||||
text: "Location: "
|
||||
autosize: true
|
||||
}
|
||||
|
||||
@GUI::TextBox {
|
||||
name: "location_textbox"
|
||||
fixed_height: 22
|
||||
}
|
||||
}
|
||||
@GUI::ToolBar {
|
||||
name: "breadcrumb_toolbar"
|
||||
|
||||
@GUI::BreadcrumbBar {
|
||||
name: "breadcrumb_bar"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@GUI::HorizontalSplitter {
|
||||
name: "splitter"
|
||||
|
||||
@GUI::TreeView {
|
||||
name: "tree_view"
|
||||
fixed_width: 175
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@GUI::StatusBar {
|
||||
name: "statusbar"
|
||||
|
||||
@GUI::ProgressBar {
|
||||
name: "progressbar"
|
||||
text: "Generating thumbnails: "
|
||||
visible: false
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue