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