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