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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
//! TuiSerial - Terminal User Interface for Serial Port Communication
//!
//! A terminal-based serial port communication tool with a user-friendly interface
//! and full mouse interaction support.
use std::io;
use std::time::Duration;
use crossterm::{
cursor::{Hide, MoveTo, Show},
event::{
self, DisableMouseCapture, EnableMouseCapture, Event, KeyCode, KeyEvent, KeyEventKind,
KeyModifiers, MouseButton, MouseEvent, MouseEventKind,
},
execute,
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
};
use ratatui::{backend::CrosstermBackend, layout::Rect, Terminal};
use tuiserial_core::{i18n::t, menu_def::MENU_BAR, MenuAction};
use tuiserial_core::{AppState, DisplayMode, FocusedField, TxMode};
use tuiserial_serial::list_ports;
use tuiserial_ui::{draw, get_clicked_field, get_ui_areas, is_inside};
mod handler;
use handler::SerialHandler;
/// Calculate display width of a string (handles CJK characters)
fn display_width(s: &str) -> usize {
s.chars().map(|c| if c.is_ascii() { 1 } else { 2 }).sum()
}
/// Handle menu action execution
fn handle_menu_action(
app: &mut AppState,
handler: &mut SerialHandler,
menu_idx: usize,
item_idx: usize,
) -> bool {
use tuiserial_core::i18n::t;
// Get the action from centralized menu definition
let action = match MENU_BAR.get_action(menu_idx, item_idx) {
Some(a) => a,
None => return false,
};
// Handle separator (should not be clickable, but just in case)
if action.is_separator() {
return false;
}
// Execute action
match action {
MenuAction::SaveConfig => {
match app.save_config() {
Ok(_) => app.add_success(t("notify.config_saved", app.language).to_string()),
Err(e) => app.add_error(format!(
"{}: {}",
t("notify.config_save_failed", app.language),
e
)),
}
false
}
MenuAction::LoadConfig => {
app.load_config();
app.add_success(t("notify.config_loaded", app.language).to_string());
false
}
MenuAction::Exit => {
if handler.is_connected() {
handler.disconnect();
}
true
}
MenuAction::ToggleLanguage => {
app.toggle_language();
app.add_success(t("notify.language_changed", app.language).to_string());
false
}
MenuAction::ShowShortcuts => {
app.show_shortcuts_help = !app.show_shortcuts_help;
false
}
MenuAction::ShowAbout => {
let about_text = if app.language == tuiserial_core::Language::English {
"TuiSerial v0.1.4\nTerminal Serial Port Monitor\n\nA modern serial port debugging tool with mouse support and internationalization."
} else {
"TuiSerial v0.1.4\n终端串口监控工具\n\n一个现代化的串口调试工具,支持鼠标操作和国际化。"
};
app.add_info(about_text.to_string());
false
}
// Future features
MenuAction::NewSession
| MenuAction::DuplicateSession
| MenuAction::RenameSession
| MenuAction::CloseSession => {
app.add_info("Multi-session support coming soon!".to_string());
false
}
MenuAction::ViewSingle
| MenuAction::ViewSplitHorizontal
| MenuAction::ViewSplitVertical
| MenuAction::ViewGrid2x2
| MenuAction::ViewNextPane
| MenuAction::ViewPrevPane => {
app.add_info("Layout management coming soon!".to_string());
false
}
MenuAction::Separator => false,
}
}
fn main() -> io::Result<()> {
color_eyre::install().ok();
enable_raw_mode()?;
let mut stdout = io::stdout();
execute!(stdout, EnterAlternateScreen, EnableMouseCapture)?;
let backend = CrosstermBackend::new(stdout);
let terminal = Terminal::new(backend)?;
let result = run_app(terminal);
disable_raw_mode()?;
execute!(io::stdout(), LeaveAlternateScreen, DisableMouseCapture)?;
result
}
fn run_app(mut terminal: Terminal<CrosstermBackend<io::Stdout>>) -> io::Result<()> {
let mut app = AppState::default();
let mut handler = SerialHandler::new();
// Load saved configuration
app.load_config();
// Initialize available ports
app.ports = list_ports();
if !app.ports.is_empty() {
// Only set default port if config didn't have one
if app.config.port.is_empty() {
app.config.port = app.ports[0].clone();
app.port_list_state.select(Some(0));
} else {
// Try to select the configured port
if let Some(idx) = app.ports.iter().position(|p| p == &app.config.port) {
app.port_list_state.select(Some(idx));
} else if !app.ports.is_empty() {
// Fallback to first port if configured port not found
app.config.port = app.ports[0].clone();
app.port_list_state.select(Some(0));
}
}
}
loop {
app.update_notifications();
terminal.draw(|f| draw(f, &app))?;
// Apply native cursor state (set during rendering)
{
let areas = tuiserial_ui::get_ui_areas();
if areas.show_cursor {
execute!(
io::stdout(),
MoveTo(areas.cursor_x, areas.cursor_y),
Show
)?;
} else {
execute!(io::stdout(), Hide)?;
}
}
if event::poll(Duration::from_millis(100))? {
match event::read()? {
Event::Key(key) => {
if handle_key_event(key, &mut app, &mut handler) {
break;
}
}
Event::Mouse(mouse) => {
handle_mouse_event(mouse, &mut app, &mut handler);
}
Event::Resize(_, _) => {
// Terminal auto-redraws on resize
}
Event::Paste(data) => {
handle_paste_event(&data, &mut app);
}
_ => {}
}
}
// Try to read from serial port if connected
if handler.is_connected() {
if let Ok(data) = handler.read() {
if !data.is_empty() {
app.message_log.push_rx(data.clone());
if app.auto_scroll {
let lines_count = app.message_log.entries.len() as u16;
app.scroll_offset = lines_count.saturating_sub(1);
}
}
}
}
}
if handler.is_connected() {
handler.disconnect();
}
Ok(())
}
/// Rebuild hex-mode input with auto-spacing: extract hex digits, group in pairs with spaces.
/// Preserves cursor position relative to hex content.
fn rebuild_hex_input(app: &mut AppState) {
// Extract only hex digits
let hex_only: String = app
.tx_input
.chars()
.filter(|c| c.is_ascii_hexdigit())
.collect();
// Count hex digits before cursor in the old string
let hex_before_cursor: usize = app.tx_input[..app
.tx_input
.char_indices()
.nth(app.tx_cursor)
.map(|(i, _)| i)
.unwrap_or(app.tx_input.len())]
.chars()
.filter(|c| c.is_ascii_hexdigit())
.count();
// Rebuild with spaces every 2 hex digits
let mut new_input = String::new();
for (i, ch) in hex_only.chars().enumerate() {
new_input.push(ch);
if i % 2 == 1 && i < hex_only.len() - 1 {
new_input.push(' ');
}
}
// Map cursor: find position after hex_before_cursor hex digits in new string
let mut hex_count = 0;
let mut new_cursor = 0;
for (i, ch) in new_input.chars().enumerate() {
if ch.is_ascii_hexdigit() {
hex_count += 1;
}
if hex_count == hex_before_cursor {
new_cursor = i + 1;
break;
}
}
app.tx_input = new_input;
app.tx_cursor = new_cursor;
}
/// Handle paste events: in hex mode filter non-hex chars and rebuild spacing; in ASCII insert as-is
fn handle_paste_event(data: &str, app: &mut AppState) {
if app.focused_field != FocusedField::TxInput {
return;
}
if app.tx_mode == TxMode::Hex {
// Extract only hex digits, stripping all non-hex characters.
// This handles common paste formats: "0x41, 0x42", "41:42:43", "\x41\x42", etc.
let hex_only: String = data
.chars()
.filter(|c| c.is_ascii_hexdigit())
.collect();
if !hex_only.is_empty() {
let byte_idx = app
.tx_input
.char_indices()
.nth(app.tx_cursor)
.map(|(i, _)| i)
.unwrap_or(app.tx_input.len());
app.tx_input.insert_str(byte_idx, &hex_only);
app.tx_cursor += hex_only.chars().count();
rebuild_hex_input(app);
}
} else {
// ASCII mode: insert as-is at cursor
let byte_idx = app
.tx_input
.char_indices()
.nth(app.tx_cursor)
.map(|(i, _)| i)
.unwrap_or(app.tx_input.len());
app.tx_input.insert_str(byte_idx, data);
app.tx_cursor += data.chars().count();
}
}
fn handle_key_event(key: KeyEvent, app: &mut AppState, handler: &mut SerialHandler) -> bool {
if key.kind != KeyEventKind::Press {
return false;
}
// Handle menu navigation first
use tuiserial_core::MenuState;
match app.menu_state {
MenuState::None => {
// F10 to open menu bar
if key.code == KeyCode::F(10) {
app.menu_state = MenuState::MenuBar(0);
// Move focus away from config fields to close dropdowns
app.focused_field = FocusedField::LogArea;
return false;
}
// F1 or ? to toggle help
if key.code == KeyCode::F(1) || key.code == KeyCode::Char('?') {
app.show_shortcuts_help = !app.show_shortcuts_help;
return false;
}
// Ctrl+S to save config
if key.code == KeyCode::Char('s')
&& key
.modifiers
.contains(crossterm::event::KeyModifiers::CONTROL)
{
match app.save_config() {
Ok(_) => app.add_success(
tuiserial_core::i18n::t("notify.config_saved", app.language).to_string(),
),
Err(e) => app.add_error(format!(
"{}: {}",
tuiserial_core::i18n::t("notify.config_save_failed", app.language),
e
)),
}
return false;
}
// Ctrl+O to load config
if key.code == KeyCode::Char('o')
&& key
.modifiers
.contains(crossterm::event::KeyModifiers::CONTROL)
{
app.load_config();
app.add_success(
tuiserial_core::i18n::t("notify.config_loaded", app.language).to_string(),
);
return false;
}
}
MenuState::MenuBar(selected) => {
let menu_count = MENU_BAR.menu_count();
match key.code {
KeyCode::Left => {
app.menu_state = MenuState::MenuBar(if selected == 0 {
menu_count - 1
} else {
selected - 1
});
return false;
}
KeyCode::Right => {
app.menu_state = MenuState::MenuBar((selected + 1) % menu_count);
return false;
}
KeyCode::Enter | KeyCode::Down => {
app.menu_state = MenuState::Dropdown(selected, 0);
return false;
}
KeyCode::Esc => {
app.menu_state = MenuState::None;
return false;
}
_ => {}
}
return false;
}
MenuState::Dropdown(menu_idx, item_idx) => {
let item_count = MENU_BAR.get_item_count(menu_idx);
match key.code {
KeyCode::Up => {
let new_idx = if item_idx == 0 {
item_count - 1
} else {
item_idx - 1
};
app.menu_state = MenuState::Dropdown(menu_idx, new_idx);
return false;
}
KeyCode::Down => {
app.menu_state = MenuState::Dropdown(menu_idx, (item_idx + 1) % item_count);
return false;
}
KeyCode::Left => {
let menu_count = MENU_BAR.menu_count();
let new_menu = if menu_idx == 0 {
menu_count - 1
} else {
menu_idx - 1
};
app.menu_state = MenuState::Dropdown(new_menu, 0);
return false;
}
KeyCode::Right => {
let menu_count = MENU_BAR.menu_count();
let new_menu = (menu_idx + 1) % menu_count;
app.menu_state = MenuState::Dropdown(new_menu, 0);
return false;
}
KeyCode::Enter => {
// Execute menu action
let should_exit = handle_menu_action(app, handler, menu_idx, item_idx);
app.menu_state = MenuState::None;
return should_exit;
}
KeyCode::Esc => {
app.menu_state = MenuState::MenuBar(menu_idx);
return false;
}
_ => {}
}
return false;
}
}
// Close help overlay
if app.show_shortcuts_help {
match key.code {
KeyCode::Esc | KeyCode::F(1) | KeyCode::Char('q') | KeyCode::Char('?') => {
app.show_shortcuts_help = false;
return false;
}
_ => return false, // Consume all other keys when help is showing
}
}
// If we're in TX input mode, handle text input
if app.focused_field == FocusedField::TxInput {
match key.code {
KeyCode::Tab => {
app.focus_next_field();
return false;
}
KeyCode::BackTab => {
app.focus_prev_field();
return false;
}
KeyCode::Char(c) => {
if app.tx_mode == TxMode::Hex {
match c {
'0'..='9' | 'a'..='f' | 'A'..='F' => {
let upper = c.to_ascii_uppercase();
let byte_idx = app
.tx_input
.char_indices()
.nth(app.tx_cursor)
.map(|(i, _)| i)
.unwrap_or(app.tx_input.len());
app.tx_input.insert(byte_idx, upper);
app.tx_cursor += 1;
rebuild_hex_input(app);
}
' ' => {
// Spaces are auto-managed by rebuild_hex_input; ignore manual space
}
_ => {} // Ignore non-hex chars in hex mode
}
} else {
// ASCII mode: accept any character
let byte_idx = app
.tx_input
.char_indices()
.nth(app.tx_cursor)
.map(|(i, _)| i)
.unwrap_or(app.tx_input.len());
app.tx_input.insert(byte_idx, c);
app.tx_cursor += 1;
}
return false;
}
KeyCode::Backspace => {
if app.tx_cursor > 0 {
// Convert character index to byte index for removal
let byte_idx = app
.tx_input
.char_indices()
.nth(app.tx_cursor - 1)
.map(|(i, _)| i)
.unwrap_or(0);
if byte_idx < app.tx_input.len() {
app.tx_input.remove(byte_idx);
}
app.tx_cursor -= 1;
if app.tx_mode == TxMode::Hex {
rebuild_hex_input(app);
}
}
return false;
}
KeyCode::Up => {
app.toggle_tx_mode();
app.add_info(format!(
"{}: {}",
t("notify.tx_mode", app.language),
match app.tx_mode {
TxMode::Hex => "HEX",
TxMode::Ascii => "ASCII",
}
));
return false;
}
KeyCode::Down => {
app.toggle_tx_mode();
app.add_info(format!(
"{}: {}",
t("notify.tx_mode", app.language),
match app.tx_mode {
TxMode::Hex => "HEX",
TxMode::Ascii => "ASCII",
}
));
return false;
}
KeyCode::Delete => {
let char_count = app.tx_input.chars().count();
if app.tx_cursor < char_count {
// Convert character index to byte index for removal
let byte_idx = app
.tx_input
.char_indices()
.nth(app.tx_cursor)
.map(|(i, _)| i)
.unwrap_or(app.tx_input.len());
if byte_idx < app.tx_input.len() {
app.tx_input.remove(byte_idx);
}
if app.tx_mode == TxMode::Hex {
rebuild_hex_input(app);
}
}
return false;
}
KeyCode::Left => {
if app.tx_cursor > 0 {
app.tx_cursor -= 1;
}
return false;
}
KeyCode::Right => {
let char_count = app.tx_input.chars().count();
if app.tx_cursor < char_count {
app.tx_cursor += 1;
}
return false;
}
KeyCode::Home => {
app.tx_cursor = 0;
return false;
}
KeyCode::End => {
app.tx_cursor = app.tx_input.chars().count();
return false;
}
KeyCode::Enter => {
// Send data
if !app.tx_input.is_empty() {
if handler.is_connected() {
let mut bytes: Result<Vec<u8>, String> = match app.tx_mode {
TxMode::Ascii => Ok(app.tx_input.as_bytes().to_vec()),
TxMode::Hex => tuiserial_serial::hex_to_bytes(&app.tx_input),
};
// Append line ending if configured
if let Ok(ref mut data) = bytes {
data.extend_from_slice(app.tx_append_mode.as_bytes());
}
match bytes {
Ok(data) => match handler.send(&data) {
Ok(_sent) => {
app.message_log.push_tx(data.clone());
let append_info = if app.tx_append_mode.as_bytes().is_empty() {
String::new()
} else {
format!(" + {}", app.tx_append_mode.name(app.language))
};
app.add_success(format!(
"{}{}",
t("notify.send_success", app.language),
append_info
));
app.tx_input.clear();
app.tx_cursor = 0;
if app.auto_scroll {
let lines_count = app.message_log.entries.len() as u16;
app.scroll_offset = lines_count.saturating_sub(1);
}
}
Err(e) => {
app.add_error(format!(
"{}: {}",
t("notify.send_failed", app.language),
e
));
}
},
Err(e) => {
app.add_error(format!(
"{}: {}",
t("notify.hex_format_error", app.language),
e
));
}
}
} else {
app.add_error(t("notify.not_connected", app.language).to_string());
}
} else {
app.add_warning(t("notify.input_empty", app.language).to_string());
}
return false;
}
KeyCode::Esc => {
app.tx_input.clear();
app.tx_cursor = 0;
return false;
}
_ => {}
}
return false;
}
// Global/dropdown navigation
match key.code {
// Exit: Ctrl+C, Ctrl+Q, plain q, or Esc
KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => return true,
KeyCode::Char('q') if key.modifiers.contains(KeyModifiers::CONTROL) => return true,
KeyCode::Char('q') | KeyCode::Esc => return true,
// Connect/Disconnect
KeyCode::Char('o') => {
if handler.is_connected() {
handler.disconnect();
app.is_connected = false;
app.unlock_config();
app.add_info(t("notify.disconnected_unlocked", app.language).to_string());
} else {
// Validate configuration before connecting
if app.config.port.is_empty() {
app.add_error(t("notify.please_select_port", app.language).to_string());
} else {
match handler.connect(app) {
Ok(_) => {
app.is_connected = true;
app.lock_config();
app.add_success(t("notify.connected_locked", app.language)
.replace("{}", &app.config.port).to_string());
}
Err(e) => {
app.is_connected = false;
app.unlock_config();
app.add_error(format!(
"{}: {}",
t("notify.connection_failed", app.language),
e
));
}
}
}
}
}
// Tab navigation between fields
KeyCode::Tab => {
app.focus_next_field();
}
KeyCode::BackTab => {
app.focus_prev_field();
}
// Field-specific navigation - Up/Down
KeyCode::Up | KeyCode::Char('k') => match app.focused_field {
FocusedField::Port => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.port_list_state.selected() {
let new_idx = if idx > 0 {
idx - 1
} else {
app.ports.len().saturating_sub(1)
};
if app.select_port(new_idx) {
app.add_info(format!(
"{}: {}",
t("notify.port_selected", app.language),
app.config.port
));
}
}
}
FocusedField::BaudRate => {
if !app.prev_baud_rate() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
}
}
FocusedField::DataBits => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.data_bits_state.selected() {
let new_idx = if idx > 0 {
idx - 1
} else {
app.data_bits_options.len() - 1
};
app.data_bits_state.select(Some(new_idx));
app.config.data_bits = app.data_bits_options[new_idx];
}
}
FocusedField::Parity => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.parity_state.selected() {
let new_idx = if idx > 0 {
idx - 1
} else {
app.parity_options.len() - 1
};
app.parity_state.select(Some(new_idx));
app.config.parity = app.parity_options[new_idx];
}
}
FocusedField::StopBits => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.stop_bits_state.selected() {
let new_idx = if idx > 0 {
idx - 1
} else {
app.stop_bits_options.len() - 1
};
app.stop_bits_state.select(Some(new_idx));
app.config.stop_bits = app.stop_bits_options[new_idx];
}
}
FocusedField::FlowControl => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.flow_control_state.selected() {
let new_idx = if idx > 0 {
idx - 1
} else {
app.flow_control_options.len() - 1
};
app.flow_control_state.select(Some(new_idx));
app.config.flow_control = app.flow_control_options[new_idx];
}
}
FocusedField::LogArea => {
app.toggle_display_mode();
let mode_str = match app.display_mode {
DisplayMode::Hex => "HEX",
DisplayMode::Text => "TEXT",
};
app.add_info(format!(
"{}: {}",
t("notify.display_mode", app.language),
mode_str
));
}
_ => {}
},
KeyCode::Down | KeyCode::Char('j') => match app.focused_field {
FocusedField::Port => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.port_list_state.selected() {
let new_idx = if idx < app.ports.len().saturating_sub(1) {
idx + 1
} else {
0
};
if app.select_port(new_idx) {
app.add_info(format!(
"{}: {}",
t("notify.port_selected", app.language),
app.config.port
));
}
}
}
FocusedField::BaudRate => {
if !app.next_baud_rate() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
}
}
FocusedField::DataBits => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.data_bits_state.selected() {
let new_idx = if idx < app.data_bits_options.len() - 1 {
idx + 1
} else {
0
};
app.data_bits_state.select(Some(new_idx));
app.config.data_bits = app.data_bits_options[new_idx];
}
}
FocusedField::Parity => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.parity_state.selected() {
let new_idx = if idx < app.parity_options.len() - 1 {
idx + 1
} else {
0
};
app.parity_state.select(Some(new_idx));
app.config.parity = app.parity_options[new_idx];
}
}
FocusedField::StopBits => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.stop_bits_state.selected() {
let new_idx = if idx < app.stop_bits_options.len() - 1 {
idx + 1
} else {
0
};
app.stop_bits_state.select(Some(new_idx));
app.config.stop_bits = app.stop_bits_options[new_idx];
}
}
FocusedField::FlowControl => {
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.flow_control_state.selected() {
let new_idx = if idx < app.flow_control_options.len() - 1 {
idx + 1
} else {
0
};
app.flow_control_state.select(Some(new_idx));
app.config.flow_control = app.flow_control_options[new_idx];
}
}
FocusedField::LogArea => {
app.toggle_display_mode();
let mode_str = match app.display_mode {
DisplayMode::Hex => "HEX",
DisplayMode::Text => "TEXT",
};
app.add_info(format!(
"{}: {}",
t("notify.display_mode", app.language),
mode_str
));
}
_ => {}
},
// Left/Right for BaudRate and other controls
KeyCode::Right | KeyCode::Char('l') => if app.focused_field == FocusedField::BaudRate
&& !app.next_baud_rate() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
},
KeyCode::Left | KeyCode::Char('h') => if app.focused_field == FocusedField::BaudRate
&& !app.prev_baud_rate() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
},
// Display mode toggle (HEX/TEXT)
KeyCode::Char('x') => {
app.toggle_display_mode();
let mode_str = match app.display_mode {
DisplayMode::Hex => "HEX",
DisplayMode::Text => "TEXT",
};
app.add_info(format!(
"{}: {}",
t("notify.toggle_display_mode", app.language),
mode_str
));
}
// Auto scroll toggle
KeyCode::Char('a') => {
app.auto_scroll = !app.auto_scroll;
let status = if app.auto_scroll {
t("notify.enabled", app.language)
} else {
t("notify.disabled", app.language)
};
app.add_info(format!(
"{}: {}",
t("notify.auto_scroll", app.language),
status
));
}
// Clear buffer
KeyCode::Char('c') => {
app.message_log.clear();
app.add_info(t("notify.log_cleared", app.language).to_string());
}
// Parity toggle
KeyCode::Char('p') => {
if app.toggle_parity() {
let parity_str = format!("{:?}", app.config.parity);
app.add_info(format!(
"{}: {}",
t("notify.parity", app.language),
parity_str
));
} else {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
}
}
// Flow control toggle
KeyCode::Char('f') => {
if app.toggle_flow_control() {
let flow_str = format!("{:?}", app.config.flow_control);
app.add_info(format!(
"{}: {}",
t("notify.flow_control", app.language),
flow_str
));
} else {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
}
}
// Append mode cycle
KeyCode::Char('n') => {
app.next_append_mode();
app.add_info(format!(
"{}: {}",
t("notify.append_mode", app.language),
app.tx_append_mode.name(app.language)
));
}
// Refresh ports list
KeyCode::Char('r') => {
app.ports = list_ports();
if !app.ports.is_empty() && app.port_list_state.selected().is_none() {
app.port_list_state.select(Some(0));
app.config.port = app.ports[0].clone();
}
app.add_success(t("notify.ports_refreshed", app.language).to_string());
}
// Scroll navigation
KeyCode::PageUp => {
app.auto_scroll = false;
app.scroll_offset = app.scroll_offset.saturating_sub(10);
}
KeyCode::PageDown => {
app.scroll_offset = app.scroll_offset.saturating_add(10);
}
KeyCode::Home => {
app.auto_scroll = false;
app.scroll_offset = 0;
}
KeyCode::End => {
app.auto_scroll = true;
let lines = app.message_log.entries.len() as u16;
app.scroll_offset = lines.saturating_sub(1);
}
_ => {}
}
false
}
fn handle_mouse_event(mouse: MouseEvent, app: &mut AppState, handler: &mut SerialHandler) {
let col = mouse.column;
let row = mouse.row;
match mouse.kind {
// Left click - focus field and handle selection
MouseEventKind::Down(MouseButton::Left) => {
use tuiserial_core::{i18n::t, MenuState};
let areas = get_ui_areas();
// Check if menu bar was clicked
if is_inside(areas.menu_bar, col, row) {
// Use centralized menu click detection
if let Some(menu_idx) =
tuiserial_ui::find_clicked_menu(col, row, areas.menu_bar, app.language)
{
// Clicked on this menu
match app.menu_state {
MenuState::Dropdown(current_idx, _) if current_idx == menu_idx => {
// Clicking same menu closes it
app.menu_state = MenuState::None;
}
_ => {
// Open dropdown for this menu
app.menu_state = MenuState::Dropdown(menu_idx, 0);
// Move focus away from config fields to close dropdowns
app.focused_field = FocusedField::LogArea;
}
}
}
return;
}
// Check if dropdown menu item was clicked
if let MenuState::Dropdown(menu_idx, _) = app.menu_state {
// Get menu from centralized definition
let menu = match MENU_BAR.get_menu(menu_idx) {
Some(m) => m,
None => {
app.menu_state = MenuState::None;
return;
}
};
// Build items for width calculation
let items: Vec<String> = menu
.items
.iter()
.map(|action| {
if action.is_separator() {
String::new()
} else {
t(action.label_key(), app.language).to_string()
}
})
.collect();
// Calculate dropdown dimensions
let max_width = items
.iter()
.map(|s| display_width(s.as_str()))
.max()
.unwrap_or(10) as u16
+ 6;
let height = items.len() as u16 + 2;
// Calculate dropdown position using centralized function
let x_offset =
tuiserial_core::menu_def::calculate_menu_x_offset(menu_idx, app.language);
let dropdown_area = Rect {
x: areas.menu_bar.x + x_offset,
y: areas.menu_bar.y + 1,
width: max_width,
height,
};
if is_inside(dropdown_area, col, row) {
// Calculate which item was clicked
let relative_y = row - dropdown_area.y;
if relative_y > 0 && relative_y <= items.len() as u16 {
let item_idx = (relative_y - 1) as usize;
// Get the action and check if it's a separator
if let Some(action) = MENU_BAR.get_action(menu_idx, item_idx) {
if !action.is_separator() {
let should_exit =
handle_menu_action(app, handler, menu_idx, item_idx);
app.menu_state = MenuState::None;
if should_exit {
// This will be handled in the main loop
}
}
}
}
return;
} else {
// Clicked outside dropdown, close it
app.menu_state = MenuState::None;
return;
}
}
// Try to find which field was clicked
if let Some(field) = get_clicked_field(col, row) {
app.focused_field = field;
// Handle list item selection in dropdowns
let areas = get_ui_areas();
match field {
FocusedField::Port => {
if !app.can_modify_config() {
app.add_warning(
t("notify.config_locked_warning", app.language).to_string(),
);
} else if !app.ports.is_empty() && is_inside(areas.port, col, row) {
// Calculate which port was clicked (considering borders)
let relative_row = row.saturating_sub(areas.port.y + 1);
if relative_row < app.ports.len() as u16
&& app.select_port(relative_row as usize) {
app.add_info(format!(
"{}: {}",
t("notify.port_selected", app.language),
app.config.port
));
}
}
}
FocusedField::BaudRate => {
if !app.can_modify_config() {
app.add_warning(
t("notify.config_locked_warning", app.language).to_string(),
);
} else if is_inside(areas.baud_rate, col, row) {
let relative_row = row.saturating_sub(areas.baud_rate.y + 1);
if relative_row < app.baud_rate_options.len() as u16 {
app.baud_rate_state.select(Some(relative_row as usize));
app.config.baud_rate = app.baud_rate_options[relative_row as usize];
app.add_info(format!("波特率: {}", app.config.baud_rate));
}
}
}
FocusedField::DataBits => {
if !app.can_modify_config() {
app.add_warning(
t("notify.config_locked_warning", app.language).to_string(),
);
} else if is_inside(areas.data_bits, col, row) {
let relative_row = row.saturating_sub(areas.data_bits.y + 1);
if relative_row < app.data_bits_options.len() as u16 {
app.data_bits_state.select(Some(relative_row as usize));
app.config.data_bits = app.data_bits_options[relative_row as usize];
app.add_info(format!("数据位: {}", app.config.data_bits));
}
}
}
FocusedField::Parity => {
if !app.can_modify_config() {
app.add_warning(
t("notify.config_locked_warning", app.language).to_string(),
);
} else if is_inside(areas.parity, col, row) {
let relative_row = row.saturating_sub(areas.parity.y + 1);
if relative_row < app.parity_options.len() as u16 {
app.parity_state.select(Some(relative_row as usize));
app.config.parity = app.parity_options[relative_row as usize];
app.add_info(format!(
"{}: {:?}",
t("notify.parity", app.language),
app.config.parity
));
}
}
}
FocusedField::StopBits => {
if !app.can_modify_config() {
app.add_warning(
t("notify.config_locked_warning", app.language).to_string(),
);
} else if is_inside(areas.stop_bits, col, row) {
let relative_row = row.saturating_sub(areas.stop_bits.y + 1);
if relative_row < app.stop_bits_options.len() as u16 {
app.stop_bits_state.select(Some(relative_row as usize));
app.config.stop_bits = app.stop_bits_options[relative_row as usize];
app.add_info(format!("停止位: {}", app.config.stop_bits));
}
}
}
FocusedField::FlowControl => {
if !app.can_modify_config() {
app.add_warning(
t("notify.config_locked_warning", app.language).to_string(),
);
} else if is_inside(areas.flow_control, col, row) {
let relative_row = row.saturating_sub(areas.flow_control.y + 1);
if relative_row < app.flow_control_options.len() as u16 {
app.flow_control_state.select(Some(relative_row as usize));
app.config.flow_control =
app.flow_control_options[relative_row as usize];
app.add_info(format!(
"{}: {:?}",
t("notify.flow_control", app.language),
app.config.flow_control
));
}
}
}
FocusedField::TxInput => {
// Position cursor based on click position or select append mode
let areas = get_ui_areas();
if is_inside(areas.tx_area, col, row) {
// Check if click is in the right portion (append selector)
let tx_input_width = areas.tx_area.width.saturating_sub(12);
let relative_col = col.saturating_sub(areas.tx_area.x);
if relative_col >= tx_input_width {
// Clicked in append selector area
let relative_row = row.saturating_sub(areas.tx_area.y + 1);
if relative_row < app.append_mode_options.len() as u16 {
app.append_mode_state.select(Some(relative_row as usize));
app.tx_append_mode =
app.append_mode_options[relative_row as usize];
app.add_info(format!(
"{}: {}",
t("notify.append_mode", app.language),
app.tx_append_mode.name(app.language)
));
}
} else {
// Clicked in input area - position cursor
let char_count = app.tx_input.chars().count();
let cursor_pos =
relative_col.saturating_sub(1).min(char_count as u16) as usize;
app.tx_cursor = cursor_pos;
}
}
}
_ => {}
}
}
}
// Right click - context menu actions
MouseEventKind::Down(MouseButton::Right) => {
let areas = get_ui_areas();
if is_inside(areas.log_area, col, row) {
// Right click in log area - toggle display mode
app.toggle_display_mode();
let mode_str = match app.display_mode {
DisplayMode::Hex => "HEX",
DisplayMode::Text => "TEXT",
};
app.add_info(format!(
"{}: {}",
t("notify.toggle_display_mode", app.language),
mode_str
));
} else if is_inside(areas.tx_area, col, row) {
// Right click in TX area - check which part
let tx_input_width = areas.tx_area.width.saturating_sub(12);
let relative_col = col.saturating_sub(areas.tx_area.x);
if relative_col >= tx_input_width {
// Right click in append selector - cycle append mode
app.next_append_mode();
app.add_info(format!(
"{}: {}",
t("notify.append_mode", app.language),
app.tx_append_mode.name(app.language)
));
} else {
// Right click in input area - toggle TX mode
app.toggle_tx_mode();
app.add_info(format!(
"{}: {}",
t("notify.tx_mode", app.language),
match app.tx_mode {
TxMode::Hex => "HEX",
TxMode::Ascii => "ASCII",
}
));
}
} else if is_inside(areas.control_area, col, row) {
// Right click in control area - toggle auto scroll
app.auto_scroll = !app.auto_scroll;
let status = if app.auto_scroll { "启用" } else { "禁用" };
app.add_info(format!("自动滚动: {}", status));
}
}
// Middle click - clear log or input
MouseEventKind::Down(MouseButton::Middle) => {
let areas = get_ui_areas();
if is_inside(areas.log_area, col, row) {
// Middle click in log area - clear log
app.message_log.clear();
app.add_info(t("notify.log_cleared", app.language).to_string());
} else if is_inside(areas.tx_area, col, row) {
// Middle click in TX area - clear input
app.tx_input.clear();
app.tx_cursor = 0;
app.add_info("已清空输入");
}
}
// Scroll up - navigate or scroll log
MouseEventKind::ScrollUp => {
let areas = get_ui_areas();
if is_inside(areas.log_area, col, row) {
// Scroll in log area
app.auto_scroll = false;
app.scroll_offset = app.scroll_offset.saturating_sub(3);
} else if is_inside(areas.port, col, row) {
// Scroll in port list
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.port_list_state.selected() {
let new_idx = if idx > 0 {
idx - 1
} else {
app.ports.len().saturating_sub(1)
};
app.select_port(new_idx);
}
} else if is_inside(areas.baud_rate, col, row) {
// Scroll in baud rate list
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else {
app.prev_baud_rate();
}
} else if is_inside(areas.tx_area, col, row) {
// Scroll in TX area - cycle append mode
app.prev_append_mode();
}
}
// Scroll down - navigate or scroll log
MouseEventKind::ScrollDown => {
let areas = get_ui_areas();
if is_inside(areas.log_area, col, row) {
// Scroll in log area
app.scroll_offset = app.scroll_offset.saturating_add(3);
// Check if we scrolled to the end
let lines = app.message_log.entries.len() as u16;
let viewport_lines = areas.log_area.height.saturating_sub(2).max(1);
let max_scroll = lines.saturating_sub(viewport_lines);
if app.scroll_offset >= max_scroll {
app.auto_scroll = true;
}
} else if is_inside(areas.port, col, row) {
// Scroll in port list
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else if let Some(idx) = app.port_list_state.selected() {
let new_idx = if idx < app.ports.len().saturating_sub(1) {
idx + 1
} else {
0
};
app.select_port(new_idx);
}
} else if is_inside(areas.baud_rate, col, row) {
// Scroll in baud rate list
if !app.can_modify_config() {
app.add_warning(t("notify.config_locked_warning", app.language).to_string());
} else {
app.next_baud_rate();
}
} else if is_inside(areas.tx_area, col, row) {
// Scroll in TX area - cycle append mode
app.next_append_mode();
}
}
// Drag events - for future implementation (e.g., selecting text)
MouseEventKind::Drag(MouseButton::Left) => {
// TODO: Implement text selection in log area
}
_ => {}
}
}