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