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