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