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