blob: ed700973fb324cfc1d220d1d89f0b7aac15f30c1 (
plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
@GUI::Widget {
name: "main"
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
spacing: 2
}
@GUI::ToolbarContainer {
name: "toolbar_container"
@GUI::Toolbar {
name: "toolbar"
}
}
@GUI::HorizontalSplitter {
@GUI::TextEditor {
name: "editor"
}
@GUI::Widget {
name: "web_view_container"
visible: false
layout: @GUI::VerticalBoxLayout
}
}
@GUI::GroupBox {
name: "find_replace_widget"
visible: false
fill_with_background_color: true
fixed_height: 56
layout: @GUI::VerticalBoxLayout {
spacing: 2
margins: [3]
}
@GUI::Widget {
name: "find_widget"
fill_with_background_color: true
fixed_height: 22
layout: @GUI::HorizontalBoxLayout {
spacing: 4
}
@GUI::Button {
name: "find_previous_button"
fixed_width: 38
}
@GUI::Button {
name: "find_next_button"
fixed_width: 38
}
@GUI::TextBox {
name: "find_textbox"
}
@GUI::CheckBox {
name: "regex_checkbox"
text: "Use RegEx"
fixed_width: 80
}
@GUI::CheckBox {
name: "match_case_checkbox"
text: "Match case"
fixed_width: 85
}
}
@GUI::Widget {
name: "replace_widget"
fill_with_background_color: true
fixed_height: 22
layout: @GUI::HorizontalBoxLayout {
spacing: 4
}
@GUI::Button {
name: "replace_button"
text: "Replace"
fixed_width: 80
}
@GUI::TextBox {
name: "replace_textbox"
}
@GUI::Button {
name: "replace_all_button"
text: "Replace all"
fixed_width: 80
}
@GUI::CheckBox {
name: "wrap_around_checkbox"
text: "Wrap around"
fixed_width: 85
}
}
}
@GUI::Statusbar {
name: "statusbar"
label_count: 2
}
}
|