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