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