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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
//! Cursor-related sections of the appearance settings tab.
//!
//! Covers: Cursor, Cursor Locks, and Cursor Effects sections.
use crate::SettingsUI;
use crate::section::{collapsing_section, section_matches, subsection_label};
use par_term_config::{CursorStyle, UnfocusedCursorStyle};
use std::collections::HashSet;
pub(super) fn show_cursor_section(
ui: &mut egui::Ui,
settings: &mut SettingsUI,
changes_this_frame: &mut bool,
collapsed: &mut HashSet<String>,
) {
if section_matches(
&settings.search_query.trim().to_lowercase(),
"Cursor",
&[
"style",
"block",
"beam",
"underline",
"blink",
"color",
"text color",
"cursor text color",
"unfocused cursor",
"hollow",
],
) {
collapsing_section(ui, "Cursor", "appearance_cursor", true, collapsed, |ui| {
ui.horizontal(|ui| {
ui.label("Style:");
let current = match settings.config.cursor_style {
CursorStyle::Block => 0,
CursorStyle::Beam => 1,
CursorStyle::Underline => 2,
};
let mut selected = current;
egui::ComboBox::from_id_salt("appearance_cursor_style")
.selected_text(match current {
0 => "Block",
1 => "Beam",
2 => "Underline",
_ => "Unknown",
})
.show_ui(ui, |ui| {
ui.selectable_value(&mut selected, 0, "Block");
ui.selectable_value(&mut selected, 1, "Beam");
ui.selectable_value(&mut selected, 2, "Underline");
});
if selected != current {
settings.config.cursor_style = match selected {
0 => CursorStyle::Block,
1 => CursorStyle::Beam,
2 => CursorStyle::Underline,
_ => CursorStyle::Block,
};
settings.has_changes = true;
}
});
if ui
.checkbox(&mut settings.config.cursor_blink, "Cursor blink")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
ui.horizontal(|ui| {
ui.label("Blink interval (ms):");
if ui
.add(egui::Slider::new(
&mut settings.config.cursor_blink_interval,
100..=2000,
))
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
ui.horizontal(|ui| {
ui.label("Color:");
let mut color = settings.config.cursor_color;
if ui.color_edit_button_srgb(&mut color).changed() {
settings.config.cursor_color = color;
settings.has_changes = true;
*changes_this_frame = true;
}
});
ui.horizontal(|ui| {
ui.label("Text color (block cursor):");
let mut use_custom_color = settings.config.cursor_text_color.is_some();
if ui
.checkbox(&mut use_custom_color, "")
.on_hover_text("Enable custom text color under block cursor")
.changed()
{
if use_custom_color {
settings.config.cursor_text_color = Some([255, 0, 0]);
} else {
settings.config.cursor_text_color = None;
}
settings.has_changes = true;
*changes_this_frame = true;
}
if let Some(ref mut text_color) = settings.config.cursor_text_color {
let mut color = *text_color;
if ui.color_edit_button_srgb(&mut color).changed() {
*text_color = color;
settings.has_changes = true;
*changes_this_frame = true;
}
} else {
ui.label("(auto)");
}
});
subsection_label(ui, "When Unfocused");
ui.horizontal(|ui| {
ui.label("Style:");
let current = match settings.config.unfocused_cursor_style {
UnfocusedCursorStyle::Hollow => 0,
UnfocusedCursorStyle::Same => 1,
UnfocusedCursorStyle::Hidden => 2,
};
let mut selected = current;
egui::ComboBox::from_id_salt("appearance_unfocused_cursor_style")
.selected_text(match current {
0 => "Hollow (outline)",
1 => "Same",
2 => "Hidden",
_ => "Unknown",
})
.show_ui(ui, |ui| {
ui.selectable_value(&mut selected, 0, "Hollow (outline)");
ui.selectable_value(&mut selected, 1, "Same");
ui.selectable_value(&mut selected, 2, "Hidden");
});
if selected != current {
settings.config.unfocused_cursor_style = match selected {
0 => UnfocusedCursorStyle::Hollow,
1 => UnfocusedCursorStyle::Same,
2 => UnfocusedCursorStyle::Hidden,
_ => UnfocusedCursorStyle::Hollow,
};
settings.has_changes = true;
*changes_this_frame = true;
}
});
});
}
}
pub(super) fn show_cursor_locks_section(
ui: &mut egui::Ui,
settings: &mut SettingsUI,
changes_this_frame: &mut bool,
collapsed: &mut HashSet<String>,
) {
if section_matches(
&settings.search_query.trim().to_lowercase(),
"Cursor Locks",
&[
"lock",
"visibility",
"style",
"blink",
"prevent applications",
],
) {
collapsing_section(
ui,
"Cursor Locks",
"appearance_cursor_locks",
false,
collapsed,
|ui| {
ui.label("Prevent applications from changing cursor settings:");
ui.add_space(4.0);
if ui
.checkbox(
&mut settings.config.lock_cursor_visibility,
"Lock cursor visibility",
)
.on_hover_text("Prevent applications from hiding the cursor")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
if ui
.checkbox(&mut settings.config.lock_cursor_style, "Lock cursor style")
.on_hover_text("Prevent applications from changing cursor style")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
ui.add_enabled_ui(!settings.config.lock_cursor_style, |ui| {
if ui
.checkbox(&mut settings.config.lock_cursor_blink, "Lock cursor blink")
.on_hover_text(if settings.config.lock_cursor_style {
"Disabled: Lock cursor style already controls blink"
} else {
"Prevent applications from enabling cursor blink"
})
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
},
);
}
}
pub(super) fn show_cursor_effects_section(
ui: &mut egui::Ui,
settings: &mut SettingsUI,
changes_this_frame: &mut bool,
collapsed: &mut HashSet<String>,
) {
if section_matches(
&settings.search_query.trim().to_lowercase(),
"Cursor Effects",
&[
"guide",
"shadow",
"boost",
"glow",
"horizontal line",
"drop shadow",
"shadow blur",
"cursor row",
],
) {
collapsing_section(
ui,
"Cursor Effects",
"appearance_cursor_effects",
false,
collapsed,
|ui| {
// Cursor Guide
if ui
.checkbox(
&mut settings.config.cursor_guide_enabled,
"Cursor guide (horizontal line)",
)
.on_hover_text("Show a subtle horizontal line at the cursor row")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
if settings.config.cursor_guide_enabled {
ui.horizontal(|ui| {
ui.label("Guide color:");
let mut color = settings.config.cursor_guide_color;
if ui
.color_edit_button_srgba_unmultiplied(&mut color)
.changed()
{
settings.config.cursor_guide_color = color;
settings.has_changes = true;
*changes_this_frame = true;
}
});
}
ui.add_space(4.0);
// Cursor Shadow
if ui
.checkbox(&mut settings.config.cursor_shadow_enabled, "Cursor shadow")
.on_hover_text("Add a drop shadow behind the cursor")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
if settings.config.cursor_shadow_enabled {
ui.horizontal(|ui| {
ui.label("Shadow color:");
let mut color = settings.config.cursor_shadow_color;
if ui
.color_edit_button_srgba_unmultiplied(&mut color)
.changed()
{
settings.config.cursor_shadow_color = color;
settings.has_changes = true;
*changes_this_frame = true;
}
});
ui.horizontal(|ui| {
ui.label("Shadow offset X:");
if ui
.add(egui::Slider::new(
&mut settings.config.cursor_shadow_offset[0],
0.0..=10.0,
))
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
ui.horizontal(|ui| {
ui.label("Shadow offset Y:");
if ui
.add(egui::Slider::new(
&mut settings.config.cursor_shadow_offset[1],
0.0..=10.0,
))
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
ui.horizontal(|ui| {
ui.label("Shadow blur:");
if ui
.add(
egui::Slider::new(
&mut settings.config.cursor_shadow_blur,
0.0..=20.0,
)
.suffix(" px"),
)
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
}
ui.add_space(4.0);
// Cursor Boost (Glow)
ui.horizontal(|ui| {
ui.label("Cursor boost (glow):");
if ui
.add(egui::Slider::new(
&mut settings.config.cursor_boost,
0.0..=1.0,
))
.on_hover_text("Add a glow effect around the cursor for visibility")
.changed()
{
settings.has_changes = true;
*changes_this_frame = true;
}
});
if settings.config.cursor_boost > 0.0 {
ui.horizontal(|ui| {
ui.label("Boost color:");
let mut color = settings.config.cursor_boost_color;
if ui.color_edit_button_srgb(&mut color).changed() {
settings.config.cursor_boost_color = color;
settings.has_changes = true;
*changes_this_frame = true;
}
});
}
},
);
}
}