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