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