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