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