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