forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFindInPageWidget.gml
More file actions
43 lines (37 loc) · 803 Bytes
/
FindInPageWidget.gml
File metadata and controls
43 lines (37 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
margins: [4]
spacing: 4
}
preferred_height: "shrink"
@GUI::Button {
name: "close_button"
fixed_width: 16
fixed_height: 16
button_style: "Coolbar"
}
@GUI::TextBox {
name: "search_textbox"
placeholder: "Find in page..."
fixed_width: 200
}
@GUI::Button {
name: "previous_button"
fixed_width: 24
button_style: "Coolbar"
}
@GUI::Button {
name: "next_button"
fixed_width: 24
button_style: "Coolbar"
}
@GUI::CheckBox {
name: "match_case_checkbox"
text: "Match Case"
}
@GUI::Label {
name: "result_label"
text: ""
fixed_width: 100
}
}