mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 07:36:50 +00:00
I hereby declare these to be full nouns that we don't split, neither by space, nor by underscore: - Breadcrumbbar - Coolbar - Menubar - Progressbar - Scrollbar - Statusbar - Taskbar - Toolbar This patch makes everything consistent by replacing every other variant of these with the proper one. :^)
90 lines
1.7 KiB
Plaintext
90 lines
1.7 KiB
Plaintext
@GUI::Widget {
|
|
fill_with_background_color: true
|
|
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [4, 4, 4, 4]
|
|
}
|
|
|
|
@GUI::Label {
|
|
text: "Copying files..."
|
|
text_alignment: "CenterLeft"
|
|
font_weight: "Bold"
|
|
fixed_height: 32
|
|
}
|
|
|
|
@GUI::HorizontalSeparator {
|
|
fixed_height: 2
|
|
}
|
|
|
|
@GUI::Widget {
|
|
fixed_height: 32
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
}
|
|
|
|
@GUI::Label {
|
|
text: "Copying: "
|
|
font_weight: "Bold"
|
|
text_alignment: "CenterLeft"
|
|
fixed_width: 80
|
|
}
|
|
|
|
@GUI::Label {
|
|
name: "current_file_label"
|
|
text: "Placeholder"
|
|
text_alignment: "CenterLeft"
|
|
}
|
|
}
|
|
|
|
@GUI::Progressbar {
|
|
fixed_height: 22
|
|
name: "current_file_progressbar"
|
|
min: 0
|
|
}
|
|
|
|
@GUI::Widget {
|
|
fixed_height: 32
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
}
|
|
|
|
@GUI::Label {
|
|
text: "Overall progress: "
|
|
font_weight: "Bold"
|
|
text_alignment: "CenterLeft"
|
|
fixed_width: 120
|
|
}
|
|
|
|
@GUI::Label {
|
|
name: "overall_progress_label"
|
|
text: "Placeholder"
|
|
text_alignment: "CenterLeft"
|
|
}
|
|
}
|
|
|
|
@GUI::Progressbar {
|
|
fixed_height: 22
|
|
name: "overall_progressbar"
|
|
min: 0
|
|
}
|
|
|
|
@GUI::Widget {
|
|
fixed_height: 2
|
|
}
|
|
|
|
@GUI::Widget {
|
|
shrink_to_fit: true
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
}
|
|
|
|
@GUI::Widget {
|
|
}
|
|
|
|
@GUI::Button {
|
|
text: "Cancel"
|
|
name: "button"
|
|
fixed_width: 80
|
|
}
|
|
}
|
|
}
|