| 2726 |
BracketedPaste = TRUE; |
BracketedPaste = TRUE; |
| 2727 |
break; |
break; |
| 2728 |
case 7727: // mintty Application Escape Mode |
case 7727: // mintty Application Escape Mode |
| 2729 |
AppliEscapeMode = TRUE; |
AppliEscapeMode = 1; |
| 2730 |
break; |
break; |
| 2731 |
case 7786: // Wheel to Cursor translation |
case 7786: // Wheel to Cursor translation |
| 2732 |
if (ts.TranslateWheelToCursor) { |
if (ts.TranslateWheelToCursor) { |
| 2740 |
if (ts.MouseEventTracking) |
if (ts.MouseEventTracking) |
| 2741 |
MouseReportMode = IdMouseTrackNetTerm; |
MouseReportMode = IdMouseTrackNetTerm; |
| 2742 |
break; |
break; |
| 2743 |
|
case 14002: // test Application Escape Mode 2 |
| 2744 |
|
case 14003: // test Application Escape Mode 3 |
| 2745 |
|
case 14004: // test Application Escape Mode 4 |
| 2746 |
|
AppliEscapeMode = Param[i] - 14000; |
| 2747 |
|
break; |
| 2748 |
} |
} |
| 2749 |
} |
} |
| 2750 |
|
|
| 2877 |
BracketedPaste = FALSE; |
BracketedPaste = FALSE; |
| 2878 |
break; |
break; |
| 2879 |
case 7727: // mintty Application Escape Mode |
case 7727: // mintty Application Escape Mode |
| 2880 |
AppliEscapeMode = FALSE; |
AppliEscapeMode = 0; |
| 2881 |
break; |
break; |
| 2882 |
case 7786: // Wheel to Cursor translation |
case 7786: // Wheel to Cursor translation |
| 2883 |
AcceptWheelToCursor = FALSE; |
AcceptWheelToCursor = FALSE; |
| 2888 |
case 14001: // NetTerm mouse mode |
case 14001: // NetTerm mouse mode |
| 2889 |
MouseReportMode = IdMouseTrackNone; |
MouseReportMode = IdMouseTrackNone; |
| 2890 |
break; |
break; |
| 2891 |
|
case 14002: // test Application Escape Mode 2 |
| 2892 |
|
case 14003: // test Application Escape Mode 3 |
| 2893 |
|
case 14004: // test Application Escape Mode 4 |
| 2894 |
|
AppliEscapeMode = 0; |
| 2895 |
|
break; |
| 2896 |
} |
} |
| 2897 |
} |
} |
| 2898 |
|
|
| 3256 |
resp = 2; |
resp = 2; |
| 3257 |
break; |
break; |
| 3258 |
case 7727: // MinTTY Application Escape Mode |
case 7727: // MinTTY Application Escape Mode |
| 3259 |
if (AppliEscapeMode) |
if (AppliEscapeMode == 1) |
| 3260 |
resp = 1; |
resp = 1; |
| 3261 |
else |
else |
| 3262 |
resp = 2; |
resp = 2; |
| 3282 |
resp = 1; |
resp = 1; |
| 3283 |
else |
else |
| 3284 |
resp = 2; |
resp = 2; |
| 3285 |
|
break; |
| 3286 |
|
case 14002: // test Application Escape Mode 2 |
| 3287 |
|
case 14003: // test Application Escape Mode 3 |
| 3288 |
|
case 14004: // test Application Escape Mode 4 |
| 3289 |
|
if (AppliEscapeMode == Param[1] - 14000) |
| 3290 |
|
resp = 1; |
| 3291 |
|
else |
| 3292 |
|
resp = 2; |
| 3293 |
break; |
break; |
| 3294 |
} |
} |
| 3295 |
break; |
break; |