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