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