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