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