According to Frank Dijcks, this cast makes OpenWatcom happier.
[u/mdw/putty] / windows / window.c
1 /*
2 * window.c - the PuTTY(tel) main program, which runs a PuTTY terminal
3 * emulator and backend in a window.
4 */
5
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <ctype.h>
9 #include <time.h>
10 #include <limits.h>
11 #include <assert.h>
12
13 #define PUTTY_DO_GLOBALS /* actually _define_ globals */
14 #include "putty.h"
15 #include "terminal.h"
16 #include "storage.h"
17 #include "win_res.h"
18
19 #ifndef NO_MULTIMON
20 #if WINVER < 0x0500
21 #define COMPILE_MULTIMON_STUBS
22 #include <multimon.h>
23 #endif
24 #endif
25
26 #include <imm.h>
27 #include <commctrl.h>
28 #include <richedit.h>
29 #include <mmsystem.h>
30
31 /* From MSDN: In the WM_SYSCOMMAND message, the four low-order bits of
32 * wParam are used by Windows, and should be masked off, so we shouldn't
33 * attempt to store information in them. Hence all these identifiers have
34 * the low 4 bits clear. Also, identifiers should < 0xF000. */
35
36 #define IDM_SHOWLOG 0x0010
37 #define IDM_NEWSESS 0x0020
38 #define IDM_DUPSESS 0x0030
39 #define IDM_RESTART 0x0040
40 #define IDM_RECONF 0x0050
41 #define IDM_CLRSB 0x0060
42 #define IDM_RESET 0x0070
43 #define IDM_HELP 0x0140
44 #define IDM_ABOUT 0x0150
45 #define IDM_SAVEDSESS 0x0160
46 #define IDM_COPYALL 0x0170
47 #define IDM_FULLSCREEN 0x0180
48 #define IDM_PASTE 0x0190
49 #define IDM_SPECIALSEP 0x0200
50
51 #define IDM_SPECIAL_MIN 0x0400
52 #define IDM_SPECIAL_MAX 0x0800
53
54 #define IDM_SAVED_MIN 0x1000
55 #define IDM_SAVED_MAX 0x5000
56 #define MENU_SAVED_STEP 16
57 /* Maximum number of sessions on saved-session submenu */
58 #define MENU_SAVED_MAX ((IDM_SAVED_MAX-IDM_SAVED_MIN) / MENU_SAVED_STEP)
59
60 #define WM_IGNORE_CLIP (WM_APP + 2)
61 #define WM_FULLSCR_ON_MAX (WM_APP + 3)
62 #define WM_AGENT_CALLBACK (WM_APP + 4)
63
64 /* Needed for Chinese support and apparently not always defined. */
65 #ifndef VK_PROCESSKEY
66 #define VK_PROCESSKEY 0xE5
67 #endif
68
69 /* Mouse wheel support. */
70 #ifndef WM_MOUSEWHEEL
71 #define WM_MOUSEWHEEL 0x020A /* not defined in earlier SDKs */
72 #endif
73 #ifndef WHEEL_DELTA
74 #define WHEEL_DELTA 120
75 #endif
76
77 static Mouse_Button translate_button(Mouse_Button button);
78 static LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
79 static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam,
80 unsigned char *output);
81 static void cfgtopalette(void);
82 static void systopalette(void);
83 static void init_palette(void);
84 static void init_fonts(int, int);
85 static void another_font(int);
86 static void deinit_fonts(void);
87 static void set_input_locale(HKL);
88 static void update_savedsess_menu(void);
89
90 static int is_full_screen(void);
91 static void make_full_screen(void);
92 static void clear_full_screen(void);
93 static void flip_full_screen(void);
94
95 /* Window layout information */
96 static void reset_window(int);
97 static int extra_width, extra_height;
98 static int font_width, font_height, font_dualwidth;
99 static int offset_width, offset_height;
100 static int was_zoomed = 0;
101 static int prev_rows, prev_cols;
102
103 static int pending_netevent = 0;
104 static WPARAM pend_netevent_wParam = 0;
105 static LPARAM pend_netevent_lParam = 0;
106 static void enact_pending_netevent(void);
107 static void flash_window(int mode);
108 static void sys_cursor_update(void);
109 static int is_shift_pressed(void);
110 static int get_fullscreen_rect(RECT * ss);
111
112 static int caret_x = -1, caret_y = -1;
113
114 static int kbd_codepage;
115
116 static void *ldisc;
117 static Backend *back;
118 static void *backhandle;
119
120 static struct unicode_data ucsdata;
121 static int must_close_session, session_closed;
122 static int reconfiguring = FALSE;
123
124 static const struct telnet_special *specials = NULL;
125 static HMENU specials_menu = NULL;
126 static int n_specials = 0;
127
128 #define TIMING_TIMER_ID 1234
129 static long timing_next_time;
130
131 static struct {
132 HMENU menu;
133 } popup_menus[2];
134 enum { SYSMENU, CTXMENU };
135 static HMENU savedsess_menu;
136
137 Config cfg; /* exported to windlg.c */
138
139 static struct sesslist sesslist; /* for saved-session menu */
140
141 struct agent_callback {
142 void (*callback)(void *, void *, int);
143 void *callback_ctx;
144 void *data;
145 int len;
146 };
147
148 #define FONT_NORMAL 0
149 #define FONT_BOLD 1
150 #define FONT_UNDERLINE 2
151 #define FONT_BOLDUND 3
152 #define FONT_WIDE 0x04
153 #define FONT_HIGH 0x08
154 #define FONT_NARROW 0x10
155
156 #define FONT_OEM 0x20
157 #define FONT_OEMBOLD 0x21
158 #define FONT_OEMUND 0x22
159 #define FONT_OEMBOLDUND 0x23
160
161 #define FONT_MAXNO 0x2F
162 #define FONT_SHIFT 5
163 static HFONT fonts[FONT_MAXNO];
164 static LOGFONT lfont;
165 static int fontflag[FONT_MAXNO];
166 static enum {
167 BOLD_COLOURS, BOLD_SHADOW, BOLD_FONT
168 } bold_mode;
169 static enum {
170 UND_LINE, UND_FONT
171 } und_mode;
172 static int descent;
173
174 #define NCFGCOLOURS 22
175 #define NEXTCOLOURS 240
176 #define NALLCOLOURS (NCFGCOLOURS + NEXTCOLOURS)
177 static COLORREF colours[NALLCOLOURS];
178 static HPALETTE pal;
179 static LPLOGPALETTE logpal;
180 static RGBTRIPLE defpal[NALLCOLOURS];
181
182 static HBITMAP caretbm;
183
184 static int dbltime, lasttime, lastact;
185 static Mouse_Button lastbtn;
186
187 /* this allows xterm-style mouse handling. */
188 static int send_raw_mouse = 0;
189 static int wheel_accumulator = 0;
190
191 static int busy_status = BUSY_NOT;
192
193 static char *window_name, *icon_name;
194
195 static int compose_state = 0;
196
197 static UINT wm_mousewheel = WM_MOUSEWHEEL;
198
199 /* Dummy routine, only required in plink. */
200 void ldisc_update(void *frontend, int echo, int edit)
201 {
202 }
203
204 char *get_ttymode(void *frontend, const char *mode)
205 {
206 return term_get_ttymode(term, mode);
207 }
208
209 static void start_backend(void)
210 {
211 const char *error;
212 char msg[1024], *title;
213 char *realhost;
214 int i;
215
216 /*
217 * Select protocol. This is farmed out into a table in a
218 * separate file to enable an ssh-free variant.
219 */
220 back = NULL;
221 for (i = 0; backends[i].backend != NULL; i++)
222 if (backends[i].protocol == cfg.protocol) {
223 back = backends[i].backend;
224 break;
225 }
226 if (back == NULL) {
227 char *str = dupprintf("%s Internal Error", appname);
228 MessageBox(NULL, "Unsupported protocol number found",
229 str, MB_OK | MB_ICONEXCLAMATION);
230 sfree(str);
231 cleanup_exit(1);
232 }
233
234 error = back->init(NULL, &backhandle, &cfg,
235 cfg.host, cfg.port, &realhost, cfg.tcp_nodelay,
236 cfg.tcp_keepalives);
237 back->provide_logctx(backhandle, logctx);
238 if (error) {
239 char *str = dupprintf("%s Error", appname);
240 sprintf(msg, "Unable to open connection to\n"
241 "%.800s\n" "%s", cfg_dest(&cfg), error);
242 MessageBox(NULL, msg, str, MB_ICONERROR | MB_OK);
243 sfree(str);
244 exit(0);
245 }
246 window_name = icon_name = NULL;
247 if (*cfg.wintitle) {
248 title = cfg.wintitle;
249 } else {
250 sprintf(msg, "%s - %s", realhost, appname);
251 title = msg;
252 }
253 sfree(realhost);
254 set_title(NULL, title);
255 set_icon(NULL, title);
256
257 /*
258 * Connect the terminal to the backend for resize purposes.
259 */
260 term_provide_resize_fn(term, back->size, backhandle);
261
262 /*
263 * Set up a line discipline.
264 */
265 ldisc = ldisc_create(&cfg, term, back, backhandle, NULL);
266
267 /*
268 * Destroy the Restart Session menu item. (This will return
269 * failure if it's already absent, as it will be the very first
270 * time we call this function. We ignore that, because as long
271 * as the menu item ends up not being there, we don't care
272 * whether it was us who removed it or not!)
273 */
274 for (i = 0; i < lenof(popup_menus); i++) {
275 DeleteMenu(popup_menus[i].menu, IDM_RESTART, MF_BYCOMMAND);
276 }
277
278 must_close_session = FALSE;
279 session_closed = FALSE;
280 }
281
282 static void close_session(void)
283 {
284 char morestuff[100];
285 int i;
286
287 session_closed = TRUE;
288 sprintf(morestuff, "%.70s (inactive)", appname);
289 set_icon(NULL, morestuff);
290 set_title(NULL, morestuff);
291
292 if (ldisc) {
293 ldisc_free(ldisc);
294 ldisc = NULL;
295 }
296 if (back) {
297 back->free(backhandle);
298 backhandle = NULL;
299 back = NULL;
300 update_specials_menu(NULL);
301 }
302
303 /*
304 * Show the Restart Session menu item. Do a precautionary
305 * delete first to ensure we never end up with more than one.
306 */
307 for (i = 0; i < lenof(popup_menus); i++) {
308 DeleteMenu(popup_menus[i].menu, IDM_RESTART, MF_BYCOMMAND);
309 InsertMenu(popup_menus[i].menu, IDM_DUPSESS, MF_BYCOMMAND | MF_ENABLED,
310 IDM_RESTART, "&Restart Session");
311 }
312 }
313
314 int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
315 {
316 WNDCLASS wndclass;
317 MSG msg;
318 int guess_width, guess_height;
319
320 hinst = inst;
321 hwnd = NULL;
322 flags = FLAG_VERBOSE | FLAG_INTERACTIVE;
323
324 sk_init();
325
326 InitCommonControls();
327
328 /* Ensure a Maximize setting in Explorer doesn't maximise the
329 * config box. */
330 defuse_showwindow();
331
332 if (!init_winver())
333 {
334 char *str = dupprintf("%s Fatal Error", appname);
335 MessageBox(NULL, "Windows refuses to report a version",
336 str, MB_OK | MB_ICONEXCLAMATION);
337 sfree(str);
338 return 1;
339 }
340
341 /*
342 * If we're running a version of Windows that doesn't support
343 * WM_MOUSEWHEEL, find out what message number we should be
344 * using instead.
345 */
346 if (osVersion.dwMajorVersion < 4 ||
347 (osVersion.dwMajorVersion == 4 &&
348 osVersion.dwPlatformId != VER_PLATFORM_WIN32_NT))
349 wm_mousewheel = RegisterWindowMessage("MSWHEEL_ROLLMSG");
350
351 init_help();
352
353 /*
354 * Process the command line.
355 */
356 {
357 char *p;
358 int got_host = 0;
359
360 default_protocol = be_default_protocol;
361 /* Find the appropriate default port. */
362 {
363 int i;
364 default_port = 0; /* illegal */
365 for (i = 0; backends[i].backend != NULL; i++)
366 if (backends[i].protocol == default_protocol) {
367 default_port = backends[i].backend->default_port;
368 break;
369 }
370 }
371 cfg.logtype = LGTYP_NONE;
372
373 do_defaults(NULL, &cfg);
374
375 p = cmdline;
376
377 /*
378 * Process a couple of command-line options which are more
379 * easily dealt with before the line is broken up into
380 * words. These are the soon-to-be-defunct @sessionname and
381 * the internal-use-only &sharedmemoryhandle, neither of
382 * which are combined with anything else.
383 */
384 while (*p && isspace(*p))
385 p++;
386 if (*p == '@') {
387 int i = strlen(p);
388 while (i > 1 && isspace(p[i - 1]))
389 i--;
390 p[i] = '\0';
391 do_defaults(p + 1, &cfg);
392 if (!cfg_launchable(&cfg) && !do_config()) {
393 cleanup_exit(0);
394 }
395 } else if (*p == '&') {
396 /*
397 * An initial & means we've been given a command line
398 * containing the hex value of a HANDLE for a file
399 * mapping object, which we must then extract as a
400 * config.
401 */
402 HANDLE filemap;
403 Config *cp;
404 if (sscanf(p + 1, "%p", &filemap) == 1 &&
405 (cp = MapViewOfFile(filemap, FILE_MAP_READ,
406 0, 0, sizeof(Config))) != NULL) {
407 cfg = *cp;
408 UnmapViewOfFile(cp);
409 CloseHandle(filemap);
410 } else if (!do_config()) {
411 cleanup_exit(0);
412 }
413 } else {
414 /*
415 * Otherwise, break up the command line and deal with
416 * it sensibly.
417 */
418 int argc, i;
419 char **argv;
420
421 split_into_argv(cmdline, &argc, &argv, NULL);
422
423 for (i = 0; i < argc; i++) {
424 char *p = argv[i];
425 int ret;
426
427 ret = cmdline_process_param(p, i+1<argc?argv[i+1]:NULL,
428 1, &cfg);
429 if (ret == -2) {
430 cmdline_error("option \"%s\" requires an argument", p);
431 } else if (ret == 2) {
432 i++; /* skip next argument */
433 } else if (ret == 1) {
434 continue; /* nothing further needs doing */
435 } else if (!strcmp(p, "-cleanup") ||
436 !strcmp(p, "-cleanup-during-uninstall")) {
437 /*
438 * `putty -cleanup'. Remove all registry
439 * entries associated with PuTTY, and also find
440 * and delete the random seed file.
441 */
442 char *s1, *s2;
443 /* Are we being invoked from an uninstaller? */
444 if (!strcmp(p, "-cleanup-during-uninstall")) {
445 s1 = dupprintf("Remove saved sessions and random seed file?\n"
446 "\n"
447 "If you hit Yes, ALL Registry entries associated\n"
448 "with %s will be removed, as well as the\n"
449 "random seed file. THIS PROCESS WILL\n"
450 "DESTROY YOUR SAVED SESSIONS.\n"
451 "(This only affects the currently logged-in user.)\n"
452 "\n"
453 "If you hit No, uninstallation will proceed, but\n"
454 "saved sessions etc will be left on the machine.",
455 appname);
456 s2 = dupprintf("%s Uninstallation", appname);
457 } else {
458 s1 = dupprintf("This procedure will remove ALL Registry entries\n"
459 "associated with %s, and will also remove\n"
460 "the random seed file. (This only affects the\n"
461 "currently logged-in user.)\n"
462 "\n"
463 "THIS PROCESS WILL DESTROY YOUR SAVED SESSIONS.\n"
464 "Are you really sure you want to continue?",
465 appname);
466 s2 = dupprintf("%s Warning", appname);
467 }
468 if (message_box(s1, s2,
469 MB_YESNO | MB_ICONWARNING | MB_DEFBUTTON2,
470 HELPCTXID(option_cleanup)) == IDYES) {
471 cleanup_all();
472 }
473 sfree(s1);
474 sfree(s2);
475 exit(0);
476 } else if (!strcmp(p, "-pgpfp")) {
477 pgp_fingerprints();
478 exit(1);
479 } else if (*p != '-') {
480 char *q = p;
481 if (got_host) {
482 /*
483 * If we already have a host name, treat
484 * this argument as a port number. NB we
485 * have to treat this as a saved -P
486 * argument, so that it will be deferred
487 * until it's a good moment to run it.
488 */
489 int ret = cmdline_process_param("-P", p, 1, &cfg);
490 assert(ret == 2);
491 } else if (!strncmp(q, "telnet:", 7)) {
492 /*
493 * If the hostname starts with "telnet:",
494 * set the protocol to Telnet and process
495 * the string as a Telnet URL.
496 */
497 char c;
498
499 q += 7;
500 if (q[0] == '/' && q[1] == '/')
501 q += 2;
502 cfg.protocol = PROT_TELNET;
503 p = q;
504 while (*p && *p != ':' && *p != '/')
505 p++;
506 c = *p;
507 if (*p)
508 *p++ = '\0';
509 if (c == ':')
510 cfg.port = atoi(p);
511 else
512 cfg.port = -1;
513 strncpy(cfg.host, q, sizeof(cfg.host) - 1);
514 cfg.host[sizeof(cfg.host) - 1] = '\0';
515 got_host = 1;
516 } else {
517 /*
518 * Otherwise, treat this argument as a host
519 * name.
520 */
521 while (*p && !isspace(*p))
522 p++;
523 if (*p)
524 *p++ = '\0';
525 strncpy(cfg.host, q, sizeof(cfg.host) - 1);
526 cfg.host[sizeof(cfg.host) - 1] = '\0';
527 got_host = 1;
528 }
529 } else {
530 cmdline_error("unknown option \"%s\"", p);
531 }
532 }
533 }
534
535 cmdline_run_saved(&cfg);
536
537 if (!cfg_launchable(&cfg) && !do_config()) {
538 cleanup_exit(0);
539 }
540
541 /*
542 * Trim leading whitespace off the hostname if it's there.
543 */
544 {
545 int space = strspn(cfg.host, " \t");
546 memmove(cfg.host, cfg.host+space, 1+strlen(cfg.host)-space);
547 }
548
549 /* See if host is of the form user@host */
550 if (cfg.host[0] != '\0') {
551 char *atsign = strrchr(cfg.host, '@');
552 /* Make sure we're not overflowing the user field */
553 if (atsign) {
554 if (atsign - cfg.host < sizeof cfg.username) {
555 strncpy(cfg.username, cfg.host, atsign - cfg.host);
556 cfg.username[atsign - cfg.host] = '\0';
557 }
558 memmove(cfg.host, atsign + 1, 1 + strlen(atsign + 1));
559 }
560 }
561
562 /*
563 * Trim a colon suffix off the hostname if it's there. In
564 * order to protect IPv6 address literals against this
565 * treatment, we do not do this if there's _more_ than one
566 * colon.
567 */
568 {
569 char *c = strchr(cfg.host, ':');
570
571 if (c) {
572 char *d = strchr(c+1, ':');
573 if (!d)
574 *c = '\0';
575 }
576 }
577
578 /*
579 * Remove any remaining whitespace from the hostname.
580 */
581 {
582 int p1 = 0, p2 = 0;
583 while (cfg.host[p2] != '\0') {
584 if (cfg.host[p2] != ' ' && cfg.host[p2] != '\t') {
585 cfg.host[p1] = cfg.host[p2];
586 p1++;
587 }
588 p2++;
589 }
590 cfg.host[p1] = '\0';
591 }
592 }
593
594 /* Check for invalid Port number (i.e. zero) */
595 if (cfg.port == 0) {
596 char *str = dupprintf("%s Internal Error", appname);
597 MessageBox(NULL, "Invalid Port Number",
598 str, MB_OK | MB_ICONEXCLAMATION);
599 sfree(str);
600 cleanup_exit(1);
601 }
602
603 if (!prev) {
604 wndclass.style = 0;
605 wndclass.lpfnWndProc = WndProc;
606 wndclass.cbClsExtra = 0;
607 wndclass.cbWndExtra = 0;
608 wndclass.hInstance = inst;
609 wndclass.hIcon = LoadIcon(inst, MAKEINTRESOURCE(IDI_MAINICON));
610 wndclass.hCursor = LoadCursor(NULL, IDC_IBEAM);
611 wndclass.hbrBackground = NULL;
612 wndclass.lpszMenuName = NULL;
613 wndclass.lpszClassName = appname;
614
615 RegisterClass(&wndclass);
616 }
617
618 memset(&ucsdata, 0, sizeof(ucsdata));
619
620 cfgtopalette();
621
622 /*
623 * Guess some defaults for the window size. This all gets
624 * updated later, so we don't really care too much. However, we
625 * do want the font width/height guesses to correspond to a
626 * large font rather than a small one...
627 */
628
629 font_width = 10;
630 font_height = 20;
631 extra_width = 25;
632 extra_height = 28;
633 guess_width = extra_width + font_width * cfg.width;
634 guess_height = extra_height + font_height * cfg.height;
635 {
636 RECT r;
637 get_fullscreen_rect(&r);
638 if (guess_width > r.right - r.left)
639 guess_width = r.right - r.left;
640 if (guess_height > r.bottom - r.top)
641 guess_height = r.bottom - r.top;
642 }
643
644 {
645 int winmode = WS_OVERLAPPEDWINDOW | WS_VSCROLL;
646 int exwinmode = 0;
647 if (!cfg.scrollbar)
648 winmode &= ~(WS_VSCROLL);
649 if (cfg.resize_action == RESIZE_DISABLED)
650 winmode &= ~(WS_THICKFRAME | WS_MAXIMIZEBOX);
651 if (cfg.alwaysontop)
652 exwinmode |= WS_EX_TOPMOST;
653 if (cfg.sunken_edge)
654 exwinmode |= WS_EX_CLIENTEDGE;
655 hwnd = CreateWindowEx(exwinmode, appname, appname,
656 winmode, CW_USEDEFAULT, CW_USEDEFAULT,
657 guess_width, guess_height,
658 NULL, NULL, inst, NULL);
659 }
660
661 /*
662 * Initialise the terminal. (We have to do this _after_
663 * creating the window, since the terminal is the first thing
664 * which will call schedule_timer(), which will in turn call
665 * timer_change_notify() which will expect hwnd to exist.)
666 */
667 term = term_init(&cfg, &ucsdata, NULL);
668 logctx = log_init(NULL, &cfg);
669 term_provide_logctx(term, logctx);
670 term_size(term, cfg.height, cfg.width, cfg.savelines);
671
672 /*
673 * Initialise the fonts, simultaneously correcting the guesses
674 * for font_{width,height}.
675 */
676 init_fonts(0,0);
677
678 /*
679 * Correct the guesses for extra_{width,height}.
680 */
681 {
682 RECT cr, wr;
683 GetWindowRect(hwnd, &wr);
684 GetClientRect(hwnd, &cr);
685 offset_width = offset_height = cfg.window_border;
686 extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
687 extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
688 }
689
690 /*
691 * Resize the window, now we know what size we _really_ want it
692 * to be.
693 */
694 guess_width = extra_width + font_width * term->cols;
695 guess_height = extra_height + font_height * term->rows;
696 SetWindowPos(hwnd, NULL, 0, 0, guess_width, guess_height,
697 SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER);
698
699 /*
700 * Set up a caret bitmap, with no content.
701 */
702 {
703 char *bits;
704 int size = (font_width + 15) / 16 * 2 * font_height;
705 bits = snewn(size, char);
706 memset(bits, 0, size);
707 caretbm = CreateBitmap(font_width, font_height, 1, 1, bits);
708 sfree(bits);
709 }
710 CreateCaret(hwnd, caretbm, font_width, font_height);
711
712 /*
713 * Initialise the scroll bar.
714 */
715 {
716 SCROLLINFO si;
717
718 si.cbSize = sizeof(si);
719 si.fMask = SIF_ALL | SIF_DISABLENOSCROLL;
720 si.nMin = 0;
721 si.nMax = term->rows - 1;
722 si.nPage = term->rows;
723 si.nPos = 0;
724 SetScrollInfo(hwnd, SB_VERT, &si, FALSE);
725 }
726
727 /*
728 * Prepare the mouse handler.
729 */
730 lastact = MA_NOTHING;
731 lastbtn = MBT_NOTHING;
732 dbltime = GetDoubleClickTime();
733
734 /*
735 * Set up the session-control options on the system menu.
736 */
737 {
738 HMENU m;
739 int j;
740 char *str;
741
742 popup_menus[SYSMENU].menu = GetSystemMenu(hwnd, FALSE);
743 popup_menus[CTXMENU].menu = CreatePopupMenu();
744 AppendMenu(popup_menus[CTXMENU].menu, MF_ENABLED, IDM_PASTE, "&Paste");
745
746 savedsess_menu = CreateMenu();
747 get_sesslist(&sesslist, TRUE);
748 update_savedsess_menu();
749
750 for (j = 0; j < lenof(popup_menus); j++) {
751 m = popup_menus[j].menu;
752
753 AppendMenu(m, MF_SEPARATOR, 0, 0);
754 AppendMenu(m, MF_ENABLED, IDM_SHOWLOG, "&Event Log");
755 AppendMenu(m, MF_SEPARATOR, 0, 0);
756 AppendMenu(m, MF_ENABLED, IDM_NEWSESS, "Ne&w Session...");
757 AppendMenu(m, MF_ENABLED, IDM_DUPSESS, "&Duplicate Session");
758 AppendMenu(m, MF_POPUP | MF_ENABLED, (UINT) savedsess_menu,
759 "Sa&ved Sessions");
760 AppendMenu(m, MF_ENABLED, IDM_RECONF, "Chan&ge Settings...");
761 AppendMenu(m, MF_SEPARATOR, 0, 0);
762 AppendMenu(m, MF_ENABLED, IDM_COPYALL, "C&opy All to Clipboard");
763 AppendMenu(m, MF_ENABLED, IDM_CLRSB, "C&lear Scrollback");
764 AppendMenu(m, MF_ENABLED, IDM_RESET, "Rese&t Terminal");
765 AppendMenu(m, MF_SEPARATOR, 0, 0);
766 AppendMenu(m, (cfg.resize_action == RESIZE_DISABLED) ?
767 MF_GRAYED : MF_ENABLED, IDM_FULLSCREEN, "&Full Screen");
768 AppendMenu(m, MF_SEPARATOR, 0, 0);
769 if (has_help())
770 AppendMenu(m, MF_ENABLED, IDM_HELP, "&Help");
771 str = dupprintf("&About %s", appname);
772 AppendMenu(m, MF_ENABLED, IDM_ABOUT, str);
773 sfree(str);
774 }
775 }
776
777 start_backend();
778
779 /*
780 * Set up the initial input locale.
781 */
782 set_input_locale(GetKeyboardLayout(0));
783
784 /*
785 * Finally show the window!
786 */
787 ShowWindow(hwnd, show);
788 SetForegroundWindow(hwnd);
789
790 /*
791 * Set the palette up.
792 */
793 pal = NULL;
794 logpal = NULL;
795 init_palette();
796
797 term_set_focus(term, GetForegroundWindow() == hwnd);
798 UpdateWindow(hwnd);
799
800 while (1) {
801 HANDLE *handles;
802 int nhandles, n;
803
804 handles = handle_get_events(&nhandles);
805
806 n = MsgWaitForMultipleObjects(nhandles, handles, FALSE, INFINITE,
807 QS_ALLINPUT);
808
809 if ((unsigned)(n - WAIT_OBJECT_0) < (unsigned)nhandles) {
810 handle_got_event(handles[n - WAIT_OBJECT_0]);
811 sfree(handles);
812 if (must_close_session)
813 close_session();
814 }
815
816 sfree(handles);
817
818 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
819 if (msg.message == WM_QUIT)
820 goto finished; /* two-level break */
821
822 if (!(IsWindow(logbox) && IsDialogMessage(logbox, &msg)))
823 DispatchMessage(&msg);
824 /* Send the paste buffer if there's anything to send */
825 term_paste(term);
826 /* If there's nothing new in the queue then we can do everything
827 * we've delayed, reading the socket, writing, and repainting
828 * the window.
829 */
830 if (must_close_session)
831 close_session();
832 }
833
834 /* The messages seem unreliable; especially if we're being tricky */
835 term_set_focus(term, GetForegroundWindow() == hwnd);
836
837 if (pending_netevent)
838 enact_pending_netevent();
839
840 net_pending_errors();
841 }
842
843 finished:
844 cleanup_exit(msg.wParam); /* this doesn't return... */
845 return msg.wParam; /* ... but optimiser doesn't know */
846 }
847
848 /*
849 * Clean up and exit.
850 */
851 void cleanup_exit(int code)
852 {
853 /*
854 * Clean up.
855 */
856 deinit_fonts();
857 sfree(logpal);
858 if (pal)
859 DeleteObject(pal);
860 sk_cleanup();
861
862 if (cfg.protocol == PROT_SSH) {
863 random_save_seed();
864 #ifdef MSCRYPTOAPI
865 crypto_wrapup();
866 #endif
867 }
868 shutdown_help();
869
870 exit(code);
871 }
872
873 /*
874 * Set up, or shut down, an AsyncSelect. Called from winnet.c.
875 */
876 char *do_select(SOCKET skt, int startup)
877 {
878 int msg, events;
879 if (startup) {
880 msg = WM_NETEVENT;
881 events = (FD_CONNECT | FD_READ | FD_WRITE |
882 FD_OOB | FD_CLOSE | FD_ACCEPT);
883 } else {
884 msg = events = 0;
885 }
886 if (!hwnd)
887 return "do_select(): internal error (hwnd==NULL)";
888 if (p_WSAAsyncSelect(skt, hwnd, msg, events) == SOCKET_ERROR) {
889 switch (p_WSAGetLastError()) {
890 case WSAENETDOWN:
891 return "Network is down";
892 default:
893 return "WSAAsyncSelect(): unknown error";
894 }
895 }
896 return NULL;
897 }
898
899 /*
900 * Refresh the saved-session submenu from `sesslist'.
901 */
902 static void update_savedsess_menu(void)
903 {
904 int i;
905 while (DeleteMenu(savedsess_menu, 0, MF_BYPOSITION)) ;
906 /* skip sesslist.sessions[0] == Default Settings */
907 for (i = 1;
908 i < ((sesslist.nsessions <= MENU_SAVED_MAX+1) ? sesslist.nsessions
909 : MENU_SAVED_MAX+1);
910 i++)
911 AppendMenu(savedsess_menu, MF_ENABLED,
912 IDM_SAVED_MIN + (i-1)*MENU_SAVED_STEP,
913 sesslist.sessions[i]);
914 }
915
916 /*
917 * Update the Special Commands submenu.
918 */
919 void update_specials_menu(void *frontend)
920 {
921 HMENU new_menu;
922 int i, j;
923
924 if (back)
925 specials = back->get_specials(backhandle);
926 else
927 specials = NULL;
928
929 if (specials) {
930 /* We can't use Windows to provide a stack for submenus, so
931 * here's a lame "stack" that will do for now. */
932 HMENU saved_menu = NULL;
933 int nesting = 1;
934 new_menu = CreatePopupMenu();
935 for (i = 0; nesting > 0; i++) {
936 assert(IDM_SPECIAL_MIN + 0x10 * i < IDM_SPECIAL_MAX);
937 switch (specials[i].code) {
938 case TS_SEP:
939 AppendMenu(new_menu, MF_SEPARATOR, 0, 0);
940 break;
941 case TS_SUBMENU:
942 assert(nesting < 2);
943 nesting++;
944 saved_menu = new_menu; /* XXX lame stacking */
945 new_menu = CreatePopupMenu();
946 AppendMenu(saved_menu, MF_POPUP | MF_ENABLED,
947 (UINT) new_menu, specials[i].name);
948 break;
949 case TS_EXITMENU:
950 nesting--;
951 if (nesting) {
952 new_menu = saved_menu; /* XXX lame stacking */
953 saved_menu = NULL;
954 }
955 break;
956 default:
957 AppendMenu(new_menu, MF_ENABLED, IDM_SPECIAL_MIN + 0x10 * i,
958 specials[i].name);
959 break;
960 }
961 }
962 /* Squirrel the highest special. */
963 n_specials = i - 1;
964 } else {
965 new_menu = NULL;
966 n_specials = 0;
967 }
968
969 for (j = 0; j < lenof(popup_menus); j++) {
970 if (specials_menu) {
971 /* XXX does this free up all submenus? */
972 DeleteMenu(popup_menus[j].menu, (UINT)specials_menu, MF_BYCOMMAND);
973 DeleteMenu(popup_menus[j].menu, IDM_SPECIALSEP, MF_BYCOMMAND);
974 }
975 if (new_menu) {
976 InsertMenu(popup_menus[j].menu, IDM_SHOWLOG,
977 MF_BYCOMMAND | MF_POPUP | MF_ENABLED,
978 (UINT) new_menu, "S&pecial Command");
979 InsertMenu(popup_menus[j].menu, IDM_SHOWLOG,
980 MF_BYCOMMAND | MF_SEPARATOR, IDM_SPECIALSEP, 0);
981 }
982 }
983 specials_menu = new_menu;
984 }
985
986 static void update_mouse_pointer(void)
987 {
988 LPTSTR curstype;
989 int force_visible = FALSE;
990 static int forced_visible = FALSE;
991 switch (busy_status) {
992 case BUSY_NOT:
993 if (send_raw_mouse)
994 curstype = IDC_ARROW;
995 else
996 curstype = IDC_IBEAM;
997 break;
998 case BUSY_WAITING:
999 curstype = IDC_APPSTARTING; /* this may be an abuse */
1000 force_visible = TRUE;
1001 break;
1002 case BUSY_CPU:
1003 curstype = IDC_WAIT;
1004 force_visible = TRUE;
1005 break;
1006 default:
1007 assert(0);
1008 }
1009 {
1010 HCURSOR cursor = LoadCursor(NULL, curstype);
1011 SetClassLongPtr(hwnd, GCLP_HCURSOR, (LONG_PTR)cursor);
1012 SetCursor(cursor); /* force redraw of cursor at current posn */
1013 }
1014 if (force_visible != forced_visible) {
1015 /* We want some cursor shapes to be visible always.
1016 * Along with show_mouseptr(), this manages the ShowCursor()
1017 * counter such that if we switch back to a non-force_visible
1018 * cursor, the previous visibility state is restored. */
1019 ShowCursor(force_visible);
1020 forced_visible = force_visible;
1021 }
1022 }
1023
1024 void set_busy_status(void *frontend, int status)
1025 {
1026 busy_status = status;
1027 update_mouse_pointer();
1028 }
1029
1030 /*
1031 * set or clear the "raw mouse message" mode
1032 */
1033 void set_raw_mouse_mode(void *frontend, int activate)
1034 {
1035 activate = activate && !cfg.no_mouse_rep;
1036 send_raw_mouse = activate;
1037 update_mouse_pointer();
1038 }
1039
1040 /*
1041 * Print a message box and close the connection.
1042 */
1043 void connection_fatal(void *frontend, char *fmt, ...)
1044 {
1045 va_list ap;
1046 char *stuff, morestuff[100];
1047
1048 va_start(ap, fmt);
1049 stuff = dupvprintf(fmt, ap);
1050 va_end(ap);
1051 sprintf(morestuff, "%.70s Fatal Error", appname);
1052 MessageBox(hwnd, stuff, morestuff, MB_ICONERROR | MB_OK);
1053 sfree(stuff);
1054
1055 if (cfg.close_on_exit == FORCE_ON)
1056 PostQuitMessage(1);
1057 else {
1058 must_close_session = TRUE;
1059 }
1060 }
1061
1062 /*
1063 * Report an error at the command-line parsing stage.
1064 */
1065 void cmdline_error(char *fmt, ...)
1066 {
1067 va_list ap;
1068 char *stuff, morestuff[100];
1069
1070 va_start(ap, fmt);
1071 stuff = dupvprintf(fmt, ap);
1072 va_end(ap);
1073 sprintf(morestuff, "%.70s Command Line Error", appname);
1074 MessageBox(hwnd, stuff, morestuff, MB_ICONERROR | MB_OK);
1075 sfree(stuff);
1076 exit(1);
1077 }
1078
1079 /*
1080 * Actually do the job requested by a WM_NETEVENT
1081 */
1082 static void enact_pending_netevent(void)
1083 {
1084 static int reentering = 0;
1085 extern int select_result(WPARAM, LPARAM);
1086
1087 if (reentering)
1088 return; /* don't unpend the pending */
1089
1090 pending_netevent = FALSE;
1091
1092 reentering = 1;
1093 select_result(pend_netevent_wParam, pend_netevent_lParam);
1094 reentering = 0;
1095 }
1096
1097 /*
1098 * Copy the colour palette from the configuration data into defpal.
1099 * This is non-trivial because the colour indices are different.
1100 */
1101 static void cfgtopalette(void)
1102 {
1103 int i;
1104 static const int ww[] = {
1105 256, 257, 258, 259, 260, 261,
1106 0, 8, 1, 9, 2, 10, 3, 11,
1107 4, 12, 5, 13, 6, 14, 7, 15
1108 };
1109
1110 for (i = 0; i < 22; i++) {
1111 int w = ww[i];
1112 defpal[w].rgbtRed = cfg.colours[i][0];
1113 defpal[w].rgbtGreen = cfg.colours[i][1];
1114 defpal[w].rgbtBlue = cfg.colours[i][2];
1115 }
1116 for (i = 0; i < NEXTCOLOURS; i++) {
1117 if (i < 216) {
1118 int r = i / 36, g = (i / 6) % 6, b = i % 6;
1119 defpal[i+16].rgbtRed = r ? r * 40 + 55 : 0;
1120 defpal[i+16].rgbtGreen = g ? g * 40 + 55 : 0;
1121 defpal[i+16].rgbtBlue = b ? b * 40 + 55 : 0;
1122 } else {
1123 int shade = i - 216;
1124 shade = shade * 10 + 8;
1125 defpal[i+16].rgbtRed = defpal[i+16].rgbtGreen =
1126 defpal[i+16].rgbtBlue = shade;
1127 }
1128 }
1129
1130 /* Override with system colours if appropriate */
1131 if (cfg.system_colour)
1132 systopalette();
1133 }
1134
1135 /*
1136 * Override bit of defpal with colours from the system.
1137 * (NB that this takes a copy the system colours at the time this is called,
1138 * so subsequent colour scheme changes don't take effect. To fix that we'd
1139 * probably want to be using GetSysColorBrush() and the like.)
1140 */
1141 static void systopalette(void)
1142 {
1143 int i;
1144 static const struct { int nIndex; int norm; int bold; } or[] =
1145 {
1146 { COLOR_WINDOWTEXT, 256, 257 }, /* Default Foreground */
1147 { COLOR_WINDOW, 258, 259 }, /* Default Background */
1148 { COLOR_HIGHLIGHTTEXT, 260, 260 }, /* Cursor Text */
1149 { COLOR_HIGHLIGHT, 261, 261 }, /* Cursor Colour */
1150 };
1151
1152 for (i = 0; i < (sizeof(or)/sizeof(or[0])); i++) {
1153 COLORREF colour = GetSysColor(or[i].nIndex);
1154 defpal[or[i].norm].rgbtRed =
1155 defpal[or[i].bold].rgbtRed = GetRValue(colour);
1156 defpal[or[i].norm].rgbtGreen =
1157 defpal[or[i].bold].rgbtGreen = GetGValue(colour);
1158 defpal[or[i].norm].rgbtBlue =
1159 defpal[or[i].bold].rgbtBlue = GetBValue(colour);
1160 }
1161 }
1162
1163 /*
1164 * Set up the colour palette.
1165 */
1166 static void init_palette(void)
1167 {
1168 int i;
1169 HDC hdc = GetDC(hwnd);
1170 if (hdc) {
1171 if (cfg.try_palette && GetDeviceCaps(hdc, RASTERCAPS) & RC_PALETTE) {
1172 /*
1173 * This is a genuine case where we must use smalloc
1174 * because the snew macros can't cope.
1175 */
1176 logpal = smalloc(sizeof(*logpal)
1177 - sizeof(logpal->palPalEntry)
1178 + NALLCOLOURS * sizeof(PALETTEENTRY));
1179 logpal->palVersion = 0x300;
1180 logpal->palNumEntries = NALLCOLOURS;
1181 for (i = 0; i < NALLCOLOURS; i++) {
1182 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
1183 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
1184 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
1185 logpal->palPalEntry[i].peFlags = PC_NOCOLLAPSE;
1186 }
1187 pal = CreatePalette(logpal);
1188 if (pal) {
1189 SelectPalette(hdc, pal, FALSE);
1190 RealizePalette(hdc);
1191 SelectPalette(hdc, GetStockObject(DEFAULT_PALETTE), FALSE);
1192 }
1193 }
1194 ReleaseDC(hwnd, hdc);
1195 }
1196 if (pal)
1197 for (i = 0; i < NALLCOLOURS; i++)
1198 colours[i] = PALETTERGB(defpal[i].rgbtRed,
1199 defpal[i].rgbtGreen,
1200 defpal[i].rgbtBlue);
1201 else
1202 for (i = 0; i < NALLCOLOURS; i++)
1203 colours[i] = RGB(defpal[i].rgbtRed,
1204 defpal[i].rgbtGreen, defpal[i].rgbtBlue);
1205 }
1206
1207 /*
1208 * This is a wrapper to ExtTextOut() to force Windows to display
1209 * the precise glyphs we give it. Otherwise it would do its own
1210 * bidi and Arabic shaping, and we would end up uncertain which
1211 * characters it had put where.
1212 */
1213 static void exact_textout(HDC hdc, int x, int y, CONST RECT *lprc,
1214 unsigned short *lpString, UINT cbCount,
1215 CONST INT *lpDx, int opaque)
1216 {
1217 #ifdef __LCC__
1218 /*
1219 * The LCC include files apparently don't supply the
1220 * GCP_RESULTSW type, but we can make do with GCP_RESULTS
1221 * proper: the differences aren't important to us (the only
1222 * variable-width string parameter is one we don't use anyway).
1223 */
1224 GCP_RESULTS gcpr;
1225 #else
1226 GCP_RESULTSW gcpr;
1227 #endif
1228 char *buffer = snewn(cbCount*2+2, char);
1229 char *classbuffer = snewn(cbCount, char);
1230 memset(&gcpr, 0, sizeof(gcpr));
1231 memset(buffer, 0, cbCount*2+2);
1232 memset(classbuffer, GCPCLASS_NEUTRAL, cbCount);
1233
1234 gcpr.lStructSize = sizeof(gcpr);
1235 gcpr.lpGlyphs = (void *)buffer;
1236 gcpr.lpClass = (void *)classbuffer;
1237 gcpr.nGlyphs = cbCount;
1238
1239 GetCharacterPlacementW(hdc, lpString, cbCount, 0, &gcpr,
1240 FLI_MASK | GCP_CLASSIN | GCP_DIACRITIC);
1241
1242 ExtTextOut(hdc, x, y,
1243 ETO_GLYPH_INDEX | ETO_CLIPPED | (opaque ? ETO_OPAQUE : 0),
1244 lprc, buffer, cbCount, lpDx);
1245 }
1246
1247 /*
1248 * The exact_textout() wrapper, unfortunately, destroys the useful
1249 * Windows `font linking' behaviour: automatic handling of Unicode
1250 * code points not supported in this font by falling back to a font
1251 * which does contain them. Therefore, we adopt a multi-layered
1252 * approach: for any potentially-bidi text, we use exact_textout(),
1253 * and for everything else we use a simple ExtTextOut as we did
1254 * before exact_textout() was introduced.
1255 */
1256 static void general_textout(HDC hdc, int x, int y, CONST RECT *lprc,
1257 unsigned short *lpString, UINT cbCount,
1258 CONST INT *lpDx, int opaque)
1259 {
1260 int i, j, xp, xn;
1261 RECT newrc;
1262
1263 #ifdef FIXME_REMOVE_BEFORE_CHECKIN
1264 int k;
1265 debug(("general_textout: %d,%d", x, y));
1266 for(k=0;k<cbCount;k++)debug((" U+%04X", lpString[k]));
1267 debug(("\n rect: [%d,%d %d,%d]", lprc->left, lprc->top, lprc->right, lprc->bottom));
1268 debug(("\n"));
1269 #endif
1270
1271 xp = xn = x;
1272
1273 for (i = 0; i < (int)cbCount ;) {
1274 int rtl = is_rtl(lpString[i]);
1275
1276 xn += lpDx[i];
1277
1278 for (j = i+1; j < (int)cbCount; j++) {
1279 if (rtl != is_rtl(lpString[j]))
1280 break;
1281 xn += lpDx[j];
1282 }
1283
1284 /*
1285 * Now [i,j) indicates a maximal substring of lpString
1286 * which should be displayed using the same textout
1287 * function.
1288 */
1289 if (rtl) {
1290 newrc.left = lprc->left + xp - x;
1291 newrc.right = lprc->left + xn - x;
1292 newrc.top = lprc->top;
1293 newrc.bottom = lprc->bottom;
1294 #ifdef FIXME_REMOVE_BEFORE_CHECKIN
1295 {
1296 int k;
1297 debug((" exact_textout: %d,%d", xp, y));
1298 for(k=0;k<j-i;k++)debug((" U+%04X", lpString[i+k]));
1299 debug(("\n rect: [%d,%d %d,%d]\n", newrc.left, newrc.top, newrc.right, newrc.bottom));
1300 }
1301 #endif
1302 exact_textout(hdc, xp, y, &newrc, lpString+i, j-i, lpDx+i, opaque);
1303 } else {
1304 #ifdef FIXME_REMOVE_BEFORE_CHECKIN
1305 {
1306 int k;
1307 debug((" ExtTextOut : %d,%d", xp, y));
1308 for(k=0;k<j-i;k++)debug((" U+%04X", lpString[i+k]));
1309 debug(("\n rect: [%d,%d %d,%d]\n", newrc.left, newrc.top, newrc.right, newrc.bottom));
1310 }
1311 #endif
1312 newrc.left = lprc->left + xp - x;
1313 newrc.right = lprc->left + xn - x;
1314 newrc.top = lprc->top;
1315 newrc.bottom = lprc->bottom;
1316 ExtTextOutW(hdc, xp, y, ETO_CLIPPED | (opaque ? ETO_OPAQUE : 0),
1317 &newrc, lpString+i, j-i, lpDx+i);
1318 }
1319
1320 i = j;
1321 xp = xn;
1322 }
1323
1324 #ifdef FIXME_REMOVE_BEFORE_CHECKIN
1325 debug(("general_textout: done, xn=%d\n", xn));
1326 #endif
1327 assert(xn - x == lprc->right - lprc->left);
1328 }
1329
1330 /*
1331 * Initialise all the fonts we will need initially. There may be as many as
1332 * three or as few as one. The other (poentially) twentyone fonts are done
1333 * if/when they are needed.
1334 *
1335 * We also:
1336 *
1337 * - check the font width and height, correcting our guesses if
1338 * necessary.
1339 *
1340 * - verify that the bold font is the same width as the ordinary
1341 * one, and engage shadow bolding if not.
1342 *
1343 * - verify that the underlined font is the same width as the
1344 * ordinary one (manual underlining by means of line drawing can
1345 * be done in a pinch).
1346 */
1347 static void init_fonts(int pick_width, int pick_height)
1348 {
1349 TEXTMETRIC tm;
1350 CPINFO cpinfo;
1351 int fontsize[3];
1352 int i;
1353 HDC hdc;
1354 int fw_dontcare, fw_bold;
1355
1356 for (i = 0; i < FONT_MAXNO; i++)
1357 fonts[i] = NULL;
1358
1359 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
1360 und_mode = UND_FONT;
1361
1362 if (cfg.font.isbold) {
1363 fw_dontcare = FW_BOLD;
1364 fw_bold = FW_HEAVY;
1365 } else {
1366 fw_dontcare = FW_DONTCARE;
1367 fw_bold = FW_BOLD;
1368 }
1369
1370 hdc = GetDC(hwnd);
1371
1372 if (pick_height)
1373 font_height = pick_height;
1374 else {
1375 font_height = cfg.font.height;
1376 if (font_height > 0) {
1377 font_height =
1378 -MulDiv(font_height, GetDeviceCaps(hdc, LOGPIXELSY), 72);
1379 }
1380 }
1381 font_width = pick_width;
1382
1383 #define f(i,c,w,u) \
1384 fonts[i] = CreateFont (font_height, font_width, 0, 0, w, FALSE, u, FALSE, \
1385 c, OUT_DEFAULT_PRECIS, \
1386 CLIP_DEFAULT_PRECIS, FONT_QUALITY(cfg.font_quality), \
1387 FIXED_PITCH | FF_DONTCARE, cfg.font.name)
1388
1389 f(FONT_NORMAL, cfg.font.charset, fw_dontcare, FALSE);
1390
1391 SelectObject(hdc, fonts[FONT_NORMAL]);
1392 GetTextMetrics(hdc, &tm);
1393
1394 GetObject(fonts[FONT_NORMAL], sizeof(LOGFONT), &lfont);
1395
1396 if (pick_width == 0 || pick_height == 0) {
1397 font_height = tm.tmHeight;
1398 font_width = tm.tmAveCharWidth;
1399 }
1400 font_dualwidth = (tm.tmAveCharWidth != tm.tmMaxCharWidth);
1401
1402 #ifdef RDB_DEBUG_PATCH
1403 debug(23, "Primary font H=%d, AW=%d, MW=%d",
1404 tm.tmHeight, tm.tmAveCharWidth, tm.tmMaxCharWidth);
1405 #endif
1406
1407 {
1408 CHARSETINFO info;
1409 DWORD cset = tm.tmCharSet;
1410 memset(&info, 0xFF, sizeof(info));
1411
1412 /* !!! Yes the next line is right */
1413 if (cset == OEM_CHARSET)
1414 ucsdata.font_codepage = GetOEMCP();
1415 else
1416 if (TranslateCharsetInfo ((DWORD *) cset, &info, TCI_SRCCHARSET))
1417 ucsdata.font_codepage = info.ciACP;
1418 else
1419 ucsdata.font_codepage = -1;
1420
1421 GetCPInfo(ucsdata.font_codepage, &cpinfo);
1422 ucsdata.dbcs_screenfont = (cpinfo.MaxCharSize > 1);
1423 }
1424
1425 f(FONT_UNDERLINE, cfg.font.charset, fw_dontcare, TRUE);
1426
1427 /*
1428 * Some fonts, e.g. 9-pt Courier, draw their underlines
1429 * outside their character cell. We successfully prevent
1430 * screen corruption by clipping the text output, but then
1431 * we lose the underline completely. Here we try to work
1432 * out whether this is such a font, and if it is, we set a
1433 * flag that causes underlines to be drawn by hand.
1434 *
1435 * Having tried other more sophisticated approaches (such
1436 * as examining the TEXTMETRIC structure or requesting the
1437 * height of a string), I think we'll do this the brute
1438 * force way: we create a small bitmap, draw an underlined
1439 * space on it, and test to see whether any pixels are
1440 * foreground-coloured. (Since we expect the underline to
1441 * go all the way across the character cell, we only search
1442 * down a single column of the bitmap, half way across.)
1443 */
1444 {
1445 HDC und_dc;
1446 HBITMAP und_bm, und_oldbm;
1447 int i, gotit;
1448 COLORREF c;
1449
1450 und_dc = CreateCompatibleDC(hdc);
1451 und_bm = CreateCompatibleBitmap(hdc, font_width, font_height);
1452 und_oldbm = SelectObject(und_dc, und_bm);
1453 SelectObject(und_dc, fonts[FONT_UNDERLINE]);
1454 SetTextAlign(und_dc, TA_TOP | TA_LEFT | TA_NOUPDATECP);
1455 SetTextColor(und_dc, RGB(255, 255, 255));
1456 SetBkColor(und_dc, RGB(0, 0, 0));
1457 SetBkMode(und_dc, OPAQUE);
1458 ExtTextOut(und_dc, 0, 0, ETO_OPAQUE, NULL, " ", 1, NULL);
1459 gotit = FALSE;
1460 for (i = 0; i < font_height; i++) {
1461 c = GetPixel(und_dc, font_width / 2, i);
1462 if (c != RGB(0, 0, 0))
1463 gotit = TRUE;
1464 }
1465 SelectObject(und_dc, und_oldbm);
1466 DeleteObject(und_bm);
1467 DeleteDC(und_dc);
1468 if (!gotit) {
1469 und_mode = UND_LINE;
1470 DeleteObject(fonts[FONT_UNDERLINE]);
1471 fonts[FONT_UNDERLINE] = 0;
1472 }
1473 }
1474
1475 if (bold_mode == BOLD_FONT) {
1476 f(FONT_BOLD, cfg.font.charset, fw_bold, FALSE);
1477 }
1478 #undef f
1479
1480 descent = tm.tmAscent + 1;
1481 if (descent >= font_height)
1482 descent = font_height - 1;
1483
1484 for (i = 0; i < 3; i++) {
1485 if (fonts[i]) {
1486 if (SelectObject(hdc, fonts[i]) && GetTextMetrics(hdc, &tm))
1487 fontsize[i] = tm.tmAveCharWidth + 256 * tm.tmHeight;
1488 else
1489 fontsize[i] = -i;
1490 } else
1491 fontsize[i] = -i;
1492 }
1493
1494 ReleaseDC(hwnd, hdc);
1495
1496 if (fontsize[FONT_UNDERLINE] != fontsize[FONT_NORMAL]) {
1497 und_mode = UND_LINE;
1498 DeleteObject(fonts[FONT_UNDERLINE]);
1499 fonts[FONT_UNDERLINE] = 0;
1500 }
1501
1502 if (bold_mode == BOLD_FONT &&
1503 fontsize[FONT_BOLD] != fontsize[FONT_NORMAL]) {
1504 bold_mode = BOLD_SHADOW;
1505 DeleteObject(fonts[FONT_BOLD]);
1506 fonts[FONT_BOLD] = 0;
1507 }
1508 fontflag[0] = fontflag[1] = fontflag[2] = 1;
1509
1510 init_ucs(&cfg, &ucsdata);
1511 }
1512
1513 static void another_font(int fontno)
1514 {
1515 int basefont;
1516 int fw_dontcare, fw_bold;
1517 int c, u, w, x;
1518 char *s;
1519
1520 if (fontno < 0 || fontno >= FONT_MAXNO || fontflag[fontno])
1521 return;
1522
1523 basefont = (fontno & ~(FONT_BOLDUND));
1524 if (basefont != fontno && !fontflag[basefont])
1525 another_font(basefont);
1526
1527 if (cfg.font.isbold) {
1528 fw_dontcare = FW_BOLD;
1529 fw_bold = FW_HEAVY;
1530 } else {
1531 fw_dontcare = FW_DONTCARE;
1532 fw_bold = FW_BOLD;
1533 }
1534
1535 c = cfg.font.charset;
1536 w = fw_dontcare;
1537 u = FALSE;
1538 s = cfg.font.name;
1539 x = font_width;
1540
1541 if (fontno & FONT_WIDE)
1542 x *= 2;
1543 if (fontno & FONT_NARROW)
1544 x = (x+1)/2;
1545 if (fontno & FONT_OEM)
1546 c = OEM_CHARSET;
1547 if (fontno & FONT_BOLD)
1548 w = fw_bold;
1549 if (fontno & FONT_UNDERLINE)
1550 u = TRUE;
1551
1552 fonts[fontno] =
1553 CreateFont(font_height * (1 + !!(fontno & FONT_HIGH)), x, 0, 0, w,
1554 FALSE, u, FALSE, c, OUT_DEFAULT_PRECIS,
1555 CLIP_DEFAULT_PRECIS, FONT_QUALITY(cfg.font_quality),
1556 FIXED_PITCH | FF_DONTCARE, s);
1557
1558 fontflag[fontno] = 1;
1559 }
1560
1561 static void deinit_fonts(void)
1562 {
1563 int i;
1564 for (i = 0; i < FONT_MAXNO; i++) {
1565 if (fonts[i])
1566 DeleteObject(fonts[i]);
1567 fonts[i] = 0;
1568 fontflag[i] = 0;
1569 }
1570 }
1571
1572 void request_resize(void *frontend, int w, int h)
1573 {
1574 int width, height;
1575
1576 /* If the window is maximized supress resizing attempts */
1577 if (IsZoomed(hwnd)) {
1578 if (cfg.resize_action == RESIZE_TERM)
1579 return;
1580 }
1581
1582 if (cfg.resize_action == RESIZE_DISABLED) return;
1583 if (h == term->rows && w == term->cols) return;
1584
1585 /* Sanity checks ... */
1586 {
1587 static int first_time = 1;
1588 static RECT ss;
1589
1590 switch (first_time) {
1591 case 1:
1592 /* Get the size of the screen */
1593 if (get_fullscreen_rect(&ss))
1594 /* first_time = 0 */ ;
1595 else {
1596 first_time = 2;
1597 break;
1598 }
1599 case 0:
1600 /* Make sure the values are sane */
1601 width = (ss.right - ss.left - extra_width) / 4;
1602 height = (ss.bottom - ss.top - extra_height) / 6;
1603
1604 if (w > width || h > height)
1605 return;
1606 if (w < 15)
1607 w = 15;
1608 if (h < 1)
1609 h = 1;
1610 }
1611 }
1612
1613 term_size(term, h, w, cfg.savelines);
1614
1615 if (cfg.resize_action != RESIZE_FONT && !IsZoomed(hwnd)) {
1616 width = extra_width + font_width * w;
1617 height = extra_height + font_height * h;
1618
1619 SetWindowPos(hwnd, NULL, 0, 0, width, height,
1620 SWP_NOACTIVATE | SWP_NOCOPYBITS |
1621 SWP_NOMOVE | SWP_NOZORDER);
1622 } else
1623 reset_window(0);
1624
1625 InvalidateRect(hwnd, NULL, TRUE);
1626 }
1627
1628 static void reset_window(int reinit) {
1629 /*
1630 * This function decides how to resize or redraw when the
1631 * user changes something.
1632 *
1633 * This function doesn't like to change the terminal size but if the
1634 * font size is locked that may be it's only soluion.
1635 */
1636 int win_width, win_height;
1637 RECT cr, wr;
1638
1639 #ifdef RDB_DEBUG_PATCH
1640 debug((27, "reset_window()"));
1641 #endif
1642
1643 /* Current window sizes ... */
1644 GetWindowRect(hwnd, &wr);
1645 GetClientRect(hwnd, &cr);
1646
1647 win_width = cr.right - cr.left;
1648 win_height = cr.bottom - cr.top;
1649
1650 if (cfg.resize_action == RESIZE_DISABLED) reinit = 2;
1651
1652 /* Are we being forced to reload the fonts ? */
1653 if (reinit>1) {
1654 #ifdef RDB_DEBUG_PATCH
1655 debug((27, "reset_window() -- Forced deinit"));
1656 #endif
1657 deinit_fonts();
1658 init_fonts(0,0);
1659 }
1660
1661 /* Oh, looks like we're minimised */
1662 if (win_width == 0 || win_height == 0)
1663 return;
1664
1665 /* Is the window out of position ? */
1666 if ( !reinit &&
1667 (offset_width != (win_width-font_width*term->cols)/2 ||
1668 offset_height != (win_height-font_height*term->rows)/2) ){
1669 offset_width = (win_width-font_width*term->cols)/2;
1670 offset_height = (win_height-font_height*term->rows)/2;
1671 InvalidateRect(hwnd, NULL, TRUE);
1672 #ifdef RDB_DEBUG_PATCH
1673 debug((27, "reset_window() -> Reposition terminal"));
1674 #endif
1675 }
1676
1677 if (IsZoomed(hwnd)) {
1678 /* We're fullscreen, this means we must not change the size of
1679 * the window so it's the font size or the terminal itself.
1680 */
1681
1682 extra_width = wr.right - wr.left - cr.right + cr.left;
1683 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
1684
1685 if (cfg.resize_action != RESIZE_TERM) {
1686 if ( font_width != win_width/term->cols ||
1687 font_height != win_height/term->rows) {
1688 deinit_fonts();
1689 init_fonts(win_width/term->cols, win_height/term->rows);
1690 offset_width = (win_width-font_width*term->cols)/2;
1691 offset_height = (win_height-font_height*term->rows)/2;
1692 InvalidateRect(hwnd, NULL, TRUE);
1693 #ifdef RDB_DEBUG_PATCH
1694 debug((25, "reset_window() -> Z font resize to (%d, %d)",
1695 font_width, font_height));
1696 #endif
1697 }
1698 } else {
1699 if ( font_width * term->cols != win_width ||
1700 font_height * term->rows != win_height) {
1701 /* Our only choice at this point is to change the
1702 * size of the terminal; Oh well.
1703 */
1704 term_size(term, win_height/font_height, win_width/font_width,
1705 cfg.savelines);
1706 offset_width = (win_width-font_width*term->cols)/2;
1707 offset_height = (win_height-font_height*term->rows)/2;
1708 InvalidateRect(hwnd, NULL, TRUE);
1709 #ifdef RDB_DEBUG_PATCH
1710 debug((27, "reset_window() -> Zoomed term_size"));
1711 #endif
1712 }
1713 }
1714 return;
1715 }
1716
1717 /* Hmm, a force re-init means we should ignore the current window
1718 * so we resize to the default font size.
1719 */
1720 if (reinit>0) {
1721 #ifdef RDB_DEBUG_PATCH
1722 debug((27, "reset_window() -> Forced re-init"));
1723 #endif
1724
1725 offset_width = offset_height = cfg.window_border;
1726 extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
1727 extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
1728
1729 if (win_width != font_width*term->cols + offset_width*2 ||
1730 win_height != font_height*term->rows + offset_height*2) {
1731
1732 /* If this is too large windows will resize it to the maximum
1733 * allowed window size, we will then be back in here and resize
1734 * the font or terminal to fit.
1735 */
1736 SetWindowPos(hwnd, NULL, 0, 0,
1737 font_width*term->cols + extra_width,
1738 font_height*term->rows + extra_height,
1739 SWP_NOMOVE | SWP_NOZORDER);
1740 }
1741
1742 InvalidateRect(hwnd, NULL, TRUE);
1743 return;
1744 }
1745
1746 /* Okay the user doesn't want us to change the font so we try the
1747 * window. But that may be too big for the screen which forces us
1748 * to change the terminal.
1749 */
1750 if ((cfg.resize_action == RESIZE_TERM && reinit<=0) ||
1751 (cfg.resize_action == RESIZE_EITHER && reinit<0) ||
1752 reinit>0) {
1753 offset_width = offset_height = cfg.window_border;
1754 extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
1755 extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
1756
1757 if (win_width != font_width*term->cols + offset_width*2 ||
1758 win_height != font_height*term->rows + offset_height*2) {
1759
1760 static RECT ss;
1761 int width, height;
1762
1763 get_fullscreen_rect(&ss);
1764
1765 width = (ss.right - ss.left - extra_width) / font_width;
1766 height = (ss.bottom - ss.top - extra_height) / font_height;
1767
1768 /* Grrr too big */
1769 if ( term->rows > height || term->cols > width ) {
1770 if (cfg.resize_action == RESIZE_EITHER) {
1771 /* Make the font the biggest we can */
1772 if (term->cols > width)
1773 font_width = (ss.right - ss.left - extra_width)
1774 / term->cols;
1775 if (term->rows > height)
1776 font_height = (ss.bottom - ss.top - extra_height)
1777 / term->rows;
1778
1779 deinit_fonts();
1780 init_fonts(font_width, font_height);
1781
1782 width = (ss.right - ss.left - extra_width) / font_width;
1783 height = (ss.bottom - ss.top - extra_height) / font_height;
1784 } else {
1785 if ( height > term->rows ) height = term->rows;
1786 if ( width > term->cols ) width = term->cols;
1787 term_size(term, height, width, cfg.savelines);
1788 #ifdef RDB_DEBUG_PATCH
1789 debug((27, "reset_window() -> term resize to (%d,%d)",
1790 height, width));
1791 #endif
1792 }
1793 }
1794
1795 SetWindowPos(hwnd, NULL, 0, 0,
1796 font_width*term->cols + extra_width,
1797 font_height*term->rows + extra_height,
1798 SWP_NOMOVE | SWP_NOZORDER);
1799
1800 InvalidateRect(hwnd, NULL, TRUE);
1801 #ifdef RDB_DEBUG_PATCH
1802 debug((27, "reset_window() -> window resize to (%d,%d)",
1803 font_width*term->cols + extra_width,
1804 font_height*term->rows + extra_height));
1805 #endif
1806 }
1807 return;
1808 }
1809
1810 /* We're allowed to or must change the font but do we want to ? */
1811
1812 if (font_width != (win_width-cfg.window_border*2)/term->cols ||
1813 font_height != (win_height-cfg.window_border*2)/term->rows) {
1814
1815 deinit_fonts();
1816 init_fonts((win_width-cfg.window_border*2)/term->cols,
1817 (win_height-cfg.window_border*2)/term->rows);
1818 offset_width = (win_width-font_width*term->cols)/2;
1819 offset_height = (win_height-font_height*term->rows)/2;
1820
1821 extra_width = wr.right - wr.left - cr.right + cr.left +offset_width*2;
1822 extra_height = wr.bottom - wr.top - cr.bottom + cr.top+offset_height*2;
1823
1824 InvalidateRect(hwnd, NULL, TRUE);
1825 #ifdef RDB_DEBUG_PATCH
1826 debug((25, "reset_window() -> font resize to (%d,%d)",
1827 font_width, font_height));
1828 #endif
1829 }
1830 }
1831
1832 static void set_input_locale(HKL kl)
1833 {
1834 char lbuf[20];
1835
1836 GetLocaleInfo(LOWORD(kl), LOCALE_IDEFAULTANSICODEPAGE,
1837 lbuf, sizeof(lbuf));
1838
1839 kbd_codepage = atoi(lbuf);
1840 }
1841
1842 static void click(Mouse_Button b, int x, int y, int shift, int ctrl, int alt)
1843 {
1844 int thistime = GetMessageTime();
1845
1846 if (send_raw_mouse && !(cfg.mouse_override && shift)) {
1847 lastbtn = MBT_NOTHING;
1848 term_mouse(term, b, translate_button(b), MA_CLICK,
1849 x, y, shift, ctrl, alt);
1850 return;
1851 }
1852
1853 if (lastbtn == b && thistime - lasttime < dbltime) {
1854 lastact = (lastact == MA_CLICK ? MA_2CLK :
1855 lastact == MA_2CLK ? MA_3CLK :
1856 lastact == MA_3CLK ? MA_CLICK : MA_NOTHING);
1857 } else {
1858 lastbtn = b;
1859 lastact = MA_CLICK;
1860 }
1861 if (lastact != MA_NOTHING)
1862 term_mouse(term, b, translate_button(b), lastact,
1863 x, y, shift, ctrl, alt);
1864 lasttime = thistime;
1865 }
1866
1867 /*
1868 * Translate a raw mouse button designation (LEFT, MIDDLE, RIGHT)
1869 * into a cooked one (SELECT, EXTEND, PASTE).
1870 */
1871 static Mouse_Button translate_button(Mouse_Button button)
1872 {
1873 if (button == MBT_LEFT)
1874 return MBT_SELECT;
1875 if (button == MBT_MIDDLE)
1876 return cfg.mouse_is_xterm == 1 ? MBT_PASTE : MBT_EXTEND;
1877 if (button == MBT_RIGHT)
1878 return cfg.mouse_is_xterm == 1 ? MBT_EXTEND : MBT_PASTE;
1879 return 0; /* shouldn't happen */
1880 }
1881
1882 static void show_mouseptr(int show)
1883 {
1884 /* NB that the counter in ShowCursor() is also frobbed by
1885 * update_mouse_pointer() */
1886 static int cursor_visible = 1;
1887 if (!cfg.hide_mouseptr) /* override if this feature disabled */
1888 show = 1;
1889 if (cursor_visible && !show)
1890 ShowCursor(FALSE);
1891 else if (!cursor_visible && show)
1892 ShowCursor(TRUE);
1893 cursor_visible = show;
1894 }
1895
1896 static int is_alt_pressed(void)
1897 {
1898 BYTE keystate[256];
1899 int r = GetKeyboardState(keystate);
1900 if (!r)
1901 return FALSE;
1902 if (keystate[VK_MENU] & 0x80)
1903 return TRUE;
1904 if (keystate[VK_RMENU] & 0x80)
1905 return TRUE;
1906 return FALSE;
1907 }
1908
1909 static int is_shift_pressed(void)
1910 {
1911 BYTE keystate[256];
1912 int r = GetKeyboardState(keystate);
1913 if (!r)
1914 return FALSE;
1915 if (keystate[VK_SHIFT] & 0x80)
1916 return TRUE;
1917 return FALSE;
1918 }
1919
1920 static int resizing;
1921
1922 void notify_remote_exit(void *fe)
1923 {
1924 int exitcode;
1925
1926 if (!session_closed &&
1927 (exitcode = back->exitcode(backhandle)) >= 0) {
1928 /* Abnormal exits will already have set session_closed and taken
1929 * appropriate action. */
1930 if (cfg.close_on_exit == FORCE_ON ||
1931 (cfg.close_on_exit == AUTO && exitcode != INT_MAX)) {
1932 PostQuitMessage(0);
1933 } else {
1934 must_close_session = TRUE;
1935 session_closed = TRUE;
1936 /* exitcode == INT_MAX indicates that the connection was closed
1937 * by a fatal error, so an error box will be coming our way and
1938 * we should not generate this informational one. */
1939 if (exitcode != INT_MAX)
1940 MessageBox(hwnd, "Connection closed by remote host",
1941 appname, MB_OK | MB_ICONINFORMATION);
1942 }
1943 }
1944 }
1945
1946 void timer_change_notify(long next)
1947 {
1948 long ticks = next - GETTICKCOUNT();
1949 if (ticks <= 0) ticks = 1; /* just in case */
1950 KillTimer(hwnd, TIMING_TIMER_ID);
1951 SetTimer(hwnd, TIMING_TIMER_ID, ticks, NULL);
1952 timing_next_time = next;
1953 }
1954
1955 static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
1956 WPARAM wParam, LPARAM lParam)
1957 {
1958 HDC hdc;
1959 static int ignore_clip = FALSE;
1960 static int need_backend_resize = FALSE;
1961 static int fullscr_on_max = FALSE;
1962 static UINT last_mousemove = 0;
1963
1964 switch (message) {
1965 case WM_TIMER:
1966 if ((UINT_PTR)wParam == TIMING_TIMER_ID) {
1967 long next;
1968
1969 KillTimer(hwnd, TIMING_TIMER_ID);
1970 if (run_timers(timing_next_time, &next)) {
1971 timer_change_notify(next);
1972 } else {
1973 }
1974 }
1975 return 0;
1976 case WM_CREATE:
1977 break;
1978 case WM_CLOSE:
1979 {
1980 char *str;
1981 show_mouseptr(1);
1982 str = dupprintf("%s Exit Confirmation", appname);
1983 if (!cfg.warn_on_close || session_closed ||
1984 MessageBox(hwnd,
1985 "Are you sure you want to close this session?",
1986 str, MB_ICONWARNING | MB_OKCANCEL | MB_DEFBUTTON1)
1987 == IDOK)
1988 DestroyWindow(hwnd);
1989 sfree(str);
1990 }
1991 return 0;
1992 case WM_DESTROY:
1993 show_mouseptr(1);
1994 PostQuitMessage(0);
1995 return 0;
1996 case WM_INITMENUPOPUP:
1997 if ((HMENU)wParam == savedsess_menu) {
1998 /* About to pop up Saved Sessions sub-menu.
1999 * Refresh the session list. */
2000 get_sesslist(&sesslist, FALSE); /* free */
2001 get_sesslist(&sesslist, TRUE);
2002 update_savedsess_menu();
2003 return 0;
2004 }
2005 break;
2006 case WM_COMMAND:
2007 case WM_SYSCOMMAND:
2008 switch (wParam & ~0xF) { /* low 4 bits reserved to Windows */
2009 case IDM_SHOWLOG:
2010 showeventlog(hwnd);
2011 break;
2012 case IDM_NEWSESS:
2013 case IDM_DUPSESS:
2014 case IDM_SAVEDSESS:
2015 {
2016 char b[2048];
2017 char c[30], *cl;
2018 int freecl = FALSE;
2019 BOOL inherit_handles;
2020 STARTUPINFO si;
2021 PROCESS_INFORMATION pi;
2022 HANDLE filemap = NULL;
2023
2024 if (wParam == IDM_DUPSESS) {
2025 /*
2026 * Allocate a file-mapping memory chunk for the
2027 * config structure.
2028 */
2029 SECURITY_ATTRIBUTES sa;
2030 Config *p;
2031
2032 sa.nLength = sizeof(sa);
2033 sa.lpSecurityDescriptor = NULL;
2034 sa.bInheritHandle = TRUE;
2035 filemap = CreateFileMapping(INVALID_HANDLE_VALUE,
2036 &sa,
2037 PAGE_READWRITE,
2038 0, sizeof(Config), NULL);
2039 if (filemap && filemap != INVALID_HANDLE_VALUE) {
2040 p = (Config *) MapViewOfFile(filemap,
2041 FILE_MAP_WRITE,
2042 0, 0, sizeof(Config));
2043 if (p) {
2044 *p = cfg; /* structure copy */
2045 UnmapViewOfFile(p);
2046 }
2047 }
2048 inherit_handles = TRUE;
2049 sprintf(c, "putty &%p", filemap);
2050 cl = c;
2051 } else if (wParam == IDM_SAVEDSESS) {
2052 unsigned int sessno = ((lParam - IDM_SAVED_MIN)
2053 / MENU_SAVED_STEP) + 1;
2054 if (sessno < (unsigned)sesslist.nsessions) {
2055 char *session = sesslist.sessions[sessno];
2056 /* XXX spaces? quotes? "-load"? */
2057 cl = dupprintf("putty @%s", session);
2058 inherit_handles = FALSE;
2059 freecl = TRUE;
2060 } else
2061 break;
2062 } else /* IDM_NEWSESS */ {
2063 cl = NULL;
2064 inherit_handles = FALSE;
2065 }
2066
2067 GetModuleFileName(NULL, b, sizeof(b) - 1);
2068 si.cb = sizeof(si);
2069 si.lpReserved = NULL;
2070 si.lpDesktop = NULL;
2071 si.lpTitle = NULL;
2072 si.dwFlags = 0;
2073 si.cbReserved2 = 0;
2074 si.lpReserved2 = NULL;
2075 CreateProcess(b, cl, NULL, NULL, inherit_handles,
2076 NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi);
2077
2078 if (filemap)
2079 CloseHandle(filemap);
2080 if (freecl)
2081 sfree(cl);
2082 }
2083 break;
2084 case IDM_RESTART:
2085 if (!back) {
2086 logevent(NULL, "----- Session restarted -----");
2087 term_pwron(term, FALSE);
2088 start_backend();
2089 }
2090
2091 break;
2092 case IDM_RECONF:
2093 {
2094 Config prev_cfg;
2095 int init_lvl = 1;
2096 int reconfig_result;
2097
2098 if (reconfiguring)
2099 break;
2100 else
2101 reconfiguring = TRUE;
2102
2103 GetWindowText(hwnd, cfg.wintitle, sizeof(cfg.wintitle));
2104 prev_cfg = cfg;
2105
2106 reconfig_result =
2107 do_reconfig(hwnd, back ? back->cfg_info(backhandle) : 0);
2108 reconfiguring = FALSE;
2109 if (!reconfig_result)
2110 break;
2111
2112 {
2113 /* Disable full-screen if resizing forbidden */
2114 HMENU m = GetSystemMenu (hwnd, FALSE);
2115 EnableMenuItem(m, IDM_FULLSCREEN, MF_BYCOMMAND |
2116 (cfg.resize_action == RESIZE_DISABLED)
2117 ? MF_GRAYED : MF_ENABLED);
2118 /* Gracefully unzoom if necessary */
2119 if (IsZoomed(hwnd) &&
2120 (cfg.resize_action == RESIZE_DISABLED)) {
2121 ShowWindow(hwnd, SW_RESTORE);
2122 }
2123 }
2124
2125 /* Pass new config data to the logging module */
2126 log_reconfig(logctx, &cfg);
2127
2128 sfree(logpal);
2129 /*
2130 * Flush the line discipline's edit buffer in the
2131 * case where local editing has just been disabled.
2132 */
2133 if (ldisc)
2134 ldisc_send(ldisc, NULL, 0, 0);
2135 if (pal)
2136 DeleteObject(pal);
2137 logpal = NULL;
2138 pal = NULL;
2139 cfgtopalette();
2140 init_palette();
2141
2142 /* Pass new config data to the terminal */
2143 term_reconfig(term, &cfg);
2144
2145 /* Pass new config data to the back end */
2146 if (back)
2147 back->reconfig(backhandle, &cfg);
2148
2149 /* Screen size changed ? */
2150 if (cfg.height != prev_cfg.height ||
2151 cfg.width != prev_cfg.width ||
2152 cfg.savelines != prev_cfg.savelines ||
2153 cfg.resize_action == RESIZE_FONT ||
2154 (cfg.resize_action == RESIZE_EITHER && IsZoomed(hwnd)) ||
2155 cfg.resize_action == RESIZE_DISABLED)
2156 term_size(term, cfg.height, cfg.width, cfg.savelines);
2157
2158 /* Enable or disable the scroll bar, etc */
2159 {
2160 LONG nflg, flag = GetWindowLongPtr(hwnd, GWL_STYLE);
2161 LONG nexflag, exflag =
2162 GetWindowLongPtr(hwnd, GWL_EXSTYLE);
2163
2164 nexflag = exflag;
2165 if (cfg.alwaysontop != prev_cfg.alwaysontop) {
2166 if (cfg.alwaysontop) {
2167 nexflag |= WS_EX_TOPMOST;
2168 SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0,
2169 SWP_NOMOVE | SWP_NOSIZE);
2170 } else {
2171 nexflag &= ~(WS_EX_TOPMOST);
2172 SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, 0, 0,
2173 SWP_NOMOVE | SWP_NOSIZE);
2174 }
2175 }
2176 if (cfg.sunken_edge)
2177 nexflag |= WS_EX_CLIENTEDGE;
2178 else
2179 nexflag &= ~(WS_EX_CLIENTEDGE);
2180
2181 nflg = flag;
2182 if (is_full_screen() ?
2183 cfg.scrollbar_in_fullscreen : cfg.scrollbar)
2184 nflg |= WS_VSCROLL;
2185 else
2186 nflg &= ~WS_VSCROLL;
2187
2188 if (cfg.resize_action == RESIZE_DISABLED ||
2189 is_full_screen())
2190 nflg &= ~WS_THICKFRAME;
2191 else
2192 nflg |= WS_THICKFRAME;
2193
2194 if (cfg.resize_action == RESIZE_DISABLED)
2195 nflg &= ~WS_MAXIMIZEBOX;
2196 else
2197 nflg |= WS_MAXIMIZEBOX;
2198
2199 if (nflg != flag || nexflag != exflag) {
2200 if (nflg != flag)
2201 SetWindowLongPtr(hwnd, GWL_STYLE, nflg);
2202 if (nexflag != exflag)
2203 SetWindowLongPtr(hwnd, GWL_EXSTYLE, nexflag);
2204
2205 SetWindowPos(hwnd, NULL, 0, 0, 0, 0,
2206 SWP_NOACTIVATE | SWP_NOCOPYBITS |
2207 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
2208 SWP_FRAMECHANGED);
2209
2210 init_lvl = 2;
2211 }
2212 }
2213
2214 /* Oops */
2215 if (cfg.resize_action == RESIZE_DISABLED && IsZoomed(hwnd)) {
2216 force_normal(hwnd);
2217 init_lvl = 2;
2218 }
2219
2220 set_title(NULL, cfg.wintitle);
2221 if (IsIconic(hwnd)) {
2222 SetWindowText(hwnd,
2223 cfg.win_name_always ? window_name :
2224 icon_name);
2225 }
2226
2227 if (strcmp(cfg.font.name, prev_cfg.font.name) != 0 ||
2228 strcmp(cfg.line_codepage, prev_cfg.line_codepage) != 0 ||
2229 cfg.font.isbold != prev_cfg.font.isbold ||
2230 cfg.font.height != prev_cfg.font.height ||
2231 cfg.font.charset != prev_cfg.font.charset ||
2232 cfg.font_quality != prev_cfg.font_quality ||
2233 cfg.vtmode != prev_cfg.vtmode ||
2234 cfg.bold_colour != prev_cfg.bold_colour ||
2235 cfg.resize_action == RESIZE_DISABLED ||
2236 cfg.resize_action == RESIZE_EITHER ||
2237 (cfg.resize_action != prev_cfg.resize_action))
2238 init_lvl = 2;
2239
2240 InvalidateRect(hwnd, NULL, TRUE);
2241 reset_window(init_lvl);
2242 net_pending_errors();
2243 }
2244 break;
2245 case IDM_COPYALL:
2246 term_copyall(term);
2247 break;
2248 case IDM_PASTE:
2249 term_do_paste(term);
2250 break;
2251 case IDM_CLRSB:
2252 term_clrsb(term);
2253 break;
2254 case IDM_RESET:
2255 term_pwron(term, TRUE);
2256 if (ldisc)
2257 ldisc_send(ldisc, NULL, 0, 0);
2258 break;
2259 case IDM_ABOUT:
2260 showabout(hwnd);
2261 break;
2262 case IDM_HELP:
2263 launch_help(hwnd, NULL);
2264 break;
2265 case SC_MOUSEMENU:
2266 /*
2267 * We get this if the System menu has been activated
2268 * using the mouse.
2269 */
2270 show_mouseptr(1);
2271 break;
2272 case SC_KEYMENU:
2273 /*
2274 * We get this if the System menu has been activated
2275 * using the keyboard. This might happen from within
2276 * TranslateKey, in which case it really wants to be
2277 * followed by a `space' character to actually _bring
2278 * the menu up_ rather than just sitting there in
2279 * `ready to appear' state.
2280 */
2281 show_mouseptr(1); /* make sure pointer is visible */
2282 if( lParam == 0 )
2283 PostMessage(hwnd, WM_CHAR, ' ', 0);
2284 break;
2285 case IDM_FULLSCREEN:
2286 flip_full_screen();
2287 break;
2288 default:
2289 if (wParam >= IDM_SAVED_MIN && wParam < IDM_SAVED_MAX) {
2290 SendMessage(hwnd, WM_SYSCOMMAND, IDM_SAVEDSESS, wParam);
2291 }
2292 if (wParam >= IDM_SPECIAL_MIN && wParam <= IDM_SPECIAL_MAX) {
2293 int i = (wParam - IDM_SPECIAL_MIN) / 0x10;
2294 /*
2295 * Ensure we haven't been sent a bogus SYSCOMMAND
2296 * which would cause us to reference invalid memory
2297 * and crash. Perhaps I'm just too paranoid here.
2298 */
2299 if (i >= n_specials)
2300 break;
2301 if (back)
2302 back->special(backhandle, specials[i].code);
2303 net_pending_errors();
2304 }
2305 }
2306 break;
2307
2308 #define X_POS(l) ((int)(short)LOWORD(l))
2309 #define Y_POS(l) ((int)(short)HIWORD(l))
2310
2311 #define TO_CHR_X(x) ((((x)<0 ? (x)-font_width+1 : (x))-offset_width) / font_width)
2312 #define TO_CHR_Y(y) ((((y)<0 ? (y)-font_height+1: (y))-offset_height) / font_height)
2313 case WM_LBUTTONDOWN:
2314 case WM_MBUTTONDOWN:
2315 case WM_RBUTTONDOWN:
2316 case WM_LBUTTONUP:
2317 case WM_MBUTTONUP:
2318 case WM_RBUTTONUP:
2319 if (message == WM_RBUTTONDOWN &&
2320 ((wParam & MK_CONTROL) || (cfg.mouse_is_xterm == 2))) {
2321 POINT cursorpos;
2322
2323 show_mouseptr(1); /* make sure pointer is visible */
2324 GetCursorPos(&cursorpos);
2325 TrackPopupMenu(popup_menus[CTXMENU].menu,
2326 TPM_LEFTALIGN | TPM_TOPALIGN | TPM_RIGHTBUTTON,
2327 cursorpos.x, cursorpos.y,
2328 0, hwnd, NULL);
2329 break;
2330 }
2331 {
2332 int button, press;
2333
2334 switch (message) {
2335 case WM_LBUTTONDOWN:
2336 button = MBT_LEFT;
2337 press = 1;
2338 break;
2339 case WM_MBUTTONDOWN:
2340 button = MBT_MIDDLE;
2341 press = 1;
2342 break;
2343 case WM_RBUTTONDOWN:
2344 button = MBT_RIGHT;
2345 press = 1;
2346 break;
2347 case WM_LBUTTONUP:
2348 button = MBT_LEFT;
2349 press = 0;
2350 break;
2351 case WM_MBUTTONUP:
2352 button = MBT_MIDDLE;
2353 press = 0;
2354 break;
2355 case WM_RBUTTONUP:
2356 button = MBT_RIGHT;
2357 press = 0;
2358 break;
2359 default:
2360 button = press = 0; /* shouldn't happen */
2361 }
2362 show_mouseptr(1);
2363 /*
2364 * Special case: in full-screen mode, if the left
2365 * button is clicked in the very top left corner of the
2366 * window, we put up the System menu instead of doing
2367 * selection.
2368 */
2369 {
2370 char mouse_on_hotspot = 0;
2371 POINT pt;
2372
2373 GetCursorPos(&pt);
2374 #ifndef NO_MULTIMON
2375 {
2376 HMONITOR mon;
2377 MONITORINFO mi;
2378
2379 mon = MonitorFromPoint(pt, MONITOR_DEFAULTTONULL);
2380
2381 if (mon != NULL) {
2382 mi.cbSize = sizeof(MONITORINFO);
2383 GetMonitorInfo(mon, &mi);
2384
2385 if (mi.rcMonitor.left == pt.x &&
2386 mi.rcMonitor.top == pt.y) {
2387 mouse_on_hotspot = 1;
2388 }
2389 }
2390 }
2391 #else
2392 if (pt.x == 0 && pt.y == 0) {
2393 mouse_on_hotspot = 1;
2394 }
2395 #endif
2396 if (is_full_screen() && press &&
2397 button == MBT_LEFT && mouse_on_hotspot) {
2398 SendMessage(hwnd, WM_SYSCOMMAND, SC_MOUSEMENU,
2399 MAKELPARAM(pt.x, pt.y));
2400 return 0;
2401 }
2402 }
2403
2404 if (press) {
2405 click(button,
2406 TO_CHR_X(X_POS(lParam)), TO_CHR_Y(Y_POS(lParam)),
2407 wParam & MK_SHIFT, wParam & MK_CONTROL,
2408 is_alt_pressed());
2409 SetCapture(hwnd);
2410 } else {
2411 term_mouse(term, button, translate_button(button), MA_RELEASE,
2412 TO_CHR_X(X_POS(lParam)),
2413 TO_CHR_Y(Y_POS(lParam)), wParam & MK_SHIFT,
2414 wParam & MK_CONTROL, is_alt_pressed());
2415 ReleaseCapture();
2416 }
2417 }
2418 return 0;
2419 case WM_MOUSEMOVE:
2420 {
2421 /*
2422 * Windows seems to like to occasionally send MOUSEMOVE
2423 * events even if the mouse hasn't moved. Don't unhide
2424 * the mouse pointer in this case.
2425 */
2426 static WPARAM wp = 0;
2427 static LPARAM lp = 0;
2428 if (wParam != wp || lParam != lp ||
2429 last_mousemove != WM_MOUSEMOVE) {
2430 show_mouseptr(1);
2431 wp = wParam; lp = lParam;
2432 last_mousemove = WM_MOUSEMOVE;
2433 }
2434 }
2435 /*
2436 * Add the mouse position and message time to the random
2437 * number noise.
2438 */
2439 noise_ultralight(lParam);
2440
2441 if (wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON) &&
2442 GetCapture() == hwnd) {
2443 Mouse_Button b;
2444 if (wParam & MK_LBUTTON)
2445 b = MBT_LEFT;
2446 else if (wParam & MK_MBUTTON)
2447 b = MBT_MIDDLE;
2448 else
2449 b = MBT_RIGHT;
2450 term_mouse(term, b, translate_button(b), MA_DRAG,
2451 TO_CHR_X(X_POS(lParam)),
2452 TO_CHR_Y(Y_POS(lParam)), wParam & MK_SHIFT,
2453 wParam & MK_CONTROL, is_alt_pressed());
2454 }
2455 return 0;
2456 case WM_NCMOUSEMOVE:
2457 {
2458 static WPARAM wp = 0;
2459 static LPARAM lp = 0;
2460 if (wParam != wp || lParam != lp ||
2461 last_mousemove != WM_NCMOUSEMOVE) {
2462 show_mouseptr(1);
2463 wp = wParam; lp = lParam;
2464 last_mousemove = WM_NCMOUSEMOVE;
2465 }
2466 }
2467 noise_ultralight(lParam);
2468 break;
2469 case WM_IGNORE_CLIP:
2470 ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */
2471 break;
2472 case WM_DESTROYCLIPBOARD:
2473 if (!ignore_clip)
2474 term_deselect(term);
2475 ignore_clip = FALSE;
2476 return 0;
2477 case WM_PAINT:
2478 {
2479 PAINTSTRUCT p;
2480
2481 HideCaret(hwnd);
2482 hdc = BeginPaint(hwnd, &p);
2483 if (pal) {
2484 SelectPalette(hdc, pal, TRUE);
2485 RealizePalette(hdc);
2486 }
2487
2488 /*
2489 * We have to be careful about term_paint(). It will
2490 * set a bunch of character cells to INVALID and then
2491 * call do_paint(), which will redraw those cells and
2492 * _then mark them as done_. This may not be accurate:
2493 * when painting in WM_PAINT context we are restricted
2494 * to the rectangle which has just been exposed - so if
2495 * that only covers _part_ of a character cell and the
2496 * rest of it was already visible, that remainder will
2497 * not be redrawn at all. Accordingly, we must not
2498 * paint any character cell in a WM_PAINT context which
2499 * already has a pending update due to terminal output.
2500 * The simplest solution to this - and many, many
2501 * thanks to Hung-Te Lin for working all this out - is
2502 * not to do any actual painting at _all_ if there's a
2503 * pending terminal update: just mark the relevant
2504 * character cells as INVALID and wait for the
2505 * scheduled full update to sort it out.
2506 *
2507 * I have a suspicion this isn't the _right_ solution.
2508 * An alternative approach would be to have terminal.c
2509 * separately track what _should_ be on the terminal
2510 * screen and what _is_ on the terminal screen, and
2511 * have two completely different types of redraw (one
2512 * for full updates, which syncs the former with the
2513 * terminal itself, and one for WM_PAINT which syncs
2514 * the latter with the former); yet another possibility
2515 * would be to have the Windows front end do what the
2516 * GTK one already does, and maintain a bitmap of the
2517 * current terminal appearance so that WM_PAINT becomes
2518 * completely trivial. However, this should do for now.
2519 */
2520 term_paint(term, hdc,
2521 (p.rcPaint.left-offset_width)/font_width,
2522 (p.rcPaint.top-offset_height)/font_height,
2523 (p.rcPaint.right-offset_width-1)/font_width,
2524 (p.rcPaint.bottom-offset_height-1)/font_height,
2525 !term->window_update_pending);
2526
2527 if (p.fErase ||
2528 p.rcPaint.left < offset_width ||
2529 p.rcPaint.top < offset_height ||
2530 p.rcPaint.right >= offset_width + font_width*term->cols ||
2531 p.rcPaint.bottom>= offset_height + font_height*term->rows)
2532 {
2533 HBRUSH fillcolour, oldbrush;
2534 HPEN edge, oldpen;
2535 fillcolour = CreateSolidBrush (
2536 colours[ATTR_DEFBG>>ATTR_BGSHIFT]);
2537 oldbrush = SelectObject(hdc, fillcolour);
2538 edge = CreatePen(PS_SOLID, 0,
2539 colours[ATTR_DEFBG>>ATTR_BGSHIFT]);
2540 oldpen = SelectObject(hdc, edge);
2541
2542 /*
2543 * Jordan Russell reports that this apparently
2544 * ineffectual IntersectClipRect() call masks a
2545 * Windows NT/2K bug causing strange display
2546 * problems when the PuTTY window is taller than
2547 * the primary monitor. It seems harmless enough...
2548 */
2549 IntersectClipRect(hdc,
2550 p.rcPaint.left, p.rcPaint.top,
2551 p.rcPaint.right, p.rcPaint.bottom);
2552
2553 ExcludeClipRect(hdc,
2554 offset_width, offset_height,
2555 offset_width+font_width*term->cols,
2556 offset_height+font_height*term->rows);
2557
2558 Rectangle(hdc, p.rcPaint.left, p.rcPaint.top,
2559 p.rcPaint.right, p.rcPaint.bottom);
2560
2561 /* SelectClipRgn(hdc, NULL); */
2562
2563 SelectObject(hdc, oldbrush);
2564 DeleteObject(fillcolour);
2565 SelectObject(hdc, oldpen);
2566 DeleteObject(edge);
2567 }
2568 SelectObject(hdc, GetStockObject(SYSTEM_FONT));
2569 SelectObject(hdc, GetStockObject(WHITE_PEN));
2570 EndPaint(hwnd, &p);
2571 ShowCaret(hwnd);
2572 }
2573 return 0;
2574 case WM_NETEVENT:
2575 /* Notice we can get multiple netevents, FD_READ, FD_WRITE etc
2576 * but the only one that's likely to try to overload us is FD_READ.
2577 * This means buffering just one is fine.
2578 */
2579 if (pending_netevent)
2580 enact_pending_netevent();
2581
2582 pending_netevent = TRUE;
2583 pend_netevent_wParam = wParam;
2584 pend_netevent_lParam = lParam;
2585 if (WSAGETSELECTEVENT(lParam) != FD_READ)
2586 enact_pending_netevent();
2587
2588 net_pending_errors();
2589 return 0;
2590 case WM_SETFOCUS:
2591 term_set_focus(term, TRUE);
2592 CreateCaret(hwnd, caretbm, font_width, font_height);
2593 ShowCaret(hwnd);
2594 flash_window(0); /* stop */
2595 compose_state = 0;
2596 term_update(term);
2597 break;
2598 case WM_KILLFOCUS:
2599 show_mouseptr(1);
2600 term_set_focus(term, FALSE);
2601 DestroyCaret();
2602 caret_x = caret_y = -1; /* ensure caret is replaced next time */
2603 term_update(term);
2604 break;
2605 case WM_ENTERSIZEMOVE:
2606 #ifdef RDB_DEBUG_PATCH
2607 debug((27, "WM_ENTERSIZEMOVE"));
2608 #endif
2609 EnableSizeTip(1);
2610 resizing = TRUE;
2611 need_backend_resize = FALSE;
2612 break;
2613 case WM_EXITSIZEMOVE:
2614 EnableSizeTip(0);
2615 resizing = FALSE;
2616 #ifdef RDB_DEBUG_PATCH
2617 debug((27, "WM_EXITSIZEMOVE"));
2618 #endif
2619 if (need_backend_resize) {
2620 term_size(term, cfg.height, cfg.width, cfg.savelines);
2621 InvalidateRect(hwnd, NULL, TRUE);
2622 }
2623 break;
2624 case WM_SIZING:
2625 /*
2626 * This does two jobs:
2627 * 1) Keep the sizetip uptodate
2628 * 2) Make sure the window size is _stepped_ in units of the font size.
2629 */
2630 if (cfg.resize_action != RESIZE_FONT && !is_alt_pressed()) {
2631 int width, height, w, h, ew, eh;
2632 LPRECT r = (LPRECT) lParam;
2633
2634 if ( !need_backend_resize && cfg.resize_action == RESIZE_EITHER &&
2635 (cfg.height != term->rows || cfg.width != term->cols )) {
2636 /*
2637 * Great! It seems that both the terminal size and the
2638 * font size have been changed and the user is now dragging.
2639 *
2640 * It will now be difficult to get back to the configured
2641 * font size!
2642 *
2643 * This would be easier but it seems to be too confusing.
2644
2645 term_size(term, cfg.height, cfg.width, cfg.savelines);
2646 reset_window(2);
2647 */
2648 cfg.height=term->rows; cfg.width=term->cols;
2649
2650 InvalidateRect(hwnd, NULL, TRUE);
2651 need_backend_resize = TRUE;
2652 }
2653
2654 width = r->right - r->left - extra_width;
2655 height = r->bottom - r->top - extra_height;
2656 w = (width + font_width / 2) / font_width;
2657 if (w < 1)
2658 w = 1;
2659 h = (height + font_height / 2) / font_height;
2660 if (h < 1)
2661 h = 1;
2662 UpdateSizeTip(hwnd, w, h);
2663 ew = width - w * font_width;
2664 eh = height - h * font_height;
2665 if (ew != 0) {
2666 if (wParam == WMSZ_LEFT ||
2667 wParam == WMSZ_BOTTOMLEFT || wParam == WMSZ_TOPLEFT)
2668 r->left += ew;
2669 else
2670 r->right -= ew;
2671 }
2672 if (eh != 0) {
2673 if (wParam == WMSZ_TOP ||
2674 wParam == WMSZ_TOPRIGHT || wParam == WMSZ_TOPLEFT)
2675 r->top += eh;
2676 else
2677 r->bottom -= eh;
2678 }
2679 if (ew || eh)
2680 return 1;
2681 else
2682 return 0;
2683 } else {
2684 int width, height, w, h, rv = 0;
2685 int ex_width = extra_width + (cfg.window_border - offset_width) * 2;
2686 int ex_height = extra_height + (cfg.window_border - offset_height) * 2;
2687 LPRECT r = (LPRECT) lParam;
2688
2689 width = r->right - r->left - ex_width;
2690 height = r->bottom - r->top - ex_height;
2691
2692 w = (width + term->cols/2)/term->cols;
2693 h = (height + term->rows/2)/term->rows;
2694 if ( r->right != r->left + w*term->cols + ex_width)
2695 rv = 1;
2696
2697 if (wParam == WMSZ_LEFT ||
2698 wParam == WMSZ_BOTTOMLEFT || wParam == WMSZ_TOPLEFT)
2699 r->left = r->right - w*term->cols - ex_width;
2700 else
2701 r->right = r->left + w*term->cols + ex_width;
2702
2703 if (r->bottom != r->top + h*term->rows + ex_height)
2704 rv = 1;
2705
2706 if (wParam == WMSZ_TOP ||
2707 wParam == WMSZ_TOPRIGHT || wParam == WMSZ_TOPLEFT)
2708 r->top = r->bottom - h*term->rows - ex_height;
2709 else
2710 r->bottom = r->top + h*term->rows + ex_height;
2711
2712 return rv;
2713 }
2714 /* break; (never reached) */
2715 case WM_FULLSCR_ON_MAX:
2716 fullscr_on_max = TRUE;
2717 break;
2718 case WM_MOVE:
2719 sys_cursor_update();
2720 break;
2721 case WM_SIZE:
2722 #ifdef RDB_DEBUG_PATCH
2723 debug((27, "WM_SIZE %s (%d,%d)",
2724 (wParam == SIZE_MINIMIZED) ? "SIZE_MINIMIZED":
2725 (wParam == SIZE_MAXIMIZED) ? "SIZE_MAXIMIZED":
2726 (wParam == SIZE_RESTORED && resizing) ? "to":
2727 (wParam == SIZE_RESTORED) ? "SIZE_RESTORED":
2728 "...",
2729 LOWORD(lParam), HIWORD(lParam)));
2730 #endif
2731 if (wParam == SIZE_MINIMIZED)
2732 SetWindowText(hwnd,
2733 cfg.win_name_always ? window_name : icon_name);
2734 if (wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED)
2735 SetWindowText(hwnd, window_name);
2736 if (wParam == SIZE_RESTORED)
2737 clear_full_screen();
2738 if (wParam == SIZE_MAXIMIZED && fullscr_on_max) {
2739 fullscr_on_max = FALSE;
2740 make_full_screen();
2741 }
2742
2743 if (cfg.resize_action == RESIZE_DISABLED) {
2744 /* A resize, well it better be a minimize. */
2745 reset_window(-1);
2746 } else {
2747
2748 int width, height, w, h;
2749
2750 width = LOWORD(lParam);
2751 height = HIWORD(lParam);
2752
2753 if (!resizing) {
2754 if (wParam == SIZE_MAXIMIZED && !was_zoomed) {
2755 was_zoomed = 1;
2756 prev_rows = term->rows;
2757 prev_cols = term->cols;
2758 if (cfg.resize_action == RESIZE_TERM) {
2759 w = width / font_width;
2760 if (w < 1) w = 1;
2761 h = height / font_height;
2762 if (h < 1) h = 1;
2763
2764 term_size(term, h, w, cfg.savelines);
2765 }
2766 reset_window(0);
2767 } else if (wParam == SIZE_RESTORED && was_zoomed) {
2768 was_zoomed = 0;
2769 if (cfg.resize_action == RESIZE_TERM)
2770 term_size(term, prev_rows, prev_cols, cfg.savelines);
2771 if (cfg.resize_action != RESIZE_FONT)
2772 reset_window(2);
2773 else
2774 reset_window(0);
2775 }
2776 /* This is an unexpected resize, these will normally happen
2777 * if the window is too large. Probably either the user
2778 * selected a huge font or the screen size has changed.
2779 *
2780 * This is also called with minimize.
2781 */
2782 else reset_window(-1);
2783 }
2784
2785 /*
2786 * Don't call back->size in mid-resize. (To prevent
2787 * massive numbers of resize events getting sent
2788 * down the connection during an NT opaque drag.)
2789 */
2790 if (resizing) {
2791 if (cfg.resize_action != RESIZE_FONT && !is_alt_pressed()) {
2792 need_backend_resize = TRUE;
2793 w = (width-cfg.window_border*2) / font_width;
2794 if (w < 1) w = 1;
2795 h = (height-cfg.window_border*2) / font_height;
2796 if (h < 1) h = 1;
2797
2798 cfg.height = h;
2799 cfg.width = w;
2800 } else
2801 reset_window(0);
2802 }
2803 }
2804 sys_cursor_update();
2805 return 0;
2806 case WM_VSCROLL:
2807 switch (LOWORD(wParam)) {
2808 case SB_BOTTOM:
2809 term_scroll(term, -1, 0);
2810 break;
2811 case SB_TOP:
2812 term_scroll(term, +1, 0);
2813 break;
2814 case SB_LINEDOWN:
2815 term_scroll(term, 0, +1);
2816 break;
2817 case SB_LINEUP:
2818 term_scroll(term, 0, -1);
2819 break;
2820 case SB_PAGEDOWN:
2821 term_scroll(term, 0, +term->rows / 2);
2822 break;
2823 case SB_PAGEUP:
2824 term_scroll(term, 0, -term->rows / 2);
2825 break;
2826 case SB_THUMBPOSITION:
2827 case SB_THUMBTRACK:
2828 term_scroll(term, 1, HIWORD(wParam));
2829 break;
2830 }
2831 break;
2832 case WM_PALETTECHANGED:
2833 if ((HWND) wParam != hwnd && pal != NULL) {
2834 HDC hdc = get_ctx(NULL);
2835 if (hdc) {
2836 if (RealizePalette(hdc) > 0)
2837 UpdateColors(hdc);
2838 free_ctx(hdc);
2839 }
2840 }
2841 break;
2842 case WM_QUERYNEWPALETTE:
2843 if (pal != NULL) {
2844 HDC hdc = get_ctx(NULL);
2845 if (hdc) {
2846 if (RealizePalette(hdc) > 0)
2847 UpdateColors(hdc);
2848 free_ctx(hdc);
2849 return TRUE;
2850 }
2851 }
2852 return FALSE;
2853 case WM_KEYDOWN:
2854 case WM_SYSKEYDOWN:
2855 case WM_KEYUP:
2856 case WM_SYSKEYUP:
2857 /*
2858 * Add the scan code and keypress timing to the random
2859 * number noise.
2860 */
2861 noise_ultralight(lParam);
2862
2863 /*
2864 * We don't do TranslateMessage since it disassociates the
2865 * resulting CHAR message from the KEYDOWN that sparked it,
2866 * which we occasionally don't want. Instead, we process
2867 * KEYDOWN, and call the Win32 translator functions so that
2868 * we get the translations under _our_ control.
2869 */
2870 {
2871 unsigned char buf[20];
2872 int len;
2873
2874 if (wParam == VK_PROCESSKEY) { /* IME PROCESS key */
2875 if (message == WM_KEYDOWN) {
2876 MSG m;
2877 m.hwnd = hwnd;
2878 m.message = WM_KEYDOWN;
2879 m.wParam = wParam;
2880 m.lParam = lParam & 0xdfff;
2881 TranslateMessage(&m);
2882 } else break; /* pass to Windows for default processing */
2883 } else {
2884 len = TranslateKey(message, wParam, lParam, buf);
2885 if (len == -1)
2886 return DefWindowProc(hwnd, message, wParam, lParam);
2887
2888 if (len != 0) {
2889 /*
2890 * Interrupt an ongoing paste. I'm not sure
2891 * this is sensible, but for the moment it's
2892 * preferable to having to faff about buffering
2893 * things.
2894 */
2895 term_nopaste(term);
2896
2897 /*
2898 * We need not bother about stdin backlogs
2899 * here, because in GUI PuTTY we can't do
2900 * anything about it anyway; there's no means
2901 * of asking Windows to hold off on KEYDOWN
2902 * messages. We _have_ to buffer everything
2903 * we're sent.
2904 */
2905 term_seen_key_event(term);
2906 if (ldisc)
2907 ldisc_send(ldisc, buf, len, 1);
2908 show_mouseptr(0);
2909 }
2910 }
2911 }
2912 net_pending_errors();
2913 return 0;
2914 case WM_INPUTLANGCHANGE:
2915 /* wParam == Font number */
2916 /* lParam == Locale */
2917 set_input_locale((HKL)lParam);
2918 sys_cursor_update();
2919 break;
2920 case WM_IME_STARTCOMPOSITION:
2921 {
2922 HIMC hImc = ImmGetContext(hwnd);
2923 ImmSetCompositionFont(hImc, &lfont);
2924 ImmReleaseContext(hwnd, hImc);
2925 }
2926 break;
2927 case WM_IME_COMPOSITION:
2928 {
2929 HIMC hIMC;
2930 int n;
2931 char *buff;
2932
2933 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS ||
2934 osVersion.dwPlatformId == VER_PLATFORM_WIN32s) break; /* no Unicode */
2935
2936 if ((lParam & GCS_RESULTSTR) == 0) /* Composition unfinished. */
2937 break; /* fall back to DefWindowProc */
2938
2939 hIMC = ImmGetContext(hwnd);
2940 n = ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, NULL, 0);
2941
2942 if (n > 0) {
2943 int i;
2944 buff = snewn(n, char);
2945 ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, buff, n);
2946 /*
2947 * Jaeyoun Chung reports that Korean character
2948 * input doesn't work correctly if we do a single
2949 * luni_send() covering the whole of buff. So
2950 * instead we luni_send the characters one by one.
2951 */
2952 term_seen_key_event(term);
2953 for (i = 0; i < n; i += 2) {
2954 if (ldisc)
2955 luni_send(ldisc, (unsigned short *)(buff+i), 1, 1);
2956 }
2957 free(buff);
2958 }
2959 ImmReleaseContext(hwnd, hIMC);
2960 return 1;
2961 }
2962
2963 case WM_IME_CHAR:
2964 if (wParam & 0xFF00) {
2965 unsigned char buf[2];
2966
2967 buf[1] = wParam;
2968 buf[0] = wParam >> 8;
2969 term_seen_key_event(term);
2970 if (ldisc)
2971 lpage_send(ldisc, kbd_codepage, buf, 2, 1);
2972 } else {
2973 char c = (unsigned char) wParam;
2974 term_seen_key_event(term);
2975 if (ldisc)
2976 lpage_send(ldisc, kbd_codepage, &c, 1, 1);
2977 }
2978 return (0);
2979 case WM_CHAR:
2980 case WM_SYSCHAR:
2981 /*
2982 * Nevertheless, we are prepared to deal with WM_CHAR
2983 * messages, should they crop up. So if someone wants to
2984 * post the things to us as part of a macro manoeuvre,
2985 * we're ready to cope.
2986 */
2987 {
2988 char c = (unsigned char)wParam;
2989 term_seen_key_event(term);
2990 if (ldisc)
2991 lpage_send(ldisc, CP_ACP, &c, 1, 1);
2992 }
2993 return 0;
2994 case WM_SYSCOLORCHANGE:
2995 if (cfg.system_colour) {
2996 /* Refresh palette from system colours. */
2997 /* XXX actually this zaps the entire palette. */
2998 systopalette();
2999 init_palette();
3000 /* Force a repaint of the terminal window. */
3001 term_invalidate(term);
3002 }
3003 break;
3004 case WM_AGENT_CALLBACK:
3005 {
3006 struct agent_callback *c = (struct agent_callback *)lParam;
3007 c->callback(c->callback_ctx, c->data, c->len);
3008 sfree(c);
3009 }
3010 return 0;
3011 default:
3012 if (message == wm_mousewheel || message == WM_MOUSEWHEEL) {
3013 int shift_pressed=0, control_pressed=0;
3014
3015 if (message == WM_MOUSEWHEEL) {
3016 wheel_accumulator += (short)HIWORD(wParam);
3017 shift_pressed=LOWORD(wParam) & MK_SHIFT;
3018 control_pressed=LOWORD(wParam) & MK_CONTROL;
3019 } else {
3020 BYTE keys[256];
3021 wheel_accumulator += (int)wParam;
3022 if (GetKeyboardState(keys)!=0) {
3023 shift_pressed=keys[VK_SHIFT]&0x80;
3024 control_pressed=keys[VK_CONTROL]&0x80;
3025 }
3026 }
3027
3028 /* process events when the threshold is reached */
3029 while (abs(wheel_accumulator) >= WHEEL_DELTA) {
3030 int b;
3031
3032 /* reduce amount for next time */
3033 if (wheel_accumulator > 0) {
3034 b = MBT_WHEEL_UP;
3035 wheel_accumulator -= WHEEL_DELTA;
3036 } else if (wheel_accumulator < 0) {
3037 b = MBT_WHEEL_DOWN;
3038 wheel_accumulator += WHEEL_DELTA;
3039 } else
3040 break;
3041
3042 if (send_raw_mouse &&
3043 !(cfg.mouse_override && shift_pressed)) {
3044 /* send a mouse-down followed by a mouse up */
3045 term_mouse(term, b, translate_button(b),
3046 MA_CLICK,
3047 TO_CHR_X(X_POS(lParam)),
3048 TO_CHR_Y(Y_POS(lParam)), shift_pressed,
3049 control_pressed, is_alt_pressed());
3050 term_mouse(term, b, translate_button(b),
3051 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
3052 TO_CHR_Y(Y_POS(lParam)), shift_pressed,
3053 control_pressed, is_alt_pressed());
3054 } else {
3055 /* trigger a scroll */
3056 term_scroll(term, 0,
3057 b == MBT_WHEEL_UP ?
3058 -term->rows / 2 : term->rows / 2);
3059 }
3060 }
3061 return 0;
3062 }
3063 }
3064
3065 /*
3066 * Any messages we don't process completely above are passed through to
3067 * DefWindowProc() for default processing.
3068 */
3069 return DefWindowProc(hwnd, message, wParam, lParam);
3070 }
3071
3072 /*
3073 * Move the system caret. (We maintain one, even though it's
3074 * invisible, for the benefit of blind people: apparently some
3075 * helper software tracks the system caret, so we should arrange to
3076 * have one.)
3077 */
3078 void sys_cursor(void *frontend, int x, int y)
3079 {
3080 int cx, cy;
3081
3082 if (!term->has_focus) return;
3083
3084 /*
3085 * Avoid gratuitously re-updating the cursor position and IMM
3086 * window if there's no actual change required.
3087 */
3088 cx = x * font_width + offset_width;
3089 cy = y * font_height + offset_height;
3090 if (cx == caret_x && cy == caret_y)
3091 return;
3092 caret_x = cx;
3093 caret_y = cy;
3094
3095 sys_cursor_update();
3096 }
3097
3098 static void sys_cursor_update(void)
3099 {
3100 COMPOSITIONFORM cf;
3101 HIMC hIMC;
3102
3103 if (!term->has_focus) return;
3104
3105 if (caret_x < 0 || caret_y < 0)
3106 return;
3107
3108 SetCaretPos(caret_x, caret_y);
3109
3110 /* IMM calls on Win98 and beyond only */
3111 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32s) return; /* 3.11 */
3112
3113 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS &&
3114 osVersion.dwMinorVersion == 0) return; /* 95 */
3115
3116 /* we should have the IMM functions */
3117 hIMC = ImmGetContext(hwnd);
3118 cf.dwStyle = CFS_POINT;
3119 cf.ptCurrentPos.x = caret_x;
3120 cf.ptCurrentPos.y = caret_y;
3121 ImmSetCompositionWindow(hIMC, &cf);
3122
3123 ImmReleaseContext(hwnd, hIMC);
3124 }
3125
3126 /*
3127 * Draw a line of text in the window, at given character
3128 * coordinates, in given attributes.
3129 *
3130 * We are allowed to fiddle with the contents of `text'.
3131 */
3132 void do_text_internal(Context ctx, int x, int y, wchar_t *text, int len,
3133 unsigned long attr, int lattr)
3134 {
3135 COLORREF fg, bg, t;
3136 int nfg, nbg, nfont;
3137 HDC hdc = ctx;
3138 RECT line_box;
3139 int force_manual_underline = 0;
3140 int fnt_width, char_width;
3141 int text_adjust = 0;
3142 static int *IpDx = 0, IpDxLEN = 0;
3143
3144 lattr &= LATTR_MODE;
3145
3146 char_width = fnt_width = font_width * (1 + (lattr != LATTR_NORM));
3147
3148 if (attr & ATTR_WIDE)
3149 char_width *= 2;
3150
3151 if (len > IpDxLEN || IpDx[0] != char_width) {
3152 int i;
3153 if (len > IpDxLEN) {
3154 sfree(IpDx);
3155 IpDx = snewn(len + 16, int);
3156 IpDxLEN = (len + 16);
3157 }
3158 for (i = 0; i < IpDxLEN; i++)
3159 IpDx[i] = char_width;
3160 }
3161
3162 /* Only want the left half of double width lines */
3163 if (lattr != LATTR_NORM && x*2 >= term->cols)
3164 return;
3165
3166 x *= fnt_width;
3167 y *= font_height;
3168 x += offset_width;
3169 y += offset_height;
3170
3171 if ((attr & TATTR_ACTCURS) && (cfg.cursor_type == 0 || term->big_cursor)) {
3172 attr &= ~(ATTR_REVERSE|ATTR_BLINK|ATTR_COLOURS);
3173 if (bold_mode == BOLD_COLOURS)
3174 attr &= ~ATTR_BOLD;
3175
3176 /* cursor fg and bg */
3177 attr |= (260 << ATTR_FGSHIFT) | (261 << ATTR_BGSHIFT);
3178 }
3179
3180 nfont = 0;
3181 if (cfg.vtmode == VT_POORMAN && lattr != LATTR_NORM) {
3182 /* Assume a poorman font is borken in other ways too. */
3183 lattr = LATTR_WIDE;
3184 } else
3185 switch (lattr) {
3186 case LATTR_NORM:
3187 break;
3188 case LATTR_WIDE:
3189 nfont |= FONT_WIDE;
3190 break;
3191 default:
3192 nfont |= FONT_WIDE + FONT_HIGH;
3193 break;
3194 }
3195 if (attr & ATTR_NARROW)
3196 nfont |= FONT_NARROW;
3197
3198 /* Special hack for the VT100 linedraw glyphs. */
3199 if (text[0] >= 0x23BA && text[0] <= 0x23BD) {
3200 switch ((unsigned char) (text[0])) {
3201 case 0xBA:
3202 text_adjust = -2 * font_height / 5;
3203 break;
3204 case 0xBB:
3205 text_adjust = -1 * font_height / 5;
3206 break;
3207 case 0xBC:
3208 text_adjust = font_height / 5;
3209 break;
3210 case 0xBD:
3211 text_adjust = 2 * font_height / 5;
3212 break;
3213 }
3214 if (lattr == LATTR_TOP || lattr == LATTR_BOT)
3215 text_adjust *= 2;
3216 text[0] = ucsdata.unitab_xterm['q'];
3217 if (attr & ATTR_UNDER) {
3218 attr &= ~ATTR_UNDER;
3219 force_manual_underline = 1;
3220 }
3221 }
3222
3223 /* Anything left as an original character set is unprintable. */
3224 if (DIRECT_CHAR(text[0])) {
3225 int i;
3226 for (i = 0; i < len; i++)
3227 text[i] = 0xFFFD;
3228 }
3229
3230 /* OEM CP */
3231 if ((text[0] & CSET_MASK) == CSET_OEMCP)
3232 nfont |= FONT_OEM;
3233
3234 nfg = ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
3235 nbg = ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
3236 if (bold_mode == BOLD_FONT && (attr & ATTR_BOLD))
3237 nfont |= FONT_BOLD;
3238 if (und_mode == UND_FONT && (attr & ATTR_UNDER))
3239 nfont |= FONT_UNDERLINE;
3240 another_font(nfont);
3241 if (!fonts[nfont]) {
3242 if (nfont & FONT_UNDERLINE)
3243 force_manual_underline = 1;
3244 /* Don't do the same for manual bold, it could be bad news. */
3245
3246 nfont &= ~(FONT_BOLD | FONT_UNDERLINE);
3247 }
3248 another_font(nfont);
3249 if (!fonts[nfont])
3250 nfont = FONT_NORMAL;
3251 if (attr & ATTR_REVERSE) {
3252 t = nfg;
3253 nfg = nbg;
3254 nbg = t;
3255 }
3256 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BOLD)) {
3257 if (nfg < 16) nfg |= 8;
3258 else if (nfg >= 256) nfg |= 1;
3259 }
3260 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BLINK)) {
3261 if (nbg < 16) nbg |= 8;
3262 else if (nbg >= 256) nbg |= 1;
3263 }
3264 fg = colours[nfg];
3265 bg = colours[nbg];
3266 SelectObject(hdc, fonts[nfont]);
3267 SetTextColor(hdc, fg);
3268 SetBkColor(hdc, bg);
3269 if (attr & TATTR_COMBINING)
3270 SetBkMode(hdc, TRANSPARENT);
3271 else
3272 SetBkMode(hdc, OPAQUE);
3273 line_box.left = x;
3274 line_box.top = y;
3275 line_box.right = x + char_width * len;
3276 line_box.bottom = y + font_height;
3277
3278 /* Only want the left half of double width lines */
3279 if (line_box.right > font_width*term->cols+offset_width)
3280 line_box.right = font_width*term->cols+offset_width;
3281
3282 /* We're using a private area for direct to font. (512 chars.) */
3283 if (ucsdata.dbcs_screenfont && (text[0] & CSET_MASK) == CSET_ACP) {
3284 /* Ho Hum, dbcs fonts are a PITA! */
3285 /* To display on W9x I have to convert to UCS */
3286 static wchar_t *uni_buf = 0;
3287 static int uni_len = 0;
3288 int nlen, mptr;
3289 if (len > uni_len) {
3290 sfree(uni_buf);
3291 uni_len = len;
3292 uni_buf = snewn(uni_len, wchar_t);
3293 }
3294
3295 for(nlen = mptr = 0; mptr<len; mptr++) {
3296 uni_buf[nlen] = 0xFFFD;
3297 if (IsDBCSLeadByteEx(ucsdata.font_codepage, (BYTE) text[mptr])) {
3298 char dbcstext[2];
3299 dbcstext[0] = text[mptr] & 0xFF;
3300 dbcstext[1] = text[mptr+1] & 0xFF;
3301 IpDx[nlen] += char_width;
3302 MultiByteToWideChar(ucsdata.font_codepage, MB_USEGLYPHCHARS,
3303 dbcstext, 2, uni_buf+nlen, 1);
3304 mptr++;
3305 }
3306 else
3307 {
3308 char dbcstext[1];
3309 dbcstext[0] = text[mptr] & 0xFF;
3310 MultiByteToWideChar(ucsdata.font_codepage, MB_USEGLYPHCHARS,
3311 dbcstext, 1, uni_buf+nlen, 1);
3312 }
3313 nlen++;
3314 }
3315 if (nlen <= 0)
3316 return; /* Eeek! */
3317
3318 ExtTextOutW(hdc, x,
3319 y - font_height * (lattr == LATTR_BOT) + text_adjust,
3320 ETO_CLIPPED | ETO_OPAQUE, &line_box, uni_buf, nlen, IpDx);
3321 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
3322 SetBkMode(hdc, TRANSPARENT);
3323 ExtTextOutW(hdc, x - 1,
3324 y - font_height * (lattr ==
3325 LATTR_BOT) + text_adjust,
3326 ETO_CLIPPED, &line_box, uni_buf, nlen, IpDx);
3327 }
3328
3329 IpDx[0] = -1;
3330 } else if (DIRECT_FONT(text[0])) {
3331 static char *directbuf = NULL;
3332 static int directlen = 0;
3333 int i;
3334 if (len > directlen) {
3335 directlen = len;
3336 directbuf = sresize(directbuf, directlen, char);
3337 }
3338
3339 for (i = 0; i < len; i++)
3340 directbuf[i] = text[i] & 0xFF;
3341
3342 ExtTextOut(hdc, x,
3343 y - font_height * (lattr == LATTR_BOT) + text_adjust,
3344 ETO_CLIPPED | ETO_OPAQUE, &line_box, directbuf, len, IpDx);
3345 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
3346 SetBkMode(hdc, TRANSPARENT);
3347
3348 /* GRR: This draws the character outside it's box and can leave
3349 * 'droppings' even with the clip box! I suppose I could loop it
3350 * one character at a time ... yuk.
3351 *
3352 * Or ... I could do a test print with "W", and use +1 or -1 for this
3353 * shift depending on if the leftmost column is blank...
3354 */
3355 ExtTextOut(hdc, x - 1,
3356 y - font_height * (lattr ==
3357 LATTR_BOT) + text_adjust,
3358 ETO_CLIPPED, &line_box, directbuf, len, IpDx);
3359 }
3360 } else {
3361 /* And 'normal' unicode characters */
3362 static WCHAR *wbuf = NULL;
3363 static int wlen = 0;
3364 int i;
3365
3366 if (wlen < len) {
3367 sfree(wbuf);
3368 wlen = len;
3369 wbuf = snewn(wlen, WCHAR);
3370 }
3371
3372 for (i = 0; i < len; i++)
3373 wbuf[i] = text[i];
3374
3375 /* print Glyphs as they are, without Windows' Shaping*/
3376 general_textout(hdc, x, y - font_height * (lattr == LATTR_BOT) + text_adjust,
3377 &line_box, wbuf, len, IpDx, !(attr & TATTR_COMBINING));
3378
3379 /* And the shadow bold hack. */
3380 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
3381 SetBkMode(hdc, TRANSPARENT);
3382 ExtTextOutW(hdc, x - 1,
3383 y - font_height * (lattr ==
3384 LATTR_BOT) + text_adjust,
3385 ETO_CLIPPED, &line_box, wbuf, len, IpDx);
3386 }
3387 }
3388 if (lattr != LATTR_TOP && (force_manual_underline ||
3389 (und_mode == UND_LINE
3390 && (attr & ATTR_UNDER)))) {
3391 HPEN oldpen;
3392 int dec = descent;
3393 if (lattr == LATTR_BOT)
3394 dec = dec * 2 - font_height;
3395
3396 oldpen = SelectObject(hdc, CreatePen(PS_SOLID, 0, fg));
3397 MoveToEx(hdc, x, y + dec, NULL);
3398 LineTo(hdc, x + len * char_width, y + dec);
3399 oldpen = SelectObject(hdc, oldpen);
3400 DeleteObject(oldpen);
3401 }
3402 }
3403
3404 /*
3405 * Wrapper that handles combining characters.
3406 */
3407 void do_text(Context ctx, int x, int y, wchar_t *text, int len,
3408 unsigned long attr, int lattr)
3409 {
3410 if (attr & TATTR_COMBINING) {
3411 unsigned long a = 0;
3412 attr &= ~TATTR_COMBINING;
3413 while (len--) {
3414 do_text_internal(ctx, x, y, text, 1, attr | a, lattr);
3415 text++;
3416 a = TATTR_COMBINING;
3417 }
3418 } else
3419 do_text_internal(ctx, x, y, text, len, attr, lattr);
3420 }
3421
3422 void do_cursor(Context ctx, int x, int y, wchar_t *text, int len,
3423 unsigned long attr, int lattr)
3424 {
3425
3426 int fnt_width;
3427 int char_width;
3428 HDC hdc = ctx;
3429 int ctype = cfg.cursor_type;
3430
3431 lattr &= LATTR_MODE;
3432
3433 if ((attr & TATTR_ACTCURS) && (ctype == 0 || term->big_cursor)) {
3434 if (*text != UCSWIDE) {
3435 do_text(ctx, x, y, text, len, attr, lattr);
3436 return;
3437 }
3438 ctype = 2;
3439 attr |= TATTR_RIGHTCURS;
3440 }
3441
3442 fnt_width = char_width = font_width * (1 + (lattr != LATTR_NORM));
3443 if (attr & ATTR_WIDE)
3444 char_width *= 2;
3445 x *= fnt_width;
3446 y *= font_height;
3447 x += offset_width;
3448 y += offset_height;
3449
3450 if ((attr & TATTR_PASCURS) && (ctype == 0 || term->big_cursor)) {
3451 POINT pts[5];
3452 HPEN oldpen;
3453 pts[0].x = pts[1].x = pts[4].x = x;
3454 pts[2].x = pts[3].x = x + char_width - 1;
3455 pts[0].y = pts[3].y = pts[4].y = y;
3456 pts[1].y = pts[2].y = y + font_height - 1;
3457 oldpen = SelectObject(hdc, CreatePen(PS_SOLID, 0, colours[261]));
3458 Polyline(hdc, pts, 5);
3459 oldpen = SelectObject(hdc, oldpen);
3460 DeleteObject(oldpen);
3461 } else if ((attr & (TATTR_ACTCURS | TATTR_PASCURS)) && ctype != 0) {
3462 int startx, starty, dx, dy, length, i;
3463 if (ctype == 1) {
3464 startx = x;
3465 starty = y + descent;
3466 dx = 1;
3467 dy = 0;
3468 length = char_width;
3469 } else {
3470 int xadjust = 0;
3471 if (attr & TATTR_RIGHTCURS)
3472 xadjust = char_width - 1;
3473 startx = x + xadjust;
3474 starty = y;
3475 dx = 0;
3476 dy = 1;
3477 length = font_height;
3478 }
3479 if (attr & TATTR_ACTCURS) {
3480 HPEN oldpen;
3481 oldpen =
3482 SelectObject(hdc, CreatePen(PS_SOLID, 0, colours[261]));
3483 MoveToEx(hdc, startx, starty, NULL);
3484 LineTo(hdc, startx + dx * length, starty + dy * length);
3485 oldpen = SelectObject(hdc, oldpen);
3486 DeleteObject(oldpen);
3487 } else {
3488 for (i = 0; i < length; i++) {
3489 if (i % 2 == 0) {
3490 SetPixel(hdc, startx, starty, colours[261]);
3491 }
3492 startx += dx;
3493 starty += dy;
3494 }
3495 }
3496 }
3497 }
3498
3499 /* This function gets the actual width of a character in the normal font.
3500 */
3501 int char_width(Context ctx, int uc) {
3502 HDC hdc = ctx;
3503 int ibuf = 0;
3504
3505 /* If the font max is the same as the font ave width then this
3506 * function is a no-op.
3507 */
3508 if (!font_dualwidth) return 1;
3509
3510 switch (uc & CSET_MASK) {
3511 case CSET_ASCII:
3512 uc = ucsdata.unitab_line[uc & 0xFF];
3513 break;
3514 case CSET_LINEDRW:
3515 uc = ucsdata.unitab_xterm[uc & 0xFF];
3516 break;
3517 case CSET_SCOACS:
3518 uc = ucsdata.unitab_scoacs[uc & 0xFF];
3519 break;
3520 }
3521 if (DIRECT_FONT(uc)) {
3522 if (ucsdata.dbcs_screenfont) return 1;
3523
3524 /* Speedup, I know of no font where ascii is the wrong width */
3525 if ((uc&~CSET_MASK) >= ' ' && (uc&~CSET_MASK)<= '~')
3526 return 1;
3527
3528 if ( (uc & CSET_MASK) == CSET_ACP ) {
3529 SelectObject(hdc, fonts[FONT_NORMAL]);
3530 } else if ( (uc & CSET_MASK) == CSET_OEMCP ) {
3531 another_font(FONT_OEM);
3532 if (!fonts[FONT_OEM]) return 0;
3533
3534 SelectObject(hdc, fonts[FONT_OEM]);
3535 } else
3536 return 0;
3537
3538 if ( GetCharWidth32(hdc, uc&~CSET_MASK, uc&~CSET_MASK, &ibuf) != 1 &&
3539 GetCharWidth(hdc, uc&~CSET_MASK, uc&~CSET_MASK, &ibuf) != 1)
3540 return 0;
3541 } else {
3542 /* Speedup, I know of no font where ascii is the wrong width */
3543 if (uc >= ' ' && uc <= '~') return 1;
3544
3545 SelectObject(hdc, fonts[FONT_NORMAL]);
3546 if ( GetCharWidth32W(hdc, uc, uc, &ibuf) == 1 )
3547 /* Okay that one worked */ ;
3548 else if ( GetCharWidthW(hdc, uc, uc, &ibuf) == 1 )
3549 /* This should work on 9x too, but it's "less accurate" */ ;
3550 else
3551 return 0;
3552 }
3553
3554 ibuf += font_width / 2 -1;
3555 ibuf /= font_width;
3556
3557 return ibuf;
3558 }
3559
3560 /*
3561 * Translate a WM_(SYS)?KEY(UP|DOWN) message into a string of ASCII
3562 * codes. Returns number of bytes used or zero to drop the message
3563 * or -1 to forward the message to windows.
3564 */
3565 static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam,
3566 unsigned char *output)
3567 {
3568 BYTE keystate[256];
3569 int scan, left_alt = 0, key_down, shift_state;
3570 int r, i, code;
3571 unsigned char *p = output;
3572 static int alt_sum = 0;
3573
3574 HKL kbd_layout = GetKeyboardLayout(0);
3575
3576 /* keys is for ToAsciiEx. There's some ick here, see below. */
3577 static WORD keys[3];
3578 static int compose_char = 0;
3579 static WPARAM compose_key = 0;
3580
3581 r = GetKeyboardState(keystate);
3582 if (!r)
3583 memset(keystate, 0, sizeof(keystate));
3584 else {
3585 #if 0
3586 #define SHOW_TOASCII_RESULT
3587 { /* Tell us all about key events */
3588 static BYTE oldstate[256];
3589 static int first = 1;
3590 static int scan;
3591 int ch;
3592 if (first)
3593 memcpy(oldstate, keystate, sizeof(oldstate));
3594 first = 0;
3595
3596 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT) {
3597 debug(("+"));
3598 } else if ((HIWORD(lParam) & KF_UP)
3599 && scan == (HIWORD(lParam) & 0xFF)) {
3600 debug((". U"));
3601 } else {
3602 debug((".\n"));
3603 if (wParam >= VK_F1 && wParam <= VK_F20)
3604 debug(("K_F%d", wParam + 1 - VK_F1));
3605 else
3606 switch (wParam) {
3607 case VK_SHIFT:
3608 debug(("SHIFT"));
3609 break;
3610 case VK_CONTROL:
3611 debug(("CTRL"));
3612 break;
3613 case VK_MENU:
3614 debug(("ALT"));
3615 break;
3616 default:
3617 debug(("VK_%02x", wParam));
3618 }
3619 if (message == WM_SYSKEYDOWN || message == WM_SYSKEYUP)
3620 debug(("*"));
3621 debug((", S%02x", scan = (HIWORD(lParam) & 0xFF)));
3622
3623 ch = MapVirtualKeyEx(wParam, 2, kbd_layout);
3624 if (ch >= ' ' && ch <= '~')
3625 debug((", '%c'", ch));
3626 else if (ch)
3627 debug((", $%02x", ch));
3628
3629 if (keys[0])
3630 debug((", KB0=%02x", keys[0]));
3631 if (keys[1])
3632 debug((", KB1=%02x", keys[1]));
3633 if (keys[2])
3634 debug((", KB2=%02x", keys[2]));
3635
3636 if ((keystate[VK_SHIFT] & 0x80) != 0)
3637 debug((", S"));
3638 if ((keystate[VK_CONTROL] & 0x80) != 0)
3639 debug((", C"));
3640 if ((HIWORD(lParam) & KF_EXTENDED))
3641 debug((", E"));
3642 if ((HIWORD(lParam) & KF_UP))
3643 debug((", U"));
3644 }
3645
3646 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT);
3647 else if ((HIWORD(lParam) & KF_UP))
3648 oldstate[wParam & 0xFF] ^= 0x80;
3649 else
3650 oldstate[wParam & 0xFF] ^= 0x81;
3651
3652 for (ch = 0; ch < 256; ch++)
3653 if (oldstate[ch] != keystate[ch])
3654 debug((", M%02x=%02x", ch, keystate[ch]));
3655
3656 memcpy(oldstate, keystate, sizeof(oldstate));
3657 }
3658 #endif
3659
3660 if (wParam == VK_MENU && (HIWORD(lParam) & KF_EXTENDED)) {
3661 keystate[VK_RMENU] = keystate[VK_MENU];
3662 }
3663
3664
3665 /* Nastyness with NUMLock - Shift-NUMLock is left alone though */
3666 if ((cfg.funky_type == FUNKY_VT400 ||
3667 (cfg.funky_type <= FUNKY_LINUX && term->app_keypad_keys &&
3668 !cfg.no_applic_k))
3669 && wParam == VK_NUMLOCK && !(keystate[VK_SHIFT] & 0x80)) {
3670
3671 wParam = VK_EXECUTE;
3672
3673 /* UnToggle NUMLock */
3674 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == 0)
3675 keystate[VK_NUMLOCK] ^= 1;
3676 }
3677
3678 /* And write back the 'adjusted' state */
3679 SetKeyboardState(keystate);
3680 }
3681
3682 /* Disable Auto repeat if required */
3683 if (term->repeat_off &&
3684 (HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT)
3685 return 0;
3686
3687 if ((HIWORD(lParam) & KF_ALTDOWN) && (keystate[VK_RMENU] & 0x80) == 0)
3688 left_alt = 1;
3689
3690 key_down = ((HIWORD(lParam) & KF_UP) == 0);
3691
3692 /* Make sure Ctrl-ALT is not the same as AltGr for ToAscii unless told. */
3693 if (left_alt && (keystate[VK_CONTROL] & 0x80)) {
3694 if (cfg.ctrlaltkeys)
3695 keystate[VK_MENU] = 0;
3696 else {
3697 keystate[VK_RMENU] = 0x80;
3698 left_alt = 0;
3699 }
3700 }
3701
3702 scan = (HIWORD(lParam) & (KF_UP | KF_EXTENDED | 0xFF));
3703 shift_state = ((keystate[VK_SHIFT] & 0x80) != 0)
3704 + ((keystate[VK_CONTROL] & 0x80) != 0) * 2;
3705
3706 /* Note if AltGr was pressed and if it was used as a compose key */
3707 if (!compose_state) {
3708 compose_key = 0x100;
3709 if (cfg.compose_key) {
3710 if (wParam == VK_MENU && (HIWORD(lParam) & KF_EXTENDED))
3711 compose_key = wParam;
3712 }
3713 if (wParam == VK_APPS)
3714 compose_key = wParam;
3715 }
3716
3717 if (wParam == compose_key) {
3718 if (compose_state == 0
3719 && (HIWORD(lParam) & (KF_UP | KF_REPEAT)) == 0) compose_state =
3720 1;
3721 else if (compose_state == 1 && (HIWORD(lParam) & KF_UP))
3722 compose_state = 2;
3723 else
3724 compose_state = 0;
3725 } else if (compose_state == 1 && wParam != VK_CONTROL)
3726 compose_state = 0;
3727
3728 if (compose_state > 1 && left_alt)
3729 compose_state = 0;
3730
3731 /* Sanitize the number pad if not using a PC NumPad */
3732 if (left_alt || (term->app_keypad_keys && !cfg.no_applic_k
3733 && cfg.funky_type != FUNKY_XTERM)
3734 || cfg.funky_type == FUNKY_VT400 || cfg.nethack_keypad || compose_state) {
3735 if ((HIWORD(lParam) & KF_EXTENDED) == 0) {
3736 int nParam = 0;
3737 switch (wParam) {
3738 case VK_INSERT:
3739 nParam = VK_NUMPAD0;
3740 break;
3741 case VK_END:
3742 nParam = VK_NUMPAD1;
3743 break;
3744 case VK_DOWN:
3745 nParam = VK_NUMPAD2;
3746 break;
3747 case VK_NEXT:
3748 nParam = VK_NUMPAD3;
3749 break;
3750 case VK_LEFT:
3751 nParam = VK_NUMPAD4;
3752 break;
3753 case VK_CLEAR:
3754 nParam = VK_NUMPAD5;
3755 break;
3756 case VK_RIGHT:
3757 nParam = VK_NUMPAD6;
3758 break;
3759 case VK_HOME:
3760 nParam = VK_NUMPAD7;
3761 break;
3762 case VK_UP:
3763 nParam = VK_NUMPAD8;
3764 break;
3765 case VK_PRIOR:
3766 nParam = VK_NUMPAD9;
3767 break;
3768 case VK_DELETE:
3769 nParam = VK_DECIMAL;
3770 break;
3771 }
3772 if (nParam) {
3773 if (keystate[VK_NUMLOCK] & 1)
3774 shift_state |= 1;
3775 wParam = nParam;
3776 }
3777 }
3778 }
3779
3780 /* If a key is pressed and AltGr is not active */
3781 if (key_down && (keystate[VK_RMENU] & 0x80) == 0 && !compose_state) {
3782 /* Okay, prepare for most alts then ... */
3783 if (left_alt)
3784 *p++ = '\033';
3785
3786 /* Lets see if it's a pattern we know all about ... */
3787 if (wParam == VK_PRIOR && shift_state == 1) {
3788 SendMessage(hwnd, WM_VSCROLL, SB_PAGEUP, 0);
3789 return 0;
3790 }
3791 if (wParam == VK_PRIOR && shift_state == 2) {
3792 SendMessage(hwnd, WM_VSCROLL, SB_LINEUP, 0);
3793 return 0;
3794 }
3795 if (wParam == VK_NEXT && shift_state == 1) {
3796 SendMessage(hwnd, WM_VSCROLL, SB_PAGEDOWN, 0);
3797 return 0;
3798 }
3799 if (wParam == VK_NEXT && shift_state == 2) {
3800 SendMessage(hwnd, WM_VSCROLL, SB_LINEDOWN, 0);
3801 return 0;
3802 }
3803 if (wParam == VK_INSERT && shift_state == 1) {
3804 term_do_paste(term);
3805 return 0;
3806 }
3807 if (left_alt && wParam == VK_F4 && cfg.alt_f4) {
3808 return -1;
3809 }
3810 if (left_alt && wParam == VK_SPACE && cfg.alt_space) {
3811 SendMessage(hwnd, WM_SYSCOMMAND, SC_KEYMENU, 0);
3812 return -1;
3813 }
3814 if (left_alt && wParam == VK_RETURN && cfg.fullscreenonaltenter &&
3815 (cfg.resize_action != RESIZE_DISABLED)) {
3816 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) != KF_REPEAT)
3817 flip_full_screen();
3818 return -1;
3819 }
3820 /* Control-Numlock for app-keypad mode switch */
3821 if (wParam == VK_PAUSE && shift_state == 2) {
3822 term->app_keypad_keys ^= 1;
3823 return 0;
3824 }
3825
3826 /* Nethack keypad */
3827 if (cfg.nethack_keypad && !left_alt) {
3828 switch (wParam) {
3829 case VK_NUMPAD1:
3830 *p++ = "bB\002\002"[shift_state & 3];
3831 return p - output;
3832 case VK_NUMPAD2:
3833 *p++ = "jJ\012\012"[shift_state & 3];
3834 return p - output;
3835 case VK_NUMPAD3:
3836 *p++ = "nN\016\016"[shift_state & 3];
3837 return p - output;
3838 case VK_NUMPAD4:
3839 *p++ = "hH\010\010"[shift_state & 3];
3840 return p - output;
3841 case VK_NUMPAD5:
3842 *p++ = shift_state ? '.' : '.';
3843 return p - output;
3844 case VK_NUMPAD6:
3845 *p++ = "lL\014\014"[shift_state & 3];
3846 return p - output;
3847 case VK_NUMPAD7:
3848 *p++ = "yY\031\031"[shift_state & 3];
3849 return p - output;
3850 case VK_NUMPAD8:
3851 *p++ = "kK\013\013"[shift_state & 3];
3852 return p - output;
3853 case VK_NUMPAD9:
3854 *p++ = "uU\025\025"[shift_state & 3];
3855 return p - output;
3856 }
3857 }
3858
3859 /* Application Keypad */
3860 if (!left_alt) {
3861 int xkey = 0;
3862
3863 if (cfg.funky_type == FUNKY_VT400 ||
3864 (cfg.funky_type <= FUNKY_LINUX &&
3865 term->app_keypad_keys && !cfg.no_applic_k)) switch (wParam) {
3866 case VK_EXECUTE:
3867 xkey = 'P';
3868 break;
3869 case VK_DIVIDE:
3870 xkey = 'Q';
3871 break;
3872 case VK_MULTIPLY:
3873 xkey = 'R';
3874 break;
3875 case VK_SUBTRACT:
3876 xkey = 'S';
3877 break;
3878 }
3879 if (term->app_keypad_keys && !cfg.no_applic_k)
3880 switch (wParam) {
3881 case VK_NUMPAD0:
3882 xkey = 'p';
3883 break;
3884 case VK_NUMPAD1:
3885 xkey = 'q';
3886 break;
3887 case VK_NUMPAD2:
3888 xkey = 'r';
3889 break;
3890 case VK_NUMPAD3:
3891 xkey = 's';
3892 break;
3893 case VK_NUMPAD4:
3894 xkey = 't';
3895 break;
3896 case VK_NUMPAD5:
3897 xkey = 'u';
3898 break;
3899 case VK_NUMPAD6:
3900 xkey = 'v';
3901 break;
3902 case VK_NUMPAD7:
3903 xkey = 'w';
3904 break;
3905 case VK_NUMPAD8:
3906 xkey = 'x';
3907 break;
3908 case VK_NUMPAD9:
3909 xkey = 'y';
3910 break;
3911
3912 case VK_DECIMAL:
3913 xkey = 'n';
3914 break;
3915 case VK_ADD:
3916 if (cfg.funky_type == FUNKY_XTERM) {
3917 if (shift_state)
3918 xkey = 'l';
3919 else
3920 xkey = 'k';
3921 } else if (shift_state)
3922 xkey = 'm';
3923 else
3924 xkey = 'l';
3925 break;
3926
3927 case VK_DIVIDE:
3928 if (cfg.funky_type == FUNKY_XTERM)
3929 xkey = 'o';
3930 break;
3931 case VK_MULTIPLY:
3932 if (cfg.funky_type == FUNKY_XTERM)
3933 xkey = 'j';
3934 break;
3935 case VK_SUBTRACT:
3936 if (cfg.funky_type == FUNKY_XTERM)
3937 xkey = 'm';
3938 break;
3939
3940 case VK_RETURN:
3941 if (HIWORD(lParam) & KF_EXTENDED)
3942 xkey = 'M';
3943 break;
3944 }
3945 if (xkey) {
3946 if (term->vt52_mode) {
3947 if (xkey >= 'P' && xkey <= 'S')
3948 p += sprintf((char *) p, "\x1B%c", xkey);
3949 else
3950 p += sprintf((char *) p, "\x1B?%c", xkey);
3951 } else
3952 p += sprintf((char *) p, "\x1BO%c", xkey);
3953 return p - output;
3954 }
3955 }
3956
3957 if (wParam == VK_BACK && shift_state == 0) { /* Backspace */
3958 *p++ = (cfg.bksp_is_delete ? 0x7F : 0x08);
3959 *p++ = 0;
3960 return -2;
3961 }
3962 if (wParam == VK_BACK && shift_state == 1) { /* Shift Backspace */
3963 /* We do the opposite of what is configured */
3964 *p++ = (cfg.bksp_is_delete ? 0x08 : 0x7F);
3965 *p++ = 0;
3966 return -2;
3967 }
3968 if (wParam == VK_TAB && shift_state == 1) { /* Shift tab */
3969 *p++ = 0x1B;
3970 *p++ = '[';
3971 *p++ = 'Z';
3972 return p - output;
3973 }
3974 if (wParam == VK_SPACE && shift_state == 2) { /* Ctrl-Space */
3975 *p++ = 0;
3976 return p - output;
3977 }
3978 if (wParam == VK_SPACE && shift_state == 3) { /* Ctrl-Shift-Space */
3979 *p++ = 160;
3980 return p - output;
3981 }
3982 if (wParam == VK_CANCEL && shift_state == 2) { /* Ctrl-Break */
3983 *p++ = 3;
3984 *p++ = 0;
3985 return -2;
3986 }
3987 if (wParam == VK_PAUSE) { /* Break/Pause */
3988 *p++ = 26;
3989 *p++ = 0;
3990 return -2;
3991 }
3992 /* Control-2 to Control-8 are special */
3993 if (shift_state == 2 && wParam >= '2' && wParam <= '8') {
3994 *p++ = "\000\033\034\035\036\037\177"[wParam - '2'];
3995 return p - output;
3996 }
3997 if (shift_state == 2 && (wParam == 0xBD || wParam == 0xBF)) {
3998 *p++ = 0x1F;
3999 return p - output;
4000 }
4001 if (shift_state == 2 && wParam == 0xDF) {
4002 *p++ = 0x1C;
4003 return p - output;
4004 }
4005 if (shift_state == 3 && wParam == 0xDE) {
4006 *p++ = 0x1E; /* Ctrl-~ == Ctrl-^ in xterm at least */
4007 return p - output;
4008 }
4009 if (shift_state == 0 && wParam == VK_RETURN && term->cr_lf_return) {
4010 *p++ = '\r';
4011 *p++ = '\n';
4012 return p - output;
4013 }
4014
4015 /*
4016 * Next, all the keys that do tilde codes. (ESC '[' nn '~',
4017 * for integer decimal nn.)
4018 *
4019 * We also deal with the weird ones here. Linux VCs replace F1
4020 * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
4021 * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
4022 * respectively.
4023 */
4024 code = 0;
4025 switch (wParam) {
4026 case VK_F1:
4027 code = (keystate[VK_SHIFT] & 0x80 ? 23 : 11);
4028 break;
4029 case VK_F2:
4030 code = (keystate[VK_SHIFT] & 0x80 ? 24 : 12);
4031 break;
4032 case VK_F3:
4033 code = (keystate[VK_SHIFT] & 0x80 ? 25 : 13);
4034 break;
4035 case VK_F4:
4036 code = (keystate[VK_SHIFT] & 0x80 ? 26 : 14);
4037 break;
4038 case VK_F5:
4039 code = (keystate[VK_SHIFT] & 0x80 ? 28 : 15);
4040 break;
4041 case VK_F6:
4042 code = (keystate[VK_SHIFT] & 0x80 ? 29 : 17);
4043 break;
4044 case VK_F7:
4045 code = (keystate[VK_SHIFT] & 0x80 ? 31 : 18);
4046 break;
4047 case VK_F8:
4048 code = (keystate[VK_SHIFT] & 0x80 ? 32 : 19);
4049 break;
4050 case VK_F9:
4051 code = (keystate[VK_SHIFT] & 0x80 ? 33 : 20);
4052 break;
4053 case VK_F10:
4054 code = (keystate[VK_SHIFT] & 0x80 ? 34 : 21);
4055 break;
4056 case VK_F11:
4057 code = 23;
4058 break;
4059 case VK_F12:
4060 code = 24;
4061 break;
4062 case VK_F13:
4063 code = 25;
4064 break;
4065 case VK_F14:
4066 code = 26;
4067 break;
4068 case VK_F15:
4069 code = 28;
4070 break;
4071 case VK_F16:
4072 code = 29;
4073 break;
4074 case VK_F17:
4075 code = 31;
4076 break;
4077 case VK_F18:
4078 code = 32;
4079 break;
4080 case VK_F19:
4081 code = 33;
4082 break;
4083 case VK_F20:
4084 code = 34;
4085 break;
4086 }
4087 if ((shift_state&2) == 0) switch (wParam) {
4088 case VK_HOME:
4089 code = 1;
4090 break;
4091 case VK_INSERT:
4092 code = 2;
4093 break;
4094 case VK_DELETE:
4095 code = 3;
4096 break;
4097 case VK_END:
4098 code = 4;
4099 break;
4100 case VK_PRIOR:
4101 code = 5;
4102 break;
4103 case VK_NEXT:
4104 code = 6;
4105 break;
4106 }
4107 /* Reorder edit keys to physical order */
4108 if (cfg.funky_type == FUNKY_VT400 && code <= 6)
4109 code = "\0\2\1\4\5\3\6"[code];
4110
4111 if (term->vt52_mode && code > 0 && code <= 6) {
4112 p += sprintf((char *) p, "\x1B%c", " HLMEIG"[code]);
4113 return p - output;
4114 }
4115
4116 if (cfg.funky_type == FUNKY_SCO && /* SCO function keys */
4117 code >= 11 && code <= 34) {
4118 char codes[] = "MNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@[\\]^_`{";
4119 int index = 0;
4120 switch (wParam) {
4121 case VK_F1: index = 0; break;
4122 case VK_F2: index = 1; break;
4123 case VK_F3: index = 2; break;
4124 case VK_F4: index = 3; break;
4125 case VK_F5: index = 4; break;
4126 case VK_F6: index = 5; break;
4127 case VK_F7: index = 6; break;
4128 case VK_F8: index = 7; break;
4129 case VK_F9: index = 8; break;
4130 case VK_F10: index = 9; break;
4131 case VK_F11: index = 10; break;
4132 case VK_F12: index = 11; break;
4133 }
4134 if (keystate[VK_SHIFT] & 0x80) index += 12;
4135 if (keystate[VK_CONTROL] & 0x80) index += 24;
4136 p += sprintf((char *) p, "\x1B[%c", codes[index]);
4137 return p - output;
4138 }
4139 if (cfg.funky_type == FUNKY_SCO && /* SCO small keypad */
4140 code >= 1 && code <= 6) {
4141 char codes[] = "HL.FIG";
4142 if (code == 3) {
4143 *p++ = '\x7F';
4144 } else {
4145 p += sprintf((char *) p, "\x1B[%c", codes[code-1]);
4146 }
4147 return p - output;
4148 }
4149 if ((term->vt52_mode || cfg.funky_type == FUNKY_VT100P) && code >= 11 && code <= 24) {
4150 int offt = 0;
4151 if (code > 15)
4152 offt++;
4153 if (code > 21)
4154 offt++;
4155 if (term->vt52_mode)
4156 p += sprintf((char *) p, "\x1B%c", code + 'P' - 11 - offt);
4157 else
4158 p +=
4159 sprintf((char *) p, "\x1BO%c", code + 'P' - 11 - offt);
4160 return p - output;
4161 }
4162 if (cfg.funky_type == FUNKY_LINUX && code >= 11 && code <= 15) {
4163 p += sprintf((char *) p, "\x1B[[%c", code + 'A' - 11);
4164 return p - output;
4165 }
4166 if (cfg.funky_type == FUNKY_XTERM && code >= 11 && code <= 14) {
4167 if (term->vt52_mode)
4168 p += sprintf((char *) p, "\x1B%c", code + 'P' - 11);
4169 else
4170 p += sprintf((char *) p, "\x1BO%c", code + 'P' - 11);
4171 return p - output;
4172 }
4173 if (cfg.rxvt_homeend && (code == 1 || code == 4)) {
4174 p += sprintf((char *) p, code == 1 ? "\x1B[H" : "\x1BOw");
4175 return p - output;
4176 }
4177 if (code) {
4178 p += sprintf((char *) p, "\x1B[%d~", code);
4179 return p - output;
4180 }
4181
4182 /*
4183 * Now the remaining keys (arrows and Keypad 5. Keypad 5 for
4184 * some reason seems to send VK_CLEAR to Windows...).
4185 */
4186 {
4187 char xkey = 0;
4188 switch (wParam) {
4189 case VK_UP:
4190 xkey = 'A';
4191 break;
4192 case VK_DOWN:
4193 xkey = 'B';
4194 break;
4195 case VK_RIGHT:
4196 xkey = 'C';
4197 break;
4198 case VK_LEFT:
4199 xkey = 'D';
4200 break;
4201 case VK_CLEAR:
4202 xkey = 'G';
4203 break;
4204 }
4205 if (xkey) {
4206 if (term->vt52_mode)
4207 p += sprintf((char *) p, "\x1B%c", xkey);
4208 else {
4209 int app_flg = (term->app_cursor_keys && !cfg.no_applic_c);
4210 #if 0
4211 /*
4212 * RDB: VT100 & VT102 manuals both state the
4213 * app cursor keys only work if the app keypad
4214 * is on.
4215 *
4216 * SGT: That may well be true, but xterm
4217 * disagrees and so does at least one
4218 * application, so I've #if'ed this out and the
4219 * behaviour is back to PuTTY's original: app
4220 * cursor and app keypad are independently
4221 * switchable modes. If anyone complains about
4222 * _this_ I'll have to put in a configurable
4223 * option.
4224 */
4225 if (!term->app_keypad_keys)
4226 app_flg = 0;
4227 #endif
4228 /* Useful mapping of Ctrl-arrows */
4229 if (shift_state == 2)
4230 app_flg = !app_flg;
4231
4232 if (app_flg)
4233 p += sprintf((char *) p, "\x1BO%c", xkey);
4234 else
4235 p += sprintf((char *) p, "\x1B[%c", xkey);
4236 }
4237 return p - output;
4238 }
4239 }
4240
4241 /*
4242 * Finally, deal with Return ourselves. (Win95 seems to
4243 * foul it up when Alt is pressed, for some reason.)
4244 */
4245 if (wParam == VK_RETURN) { /* Return */
4246 *p++ = 0x0D;
4247 *p++ = 0;
4248 return -2;
4249 }
4250
4251 if (left_alt && wParam >= VK_NUMPAD0 && wParam <= VK_NUMPAD9)
4252 alt_sum = alt_sum * 10 + wParam - VK_NUMPAD0;
4253 else
4254 alt_sum = 0;
4255 }
4256
4257 /* Okay we've done everything interesting; let windows deal with
4258 * the boring stuff */
4259 {
4260 BOOL capsOn=0;
4261
4262 /* helg: clear CAPS LOCK state if caps lock switches to cyrillic */
4263 if(cfg.xlat_capslockcyr && keystate[VK_CAPITAL] != 0) {
4264 capsOn= !left_alt;
4265 keystate[VK_CAPITAL] = 0;
4266 }
4267
4268 /* XXX how do we know what the max size of the keys array should
4269 * be is? There's indication on MS' website of an Inquire/InquireEx
4270 * functioning returning a KBINFO structure which tells us. */
4271 if (osVersion.dwPlatformId == VER_PLATFORM_WIN32_NT) {
4272 /* XXX 'keys' parameter is declared in MSDN documentation as
4273 * 'LPWORD lpChar'.
4274 * The experience of a French user indicates that on
4275 * Win98, WORD[] should be passed in, but on Win2K, it should
4276 * be BYTE[]. German WinXP and my Win2K with "US International"
4277 * driver corroborate this.
4278 * Experimentally I've conditionalised the behaviour on the
4279 * Win9x/NT split, but I suspect it's worse than that.
4280 * See wishlist item `win-dead-keys' for more horrible detail
4281 * and speculations. */
4282 BYTE keybs[3];
4283 int i;
4284 r = ToAsciiEx(wParam, scan, keystate, (LPWORD)keybs, 0, kbd_layout);
4285 for (i=0; i<3; i++) keys[i] = keybs[i];
4286 } else {
4287 r = ToAsciiEx(wParam, scan, keystate, keys, 0, kbd_layout);
4288 }
4289 #ifdef SHOW_TOASCII_RESULT
4290 if (r == 1 && !key_down) {
4291 if (alt_sum) {
4292 if (in_utf(term) || ucsdata.dbcs_screenfont)
4293 debug((", (U+%04x)", alt_sum));
4294 else
4295 debug((", LCH(%d)", alt_sum));
4296 } else {
4297 debug((", ACH(%d)", keys[0]));
4298 }
4299 } else if (r > 0) {
4300 int r1;
4301 debug((", ASC("));
4302 for (r1 = 0; r1 < r; r1++) {
4303 debug(("%s%d", r1 ? "," : "", keys[r1]));
4304 }
4305 debug((")"));
4306 }
4307 #endif
4308 if (r > 0) {
4309 WCHAR keybuf;
4310
4311 /*
4312 * Interrupt an ongoing paste. I'm not sure this is
4313 * sensible, but for the moment it's preferable to
4314 * having to faff about buffering things.
4315 */
4316 term_nopaste(term);
4317
4318 p = output;
4319 for (i = 0; i < r; i++) {
4320 unsigned char ch = (unsigned char) keys[i];
4321
4322 if (compose_state == 2 && (ch & 0x80) == 0 && ch > ' ') {
4323 compose_char = ch;
4324 compose_state++;
4325 continue;
4326 }
4327 if (compose_state == 3 && (ch & 0x80) == 0 && ch > ' ') {
4328 int nc;
4329 compose_state = 0;
4330
4331 if ((nc = check_compose(compose_char, ch)) == -1) {
4332 MessageBeep(MB_ICONHAND);
4333 return 0;
4334 }
4335 keybuf = nc;
4336 term_seen_key_event(term);
4337 if (ldisc)
4338 luni_send(ldisc, &keybuf, 1, 1);
4339 continue;
4340 }
4341
4342 compose_state = 0;
4343
4344 if (!key_down) {
4345 if (alt_sum) {
4346 if (in_utf(term) || ucsdata.dbcs_screenfont) {
4347 keybuf = alt_sum;
4348 term_seen_key_event(term);
4349 if (ldisc)
4350 luni_send(ldisc, &keybuf, 1, 1);
4351 } else {
4352 ch = (char) alt_sum;
4353 /*
4354 * We need not bother about stdin
4355 * backlogs here, because in GUI PuTTY
4356 * we can't do anything about it
4357 * anyway; there's no means of asking
4358 * Windows to hold off on KEYDOWN
4359 * messages. We _have_ to buffer
4360 * everything we're sent.
4361 */
4362 term_seen_key_event(term);
4363 if (ldisc)
4364 ldisc_send(ldisc, &ch, 1, 1);
4365 }
4366 alt_sum = 0;
4367 } else {
4368 term_seen_key_event(term);
4369 if (ldisc)
4370 lpage_send(ldisc, kbd_codepage, &ch, 1, 1);
4371 }
4372 } else {
4373 if(capsOn && ch < 0x80) {
4374 WCHAR cbuf[2];
4375 cbuf[0] = 27;
4376 cbuf[1] = xlat_uskbd2cyrllic(ch);
4377 term_seen_key_event(term);
4378 if (ldisc)
4379 luni_send(ldisc, cbuf+!left_alt, 1+!!left_alt, 1);
4380 } else {
4381 char cbuf[2];
4382 cbuf[0] = '\033';
4383 cbuf[1] = ch;
4384 term_seen_key_event(term);
4385 if (ldisc)
4386 lpage_send(ldisc, kbd_codepage,
4387 cbuf+!left_alt, 1+!!left_alt, 1);
4388 }
4389 }
4390 show_mouseptr(0);
4391 }
4392
4393 /* This is so the ALT-Numpad and dead keys work correctly. */
4394 keys[0] = 0;
4395
4396 return p - output;
4397 }
4398 /* If we're definitly not building up an ALT-54321 then clear it */
4399 if (!left_alt)
4400 keys[0] = 0;
4401 /* If we will be using alt_sum fix the 256s */
4402 else if (keys[0] && (in_utf(term) || ucsdata.dbcs_screenfont))
4403 keys[0] = 10;
4404 }
4405
4406 /*
4407 * ALT alone may or may not want to bring up the System menu.
4408 * If it's not meant to, we return 0 on presses or releases of
4409 * ALT, to show that we've swallowed the keystroke. Otherwise
4410 * we return -1, which means Windows will give the keystroke
4411 * its default handling (i.e. bring up the System menu).
4412 */
4413 if (wParam == VK_MENU && !cfg.alt_only)
4414 return 0;
4415
4416 return -1;
4417 }
4418
4419 void request_paste(void *frontend)
4420 {
4421 /*
4422 * In Windows, pasting is synchronous: we can read the
4423 * clipboard with no difficulty, so request_paste() can just go
4424 * ahead and paste.
4425 */
4426 term_do_paste(term);
4427 }
4428
4429 void set_title(void *frontend, char *title)
4430 {
4431 sfree(window_name);
4432 window_name = snewn(1 + strlen(title), char);
4433 strcpy(window_name, title);
4434 if (cfg.win_name_always || !IsIconic(hwnd))
4435 SetWindowText(hwnd, title);
4436 }
4437
4438 void set_icon(void *frontend, char *title)
4439 {
4440 sfree(icon_name);
4441 icon_name = snewn(1 + strlen(title), char);
4442 strcpy(icon_name, title);
4443 if (!cfg.win_name_always && IsIconic(hwnd))
4444 SetWindowText(hwnd, title);
4445 }
4446
4447 void set_sbar(void *frontend, int total, int start, int page)
4448 {
4449 SCROLLINFO si;
4450
4451 if (is_full_screen() ? !cfg.scrollbar_in_fullscreen : !cfg.scrollbar)
4452 return;
4453
4454 si.cbSize = sizeof(si);
4455 si.fMask = SIF_ALL | SIF_DISABLENOSCROLL;
4456 si.nMin = 0;
4457 si.nMax = total - 1;
4458 si.nPage = page;
4459 si.nPos = start;
4460 if (hwnd)
4461 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
4462 }
4463
4464 Context get_ctx(void *frontend)
4465 {
4466 HDC hdc;
4467 if (hwnd) {
4468 hdc = GetDC(hwnd);
4469 if (hdc && pal)
4470 SelectPalette(hdc, pal, FALSE);
4471 return hdc;
4472 } else
4473 return NULL;
4474 }
4475
4476 void free_ctx(Context ctx)
4477 {
4478 SelectPalette(ctx, GetStockObject(DEFAULT_PALETTE), FALSE);
4479 ReleaseDC(hwnd, ctx);
4480 }
4481
4482 static void real_palette_set(int n, int r, int g, int b)
4483 {
4484 if (pal) {
4485 logpal->palPalEntry[n].peRed = r;
4486 logpal->palPalEntry[n].peGreen = g;
4487 logpal->palPalEntry[n].peBlue = b;
4488 logpal->palPalEntry[n].peFlags = PC_NOCOLLAPSE;
4489 colours[n] = PALETTERGB(r, g, b);
4490 SetPaletteEntries(pal, 0, NALLCOLOURS, logpal->palPalEntry);
4491 } else
4492 colours[n] = RGB(r, g, b);
4493 }
4494
4495 void palette_set(void *frontend, int n, int r, int g, int b)
4496 {
4497 if (n >= 16)
4498 n += 256 - 16;
4499 if (n > NALLCOLOURS)
4500 return;
4501 real_palette_set(n, r, g, b);
4502 if (pal) {
4503 HDC hdc = get_ctx(frontend);
4504 UnrealizeObject(pal);
4505 RealizePalette(hdc);
4506 free_ctx(hdc);
4507 } else {
4508 if (n == (ATTR_DEFBG>>ATTR_BGSHIFT))
4509 /* If Default Background changes, we need to ensure any
4510 * space between the text area and the window border is
4511 * redrawn. */
4512 InvalidateRect(hwnd, NULL, TRUE);
4513 }
4514 }
4515
4516 void palette_reset(void *frontend)
4517 {
4518 int i;
4519
4520 /* And this */
4521 for (i = 0; i < NALLCOLOURS; i++) {
4522 if (pal) {
4523 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
4524 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
4525 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
4526 logpal->palPalEntry[i].peFlags = 0;
4527 colours[i] = PALETTERGB(defpal[i].rgbtRed,
4528 defpal[i].rgbtGreen,
4529 defpal[i].rgbtBlue);
4530 } else
4531 colours[i] = RGB(defpal[i].rgbtRed,
4532 defpal[i].rgbtGreen, defpal[i].rgbtBlue);
4533 }
4534
4535 if (pal) {
4536 HDC hdc;
4537 SetPaletteEntries(pal, 0, NALLCOLOURS, logpal->palPalEntry);
4538 hdc = get_ctx(frontend);
4539 RealizePalette(hdc);
4540 free_ctx(hdc);
4541 } else {
4542 /* Default Background may have changed. Ensure any space between
4543 * text area and window border is redrawn. */
4544 InvalidateRect(hwnd, NULL, TRUE);
4545 }
4546 }
4547
4548 void write_aclip(void *frontend, char *data, int len, int must_deselect)
4549 {
4550 HGLOBAL clipdata;
4551 void *lock;
4552
4553 clipdata = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, len + 1);
4554 if (!clipdata)
4555 return;
4556 lock = GlobalLock(clipdata);
4557 if (!lock)
4558 return;
4559 memcpy(lock, data, len);
4560 ((unsigned char *) lock)[len] = 0;
4561 GlobalUnlock(clipdata);
4562
4563 if (!must_deselect)
4564 SendMessage(hwnd, WM_IGNORE_CLIP, TRUE, 0);
4565
4566 if (OpenClipboard(hwnd)) {
4567 EmptyClipboard();
4568 SetClipboardData(CF_TEXT, clipdata);
4569 CloseClipboard();
4570 } else
4571 GlobalFree(clipdata);
4572
4573 if (!must_deselect)
4574 SendMessage(hwnd, WM_IGNORE_CLIP, FALSE, 0);
4575 }
4576
4577 /*
4578 * Note: unlike write_aclip() this will not append a nul.
4579 */
4580 void write_clip(void *frontend, wchar_t * data, int *attr, int len, int must_deselect)
4581 {
4582 HGLOBAL clipdata, clipdata2, clipdata3;
4583 int len2;
4584 void *lock, *lock2, *lock3;
4585
4586 len2 = WideCharToMultiByte(CP_ACP, 0, data, len, 0, 0, NULL, NULL);
4587
4588 clipdata = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE,
4589 len * sizeof(wchar_t));
4590 clipdata2 = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, len2);
4591
4592 if (!clipdata || !clipdata2) {
4593 if (clipdata)
4594 GlobalFree(clipdata);
4595 if (clipdata2)
4596 GlobalFree(clipdata2);
4597 return;
4598 }
4599 if (!(lock = GlobalLock(clipdata)))
4600 return;
4601 if (!(lock2 = GlobalLock(clipdata2)))
4602 return;
4603
4604 memcpy(lock, data, len * sizeof(wchar_t));
4605 WideCharToMultiByte(CP_ACP, 0, data, len, lock2, len2, NULL, NULL);
4606
4607 if (cfg.rtf_paste) {
4608 wchar_t unitab[256];
4609 char *rtf = NULL;
4610 unsigned char *tdata = (unsigned char *)lock2;
4611 wchar_t *udata = (wchar_t *)lock;
4612 int rtflen = 0, uindex = 0, tindex = 0;
4613 int rtfsize = 0;
4614 int multilen, blen, alen, totallen, i;
4615 char before[16], after[4];
4616 int fgcolour, lastfgcolour = 0;
4617 int bgcolour, lastbgcolour = 0;
4618 int attrBold, lastAttrBold = 0;
4619 int attrUnder, lastAttrUnder = 0;
4620 int palette[NALLCOLOURS];
4621 int numcolours;
4622
4623 get_unitab(CP_ACP, unitab, 0);
4624
4625 rtfsize = 100 + strlen(cfg.font.name);
4626 rtf = snewn(rtfsize, char);
4627 rtflen = sprintf(rtf, "{\\rtf1\\ansi\\deff0{\\fonttbl\\f0\\fmodern %s;}\\f0\\fs%d",
4628 cfg.font.name, cfg.font.height*2);
4629
4630 /*
4631 * Add colour palette
4632 * {\colortbl ;\red255\green0\blue0;\red0\green0\blue128;}
4633 */
4634
4635 /*
4636 * First - Determine all colours in use
4637 * o Foregound and background colours share the same palette
4638 */
4639 if (attr) {
4640 memset(palette, 0, sizeof(palette));
4641 for (i = 0; i < (len-1); i++) {
4642 fgcolour = ((attr[i] & ATTR_FGMASK) >> ATTR_FGSHIFT);
4643 bgcolour = ((attr[i] & ATTR_BGMASK) >> ATTR_BGSHIFT);
4644
4645 if (attr[i] & ATTR_REVERSE) {
4646 int tmpcolour = fgcolour; /* Swap foreground and background */
4647 fgcolour = bgcolour;
4648 bgcolour = tmpcolour;
4649 }
4650
4651 if (bold_mode == BOLD_COLOURS && (attr[i] & ATTR_BOLD)) {
4652 if (fgcolour < 8) /* ANSI colours */
4653 fgcolour += 8;
4654 else if (fgcolour >= 256) /* Default colours */
4655 fgcolour ++;
4656 }
4657
4658 if (attr[i] & ATTR_BLINK) {
4659 if (bgcolour < 8) /* ANSI colours */
4660 bgcolour += 8;
4661 else if (bgcolour >= 256) /* Default colours */
4662 bgcolour ++;
4663 }
4664
4665 palette[fgcolour]++;
4666 palette[bgcolour]++;
4667 }
4668
4669 /*
4670 * Next - Create a reduced palette
4671 */
4672 numcolours = 0;
4673 for (i = 0; i < NALLCOLOURS; i++) {
4674 if (palette[i] != 0)
4675 palette[i] = ++numcolours;
4676 }
4677
4678 /*
4679 * Finally - Write the colour table
4680 */
4681 rtf = sresize(rtf, rtfsize + (numcolours * 25), char);
4682 strcat(rtf, "{\\colortbl ;");
4683 rtflen = strlen(rtf);
4684
4685 for (i = 0; i < NALLCOLOURS; i++) {
4686 if (palette[i] != 0) {
4687 rtflen += sprintf(&rtf[rtflen], "\\red%d\\green%d\\blue%d;", defpal[i].rgbtRed, defpal[i].rgbtGreen, defpal[i].rgbtBlue);
4688 }
4689 }
4690 strcpy(&rtf[rtflen], "}");
4691 rtflen ++;
4692 }
4693
4694 /*
4695 * We want to construct a piece of RTF that specifies the
4696 * same Unicode text. To do this we will read back in
4697 * parallel from the Unicode data in `udata' and the
4698 * non-Unicode data in `tdata'. For each character in
4699 * `tdata' which becomes the right thing in `udata' when
4700 * looked up in `unitab', we just copy straight over from
4701 * tdata. For each one that doesn't, we must WCToMB it
4702 * individually and produce a \u escape sequence.
4703 *
4704 * It would probably be more robust to just bite the bullet
4705 * and WCToMB each individual Unicode character one by one,
4706 * then MBToWC each one back to see if it was an accurate
4707 * translation; but that strikes me as a horrifying number
4708 * of Windows API calls so I want to see if this faster way
4709 * will work. If it screws up badly we can always revert to
4710 * the simple and slow way.
4711 */
4712 while (tindex < len2 && uindex < len &&
4713 tdata[tindex] && udata[uindex]) {
4714 if (tindex + 1 < len2 &&
4715 tdata[tindex] == '\r' &&
4716 tdata[tindex+1] == '\n') {
4717 tindex++;
4718 uindex++;
4719 }
4720
4721 /*
4722 * Set text attributes
4723 */
4724 if (attr) {
4725 if (rtfsize < rtflen + 64) {
4726 rtfsize = rtflen + 512;
4727 rtf = sresize(rtf, rtfsize, char);
4728 }
4729
4730 /*
4731 * Determine foreground and background colours
4732 */
4733 fgcolour = ((attr[tindex] & ATTR_FGMASK) >> ATTR_FGSHIFT);
4734 bgcolour = ((attr[tindex] & ATTR_BGMASK) >> ATTR_BGSHIFT);
4735
4736 if (attr[tindex] & ATTR_REVERSE) {
4737 int tmpcolour = fgcolour; /* Swap foreground and background */
4738 fgcolour = bgcolour;
4739 bgcolour = tmpcolour;
4740 }
4741
4742 if (bold_mode == BOLD_COLOURS && (attr[tindex] & ATTR_BOLD)) {
4743 if (fgcolour < 8) /* ANSI colours */
4744 fgcolour += 8;
4745 else if (fgcolour >= 256) /* Default colours */
4746 fgcolour ++;
4747 }
4748
4749 if (attr[tindex] & ATTR_BLINK) {
4750 if (bgcolour < 8) /* ANSI colours */
4751 bgcolour += 8;
4752 else if (bgcolour >= 256) /* Default colours */
4753 bgcolour ++;
4754 }
4755
4756 /*
4757 * Collect other attributes
4758 */
4759 if (bold_mode != BOLD_COLOURS)
4760 attrBold = attr[tindex] & ATTR_BOLD;
4761 else
4762 attrBold = 0;
4763
4764 attrUnder = attr[tindex] & ATTR_UNDER;
4765
4766 /*
4767 * Reverse video
4768 * o If video isn't reversed, ignore colour attributes for default foregound
4769 * or background.
4770 * o Special case where bolded text is displayed using the default foregound
4771 * and background colours - force to bolded RTF.
4772 */
4773 if (!(attr[tindex] & ATTR_REVERSE)) {
4774 if (bgcolour >= 256) /* Default color */
4775 bgcolour = -1; /* No coloring */
4776
4777 if (fgcolour >= 256) { /* Default colour */
4778 if (bold_mode == BOLD_COLOURS && (fgcolour & 1) && bgcolour == -1)
4779 attrBold = ATTR_BOLD; /* Emphasize text with bold attribute */
4780
4781 fgcolour = -1; /* No coloring */
4782 }
4783 }
4784
4785 /*
4786 * Write RTF text attributes
4787 */
4788 if (lastfgcolour != fgcolour) {
4789 lastfgcolour = fgcolour;
4790 rtflen += sprintf(&rtf[rtflen], "\\cf%d ", (fgcolour >= 0) ? palette[fgcolour] : 0);
4791 }
4792
4793 if (lastbgcolour != bgcolour) {
4794 lastbgcolour = bgcolour;
4795 rtflen += sprintf(&rtf[rtflen], "\\highlight%d ", (bgcolour >= 0) ? palette[bgcolour] : 0);
4796 }
4797
4798 if (lastAttrBold != attrBold) {
4799 lastAttrBold = attrBold;
4800 rtflen += sprintf(&rtf[rtflen], "%s", attrBold ? "\\b " : "\\b0 ");
4801 }
4802
4803 if (lastAttrUnder != attrUnder) {
4804 lastAttrUnder = attrUnder;
4805 rtflen += sprintf(&rtf[rtflen], "%s", attrUnder ? "\\ul " : "\\ulnone ");
4806 }
4807 }
4808
4809 if (unitab[tdata[tindex]] == udata[uindex]) {
4810 multilen = 1;
4811 before[0] = '\0';
4812 after[0] = '\0';
4813 blen = alen = 0;
4814 } else {
4815 multilen = WideCharToMultiByte(CP_ACP, 0, unitab+uindex, 1,
4816 NULL, 0, NULL, NULL);
4817 if (multilen != 1) {
4818 blen = sprintf(before, "{\\uc%d\\u%d", multilen,
4819 udata[uindex]);
4820 alen = 1; strcpy(after, "}");
4821 } else {
4822 blen = sprintf(before, "\\u%d", udata[uindex]);
4823 alen = 0; after[0] = '\0';
4824 }
4825 }
4826 assert(tindex + multilen <= len2);
4827 totallen = blen + alen;
4828 for (i = 0; i < multilen; i++) {
4829 if (tdata[tindex+i] == '\\' ||
4830 tdata[tindex+i] == '{' ||
4831 tdata[tindex+i] == '}')
4832 totallen += 2;
4833 else if (tdata[tindex+i] == 0x0D || tdata[tindex+i] == 0x0A)
4834 totallen += 6; /* \par\r\n */
4835 else if (tdata[tindex+i] > 0x7E || tdata[tindex+i] < 0x20)
4836 totallen += 4;
4837 else
4838 totallen++;
4839 }
4840
4841 if (rtfsize < rtflen + totallen + 3) {
4842 rtfsize = rtflen + totallen + 512;
4843 rtf = sresize(rtf, rtfsize, char);
4844 }
4845
4846 strcpy(rtf + rtflen, before); rtflen += blen;
4847 for (i = 0; i < multilen; i++) {
4848 if (tdata[tindex+i] == '\\' ||
4849 tdata[tindex+i] == '{' ||
4850 tdata[tindex+i] == '}') {
4851 rtf[rtflen++] = '\\';
4852 rtf[rtflen++] = tdata[tindex+i];
4853 } else if (tdata[tindex+i] == 0x0D || tdata[tindex+i] == 0x0A) {
4854 rtflen += sprintf(rtf+rtflen, "\\par\r\n");
4855 } else if (tdata[tindex+i] > 0x7E || tdata[tindex+i] < 0x20) {
4856 rtflen += sprintf(rtf+rtflen, "\\'%02x", tdata[tindex+i]);
4857 } else {
4858 rtf[rtflen++] = tdata[tindex+i];
4859 }
4860 }
4861 strcpy(rtf + rtflen, after); rtflen += alen;
4862
4863 tindex += multilen;
4864 uindex++;
4865 }
4866
4867 rtf[rtflen++] = '}'; /* Terminate RTF stream */
4868 rtf[rtflen++] = '\0';
4869 rtf[rtflen++] = '\0';
4870
4871 clipdata3 = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, rtflen);
4872 if (clipdata3 && (lock3 = GlobalLock(clipdata3)) != NULL) {
4873 memcpy(lock3, rtf, rtflen);
4874 GlobalUnlock(clipdata3);
4875 }
4876 sfree(rtf);
4877 } else
4878 clipdata3 = NULL;
4879
4880 GlobalUnlock(clipdata);
4881 GlobalUnlock(clipdata2);
4882
4883 if (!must_deselect)
4884 SendMessage(hwnd, WM_IGNORE_CLIP, TRUE, 0);
4885
4886 if (OpenClipboard(hwnd)) {
4887 EmptyClipboard();
4888 SetClipboardData(CF_UNICODETEXT, clipdata);
4889 SetClipboardData(CF_TEXT, clipdata2);
4890 if (clipdata3)
4891 SetClipboardData(RegisterClipboardFormat(CF_RTF), clipdata3);
4892 CloseClipboard();
4893 } else {
4894 GlobalFree(clipdata);
4895 GlobalFree(clipdata2);
4896 }
4897
4898 if (!must_deselect)
4899 SendMessage(hwnd, WM_IGNORE_CLIP, FALSE, 0);
4900 }
4901
4902 void get_clip(void *frontend, wchar_t ** p, int *len)
4903 {
4904 static HGLOBAL clipdata = NULL;
4905 static wchar_t *converted = 0;
4906 wchar_t *p2;
4907
4908 if (converted) {
4909 sfree(converted);
4910 converted = 0;
4911 }
4912 if (!p) {
4913 if (clipdata)
4914 GlobalUnlock(clipdata);
4915 clipdata = NULL;
4916 return;
4917 } else if (OpenClipboard(NULL)) {
4918 if ((clipdata = GetClipboardData(CF_UNICODETEXT))) {
4919 CloseClipboard();
4920 *p = GlobalLock(clipdata);
4921 if (*p) {
4922 for (p2 = *p; *p2; p2++);
4923 *len = p2 - *p;
4924 return;
4925 }
4926 } else if ( (clipdata = GetClipboardData(CF_TEXT)) ) {
4927 char *s;
4928 int i;
4929 CloseClipboard();
4930 s = GlobalLock(clipdata);
4931 i = MultiByteToWideChar(CP_ACP, 0, s, strlen(s) + 1, 0, 0);
4932 *p = converted = snewn(i, wchar_t);
4933 MultiByteToWideChar(CP_ACP, 0, s, strlen(s) + 1, converted, i);
4934 *len = i - 1;
4935 return;
4936 } else
4937 CloseClipboard();
4938 }
4939
4940 *p = NULL;
4941 *len = 0;
4942 }
4943
4944 #if 0
4945 /*
4946 * Move `lines' lines from position `from' to position `to' in the
4947 * window.
4948 */
4949 void optimised_move(void *frontend, int to, int from, int lines)
4950 {
4951 RECT r;
4952 int min, max;
4953
4954 min = (to < from ? to : from);
4955 max = to + from - min;
4956
4957 r.left = offset_width;
4958 r.right = offset_width + term->cols * font_width;
4959 r.top = offset_height + min * font_height;
4960 r.bottom = offset_height + (max + lines) * font_height;
4961 ScrollWindow(hwnd, 0, (to - from) * font_height, &r, &r);
4962 }
4963 #endif
4964
4965 /*
4966 * Print a message box and perform a fatal exit.
4967 */
4968 void fatalbox(char *fmt, ...)
4969 {
4970 va_list ap;
4971 char *stuff, morestuff[100];
4972
4973 va_start(ap, fmt);
4974 stuff = dupvprintf(fmt, ap);
4975 va_end(ap);
4976 sprintf(morestuff, "%.70s Fatal Error", appname);
4977 MessageBox(hwnd, stuff, morestuff, MB_ICONERROR | MB_OK);
4978 sfree(stuff);
4979 cleanup_exit(1);
4980 }
4981
4982 /*
4983 * Print a modal (Really Bad) message box and perform a fatal exit.
4984 */
4985 void modalfatalbox(char *fmt, ...)
4986 {
4987 va_list ap;
4988 char *stuff, morestuff[100];
4989
4990 va_start(ap, fmt);
4991 stuff = dupvprintf(fmt, ap);
4992 va_end(ap);
4993 sprintf(morestuff, "%.70s Fatal Error", appname);
4994 MessageBox(hwnd, stuff, morestuff,
4995 MB_SYSTEMMODAL | MB_ICONERROR | MB_OK);
4996 sfree(stuff);
4997 cleanup_exit(1);
4998 }
4999
5000 static void flash_window(int mode);
5001 static long next_flash;
5002 static int flashing = 0;
5003
5004 static void flash_window_timer(void *ctx, long now)
5005 {
5006 if (flashing && now - next_flash >= 0) {
5007 flash_window(1);
5008 }
5009 }
5010
5011 /*
5012 * Manage window caption / taskbar flashing, if enabled.
5013 * 0 = stop, 1 = maintain, 2 = start
5014 */
5015 static void flash_window(int mode)
5016 {
5017 if ((mode == 0) || (cfg.beep_ind == B_IND_DISABLED)) {
5018 /* stop */
5019 if (flashing) {
5020 FlashWindow(hwnd, FALSE);
5021 flashing = 0;
5022 }
5023
5024 } else if (mode == 2) {
5025 /* start */
5026 if (!flashing) {
5027 flashing = 1;
5028 FlashWindow(hwnd, TRUE);
5029 next_flash = schedule_timer(450, flash_window_timer, hwnd);
5030 }
5031
5032 } else if ((mode == 1) && (cfg.beep_ind == B_IND_FLASH)) {
5033 /* maintain */
5034 if (flashing) {
5035 FlashWindow(hwnd, TRUE); /* toggle */
5036 next_flash = schedule_timer(450, flash_window_timer, hwnd);
5037 }
5038 }
5039 }
5040
5041 /*
5042 * Beep.
5043 */
5044 void do_beep(void *frontend, int mode)
5045 {
5046 if (mode == BELL_DEFAULT) {
5047 /*
5048 * For MessageBeep style bells, we want to be careful of
5049 * timing, because they don't have the nice property of
5050 * PlaySound bells that each one cancels the previous
5051 * active one. So we limit the rate to one per 50ms or so.
5052 */
5053 static long lastbeep = 0;
5054 long beepdiff;
5055
5056 beepdiff = GetTickCount() - lastbeep;
5057 if (beepdiff >= 0 && beepdiff < 50)
5058 return;
5059 MessageBeep(MB_OK);
5060 /*
5061 * The above MessageBeep call takes time, so we record the
5062 * time _after_ it finishes rather than before it starts.
5063 */
5064 lastbeep = GetTickCount();
5065 } else if (mode == BELL_WAVEFILE) {
5066 if (!PlaySound(cfg.bell_wavefile.path, NULL,
5067 SND_ASYNC | SND_FILENAME)) {
5068 char buf[sizeof(cfg.bell_wavefile.path) + 80];
5069 char otherbuf[100];
5070 sprintf(buf, "Unable to play sound file\n%s\n"
5071 "Using default sound instead", cfg.bell_wavefile.path);
5072 sprintf(otherbuf, "%.70s Sound Error", appname);
5073 MessageBox(hwnd, buf, otherbuf,
5074 MB_OK | MB_ICONEXCLAMATION);
5075 cfg.beep = BELL_DEFAULT;
5076 }
5077 } else if (mode == BELL_PCSPEAKER) {
5078 static long lastbeep = 0;
5079 long beepdiff;
5080
5081 beepdiff = GetTickCount() - lastbeep;
5082 if (beepdiff >= 0 && beepdiff < 50)
5083 return;
5084
5085 /*
5086 * We must beep in different ways depending on whether this
5087 * is a 95-series or NT-series OS.
5088 */
5089 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_NT)
5090 Beep(800, 100);
5091 else
5092 MessageBeep(-1);
5093 lastbeep = GetTickCount();
5094 }
5095 /* Otherwise, either visual bell or disabled; do nothing here */
5096 if (!term->has_focus) {
5097 flash_window(2); /* start */
5098 }
5099 }
5100
5101 /*
5102 * Minimise or restore the window in response to a server-side
5103 * request.
5104 */
5105 void set_iconic(void *frontend, int iconic)
5106 {
5107 if (IsIconic(hwnd)) {
5108 if (!iconic)
5109 ShowWindow(hwnd, SW_RESTORE);
5110 } else {
5111 if (iconic)
5112 ShowWindow(hwnd, SW_MINIMIZE);
5113 }
5114 }
5115
5116 /*
5117 * Move the window in response to a server-side request.
5118 */
5119 void move_window(void *frontend, int x, int y)
5120 {
5121 if (cfg.resize_action == RESIZE_DISABLED ||
5122 cfg.resize_action == RESIZE_FONT ||
5123 IsZoomed(hwnd))
5124 return;
5125
5126 SetWindowPos(hwnd, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
5127 }
5128
5129 /*
5130 * Move the window to the top or bottom of the z-order in response
5131 * to a server-side request.
5132 */
5133 void set_zorder(void *frontend, int top)
5134 {
5135 if (cfg.alwaysontop)
5136 return; /* ignore */
5137 SetWindowPos(hwnd, top ? HWND_TOP : HWND_BOTTOM, 0, 0, 0, 0,
5138 SWP_NOMOVE | SWP_NOSIZE);
5139 }
5140
5141 /*
5142 * Refresh the window in response to a server-side request.
5143 */
5144 void refresh_window(void *frontend)
5145 {
5146 InvalidateRect(hwnd, NULL, TRUE);
5147 }
5148
5149 /*
5150 * Maximise or restore the window in response to a server-side
5151 * request.
5152 */
5153 void set_zoomed(void *frontend, int zoomed)
5154 {
5155 if (IsZoomed(hwnd)) {
5156 if (!zoomed)
5157 ShowWindow(hwnd, SW_RESTORE);
5158 } else {
5159 if (zoomed)
5160 ShowWindow(hwnd, SW_MAXIMIZE);
5161 }
5162 }
5163
5164 /*
5165 * Report whether the window is iconic, for terminal reports.
5166 */
5167 int is_iconic(void *frontend)
5168 {
5169 return IsIconic(hwnd);
5170 }
5171
5172 /*
5173 * Report the window's position, for terminal reports.
5174 */
5175 void get_window_pos(void *frontend, int *x, int *y)
5176 {
5177 RECT r;
5178 GetWindowRect(hwnd, &r);
5179 *x = r.left;
5180 *y = r.top;
5181 }
5182
5183 /*
5184 * Report the window's pixel size, for terminal reports.
5185 */
5186 void get_window_pixels(void *frontend, int *x, int *y)
5187 {
5188 RECT r;
5189 GetWindowRect(hwnd, &r);
5190 *x = r.right - r.left;
5191 *y = r.bottom - r.top;
5192 }
5193
5194 /*
5195 * Return the window or icon title.
5196 */
5197 char *get_window_title(void *frontend, int icon)
5198 {
5199 return icon ? icon_name : window_name;
5200 }
5201
5202 /*
5203 * See if we're in full-screen mode.
5204 */
5205 static int is_full_screen()
5206 {
5207 if (!IsZoomed(hwnd))
5208 return FALSE;
5209 if (GetWindowLongPtr(hwnd, GWL_STYLE) & WS_CAPTION)
5210 return FALSE;
5211 return TRUE;
5212 }
5213
5214 /* Get the rect/size of a full screen window using the nearest available
5215 * monitor in multimon systems; default to something sensible if only
5216 * one monitor is present. */
5217 static int get_fullscreen_rect(RECT * ss)
5218 {
5219 #if defined(MONITOR_DEFAULTTONEAREST) && !defined(NO_MULTIMON)
5220 HMONITOR mon;
5221 MONITORINFO mi;
5222 mon = MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
5223 mi.cbSize = sizeof(mi);
5224 GetMonitorInfo(mon, &mi);
5225
5226 /* structure copy */
5227 *ss = mi.rcMonitor;
5228 return TRUE;
5229 #else
5230 /* could also use code like this:
5231 ss->left = ss->top = 0;
5232 ss->right = GetSystemMetrics(SM_CXSCREEN);
5233 ss->bottom = GetSystemMetrics(SM_CYSCREEN);
5234 */
5235 return GetClientRect(GetDesktopWindow(), ss);
5236 #endif
5237 }
5238
5239
5240 /*
5241 * Go full-screen. This should only be called when we are already
5242 * maximised.
5243 */
5244 static void make_full_screen()
5245 {
5246 DWORD style;
5247 RECT ss;
5248
5249 assert(IsZoomed(hwnd));
5250
5251 if (is_full_screen())
5252 return;
5253
5254 /* Remove the window furniture. */
5255 style = GetWindowLongPtr(hwnd, GWL_STYLE);
5256 style &= ~(WS_CAPTION | WS_BORDER | WS_THICKFRAME);
5257 if (cfg.scrollbar_in_fullscreen)
5258 style |= WS_VSCROLL;
5259 else
5260 style &= ~WS_VSCROLL;
5261 SetWindowLongPtr(hwnd, GWL_STYLE, style);
5262
5263 /* Resize ourselves to exactly cover the nearest monitor. */
5264 get_fullscreen_rect(&ss);
5265 SetWindowPos(hwnd, HWND_TOP, ss.left, ss.top,
5266 ss.right - ss.left,
5267 ss.bottom - ss.top,
5268 SWP_FRAMECHANGED);
5269
5270 /* We may have changed size as a result */
5271
5272 reset_window(0);
5273
5274 /* Tick the menu item in the System menu. */
5275 CheckMenuItem(GetSystemMenu(hwnd, FALSE), IDM_FULLSCREEN,
5276 MF_CHECKED);
5277 }
5278
5279 /*
5280 * Clear the full-screen attributes.
5281 */
5282 static void clear_full_screen()
5283 {
5284 DWORD oldstyle, style;
5285
5286 /* Reinstate the window furniture. */
5287 style = oldstyle = GetWindowLongPtr(hwnd, GWL_STYLE);
5288 style |= WS_CAPTION | WS_BORDER;
5289 if (cfg.resize_action == RESIZE_DISABLED)
5290 style &= ~WS_THICKFRAME;
5291 else
5292 style |= WS_THICKFRAME;
5293 if (cfg.scrollbar)
5294 style |= WS_VSCROLL;
5295 else
5296 style &= ~WS_VSCROLL;
5297 if (style != oldstyle) {
5298 SetWindowLongPtr(hwnd, GWL_STYLE, style);
5299 SetWindowPos(hwnd, NULL, 0, 0, 0, 0,
5300 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
5301 SWP_FRAMECHANGED);
5302 }
5303
5304 /* Untick the menu item in the System menu. */
5305 CheckMenuItem(GetSystemMenu(hwnd, FALSE), IDM_FULLSCREEN,
5306 MF_UNCHECKED);
5307 }
5308
5309 /*
5310 * Toggle full-screen mode.
5311 */
5312 static void flip_full_screen()
5313 {
5314 if (is_full_screen()) {
5315 ShowWindow(hwnd, SW_RESTORE);
5316 } else if (IsZoomed(hwnd)) {
5317 make_full_screen();
5318 } else {
5319 SendMessage(hwnd, WM_FULLSCR_ON_MAX, 0, 0);
5320 ShowWindow(hwnd, SW_MAXIMIZE);
5321 }
5322 }
5323
5324 void frontend_keypress(void *handle)
5325 {
5326 /*
5327 * Keypress termination in non-Close-On-Exit mode is not
5328 * currently supported in PuTTY proper, because the window
5329 * always has a perfectly good Close button anyway. So we do
5330 * nothing here.
5331 */
5332 return;
5333 }
5334
5335 int from_backend(void *frontend, int is_stderr, const char *data, int len)
5336 {
5337 return term_data(term, is_stderr, data, len);
5338 }
5339
5340 int from_backend_untrusted(void *frontend, const char *data, int len)
5341 {
5342 return term_data_untrusted(term, data, len);
5343 }
5344
5345 int get_userpass_input(prompts_t *p, unsigned char *in, int inlen)
5346 {
5347 int ret;
5348 ret = cmdline_get_passwd_input(p, in, inlen);
5349 if (ret == -1)
5350 ret = term_get_userpass_input(term, p, in, inlen);
5351 return ret;
5352 }
5353
5354 void agent_schedule_callback(void (*callback)(void *, void *, int),
5355 void *callback_ctx, void *data, int len)
5356 {
5357 struct agent_callback *c = snew(struct agent_callback);
5358 c->callback = callback;
5359 c->callback_ctx = callback_ctx;
5360 c->data = data;
5361 c->len = len;
5362 PostMessage(hwnd, WM_AGENT_CALLBACK, 0, (LPARAM)c);
5363 }