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