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