Serenity Operating System
1@GUI::Widget {
2 fill_with_background_color: true
3 layout: @GUI::VerticalBoxLayout {
4 margins: [4]
5 }
6
7 @GUI::Widget {
8 fixed_height: 32
9 layout: @GUI::HorizontalBoxLayout {}
10
11 @GUI::ImageWidget {
12 name: "source_folder_icon"
13 }
14
15 @GUI::ImageWidget {
16 name: "file_copy_animation"
17 }
18
19 @GUI::ImageWidget {
20 name: "destination_folder_icon"
21 }
22 }
23
24 @GUI::Label {
25 text: "Copying files..."
26 text_alignment: "CenterLeft"
27 font_weight: "Bold"
28 fixed_height: 32
29 name: "files_copied_label"
30 }
31
32 @GUI::HorizontalSeparator {
33 fixed_height: 2
34 }
35
36 @GUI::Widget {
37 fixed_height: 22
38 layout: @GUI::HorizontalBoxLayout {}
39
40 @GUI::Label {
41 text: "Copying: "
42 font_weight: "Bold"
43 text_alignment: "CenterLeft"
44 fixed_width: 80
45 name: "current_file_action_label"
46 }
47
48 @GUI::Label {
49 name: "current_file_label"
50 text: "Placeholder"
51 text_alignment: "CenterLeft"
52 }
53 }
54
55 @GUI::Widget {
56 fixed_height: 22
57 layout: @GUI::HorizontalBoxLayout {}
58
59 @GUI::Label {
60 text: "Time left: "
61 font_weight: "Bold"
62 text_alignment: "CenterLeft"
63 fixed_width: 80
64 }
65
66 @GUI::Label {
67 name: "estimated_time_label"
68 text: "Estimating..."
69 text_alignment: "CenterLeft"
70 }
71 }
72
73 @GUI::Progressbar {
74 fixed_height: 22
75 name: "overall_progressbar"
76 min: 0
77 }
78
79 @GUI::Widget {
80 fixed_height: 2
81 }
82
83 @GUI::Widget {
84 shrink_to_fit: true
85 layout: @GUI::HorizontalBoxLayout {}
86
87 @GUI::Layout::Spacer {}
88
89 @GUI::Button {
90 text: "Cancel"
91 name: "button"
92 fixed_width: 80
93 }
94 }
95}