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