In get_sesslist(), when freeing, set freed members to NULL on general
[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{
b7625258 1217#ifdef __LCC__
1218 /*
1219 * The LCC include files apparently don't supply the
1220 * GCP_RESULTSW type, but we can make do with GCP_RESULTS
1221 * proper: the differences aren't important to us (the only
1222 * variable-width string parameter is one we don't use anyway).
1223 */
1224 GCP_RESULTS gcpr;
1225#else
f0fccd51 1226 GCP_RESULTSW gcpr;
b7625258 1227#endif
f0fccd51 1228 char *buffer = snewn(cbCount*2+2, char);
1229 char *classbuffer = snewn(cbCount, char);
1230 memset(&gcpr, 0, sizeof(gcpr));
1231 memset(buffer, 0, cbCount*2+2);
1232 memset(classbuffer, GCPCLASS_NEUTRAL, cbCount);
1233
1234 gcpr.lStructSize = sizeof(gcpr);
1235 gcpr.lpGlyphs = (void *)buffer;
1236 gcpr.lpClass = classbuffer;
1237 gcpr.nGlyphs = cbCount;
1238
1239 GetCharacterPlacementW(hdc, lpString, cbCount, 0, &gcpr,
c6958dfe 1240 FLI_MASK | GCP_CLASSIN | GCP_DIACRITIC);
f0fccd51 1241
c6958dfe 1242 ExtTextOut(hdc, x, y,
1243 ETO_GLYPH_INDEX | ETO_CLIPPED | (opaque ? ETO_OPAQUE : 0),
1244 lprc, buffer, cbCount, lpDx);
f0fccd51 1245}
1246
1247/*
4eeb7d09 1248 * Initialise all the fonts we will need initially. There may be as many as
1249 * three or as few as one. The other (poentially) twentyone fonts are done
1250 * if/when they are needed.
1251 *
1252 * We also:
374330e2 1253 *
1254 * - check the font width and height, correcting our guesses if
1255 * necessary.
1256 *
1257 * - verify that the bold font is the same width as the ordinary
1258 * one, and engage shadow bolding if not.
1259 *
1260 * - verify that the underlined font is the same width as the
1261 * ordinary one (manual underlining by means of line drawing can
1262 * be done in a pinch).
374330e2 1263 */
5a73255e 1264static void init_fonts(int pick_width, int pick_height)
32874aea 1265{
374330e2 1266 TEXTMETRIC tm;
4eeb7d09 1267 CPINFO cpinfo;
1268 int fontsize[3];
97fc891e 1269 int i;
374330e2 1270 HDC hdc;
1271 int fw_dontcare, fw_bold;
1272
4eeb7d09 1273 for (i = 0; i < FONT_MAXNO; i++)
374330e2 1274 fonts[i] = NULL;
1275
5a73255e 1276 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
1277 und_mode = UND_FONT;
1278
9a30e26b 1279 if (cfg.font.isbold) {
374330e2 1280 fw_dontcare = FW_BOLD;
5b80d07f 1281 fw_bold = FW_HEAVY;
32874aea 1282 } else {
374330e2 1283 fw_dontcare = FW_DONTCARE;
1284 fw_bold = FW_BOLD;
1285 }
1286
97fc891e 1287 hdc = GetDC(hwnd);
1288
5a73255e 1289 if (pick_height)
1290 font_height = pick_height;
1291 else {
9a30e26b 1292 font_height = cfg.font.height;
5a73255e 1293 if (font_height > 0) {
1294 font_height =
1295 -MulDiv(font_height, GetDeviceCaps(hdc, LOGPIXELSY), 72);
1296 }
3b2c664e 1297 }
59ad2c03 1298 font_width = pick_width;
97fc891e 1299
374330e2 1300#define f(i,c,w,u) \
97fc891e 1301 fonts[i] = CreateFont (font_height, font_width, 0, 0, w, FALSE, u, FALSE, \
374330e2 1302 c, OUT_DEFAULT_PRECIS, \
1303 CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, \
9a30e26b 1304 FIXED_PITCH | FF_DONTCARE, cfg.font.name)
97fc891e 1305
9a30e26b 1306 f(FONT_NORMAL, cfg.font.charset, fw_dontcare, FALSE);
97fc891e 1307
4eeb7d09 1308 SelectObject(hdc, fonts[FONT_NORMAL]);
1309 GetTextMetrics(hdc, &tm);
5a73255e 1310
fd64bb27 1311 GetObject(fonts[FONT_NORMAL], sizeof(LOGFONT), &lfont);
1312
5a73255e 1313 if (pick_width == 0 || pick_height == 0) {
1314 font_height = tm.tmHeight;
1315 font_width = tm.tmAveCharWidth;
1316 }
1317 font_dualwidth = (tm.tmAveCharWidth != tm.tmMaxCharWidth);
1318
1319#ifdef RDB_DEBUG_PATCH
1320 debug(23, "Primary font H=%d, AW=%d, MW=%d",
1321 tm.tmHeight, tm.tmAveCharWidth, tm.tmMaxCharWidth);
1322#endif
97fc891e 1323
4eeb7d09 1324 {
1325 CHARSETINFO info;
1326 DWORD cset = tm.tmCharSet;
1327 memset(&info, 0xFF, sizeof(info));
97fc891e 1328
4eeb7d09 1329 /* !!! Yes the next line is right */
1330 if (cset == OEM_CHARSET)
21d2b241 1331 ucsdata.font_codepage = GetOEMCP();
4eeb7d09 1332 else
21d2b241 1333 if (TranslateCharsetInfo ((DWORD *) cset, &info, TCI_SRCCHARSET))
1334 ucsdata.font_codepage = info.ciACP;
4eeb7d09 1335 else
21d2b241 1336 ucsdata.font_codepage = -1;
32874aea 1337
21d2b241 1338 GetCPInfo(ucsdata.font_codepage, &cpinfo);
1339 ucsdata.dbcs_screenfont = (cpinfo.MaxCharSize > 1);
4eeb7d09 1340 }
97fc891e 1341
9a30e26b 1342 f(FONT_UNDERLINE, cfg.font.charset, fw_dontcare, TRUE);
97fc891e 1343
4eeb7d09 1344 /*
1345 * Some fonts, e.g. 9-pt Courier, draw their underlines
1346 * outside their character cell. We successfully prevent
1347 * screen corruption by clipping the text output, but then
1348 * we lose the underline completely. Here we try to work
1349 * out whether this is such a font, and if it is, we set a
1350 * flag that causes underlines to be drawn by hand.
1351 *
1352 * Having tried other more sophisticated approaches (such
1353 * as examining the TEXTMETRIC structure or requesting the
1354 * height of a string), I think we'll do this the brute
1355 * force way: we create a small bitmap, draw an underlined
1356 * space on it, and test to see whether any pixels are
1357 * foreground-coloured. (Since we expect the underline to
1358 * go all the way across the character cell, we only search
1359 * down a single column of the bitmap, half way across.)
1360 */
1361 {
1362 HDC und_dc;
1363 HBITMAP und_bm, und_oldbm;
1364 int i, gotit;
1365 COLORREF c;
1366
1367 und_dc = CreateCompatibleDC(hdc);
1368 und_bm = CreateCompatibleBitmap(hdc, font_width, font_height);
1369 und_oldbm = SelectObject(und_dc, und_bm);
1370 SelectObject(und_dc, fonts[FONT_UNDERLINE]);
1371 SetTextAlign(und_dc, TA_TOP | TA_LEFT | TA_NOUPDATECP);
1372 SetTextColor(und_dc, RGB(255, 255, 255));
1373 SetBkColor(und_dc, RGB(0, 0, 0));
1374 SetBkMode(und_dc, OPAQUE);
1375 ExtTextOut(und_dc, 0, 0, ETO_OPAQUE, NULL, " ", 1, NULL);
1376 gotit = FALSE;
1377 for (i = 0; i < font_height; i++) {
1378 c = GetPixel(und_dc, font_width / 2, i);
1379 if (c != RGB(0, 0, 0))
1380 gotit = TRUE;
1381 }
1382 SelectObject(und_dc, und_oldbm);
1383 DeleteObject(und_bm);
1384 DeleteDC(und_dc);
1385 if (!gotit) {
1386 und_mode = UND_LINE;
1387 DeleteObject(fonts[FONT_UNDERLINE]);
1388 fonts[FONT_UNDERLINE] = 0;
32874aea 1389 }
4eeb7d09 1390 }
97fc891e 1391
4eeb7d09 1392 if (bold_mode == BOLD_FONT) {
9a30e26b 1393 f(FONT_BOLD, cfg.font.charset, fw_bold, FALSE);
374330e2 1394 }
1395#undef f
1396
97fc891e 1397 descent = tm.tmAscent + 1;
1398 if (descent >= font_height)
1399 descent = font_height - 1;
374330e2 1400
4eeb7d09 1401 for (i = 0; i < 3; i++) {
97fc891e 1402 if (fonts[i]) {
32874aea 1403 if (SelectObject(hdc, fonts[i]) && GetTextMetrics(hdc, &tm))
4eeb7d09 1404 fontsize[i] = tm.tmAveCharWidth + 256 * tm.tmHeight;
32874aea 1405 else
4eeb7d09 1406 fontsize[i] = -i;
32874aea 1407 } else
4eeb7d09 1408 fontsize[i] = -i;
374330e2 1409 }
1410
32874aea 1411 ReleaseDC(hwnd, hdc);
374330e2 1412
4eeb7d09 1413 if (fontsize[FONT_UNDERLINE] != fontsize[FONT_NORMAL]) {
374330e2 1414 und_mode = UND_LINE;
32874aea 1415 DeleteObject(fonts[FONT_UNDERLINE]);
4eeb7d09 1416 fonts[FONT_UNDERLINE] = 0;
374330e2 1417 }
1418
4eeb7d09 1419 if (bold_mode == BOLD_FONT &&
1420 fontsize[FONT_BOLD] != fontsize[FONT_NORMAL]) {
374330e2 1421 bold_mode = BOLD_SHADOW;
32874aea 1422 DeleteObject(fonts[FONT_BOLD]);
4eeb7d09 1423 fonts[FONT_BOLD] = 0;
374330e2 1424 }
4eeb7d09 1425 fontflag[0] = fontflag[1] = fontflag[2] = 1;
1426
21d2b241 1427 init_ucs(&cfg, &ucsdata);
4eeb7d09 1428}
1429
1430static void another_font(int fontno)
1431{
1432 int basefont;
1433 int fw_dontcare, fw_bold;
1434 int c, u, w, x;
1435 char *s;
1436
1437 if (fontno < 0 || fontno >= FONT_MAXNO || fontflag[fontno])
1438 return;
1439
1440 basefont = (fontno & ~(FONT_BOLDUND));
1441 if (basefont != fontno && !fontflag[basefont])
1442 another_font(basefont);
97fc891e 1443
9a30e26b 1444 if (cfg.font.isbold) {
4eeb7d09 1445 fw_dontcare = FW_BOLD;
1446 fw_bold = FW_HEAVY;
1447 } else {
1448 fw_dontcare = FW_DONTCARE;
1449 fw_bold = FW_BOLD;
1450 }
1451
9a30e26b 1452 c = cfg.font.charset;
4eeb7d09 1453 w = fw_dontcare;
1454 u = FALSE;
9a30e26b 1455 s = cfg.font.name;
4eeb7d09 1456 x = font_width;
1457
1458 if (fontno & FONT_WIDE)
1459 x *= 2;
1460 if (fontno & FONT_NARROW)
5a73255e 1461 x = (x+1)/2;
4eeb7d09 1462 if (fontno & FONT_OEM)
1463 c = OEM_CHARSET;
1464 if (fontno & FONT_BOLD)
1465 w = fw_bold;
1466 if (fontno & FONT_UNDERLINE)
1467 u = TRUE;
1468
1469 fonts[fontno] =
1470 CreateFont(font_height * (1 + !!(fontno & FONT_HIGH)), x, 0, 0, w,
1471 FALSE, u, FALSE, c, OUT_DEFAULT_PRECIS,
1472 CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY,
1473 FIXED_PITCH | FF_DONTCARE, s);
1474
1475 fontflag[fontno] = 1;
1476}
1477
1478static void deinit_fonts(void)
1479{
1480 int i;
1481 for (i = 0; i < FONT_MAXNO; i++) {
1482 if (fonts[i])
1483 DeleteObject(fonts[i]);
1484 fonts[i] = 0;
1485 fontflag[i] = 0;
374330e2 1486 }
1487}
1488
a8327734 1489void request_resize(void *frontend, int w, int h)
32874aea 1490{
59ad2c03 1491 int width, height;
c9def1b8 1492
1493 /* If the window is maximized supress resizing attempts */
5a73255e 1494 if (IsZoomed(hwnd)) {
0ed2f48e 1495 if (cfg.resize_action == RESIZE_TERM)
5a73255e 1496 return;
1497 }
32874aea 1498
ad5c93cc 1499 if (cfg.resize_action == RESIZE_DISABLED) return;
887035a5 1500 if (h == term->rows && w == term->cols) return;
5a73255e 1501
1502 /* Sanity checks ... */
1503 {
32874aea 1504 static int first_time = 1;
1505 static RECT ss;
1506
1507 switch (first_time) {
1508 case 1:
1509 /* Get the size of the screen */
d0f1bcb4 1510 if (get_fullscreen_rect(&ss))
32874aea 1511 /* first_time = 0 */ ;
1512 else {
1513 first_time = 2;
1514 break;
1515 }
1516 case 0:
1517 /* Make sure the values are sane */
5a73255e 1518 width = (ss.right - ss.left - extra_width) / 4;
1519 height = (ss.bottom - ss.top - extra_height) / 6;
32874aea 1520
5a73255e 1521 if (w > width || h > height)
1522 return;
32874aea 1523 if (w < 15)
1524 w = 15;
1525 if (h < 1)
5a73255e 1526 h = 1;
32874aea 1527 }
c9def1b8 1528 }
59ad2c03 1529
887035a5 1530 term_size(term, h, w, cfg.savelines);
5a73255e 1531
0ed2f48e 1532 if (cfg.resize_action != RESIZE_FONT && !IsZoomed(hwnd)) {
5a73255e 1533 width = extra_width + font_width * w;
1534 height = extra_height + font_height * h;
374330e2 1535
5a73255e 1536 SetWindowPos(hwnd, NULL, 0, 0, width, height,
1537 SWP_NOACTIVATE | SWP_NOCOPYBITS |
1538 SWP_NOMOVE | SWP_NOZORDER);
1539 } else
1540 reset_window(0);
1541
1542 InvalidateRect(hwnd, NULL, TRUE);
1543}
1544
1545static void reset_window(int reinit) {
1546 /*
1547 * This function decides how to resize or redraw when the
1548 * user changes something.
1549 *
1550 * This function doesn't like to change the terminal size but if the
1551 * font size is locked that may be it's only soluion.
1552 */
1553 int win_width, win_height;
1554 RECT cr, wr;
1555
1556#ifdef RDB_DEBUG_PATCH
1557 debug((27, "reset_window()"));
1558#endif
1559
1560 /* Current window sizes ... */
1561 GetWindowRect(hwnd, &wr);
1562 GetClientRect(hwnd, &cr);
1563
1564 win_width = cr.right - cr.left;
1565 win_height = cr.bottom - cr.top;
1566
0ed2f48e 1567 if (cfg.resize_action == RESIZE_DISABLED) reinit = 2;
1568
5a73255e 1569 /* Are we being forced to reload the fonts ? */
1570 if (reinit>1) {
1571#ifdef RDB_DEBUG_PATCH
1572 debug((27, "reset_window() -- Forced deinit"));
1573#endif
1574 deinit_fonts();
1575 init_fonts(0,0);
1576 }
1577
1578 /* Oh, looks like we're minimised */
1579 if (win_width == 0 || win_height == 0)
1580 return;
1581
1582 /* Is the window out of position ? */
1583 if ( !reinit &&
887035a5 1584 (offset_width != (win_width-font_width*term->cols)/2 ||
1585 offset_height != (win_height-font_height*term->rows)/2) ){
1586 offset_width = (win_width-font_width*term->cols)/2;
1587 offset_height = (win_height-font_height*term->rows)/2;
5a73255e 1588 InvalidateRect(hwnd, NULL, TRUE);
1589#ifdef RDB_DEBUG_PATCH
1590 debug((27, "reset_window() -> Reposition terminal"));
1591#endif
1592 }
1593
6003660f 1594 if (IsZoomed(hwnd)) {
5a73255e 1595 /* We're fullscreen, this means we must not change the size of
1596 * the window so it's the font size or the terminal itself.
1597 */
1598
1599 extra_width = wr.right - wr.left - cr.right + cr.left;
1600 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
1601
0ed2f48e 1602 if (cfg.resize_action != RESIZE_TERM) {
887035a5 1603 if ( font_width != win_width/term->cols ||
1604 font_height != win_height/term->rows) {
5a73255e 1605 deinit_fonts();
887035a5 1606 init_fonts(win_width/term->cols, win_height/term->rows);
1607 offset_width = (win_width-font_width*term->cols)/2;
1608 offset_height = (win_height-font_height*term->rows)/2;
5a73255e 1609 InvalidateRect(hwnd, NULL, TRUE);
1610#ifdef RDB_DEBUG_PATCH
1611 debug((25, "reset_window() -> Z font resize to (%d, %d)",
1612 font_width, font_height));
1613#endif
1614 }
1615 } else {
887035a5 1616 if ( font_width != win_width/term->cols ||
1617 font_height != win_height/term->rows) {
5a73255e 1618 /* Our only choice at this point is to change the
1619 * size of the terminal; Oh well.
1620 */
887035a5 1621 term_size(term, win_height/font_height, win_width/font_width,
1622 cfg.savelines);
1623 offset_width = (win_width-font_width*term->cols)/2;
1624 offset_height = (win_height-font_height*term->rows)/2;
5a73255e 1625 InvalidateRect(hwnd, NULL, TRUE);
1626#ifdef RDB_DEBUG_PATCH
1627 debug((27, "reset_window() -> Zoomed term_size"));
1628#endif
1629 }
1630 }
1631 return;
1632 }
1633
1634 /* Hmm, a force re-init means we should ignore the current window
1635 * so we resize to the default font size.
1636 */
1637 if (reinit>0) {
1638#ifdef RDB_DEBUG_PATCH
1639 debug((27, "reset_window() -> Forced re-init"));
1640#endif
1641
1642 offset_width = offset_height = cfg.window_border;
1643 extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
1644 extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
1645
887035a5 1646 if (win_width != font_width*term->cols + offset_width*2 ||
1647 win_height != font_height*term->rows + offset_height*2) {
5a73255e 1648
1649 /* If this is too large windows will resize it to the maximum
1650 * allowed window size, we will then be back in here and resize
1651 * the font or terminal to fit.
1652 */
1653 SetWindowPos(hwnd, NULL, 0, 0,
887035a5 1654 font_width*term->cols + extra_width,
1655 font_height*term->rows + extra_height,
5a73255e 1656 SWP_NOMOVE | SWP_NOZORDER);
1657 }
0ed2f48e 1658
1659 InvalidateRect(hwnd, NULL, TRUE);
5a73255e 1660 return;
1661 }
1662
1663 /* Okay the user doesn't want us to change the font so we try the
1664 * window. But that may be too big for the screen which forces us
1665 * to change the terminal.
1666 */
0ed2f48e 1667 if ((cfg.resize_action == RESIZE_TERM && reinit<=0) ||
1668 (cfg.resize_action == RESIZE_EITHER && reinit<0) ||
1669 reinit>0) {
5a73255e 1670 offset_width = offset_height = cfg.window_border;
1671 extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
1672 extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
1673
887035a5 1674 if (win_width != font_width*term->cols + offset_width*2 ||
1675 win_height != font_height*term->rows + offset_height*2) {
5a73255e 1676
1677 static RECT ss;
1678 int width, height;
d0f1bcb4 1679
1680 get_fullscreen_rect(&ss);
5a73255e 1681
5a73255e 1682 width = (ss.right - ss.left - extra_width) / font_width;
1683 height = (ss.bottom - ss.top - extra_height) / font_height;
1684
1685 /* Grrr too big */
887035a5 1686 if ( term->rows > height || term->cols > width ) {
0ed2f48e 1687 if (cfg.resize_action == RESIZE_EITHER) {
1688 /* Make the font the biggest we can */
887035a5 1689 if (term->cols > width)
1690 font_width = (ss.right - ss.left - extra_width)
1691 / term->cols;
1692 if (term->rows > height)
1693 font_height = (ss.bottom - ss.top - extra_height)
1694 / term->rows;
0ed2f48e 1695
1696 deinit_fonts();
1697 init_fonts(font_width, font_height);
1698
1699 width = (ss.right - ss.left - extra_width) / font_width;
1700 height = (ss.bottom - ss.top - extra_height) / font_height;
1701 } else {
887035a5 1702 if ( height > term->rows ) height = term->rows;
1703 if ( width > term->cols ) width = term->cols;
1704 term_size(term, height, width, cfg.savelines);
5a73255e 1705#ifdef RDB_DEBUG_PATCH
0ed2f48e 1706 debug((27, "reset_window() -> term resize to (%d,%d)",
1707 height, width));
5a73255e 1708#endif
0ed2f48e 1709 }
5a73255e 1710 }
1711
1712 SetWindowPos(hwnd, NULL, 0, 0,
887035a5 1713 font_width*term->cols + extra_width,
1714 font_height*term->rows + extra_height,
5a73255e 1715 SWP_NOMOVE | SWP_NOZORDER);
1716
1717 InvalidateRect(hwnd, NULL, TRUE);
1718#ifdef RDB_DEBUG_PATCH
1719 debug((27, "reset_window() -> window resize to (%d,%d)",
887035a5 1720 font_width*term->cols + extra_width,
1721 font_height*term->rows + extra_height));
5a73255e 1722#endif
1723 }
1724 return;
1725 }
1726
1727 /* We're allowed to or must change the font but do we want to ? */
1728
887035a5 1729 if (font_width != (win_width-cfg.window_border*2)/term->cols ||
1730 font_height != (win_height-cfg.window_border*2)/term->rows) {
5a73255e 1731
1732 deinit_fonts();
887035a5 1733 init_fonts((win_width-cfg.window_border*2)/term->cols,
1734 (win_height-cfg.window_border*2)/term->rows);
1735 offset_width = (win_width-font_width*term->cols)/2;
1736 offset_height = (win_height-font_height*term->rows)/2;
5a73255e 1737
1738 extra_width = wr.right - wr.left - cr.right + cr.left +offset_width*2;
1739 extra_height = wr.bottom - wr.top - cr.bottom + cr.top+offset_height*2;
1740
1741 InvalidateRect(hwnd, NULL, TRUE);
1742#ifdef RDB_DEBUG_PATCH
1743 debug((25, "reset_window() -> font resize to (%d,%d)",
1744 font_width, font_height));
1745#endif
1746 }
374330e2 1747}
1748
a5ce2e9f 1749static void set_input_locale(HKL kl)
1750{
1751 char lbuf[20];
1752
1753 GetLocaleInfo(LOWORD(kl), LOCALE_IDEFAULTANSICODEPAGE,
1754 lbuf, sizeof(lbuf));
1755
1756 kbd_codepage = atoi(lbuf);
1757}
1758
6908fed7 1759static void click(Mouse_Button b, int x, int y, int shift, int ctrl, int alt)
32874aea 1760{
fdedf2c8 1761 int thistime = GetMessageTime();
1762
b90840c3 1763 if (send_raw_mouse && !(cfg.mouse_override && shift)) {
1764 lastbtn = MBT_NOTHING;
fc5b0934 1765 term_mouse(term, b, translate_button(b), MA_CLICK,
1766 x, y, shift, ctrl, alt);
01c034ad 1767 return;
1768 }
1769
fdedf2c8 1770 if (lastbtn == b && thistime - lasttime < dbltime) {
374330e2 1771 lastact = (lastact == MA_CLICK ? MA_2CLK :
1772 lastact == MA_2CLK ? MA_3CLK :
1773 lastact == MA_3CLK ? MA_CLICK : MA_NOTHING);
1774 } else {
1775 lastbtn = b;
1776 lastact = MA_CLICK;
1777 }
1778 if (lastact != MA_NOTHING)
fc5b0934 1779 term_mouse(term, b, translate_button(b), lastact,
1780 x, y, shift, ctrl, alt);
fdedf2c8 1781 lasttime = thistime;
374330e2 1782}
1783
01c034ad 1784/*
1785 * Translate a raw mouse button designation (LEFT, MIDDLE, RIGHT)
1786 * into a cooked one (SELECT, EXTEND, PASTE).
1787 */
2c02ed02 1788static Mouse_Button translate_button(Mouse_Button button)
32874aea 1789{
01c034ad 1790 if (button == MBT_LEFT)
1791 return MBT_SELECT;
1792 if (button == MBT_MIDDLE)
ebc0310d 1793 return cfg.mouse_is_xterm == 1 ? MBT_PASTE : MBT_EXTEND;
01c034ad 1794 if (button == MBT_RIGHT)
ebc0310d 1795 return cfg.mouse_is_xterm == 1 ? MBT_EXTEND : MBT_PASTE;
2d466ffd 1796 return 0; /* shouldn't happen */
01c034ad 1797}
1798
32874aea 1799static void show_mouseptr(int show)
1800{
755e0524 1801 /* NB that the counter in ShowCursor() is also frobbed by
1802 * update_mouse_pointer() */
554c540d 1803 static int cursor_visible = 1;
32874aea 1804 if (!cfg.hide_mouseptr) /* override if this feature disabled */
1805 show = 1;
554c540d 1806 if (cursor_visible && !show)
32874aea 1807 ShowCursor(FALSE);
554c540d 1808 else if (!cursor_visible && show)
32874aea 1809 ShowCursor(TRUE);
554c540d 1810 cursor_visible = show;
1811}
1812
6908fed7 1813static int is_alt_pressed(void)
1814{
1815 BYTE keystate[256];
1816 int r = GetKeyboardState(keystate);
1817 if (!r)
1818 return FALSE;
1819 if (keystate[VK_MENU] & 0x80)
1820 return TRUE;
1821 if (keystate[VK_RMENU] & 0x80)
1822 return TRUE;
1823 return FALSE;
1824}
1825
25dba9e5 1826static int is_shift_pressed(void)
1827{
1828 BYTE keystate[256];
1829 int r = GetKeyboardState(keystate);
1830 if (!r)
1831 return FALSE;
1832 if (keystate[VK_SHIFT] & 0x80)
1833 return TRUE;
1834 return FALSE;
1835}
1836
68f9b3d9 1837static int resizing;
1838
39934deb 1839void notify_remote_exit(void *fe) { /* stub not needed in this frontend */ }
1840
1841void timer_change_notify(long next)
1842{
1843 long ticks = next - GETTICKCOUNT();
1844 if (ticks <= 0) ticks = 1; /* just in case */
1845 KillTimer(hwnd, TIMING_TIMER_ID);
1846 SetTimer(hwnd, TIMING_TIMER_ID, ticks, NULL);
1847 timing_next_time = next;
1848}
1849
32874aea 1850static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
1851 WPARAM wParam, LPARAM lParam)
1852{
374330e2 1853 HDC hdc;
374330e2 1854 static int ignore_clip = FALSE;
3ad8c6db 1855 static int need_backend_resize = FALSE;
1ba99d2c 1856 static int fullscr_on_max = FALSE;
d8a13f62 1857 static UINT last_mousemove = 0;
374330e2 1858
1859 switch (message) {
59ad2c03 1860 case WM_TIMER:
39934deb 1861 if ((UINT_PTR)wParam == TIMING_TIMER_ID) {
1862 long next;
1863
1864 KillTimer(hwnd, TIMING_TIMER_ID);
1865 if (run_timers(timing_next_time, &next)) {
1866 timer_change_notify(next);
1867 } else {
32874aea 1868 }
1869 }
59ad2c03 1870 return 0;
374330e2 1871 case WM_CREATE:
1872 break;
68130d34 1873 case WM_CLOSE:
f6f450e2 1874 {
1875 char *str;
1876 show_mouseptr(1);
1877 str = dupprintf("%s Exit Confirmation", appname);
1878 if (!cfg.warn_on_close || session_closed ||
1879 MessageBox(hwnd,
1880 "Are you sure you want to close this session?",
84d264cd 1881 str, MB_ICONWARNING | MB_OKCANCEL | MB_DEFBUTTON1)
76347f46 1882 == IDOK)
f6f450e2 1883 DestroyWindow(hwnd);
1884 sfree(str);
1885 }
68130d34 1886 return 0;
374330e2 1887 case WM_DESTROY:
32874aea 1888 show_mouseptr(1);
1889 PostQuitMessage(0);
374330e2 1890 return 0;
63be7767 1891 case WM_COMMAND:
6833a413 1892 case WM_SYSCOMMAND:
1893 switch (wParam & ~0xF) { /* low 4 bits reserved to Windows */
374330e2 1894 case IDM_SHOWLOG:
c5e9c988 1895 showeventlog(hwnd);
374330e2 1896 break;
1897 case IDM_NEWSESS:
1898 case IDM_DUPSESS:
6833a413 1899 case IDM_SAVEDSESS:
374330e2 1900 {
1901 char b[2048];
1902 char c[30], *cl;
e4e4cc7e 1903 int freecl = FALSE;
8e90e4c6 1904 BOOL inherit_handles;
374330e2 1905 STARTUPINFO si;
1906 PROCESS_INFORMATION pi;
1907 HANDLE filemap = NULL;
1908
1909 if (wParam == IDM_DUPSESS) {
1910 /*
1911 * Allocate a file-mapping memory chunk for the
1912 * config structure.
1913 */
1914 SECURITY_ATTRIBUTES sa;
1915 Config *p;
1916
1917 sa.nLength = sizeof(sa);
1918 sa.lpSecurityDescriptor = NULL;
1919 sa.bInheritHandle = TRUE;
32874aea 1920 filemap = CreateFileMapping((HANDLE) 0xFFFFFFFF,
374330e2 1921 &sa,
1922 PAGE_READWRITE,
32874aea 1923 0, sizeof(Config), NULL);
374330e2 1924 if (filemap) {
32874aea 1925 p = (Config *) MapViewOfFile(filemap,
1926 FILE_MAP_WRITE,
1927 0, 0, sizeof(Config));
374330e2 1928 if (p) {
1929 *p = cfg; /* structure copy */
1930 UnmapViewOfFile(p);
1931 }
1932 }
8e90e4c6 1933 inherit_handles = TRUE;
1d470ad2 1934 sprintf(c, "putty &%p", filemap);
374330e2 1935 cl = c;
0a4aa984 1936 } else if (wParam == IDM_SAVEDSESS) {
865e82ad 1937 unsigned int sessno = ((lParam - IDM_SAVED_MIN)
1938 / MENU_SAVED_STEP) + 1;
1f1e3232 1939 if (sessno < sesslist.nsessions) {
1940 char *session = sesslist.sessions[sessno];
1941 /* XXX spaces? quotes? "-load"? */
1942 cl = dupprintf("putty @%s", session);
8e90e4c6 1943 inherit_handles = FALSE;
1f1e3232 1944 freecl = TRUE;
f8d7977b 1945 } else
1946 break;
8e90e4c6 1947 } else /* IDM_NEWSESS */ {
6833a413 1948 cl = NULL;
8e90e4c6 1949 inherit_handles = FALSE;
1950 }
374330e2 1951
32874aea 1952 GetModuleFileName(NULL, b, sizeof(b) - 1);
374330e2 1953 si.cb = sizeof(si);
1954 si.lpReserved = NULL;
1955 si.lpDesktop = NULL;
1956 si.lpTitle = NULL;
1957 si.dwFlags = 0;
1958 si.cbReserved2 = 0;
1959 si.lpReserved2 = NULL;
8e90e4c6 1960 CreateProcess(b, cl, NULL, NULL, inherit_handles,
32874aea 1961 NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi);
374330e2 1962
1963 if (filemap)
1964 CloseHandle(filemap);
e4e4cc7e 1965 if (freecl)
dcbde236 1966 sfree(cl);
374330e2 1967 }
1968 break;
e3be8de5 1969 case IDM_RESTART:
1970 if (!back) {
1971 logevent(NULL, "----- Session restarted -----");
1972 start_backend();
1973 }
1974
1975 break;
32874aea 1976 case IDM_RECONF:
1977 {
5a73255e 1978 Config prev_cfg;
1979 int init_lvl = 1;
68a66cc3 1980 int reconfig_result;
5a73255e 1981
359fd192 1982 if (reconfiguring)
68a66cc3 1983 break;
359fd192 1984 else
68a66cc3 1985 reconfiguring = TRUE;
359fd192 1986
32874aea 1987 GetWindowText(hwnd, cfg.wintitle, sizeof(cfg.wintitle));
5a73255e 1988 prev_cfg = cfg;
e1c8e0ed 1989
68a66cc3 1990 reconfig_result =
b56ff5c3 1991 do_reconfig(hwnd, back ? back->cfg_info(backhandle) : 0);
68a66cc3 1992 reconfiguring = FALSE;
1993 if (!reconfig_result)
32874aea 1994 break;
e1c8e0ed 1995
2cae8529 1996 {
1997 /* Disable full-screen if resizing forbidden */
1998 HMENU m = GetSystemMenu (hwnd, FALSE);
1999 EnableMenuItem(m, IDM_FULLSCREEN, MF_BYCOMMAND |
2000 (cfg.resize_action == RESIZE_DISABLED)
2001 ? MF_GRAYED : MF_ENABLED);
2002 /* Gracefully unzoom if necessary */
1ba99d2c 2003 if (IsZoomed(hwnd) &&
2cae8529 2004 (cfg.resize_action == RESIZE_DISABLED)) {
1ba99d2c 2005 ShowWindow(hwnd, SW_RESTORE);
2cae8529 2006 }
a401e5f3 2007 }
2008
c229ef97 2009 /* Pass new config data to the logging module */
2010 log_reconfig(logctx, &cfg);
e1c8e0ed 2011
32874aea 2012 sfree(logpal);
2013 /*
2014 * Flush the line discipline's edit buffer in the
2015 * case where local editing has just been disabled.
2016 */
e3be8de5 2017 if (ldisc)
2018 ldisc_send(ldisc, NULL, 0, 0);
32874aea 2019 if (pal)
2020 DeleteObject(pal);
2021 logpal = NULL;
2022 pal = NULL;
2023 cfgtopalette();
2024 init_palette();
2025
64734920 2026 /* Pass new config data to the terminal */
2027 term_reconfig(term, &cfg);
0d2086c5 2028
86916870 2029 /* Pass new config data to the back end */
e3be8de5 2030 if (back)
2031 back->reconfig(backhandle, &cfg);
86916870 2032
5a73255e 2033 /* Screen size changed ? */
2034 if (cfg.height != prev_cfg.height ||
2035 cfg.width != prev_cfg.width ||
2036 cfg.savelines != prev_cfg.savelines ||
0ed2f48e 2037 cfg.resize_action == RESIZE_FONT ||
811f10b3 2038 (cfg.resize_action == RESIZE_EITHER && IsZoomed(hwnd)) ||
0ed2f48e 2039 cfg.resize_action == RESIZE_DISABLED)
887035a5 2040 term_size(term, cfg.height, cfg.width, cfg.savelines);
5a73255e 2041
32874aea 2042 /* Enable or disable the scroll bar, etc */
2043 {
2044 LONG nflg, flag = GetWindowLong(hwnd, GWL_STYLE);
2045 LONG nexflag, exflag =
2046 GetWindowLong(hwnd, GWL_EXSTYLE);
2047
2048 nexflag = exflag;
5a73255e 2049 if (cfg.alwaysontop != prev_cfg.alwaysontop) {
32874aea 2050 if (cfg.alwaysontop) {
2051 nexflag |= WS_EX_TOPMOST;
2052 SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0,
2053 SWP_NOMOVE | SWP_NOSIZE);
2054 } else {
2055 nexflag &= ~(WS_EX_TOPMOST);
2056 SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, 0, 0,
2057 SWP_NOMOVE | SWP_NOSIZE);
2058 }
2059 }
2060 if (cfg.sunken_edge)
2061 nexflag |= WS_EX_CLIENTEDGE;
2062 else
2063 nexflag &= ~(WS_EX_CLIENTEDGE);
2064
2065 nflg = flag;
1ba99d2c 2066 if (is_full_screen() ?
2cae8529 2067 cfg.scrollbar_in_fullscreen : cfg.scrollbar)
32874aea 2068 nflg |= WS_VSCROLL;
2069 else
2070 nflg &= ~WS_VSCROLL;
811f10b3 2071
2072 if (cfg.resize_action == RESIZE_DISABLED ||
2073 is_full_screen())
2074 nflg &= ~WS_THICKFRAME;
2075 else
2076 nflg |= WS_THICKFRAME;
2077
ad5c93cc 2078 if (cfg.resize_action == RESIZE_DISABLED)
811f10b3 2079 nflg &= ~WS_MAXIMIZEBOX;
32874aea 2080 else
811f10b3 2081 nflg |= WS_MAXIMIZEBOX;
32874aea 2082
2083 if (nflg != flag || nexflag != exflag) {
32874aea 2084 if (nflg != flag)
2085 SetWindowLong(hwnd, GWL_STYLE, nflg);
2086 if (nexflag != exflag)
2087 SetWindowLong(hwnd, GWL_EXSTYLE, nexflag);
2088
32874aea 2089 SetWindowPos(hwnd, NULL, 0, 0, 0, 0,
2090 SWP_NOACTIVATE | SWP_NOCOPYBITS |
5a73255e 2091 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
2092 SWP_FRAMECHANGED);
c9def1b8 2093
5a73255e 2094 init_lvl = 2;
e44d78b6 2095 }
32874aea 2096 }
5a73255e 2097
e44d78b6 2098 /* Oops */
ad5c93cc 2099 if (cfg.resize_action == RESIZE_DISABLED && IsZoomed(hwnd)) {
e44d78b6 2100 force_normal(hwnd);
5a73255e 2101 init_lvl = 2;
2102 }
2103
a8327734 2104 set_title(NULL, cfg.wintitle);
32874aea 2105 if (IsIconic(hwnd)) {
2106 SetWindowText(hwnd,
2107 cfg.win_name_always ? window_name :
2108 icon_name);
3da0b1d2 2109 }
5a73255e 2110
9a30e26b 2111 if (strcmp(cfg.font.name, prev_cfg.font.name) != 0 ||
5a73255e 2112 strcmp(cfg.line_codepage, prev_cfg.line_codepage) != 0 ||
9a30e26b 2113 cfg.font.isbold != prev_cfg.font.isbold ||
2114 cfg.font.height != prev_cfg.font.height ||
2115 cfg.font.charset != prev_cfg.font.charset ||
5a73255e 2116 cfg.vtmode != prev_cfg.vtmode ||
2117 cfg.bold_colour != prev_cfg.bold_colour ||
0ed2f48e 2118 cfg.resize_action == RESIZE_DISABLED ||
2119 cfg.resize_action == RESIZE_EITHER ||
2120 (cfg.resize_action != prev_cfg.resize_action))
5a73255e 2121 init_lvl = 2;
2122
2123 InvalidateRect(hwnd, NULL, TRUE);
2124 reset_window(init_lvl);
7732d38a 2125 net_pending_errors();
32874aea 2126 }
2127 break;
bc1235d4 2128 case IDM_COPYALL:
887035a5 2129 term_copyall(term);
bc1235d4 2130 break;
63be7767 2131 case IDM_PASTE:
2132 term_do_paste(term);
2133 break;
32874aea 2134 case IDM_CLRSB:
887035a5 2135 term_clrsb(term);
32874aea 2136 break;
2137 case IDM_RESET:
887035a5 2138 term_pwron(term);
e3be8de5 2139 if (ldisc)
2140 ldisc_send(ldisc, NULL, 0, 0);
32874aea 2141 break;
374330e2 2142 case IDM_ABOUT:
32874aea 2143 showabout(hwnd);
374330e2 2144 break;
70133c0e 2145 case IDM_HELP:
2146 WinHelp(hwnd, help_path,
2147 help_has_contents ? HELP_FINDER : HELP_CONTENTS, 0);
2148 break;
0d6dcf38 2149 case SC_MOUSEMENU:
2150 /*
2151 * We get this if the System menu has been activated
2152 * using the mouse.
2153 */
2154 show_mouseptr(1);
2155 break;
dfca2656 2156 case SC_KEYMENU:
2157 /*
0d6dcf38 2158 * We get this if the System menu has been activated
2159 * using the keyboard. This might happen from within
2160 * TranslateKey, in which case it really wants to be
2161 * followed by a `space' character to actually _bring
2162 * the menu up_ rather than just sitting there in
2163 * `ready to appear' state.
dfca2656 2164 */
0d6dcf38 2165 show_mouseptr(1); /* make sure pointer is visible */
dfca2656 2166 if( lParam == 0 )
2167 PostMessage(hwnd, WM_CHAR, ' ', 0);
2168 break;
a401e5f3 2169 case IDM_FULLSCREEN:
1ba99d2c 2170 flip_full_screen();
2171 break;
32874aea 2172 default:
1f1e3232 2173 if (wParam >= IDM_SAVED_MIN && wParam < IDM_SAVED_MAX) {
32874aea 2174 SendMessage(hwnd, WM_SYSCOMMAND, IDM_SAVEDSESS, wParam);
2175 }
125105d1 2176 if (wParam >= IDM_SPECIAL_MIN && wParam <= IDM_SPECIAL_MAX) {
2177 int i = (wParam - IDM_SPECIAL_MIN) / 0x10;
125105d1 2178 /*
2179 * Ensure we haven't been sent a bogus SYSCOMMAND
2180 * which would cause us to reference invalid memory
2181 * and crash. Perhaps I'm just too paranoid here.
2182 */
6f2d0cde 2183 if (i >= n_specials)
2184 break;
2185 if (back)
2186 back->special(backhandle, specials[i].code);
2187 net_pending_errors();
125105d1 2188 }
374330e2 2189 }
2190 break;
37508af4 2191
2192#define X_POS(l) ((int)(short)LOWORD(l))
2193#define Y_POS(l) ((int)(short)HIWORD(l))
2194
5a73255e 2195#define TO_CHR_X(x) ((((x)<0 ? (x)-font_width+1 : (x))-offset_width) / font_width)
2196#define TO_CHR_Y(y) ((((y)<0 ? (y)-font_height+1: (y))-offset_height) / font_height)
374330e2 2197 case WM_LBUTTONDOWN:
374330e2 2198 case WM_MBUTTONDOWN:
374330e2 2199 case WM_RBUTTONDOWN:
01c034ad 2200 case WM_LBUTTONUP:
2201 case WM_MBUTTONUP:
374330e2 2202 case WM_RBUTTONUP:
ebc0310d 2203 if (message == WM_RBUTTONDOWN &&
2204 ((wParam & MK_CONTROL) || (cfg.mouse_is_xterm == 2))) {
63be7767 2205 POINT cursorpos;
2206
ebc0310d 2207 show_mouseptr(1); /* make sure pointer is visible */
63be7767 2208 GetCursorPos(&cursorpos);
2209 TrackPopupMenu(popup_menus[CTXMENU].menu,
2210 TPM_LEFTALIGN | TPM_TOPALIGN | TPM_RIGHTBUTTON,
2211 cursorpos.x, cursorpos.y,
2212 0, hwnd, NULL);
2213 break;
2214 }
01c034ad 2215 {
2216 int button, press;
6908fed7 2217
01c034ad 2218 switch (message) {
32874aea 2219 case WM_LBUTTONDOWN:
2220 button = MBT_LEFT;
2221 press = 1;
2222 break;
2223 case WM_MBUTTONDOWN:
2224 button = MBT_MIDDLE;
2225 press = 1;
2226 break;
2227 case WM_RBUTTONDOWN:
2228 button = MBT_RIGHT;
2229 press = 1;
2230 break;
2231 case WM_LBUTTONUP:
2232 button = MBT_LEFT;
2233 press = 0;
2234 break;
2235 case WM_MBUTTONUP:
2236 button = MBT_MIDDLE;
2237 press = 0;
2238 break;
2239 case WM_RBUTTONUP:
2240 button = MBT_RIGHT;
2241 press = 0;
2242 break;
2d466ffd 2243 default:
2244 button = press = 0; /* shouldn't happen */
01c034ad 2245 }
2246 show_mouseptr(1);
2cae8529 2247 /*
2248 * Special case: in full-screen mode, if the left
2249 * button is clicked in the very top left corner of the
2250 * window, we put up the System menu instead of doing
2251 * selection.
2252 */
52a4d159 2253 {
2254 char mouse_on_hotspot = 0;
2255 POINT pt;
2256
2257 GetCursorPos(&pt);
2258#ifndef NO_MULTIMON
2259 {
2260 HMONITOR mon;
2261 MONITORINFO mi;
2262
2263 mon = MonitorFromPoint(pt, MONITOR_DEFAULTTONULL);
2264
2265 if (mon != NULL) {
2266 mi.cbSize = sizeof(MONITORINFO);
2267 GetMonitorInfo(mon, &mi);
2268
2269 if (mi.rcMonitor.left == pt.x &&
2270 mi.rcMonitor.top == pt.y) {
2271 mouse_on_hotspot = 1;
2272 }
52a4d159 2273 }
2274 }
2275#else
2276 if (pt.x == 0 && pt.y == 0) {
2277 mouse_on_hotspot = 1;
2278 }
2279#endif
2280 if (is_full_screen() && press &&
2281 button == MBT_LEFT && mouse_on_hotspot) {
2282 SendMessage(hwnd, WM_SYSCOMMAND, SC_MOUSEMENU,
2283 MAKELPARAM(pt.x, pt.y));
2284 return 0;
2285 }
2cae8529 2286 }
52a4d159 2287
01c034ad 2288 if (press) {
32874aea 2289 click(button,
2290 TO_CHR_X(X_POS(lParam)), TO_CHR_Y(Y_POS(lParam)),
6908fed7 2291 wParam & MK_SHIFT, wParam & MK_CONTROL,
2292 is_alt_pressed());
01c034ad 2293 SetCapture(hwnd);
2294 } else {
fc5b0934 2295 term_mouse(term, button, translate_button(button), MA_RELEASE,
32874aea 2296 TO_CHR_X(X_POS(lParam)),
2297 TO_CHR_Y(Y_POS(lParam)), wParam & MK_SHIFT,
6908fed7 2298 wParam & MK_CONTROL, is_alt_pressed());
01c034ad 2299 ReleaseCapture();
2300 }
2301 }
374330e2 2302 return 0;
2303 case WM_MOUSEMOVE:
d8a13f62 2304 {
2305 /*
2306 * Windows seems to like to occasionally send MOUSEMOVE
2307 * events even if the mouse hasn't moved. Don't unhide
2308 * the mouse pointer in this case.
2309 */
2310 static WPARAM wp = 0;
2311 static LPARAM lp = 0;
2312 if (wParam != wp || lParam != lp ||
2313 last_mousemove != WM_MOUSEMOVE) {
2314 show_mouseptr(1);
2315 wp = wParam; lp = lParam;
2316 last_mousemove = WM_MOUSEMOVE;
2317 }
2318 }
374330e2 2319 /*
2320 * Add the mouse position and message time to the random
7d6ee6ff 2321 * number noise.
374330e2 2322 */
32874aea 2323 noise_ultralight(lParam);
374330e2 2324
319bfe5a 2325 if (wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON) &&
2326 GetCapture() == hwnd) {
374330e2 2327 Mouse_Button b;
2328 if (wParam & MK_LBUTTON)
6c6e7711 2329 b = MBT_LEFT;
374330e2 2330 else if (wParam & MK_MBUTTON)
6c6e7711 2331 b = MBT_MIDDLE;
374330e2 2332 else
6c6e7711 2333 b = MBT_RIGHT;
fc5b0934 2334 term_mouse(term, b, translate_button(b), MA_DRAG,
2335 TO_CHR_X(X_POS(lParam)),
32874aea 2336 TO_CHR_Y(Y_POS(lParam)), wParam & MK_SHIFT,
6908fed7 2337 wParam & MK_CONTROL, is_alt_pressed());
374330e2 2338 }
374330e2 2339 return 0;
d318ef8e 2340 case WM_NCMOUSEMOVE:
d8a13f62 2341 {
2342 static WPARAM wp = 0;
2343 static LPARAM lp = 0;
2344 if (wParam != wp || lParam != lp ||
2345 last_mousemove != WM_NCMOUSEMOVE) {
2346 show_mouseptr(1);
2347 wp = wParam; lp = lParam;
2348 last_mousemove = WM_NCMOUSEMOVE;
2349 }
2350 }
32874aea 2351 noise_ultralight(lParam);
f9cbc48c 2352 break;
374330e2 2353 case WM_IGNORE_CLIP:
2354 ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */
2355 break;
2356 case WM_DESTROYCLIPBOARD:
2357 if (!ignore_clip)
887035a5 2358 term_deselect(term);
374330e2 2359 ignore_clip = FALSE;
2360 return 0;
2361 case WM_PAINT:
2362 {
2363 PAINTSTRUCT p;
39934deb 2364
32874aea 2365 HideCaret(hwnd);
2366 hdc = BeginPaint(hwnd, &p);
374330e2 2367 if (pal) {
32874aea 2368 SelectPalette(hdc, pal, TRUE);
2369 RealizePalette(hdc);
374330e2 2370 }
39934deb 2371
8788a416 2372 /*
2373 * We have to be careful about term_paint(). It will
2374 * set a bunch of character cells to INVALID and then
2375 * call do_paint(), which will redraw those cells and
2376 * _then mark them as done_. This may not be accurate:
2377 * when painting in WM_PAINT context we are restricted
2378 * to the rectangle which has just been exposed - so if
2379 * that only covers _part_ of a character cell and the
2380 * rest of it was already visible, that remainder will
2381 * not be redrawn at all. Accordingly, we must not
2382 * paint any character cell in a WM_PAINT context which
2383 * already has a pending update due to terminal output.
2384 * The simplest solution to this - and many, many
2385 * thanks to Hung-Te Lin for working all this out - is
2386 * not to do any actual painting at _all_ if there's a
2387 * pending terminal update: just mark the relevant
2388 * character cells as INVALID and wait for the
2389 * scheduled full update to sort it out.
2390 *
2391 * I have a suspicion this isn't the _right_ solution.
2392 * An alternative approach would be to have terminal.c
2393 * separately track what _should_ be on the terminal
2394 * screen and what _is_ on the terminal screen, and
2395 * have two completely different types of redraw (one
2396 * for full updates, which syncs the former with the
2397 * terminal itself, and one for WM_PAINT which syncs
2398 * the latter with the former); yet another possibility
2399 * would be to have the Windows front end do what the
2400 * GTK one already does, and maintain a bitmap of the
2401 * current terminal appearance so that WM_PAINT becomes
2402 * completely trivial. However, this should do for now.
2403 */
887035a5 2404 term_paint(term, hdc,
5a73255e 2405 (p.rcPaint.left-offset_width)/font_width,
2406 (p.rcPaint.top-offset_height)/font_height,
2407 (p.rcPaint.right-offset_width-1)/font_width,
c1b55581 2408 (p.rcPaint.bottom-offset_height-1)/font_height,
8788a416 2409 !term->window_update_pending);
5a73255e 2410
2411 if (p.fErase ||
2412 p.rcPaint.left < offset_width ||
2413 p.rcPaint.top < offset_height ||
887035a5 2414 p.rcPaint.right >= offset_width + font_width*term->cols ||
2415 p.rcPaint.bottom>= offset_height + font_height*term->rows)
5a73255e 2416 {
2417 HBRUSH fillcolour, oldbrush;
2418 HPEN edge, oldpen;
2419 fillcolour = CreateSolidBrush (
c50f9fde 2420 colours[ATTR_DEFBG>>ATTR_BGSHIFT]);
5a73255e 2421 oldbrush = SelectObject(hdc, fillcolour);
2422 edge = CreatePen(PS_SOLID, 0,
c50f9fde 2423 colours[ATTR_DEFBG>>ATTR_BGSHIFT]);
5a73255e 2424 oldpen = SelectObject(hdc, edge);
2425
bfa7a5db 2426 /*
2427 * Jordan Russell reports that this apparently
2428 * ineffectual IntersectClipRect() call masks a
2429 * Windows NT/2K bug causing strange display
2430 * problems when the PuTTY window is taller than
2431 * the primary monitor. It seems harmless enough...
2432 */
2433 IntersectClipRect(hdc,
2434 p.rcPaint.left, p.rcPaint.top,
2435 p.rcPaint.right, p.rcPaint.bottom);
2436
5a73255e 2437 ExcludeClipRect(hdc,
2438 offset_width, offset_height,
887035a5 2439 offset_width+font_width*term->cols,
2440 offset_height+font_height*term->rows);
5a73255e 2441
2442 Rectangle(hdc, p.rcPaint.left, p.rcPaint.top,
2443 p.rcPaint.right, p.rcPaint.bottom);
2444
31fb1866 2445 /* SelectClipRgn(hdc, NULL); */
5a73255e 2446
2447 SelectObject(hdc, oldbrush);
2448 DeleteObject(fillcolour);
2449 SelectObject(hdc, oldpen);
2450 DeleteObject(edge);
2451 }
32874aea 2452 SelectObject(hdc, GetStockObject(SYSTEM_FONT));
2453 SelectObject(hdc, GetStockObject(WHITE_PEN));
2454 EndPaint(hwnd, &p);
2455 ShowCaret(hwnd);
374330e2 2456 }
2457 return 0;
2458 case WM_NETEVENT:
39934deb 2459 enact_netevent(wParam, lParam);
2460 net_pending_errors();
374330e2 2461 return 0;
2462 case WM_SETFOCUS:
1cff1320 2463 term_set_focus(term, TRUE);
32874aea 2464 CreateCaret(hwnd, caretbm, font_width, font_height);
2465 ShowCaret(hwnd);
f8a28d1f 2466 flash_window(0); /* stop */
32874aea 2467 compose_state = 0;
887035a5 2468 term_update(term);
374330e2 2469 break;
2470 case WM_KILLFOCUS:
32874aea 2471 show_mouseptr(1);
1cff1320 2472 term_set_focus(term, FALSE);
32874aea 2473 DestroyCaret();
c1da5066 2474 caret_x = caret_y = -1; /* ensure caret is replaced next time */
887035a5 2475 term_update(term);
374330e2 2476 break;
73251d5d 2477 case WM_ENTERSIZEMOVE:
5a73255e 2478#ifdef RDB_DEBUG_PATCH
2479 debug((27, "WM_ENTERSIZEMOVE"));
2480#endif
32874aea 2481 EnableSizeTip(1);
2482 resizing = TRUE;
3ad8c6db 2483 need_backend_resize = FALSE;
32874aea 2484 break;
73251d5d 2485 case WM_EXITSIZEMOVE:
32874aea 2486 EnableSizeTip(0);
2487 resizing = FALSE;
5a73255e 2488#ifdef RDB_DEBUG_PATCH
2489 debug((27, "WM_EXITSIZEMOVE"));
2490#endif
2491 if (need_backend_resize) {
887035a5 2492 term_size(term, cfg.height, cfg.width, cfg.savelines);
5a73255e 2493 InvalidateRect(hwnd, NULL, TRUE);
2494 }
32874aea 2495 break;
374330e2 2496 case WM_SIZING:
5a73255e 2497 /*
2498 * This does two jobs:
2499 * 1) Keep the sizetip uptodate
2500 * 2) Make sure the window size is _stepped_ in units of the font size.
2501 */
c1b55581 2502 if (cfg.resize_action != RESIZE_FONT && !is_alt_pressed()) {
374330e2 2503 int width, height, w, h, ew, eh;
32874aea 2504 LPRECT r = (LPRECT) lParam;
374330e2 2505
0ed2f48e 2506 if ( !need_backend_resize && cfg.resize_action == RESIZE_EITHER &&
887035a5 2507 (cfg.height != term->rows || cfg.width != term->cols )) {
5a73255e 2508 /*
0ed2f48e 2509 * Great! It seems that both the terminal size and the
2510 * font size have been changed and the user is now dragging.
2511 *
2512 * It will now be difficult to get back to the configured
2513 * font size!
2514 *
2515 * This would be easier but it seems to be too confusing.
2516
887035a5 2517 term_size(term, cfg.height, cfg.width, cfg.savelines);
5a73255e 2518 reset_window(2);
0ed2f48e 2519 */
887035a5 2520 cfg.height=term->rows; cfg.width=term->cols;
0ed2f48e 2521
5a73255e 2522 InvalidateRect(hwnd, NULL, TRUE);
2523 need_backend_resize = TRUE;
2524 }
2525
374330e2 2526 width = r->right - r->left - extra_width;
2527 height = r->bottom - r->top - extra_height;
32874aea 2528 w = (width + font_width / 2) / font_width;
2529 if (w < 1)
2530 w = 1;
2531 h = (height + font_height / 2) / font_height;
2532 if (h < 1)
2533 h = 1;
2534 UpdateSizeTip(hwnd, w, h);
374330e2 2535 ew = width - w * font_width;
2536 eh = height - h * font_height;
2537 if (ew != 0) {
2538 if (wParam == WMSZ_LEFT ||
32874aea 2539 wParam == WMSZ_BOTTOMLEFT || wParam == WMSZ_TOPLEFT)
374330e2 2540 r->left += ew;
2541 else
2542 r->right -= ew;
2543 }
2544 if (eh != 0) {
2545 if (wParam == WMSZ_TOP ||
32874aea 2546 wParam == WMSZ_TOPRIGHT || wParam == WMSZ_TOPLEFT)
374330e2 2547 r->top += eh;
2548 else
2549 r->bottom -= eh;
2550 }
2551 if (ew || eh)
2552 return 1;
2553 else
2554 return 0;
5a73255e 2555 } else {
2556 int width, height, w, h, rv = 0;
2557 int ex_width = extra_width + (cfg.window_border - offset_width) * 2;
2558 int ex_height = extra_height + (cfg.window_border - offset_height) * 2;
2559 LPRECT r = (LPRECT) lParam;
2560
2561 width = r->right - r->left - ex_width;
2562 height = r->bottom - r->top - ex_height;
2563
887035a5 2564 w = (width + term->cols/2)/term->cols;
2565 h = (height + term->rows/2)/term->rows;
2566 if ( r->right != r->left + w*term->cols + ex_width)
5a73255e 2567 rv = 1;
2568
2569 if (wParam == WMSZ_LEFT ||
2570 wParam == WMSZ_BOTTOMLEFT || wParam == WMSZ_TOPLEFT)
887035a5 2571 r->left = r->right - w*term->cols - ex_width;
5a73255e 2572 else
887035a5 2573 r->right = r->left + w*term->cols + ex_width;
5a73255e 2574
887035a5 2575 if (r->bottom != r->top + h*term->rows + ex_height)
5a73255e 2576 rv = 1;
2577
2578 if (wParam == WMSZ_TOP ||
2579 wParam == WMSZ_TOPRIGHT || wParam == WMSZ_TOPLEFT)
887035a5 2580 r->top = r->bottom - h*term->rows - ex_height;
5a73255e 2581 else
887035a5 2582 r->bottom = r->top + h*term->rows + ex_height;
5a73255e 2583
2584 return rv;
374330e2 2585 }
32874aea 2586 /* break; (never reached) */
1ba99d2c 2587 case WM_FULLSCR_ON_MAX:
2588 fullscr_on_max = TRUE;
2589 break;
c1da5066 2590 case WM_MOVE:
2591 sys_cursor_update();
2592 break;
374330e2 2593 case WM_SIZE:
5a73255e 2594#ifdef RDB_DEBUG_PATCH
2595 debug((27, "WM_SIZE %s (%d,%d)",
2596 (wParam == SIZE_MINIMIZED) ? "SIZE_MINIMIZED":
2597 (wParam == SIZE_MAXIMIZED) ? "SIZE_MAXIMIZED":
2598 (wParam == SIZE_RESTORED && resizing) ? "to":
2599 (wParam == SIZE_RESTORED) ? "SIZE_RESTORED":
2600 "...",
2601 LOWORD(lParam), HIWORD(lParam)));
2602#endif
0ed2f48e 2603 if (wParam == SIZE_MINIMIZED)
32874aea 2604 SetWindowText(hwnd,
2605 cfg.win_name_always ? window_name : icon_name);
374330e2 2606 if (wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED)
32874aea 2607 SetWindowText(hwnd, window_name);
811f10b3 2608 if (wParam == SIZE_RESTORED)
2609 clear_full_screen();
2610 if (wParam == SIZE_MAXIMIZED && fullscr_on_max) {
811f10b3 2611 fullscr_on_max = FALSE;
d0f1bcb4 2612 make_full_screen();
811f10b3 2613 }
5a73255e 2614
ad5c93cc 2615 if (cfg.resize_action == RESIZE_DISABLED) {
5a73255e 2616 /* A resize, well it better be a minimize. */
2617 reset_window(-1);
2618 } else {
2619
1a6f78fe 2620 int width, height, w, h;
374330e2 2621
2622 width = LOWORD(lParam);
2623 height = HIWORD(lParam);
5a73255e 2624
2625 if (!resizing) {
0ed2f48e 2626 if (wParam == SIZE_MAXIMIZED && !was_zoomed) {
5a73255e 2627 was_zoomed = 1;
887035a5 2628 prev_rows = term->rows;
2629 prev_cols = term->cols;
0ed2f48e 2630 if (cfg.resize_action == RESIZE_TERM) {
5a73255e 2631 w = width / font_width;
2632 if (w < 1) w = 1;
2633 h = height / font_height;
2634 if (h < 1) h = 1;
2635
887035a5 2636 term_size(term, h, w, cfg.savelines);
5a73255e 2637 }
2638 reset_window(0);
2639 } else if (wParam == SIZE_RESTORED && was_zoomed) {
2640 was_zoomed = 0;
0ed2f48e 2641 if (cfg.resize_action == RESIZE_TERM)
887035a5 2642 term_size(term, prev_rows, prev_cols, cfg.savelines);
0ed2f48e 2643 if (cfg.resize_action != RESIZE_FONT)
2644 reset_window(2);
2645 else
2646 reset_window(0);
5a73255e 2647 }
2648 /* This is an unexpected resize, these will normally happen
2649 * if the window is too large. Probably either the user
2650 * selected a huge font or the screen size has changed.
2651 *
2652 * This is also called with minimize.
32874aea 2653 */
5a73255e 2654 else reset_window(-1);
2655 }
2656
2657 /*
2658 * Don't call back->size in mid-resize. (To prevent
2659 * massive numbers of resize events getting sent
2660 * down the connection during an NT opaque drag.)
2661 */
2662 if (resizing) {
c1b55581 2663 if (cfg.resize_action != RESIZE_FONT && !is_alt_pressed()) {
3ad8c6db 2664 need_backend_resize = TRUE;
5a73255e 2665 w = (width-cfg.window_border*2) / font_width;
2666 if (w < 1) w = 1;
2667 h = (height-cfg.window_border*2) / font_height;
2668 if (h < 1) h = 1;
2669
e44d78b6 2670 cfg.height = h;
2671 cfg.width = w;
5a73255e 2672 } else
2673 reset_window(0);
374330e2 2674 }
2675 }
c1da5066 2676 sys_cursor_update();
374330e2 2677 return 0;
2678 case WM_VSCROLL:
2679 switch (LOWORD(wParam)) {
32874aea 2680 case SB_BOTTOM:
887035a5 2681 term_scroll(term, -1, 0);
32874aea 2682 break;
2683 case SB_TOP:
887035a5 2684 term_scroll(term, +1, 0);
32874aea 2685 break;
2686 case SB_LINEDOWN:
887035a5 2687 term_scroll(term, 0, +1);
32874aea 2688 break;
2689 case SB_LINEUP:
887035a5 2690 term_scroll(term, 0, -1);
32874aea 2691 break;
2692 case SB_PAGEDOWN:
887035a5 2693 term_scroll(term, 0, +term->rows / 2);
32874aea 2694 break;
2695 case SB_PAGEUP:
887035a5 2696 term_scroll(term, 0, -term->rows / 2);
32874aea 2697 break;
2698 case SB_THUMBPOSITION:
2699 case SB_THUMBTRACK:
887035a5 2700 term_scroll(term, 1, HIWORD(wParam));
32874aea 2701 break;
2702 }
2703 break;
2704 case WM_PALETTECHANGED:
374330e2 2705 if ((HWND) wParam != hwnd && pal != NULL) {
a8327734 2706 HDC hdc = get_ctx(NULL);
374330e2 2707 if (hdc) {
32874aea 2708 if (RealizePalette(hdc) > 0)
2709 UpdateColors(hdc);
2710 free_ctx(hdc);
374330e2 2711 }
2712 }
2713 break;
2714 case WM_QUERYNEWPALETTE:
2715 if (pal != NULL) {
a8327734 2716 HDC hdc = get_ctx(NULL);
374330e2 2717 if (hdc) {
32874aea 2718 if (RealizePalette(hdc) > 0)
2719 UpdateColors(hdc);
2720 free_ctx(hdc);
374330e2 2721 return TRUE;
2722 }
2723 }
2724 return FALSE;
2725 case WM_KEYDOWN:
2726 case WM_SYSKEYDOWN:
c9def1b8 2727 case WM_KEYUP:
2728 case WM_SYSKEYUP:
374330e2 2729 /*
2730 * Add the scan code and keypress timing to the random
7d6ee6ff 2731 * number noise.
374330e2 2732 */
32874aea 2733 noise_ultralight(lParam);
374330e2 2734
2735 /*
2736 * We don't do TranslateMessage since it disassociates the
2737 * resulting CHAR message from the KEYDOWN that sparked it,
2738 * which we occasionally don't want. Instead, we process
2739 * KEYDOWN, and call the Win32 translator functions so that
2740 * we get the translations under _our_ control.
2741 */
2742 {
2743 unsigned char buf[20];
2744 int len;
2745
43e95114 2746 if (wParam == VK_PROCESSKEY) { /* IME PROCESS key */
2747 if (message == WM_KEYDOWN) {
2748 MSG m;
2749 m.hwnd = hwnd;
2750 m.message = WM_KEYDOWN;
2751 m.wParam = wParam;
2752 m.lParam = lParam & 0xdfff;
2753 TranslateMessage(&m);
2754 } else break; /* pass to Windows for default processing */
32874aea 2755 } else {
2756 len = TranslateKey(message, wParam, lParam, buf);
3cf144db 2757 if (len == -1)
32874aea 2758 return DefWindowProc(hwnd, message, wParam, lParam);
5471d09a 2759
b2a1eade 2760 if (len != 0) {
bca9517a 2761 /*
256cb87c 2762 * Interrupt an ongoing paste. I'm not sure
2763 * this is sensible, but for the moment it's
2764 * preferable to having to faff about buffering
2765 * things.
2766 */
887035a5 2767 term_nopaste(term);
256cb87c 2768
2769 /*
bca9517a 2770 * We need not bother about stdin backlogs
2771 * here, because in GUI PuTTY we can't do
2772 * anything about it anyway; there's no means
2773 * of asking Windows to hold off on KEYDOWN
2774 * messages. We _have_ to buffer everything
2775 * we're sent.
2776 */
887035a5 2777 term_seen_key_event(term);
e3be8de5 2778 if (ldisc)
2779 ldisc_send(ldisc, buf, len, 1);
32874aea 2780 show_mouseptr(0);
bca9517a 2781 }
3cf144db 2782 }
374330e2 2783 }
7732d38a 2784 net_pending_errors();
374330e2 2785 return 0;
4eeb7d09 2786 case WM_INPUTLANGCHANGE:
a5ce2e9f 2787 /* wParam == Font number */
2788 /* lParam == Locale */
2789 set_input_locale((HKL)lParam);
c1da5066 2790 sys_cursor_update();
4eeb7d09 2791 break;
fd64bb27 2792 case WM_IME_STARTCOMPOSITION:
2793 {
71f6951d 2794 HIMC hImc = ImmGetContext(hwnd);
2795 ImmSetCompositionFont(hImc, &lfont);
2796 ImmReleaseContext(hwnd, hImc);
71f6951d 2797 }
2798 break;
88485e4d 2799 case WM_IME_COMPOSITION:
2800 {
2801 HIMC hIMC;
2802 int n;
2803 char *buff;
a3cfd0c8 2804
88485e4d 2805 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS ||
2806 osVersion.dwPlatformId == VER_PLATFORM_WIN32s) break; /* no Unicode */
2807
2808 if ((lParam & GCS_RESULTSTR) == 0) /* Composition unfinished. */
2809 break; /* fall back to DefWindowProc */
2810
2811 hIMC = ImmGetContext(hwnd);
2812 n = ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, NULL, 0);
2813
2814 if (n > 0) {
a3cfd0c8 2815 int i;
3d88e64d 2816 buff = snewn(n, char);
88485e4d 2817 ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, buff, n);
a3cfd0c8 2818 /*
2819 * Jaeyoun Chung reports that Korean character
2820 * input doesn't work correctly if we do a single
2821 * luni_send() covering the whole of buff. So
2822 * instead we luni_send the characters one by one.
2823 */
887035a5 2824 term_seen_key_event(term);
2cb50250 2825 for (i = 0; i < n; i += 2) {
e3be8de5 2826 if (ldisc)
2827 luni_send(ldisc, (unsigned short *)(buff+i), 1, 1);
2cb50250 2828 }
88485e4d 2829 free(buff);
2830 }
2831 ImmReleaseContext(hwnd, hIMC);
2832 return 1;
2833 }
2834
4eeb7d09 2835 case WM_IME_CHAR:
2836 if (wParam & 0xFF00) {
3cf144db 2837 unsigned char buf[2];
2838
2839 buf[1] = wParam;
2840 buf[0] = wParam >> 8;
887035a5 2841 term_seen_key_event(term);
e3be8de5 2842 if (ldisc)
2843 lpage_send(ldisc, kbd_codepage, buf, 2, 1);
4eeb7d09 2844 } else {
2845 char c = (unsigned char) wParam;
887035a5 2846 term_seen_key_event(term);
e3be8de5 2847 if (ldisc)
2848 lpage_send(ldisc, kbd_codepage, &c, 1, 1);
3cf144db 2849 }
4eeb7d09 2850 return (0);
374330e2 2851 case WM_CHAR:
2852 case WM_SYSCHAR:
2853 /*
2854 * Nevertheless, we are prepared to deal with WM_CHAR
2855 * messages, should they crop up. So if someone wants to
2856 * post the things to us as part of a macro manoeuvre,
2857 * we're ready to cope.
2858 */
32874aea 2859 {
4eeb7d09 2860 char c = (unsigned char)wParam;
887035a5 2861 term_seen_key_event(term);
e3be8de5 2862 if (ldisc)
2863 lpage_send(ldisc, CP_ACP, &c, 1, 1);
374330e2 2864 }
2865 return 0;
49a332ff 2866 case WM_SYSCOLORCHANGE:
2867 if (cfg.system_colour) {
2868 /* Refresh palette from system colours. */
2869 /* XXX actually this zaps the entire palette. */
2870 systopalette();
2871 init_palette();
2872 /* Force a repaint of the terminal window. */
2873 term_invalidate(term);
2874 }
2875 break;
c44bf5bd 2876 case WM_AGENT_CALLBACK:
2877 {
2878 struct agent_callback *c = (struct agent_callback *)lParam;
2879 c->callback(c->callback_ctx, c->data, c->len);
2880 sfree(c);
2881 }
2882 return 0;
011b0e33 2883 default:
16837214 2884 if (message == wm_mousewheel || message == WM_MOUSEWHEEL) {
c1b55581 2885 int shift_pressed=0, control_pressed=0;
011b0e33 2886
2887 if (message == WM_MOUSEWHEEL) {
2888 wheel_accumulator += (short)HIWORD(wParam);
2889 shift_pressed=LOWORD(wParam) & MK_SHIFT;
2890 control_pressed=LOWORD(wParam) & MK_CONTROL;
2891 } else {
2892 BYTE keys[256];
2893 wheel_accumulator += (int)wParam;
2894 if (GetKeyboardState(keys)!=0) {
2895 shift_pressed=keys[VK_SHIFT]&0x80;
2896 control_pressed=keys[VK_CONTROL]&0x80;
2897 }
2898 }
2899
2900 /* process events when the threshold is reached */
2901 while (abs(wheel_accumulator) >= WHEEL_DELTA) {
2902 int b;
2903
2904 /* reduce amount for next time */
2905 if (wheel_accumulator > 0) {
2906 b = MBT_WHEEL_UP;
2907 wheel_accumulator -= WHEEL_DELTA;
2908 } else if (wheel_accumulator < 0) {
2909 b = MBT_WHEEL_DOWN;
2910 wheel_accumulator += WHEEL_DELTA;
2911 } else
2912 break;
2913
2914 if (send_raw_mouse &&
2915 !(cfg.mouse_override && shift_pressed)) {
2916 /* send a mouse-down followed by a mouse up */
fc5b0934 2917 term_mouse(term, b, translate_button(b),
011b0e33 2918 MA_CLICK,
2919 TO_CHR_X(X_POS(lParam)),
2920 TO_CHR_Y(Y_POS(lParam)), shift_pressed,
2921 control_pressed, is_alt_pressed());
fc5b0934 2922 term_mouse(term, b, translate_button(b),
2923 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
011b0e33 2924 TO_CHR_Y(Y_POS(lParam)), shift_pressed,
2925 control_pressed, is_alt_pressed());
2926 } else {
2927 /* trigger a scroll */
887035a5 2928 term_scroll(term, 0,
2929 b == MBT_WHEEL_UP ?
2930 -term->rows / 2 : term->rows / 2);
011b0e33 2931 }
2932 }
2933 return 0;
2934 }
374330e2 2935 }
2936
5c4dea05 2937 /*
2938 * Any messages we don't process completely above are passed through to
2939 * DefWindowProc() for default processing.
2940 */
32874aea 2941 return DefWindowProc(hwnd, message, wParam, lParam);
374330e2 2942}
2943
2944/*
ec8679e9 2945 * Move the system caret. (We maintain one, even though it's
2946 * invisible, for the benefit of blind people: apparently some
2947 * helper software tracks the system caret, so we should arrange to
2948 * have one.)
2949 */
a8327734 2950void sys_cursor(void *frontend, int x, int y)
32874aea 2951{
c1da5066 2952 int cx, cy;
2953
887035a5 2954 if (!term->has_focus) return;
c1da5066 2955
2956 /*
2957 * Avoid gratuitously re-updating the cursor position and IMM
2958 * window if there's no actual change required.
2959 */
2960 cx = x * font_width + offset_width;
2961 cy = y * font_height + offset_height;
2962 if (cx == caret_x && cy == caret_y)
2963 return;
2964 caret_x = cx;
2965 caret_y = cy;
2966
2967 sys_cursor_update();
2968}
2969
2970static void sys_cursor_update(void)
2971{
88485e4d 2972 COMPOSITIONFORM cf;
2973 HIMC hIMC;
2974
887035a5 2975 if (!term->has_focus) return;
c1da5066 2976
2977 if (caret_x < 0 || caret_y < 0)
2978 return;
2979
2980 SetCaretPos(caret_x, caret_y);
88485e4d 2981
2982 /* IMM calls on Win98 and beyond only */
2983 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32s) return; /* 3.11 */
2984
2985 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS &&
2986 osVersion.dwMinorVersion == 0) return; /* 95 */
2987
2988 /* we should have the IMM functions */
2989 hIMC = ImmGetContext(hwnd);
2990 cf.dwStyle = CFS_POINT;
c1da5066 2991 cf.ptCurrentPos.x = caret_x;
2992 cf.ptCurrentPos.y = caret_y;
88485e4d 2993 ImmSetCompositionWindow(hIMC, &cf);
2994
2995 ImmReleaseContext(hwnd, hIMC);
ec8679e9 2996}
2997
2998/*
374330e2 2999 * Draw a line of text in the window, at given character
3000 * coordinates, in given attributes.
3001 *
3002 * We are allowed to fiddle with the contents of `text'.
3003 */
c6958dfe 3004void do_text_internal(Context ctx, int x, int y, wchar_t *text, int len,
3005 unsigned long attr, int lattr)
32874aea 3006{
374330e2 3007 COLORREF fg, bg, t;
3008 int nfg, nbg, nfont;
3009 HDC hdc = ctx;
59ad2c03 3010 RECT line_box;
3011 int force_manual_underline = 0;
36566009 3012 int fnt_width, char_width;
4eeb7d09 3013 int text_adjust = 0;
3014 static int *IpDx = 0, IpDxLEN = 0;
3015
36566009 3016 lattr &= LATTR_MODE;
3017
3018 char_width = fnt_width = font_width * (1 + (lattr != LATTR_NORM));
3019
4eeb7d09 3020 if (attr & ATTR_WIDE)
3021 char_width *= 2;
59ad2c03 3022
4eeb7d09 3023 if (len > IpDxLEN || IpDx[0] != char_width) {
59ad2c03 3024 int i;
32874aea 3025 if (len > IpDxLEN) {
59ad2c03 3026 sfree(IpDx);
3d88e64d 3027 IpDx = snewn(len + 16, int);
32874aea 3028 IpDxLEN = (len + 16);
59ad2c03 3029 }
32874aea 3030 for (i = 0; i < IpDxLEN; i++)
4eeb7d09 3031 IpDx[i] = char_width;
59ad2c03 3032 }
374330e2 3033
5a73255e 3034 /* Only want the left half of double width lines */
887035a5 3035 if (lattr != LATTR_NORM && x*2 >= term->cols)
5a73255e 3036 return;
3037
c9def1b8 3038 x *= fnt_width;
374330e2 3039 y *= font_height;
5a73255e 3040 x += offset_width;
3041 y += offset_height;
374330e2 3042
887035a5 3043 if ((attr & TATTR_ACTCURS) && (cfg.cursor_type == 0 || term->big_cursor)) {
cecb13f6 3044 attr &= ~(ATTR_REVERSE|ATTR_BLINK|ATTR_COLOURS);
3045 if (bold_mode == BOLD_COLOURS)
3046 attr &= ~ATTR_BOLD;
3047
3048 /* cursor fg and bg */
3049 attr |= (260 << ATTR_FGSHIFT) | (261 << ATTR_BGSHIFT);
374330e2 3050 }
3051
3052 nfont = 0;
4eeb7d09 3053 if (cfg.vtmode == VT_POORMAN && lattr != LATTR_NORM) {
3054 /* Assume a poorman font is borken in other ways too. */
3055 lattr = LATTR_WIDE;
3056 } else
3057 switch (lattr) {
3058 case LATTR_NORM:
3059 break;
3060 case LATTR_WIDE:
3061 nfont |= FONT_WIDE;
374330e2 3062 break;
4eeb7d09 3063 default:
3064 nfont |= FONT_WIDE + FONT_HIGH;
3065 break;
3066 }
5a73255e 3067 if (attr & ATTR_NARROW)
3068 nfont |= FONT_NARROW;
4eeb7d09 3069
3070 /* Special hack for the VT100 linedraw glyphs. */
36566009 3071 if (text[0] >= 0x23BA && text[0] <= 0x23BD) {
3072 switch ((unsigned char) (text[0])) {
3073 case 0xBA:
3074 text_adjust = -2 * font_height / 5;
3075 break;
3076 case 0xBB:
3077 text_adjust = -1 * font_height / 5;
3078 break;
3079 case 0xBC:
3080 text_adjust = font_height / 5;
3081 break;
3082 case 0xBD:
3083 text_adjust = 2 * font_height / 5;
3084 break;
3085 }
3086 if (lattr == LATTR_TOP || lattr == LATTR_BOT)
3087 text_adjust *= 2;
3088 text[0] = ucsdata.unitab_xterm['q'];
3089 if (attr & ATTR_UNDER) {
3090 attr &= ~ATTR_UNDER;
3091 force_manual_underline = 1;
374330e2 3092 }
3093 }
3094
4eeb7d09 3095 /* Anything left as an original character set is unprintable. */
36566009 3096 if (DIRECT_CHAR(text[0])) {
3097 int i;
3098 for (i = 0; i < len; i++)
3099 text[i] = 0xFFFD;
4eeb7d09 3100 }
3101
3102 /* OEM CP */
36566009 3103 if ((text[0] & CSET_MASK) == CSET_OEMCP)
4eeb7d09 3104 nfont |= FONT_OEM;
3105
37ca32ed 3106 nfg = ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
37ca32ed 3107 nbg = ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
374330e2 3108 if (bold_mode == BOLD_FONT && (attr & ATTR_BOLD))
3109 nfont |= FONT_BOLD;
3110 if (und_mode == UND_FONT && (attr & ATTR_UNDER))
3111 nfont |= FONT_UNDERLINE;
4eeb7d09 3112 another_font(nfont);
32874aea 3113 if (!fonts[nfont]) {
3114 if (nfont & FONT_UNDERLINE)
59ad2c03 3115 force_manual_underline = 1;
3116 /* Don't do the same for manual bold, it could be bad news. */
3117
32874aea 3118 nfont &= ~(FONT_BOLD | FONT_UNDERLINE);
59ad2c03 3119 }
4eeb7d09 3120 another_font(nfont);
3121 if (!fonts[nfont])
3122 nfont = FONT_NORMAL;
374330e2 3123 if (attr & ATTR_REVERSE) {
32874aea 3124 t = nfg;
3125 nfg = nbg;
3126 nbg = t;
374330e2 3127 }
cecb13f6 3128 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BOLD)) {
3129 if (nfg < 16) nfg |= 8;
3130 else if (nfg >= 256) nfg |= 1;
3131 }
3132 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BLINK)) {
3133 if (nbg < 16) nbg |= 8;
3134 else if (nbg >= 256) nbg |= 1;
3135 }
374330e2 3136 fg = colours[nfg];
3137 bg = colours[nbg];
32874aea 3138 SelectObject(hdc, fonts[nfont]);
3139 SetTextColor(hdc, fg);
3140 SetBkColor(hdc, bg);
c6958dfe 3141 if (attr & TATTR_COMBINING)
3142 SetBkMode(hdc, TRANSPARENT);
3143 else
3144 SetBkMode(hdc, OPAQUE);
32874aea 3145 line_box.left = x;
3146 line_box.top = y;
4eeb7d09 3147 line_box.right = x + char_width * len;
32874aea 3148 line_box.bottom = y + font_height;
4eeb7d09 3149
5a73255e 3150 /* Only want the left half of double width lines */
887035a5 3151 if (line_box.right > font_width*term->cols+offset_width)
3152 line_box.right = font_width*term->cols+offset_width;
5a73255e 3153
4eeb7d09 3154 /* We're using a private area for direct to font. (512 chars.) */
36566009 3155 if (ucsdata.dbcs_screenfont && (text[0] & CSET_MASK) == CSET_ACP) {
4eeb7d09 3156 /* Ho Hum, dbcs fonts are a PITA! */
3157 /* To display on W9x I have to convert to UCS */
3158 static wchar_t *uni_buf = 0;
3159 static int uni_len = 0;
5a73255e 3160 int nlen, mptr;
4eeb7d09 3161 if (len > uni_len) {
3162 sfree(uni_buf);
3d88e64d 3163 uni_len = len;
3164 uni_buf = snewn(uni_len, wchar_t);
4eeb7d09 3165 }
4eeb7d09 3166
5a73255e 3167 for(nlen = mptr = 0; mptr<len; mptr++) {
3168 uni_buf[nlen] = 0xFFFD;
21d2b241 3169 if (IsDBCSLeadByteEx(ucsdata.font_codepage, (BYTE) text[mptr])) {
36566009 3170 char dbcstext[2];
3171 dbcstext[0] = text[mptr] & 0xFF;
3172 dbcstext[1] = text[mptr+1] & 0xFF;
5a73255e 3173 IpDx[nlen] += char_width;
21d2b241 3174 MultiByteToWideChar(ucsdata.font_codepage, MB_USEGLYPHCHARS,
36566009 3175 dbcstext, 2, uni_buf+nlen, 1);
5a73255e 3176 mptr++;
3177 }
3178 else
3179 {
36566009 3180 char dbcstext[1];
3181 dbcstext[0] = text[mptr] & 0xFF;
21d2b241 3182 MultiByteToWideChar(ucsdata.font_codepage, MB_USEGLYPHCHARS,
36566009 3183 dbcstext, 1, uni_buf+nlen, 1);
5a73255e 3184 }
3185 nlen++;
3186 }
4eeb7d09 3187 if (nlen <= 0)
3188 return; /* Eeek! */
3189
3190 ExtTextOutW(hdc, x,
3191 y - font_height * (lattr == LATTR_BOT) + text_adjust,
5a73255e 3192 ETO_CLIPPED | ETO_OPAQUE, &line_box, uni_buf, nlen, IpDx);
4eeb7d09 3193 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
3194 SetBkMode(hdc, TRANSPARENT);
3195 ExtTextOutW(hdc, x - 1,
3196 y - font_height * (lattr ==
3197 LATTR_BOT) + text_adjust,
5a73255e 3198 ETO_CLIPPED, &line_box, uni_buf, nlen, IpDx);
4eeb7d09 3199 }
5a73255e 3200
3201 IpDx[0] = -1;
36566009 3202 } else if (DIRECT_FONT(text[0])) {
3203 static char *directbuf = NULL;
3204 static int directlen = 0;
3205 int i;
3206 if (len > directlen) {
3207 directlen = len;
3208 directbuf = sresize(directbuf, directlen, char);
3209 }
3210
3211 for (i = 0; i < len; i++)
3212 directbuf[i] = text[i] & 0xFF;
3213
4eeb7d09 3214 ExtTextOut(hdc, x,
3215 y - font_height * (lattr == LATTR_BOT) + text_adjust,
36566009 3216 ETO_CLIPPED | ETO_OPAQUE, &line_box, directbuf, len, IpDx);
4eeb7d09 3217 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
3218 SetBkMode(hdc, TRANSPARENT);
3219
3220 /* GRR: This draws the character outside it's box and can leave
3221 * 'droppings' even with the clip box! I suppose I could loop it
3222 * one character at a time ... yuk.
3223 *
3224 * Or ... I could do a test print with "W", and use +1 or -1 for this
3225 * shift depending on if the leftmost column is blank...
3226 */
3227 ExtTextOut(hdc, x - 1,
3228 y - font_height * (lattr ==
3229 LATTR_BOT) + text_adjust,
36566009 3230 ETO_CLIPPED, &line_box, directbuf, len, IpDx);
4eeb7d09 3231 }
3232 } else {
3233 /* And 'normal' unicode characters */
3234 static WCHAR *wbuf = NULL;
3235 static int wlen = 0;
3236 int i;
c6958dfe 3237
4eeb7d09 3238 if (wlen < len) {
3239 sfree(wbuf);
3240 wlen = len;
3d88e64d 3241 wbuf = snewn(wlen, WCHAR);
4eeb7d09 3242 }
c6958dfe 3243
4eeb7d09 3244 for (i = 0; i < len; i++)
36566009 3245 wbuf[i] = text[i];
4eeb7d09 3246
f0fccd51 3247 /* print Glyphs as they are, without Windows' Shaping*/
3248 exact_textout(hdc, x, y - font_height * (lattr == LATTR_BOT) + text_adjust,
c6958dfe 3249 &line_box, wbuf, len, IpDx, !(attr & TATTR_COMBINING));
f0fccd51 3250/* ExtTextOutW(hdc, x,
4eeb7d09 3251 y - font_height * (lattr == LATTR_BOT) + text_adjust,
3252 ETO_CLIPPED | ETO_OPAQUE, &line_box, wbuf, len, IpDx);
f0fccd51 3253 */
4eeb7d09 3254
3255 /* And the shadow bold hack. */
5a73255e 3256 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
4eeb7d09 3257 SetBkMode(hdc, TRANSPARENT);
3258 ExtTextOutW(hdc, x - 1,
3259 y - font_height * (lattr ==
3260 LATTR_BOT) + text_adjust,
3261 ETO_CLIPPED, &line_box, wbuf, len, IpDx);
3262 }
374330e2 3263 }
4eeb7d09 3264 if (lattr != LATTR_TOP && (force_manual_underline ||
3265 (und_mode == UND_LINE
3266 && (attr & ATTR_UNDER)))) {
32874aea 3267 HPEN oldpen;
4eeb7d09 3268 int dec = descent;
3269 if (lattr == LATTR_BOT)
3270 dec = dec * 2 - font_height;
3271
32874aea 3272 oldpen = SelectObject(hdc, CreatePen(PS_SOLID, 0, fg));
4eeb7d09 3273 MoveToEx(hdc, x, y + dec, NULL);
3274 LineTo(hdc, x + len * char_width, y + dec);
32874aea 3275 oldpen = SelectObject(hdc, oldpen);
3276 DeleteObject(oldpen);
374330e2 3277 }
4eeb7d09 3278}
3279
c6958dfe 3280/*
3281 * Wrapper that handles combining characters.
3282 */
3283void do_text(Context ctx, int x, int y, wchar_t *text, int len,
3284 unsigned long attr, int lattr)
3285{
3286 if (attr & TATTR_COMBINING) {
3287 unsigned long a = 0;
3288 attr &= ~TATTR_COMBINING;
3289 while (len--) {
3290 do_text_internal(ctx, x, y, text, 1, attr | a, lattr);
3291 text++;
3292 a = TATTR_COMBINING;
3293 }
3294 } else
3295 do_text_internal(ctx, x, y, text, len, attr, lattr);
3296}
3297
36566009 3298void do_cursor(Context ctx, int x, int y, wchar_t *text, int len,
4eeb7d09 3299 unsigned long attr, int lattr)
3300{
3301
3302 int fnt_width;
3303 int char_width;
3304 HDC hdc = ctx;
3305 int ctype = cfg.cursor_type;
3306
8af95aa3 3307 lattr &= LATTR_MODE;
3308
887035a5 3309 if ((attr & TATTR_ACTCURS) && (ctype == 0 || term->big_cursor)) {
36566009 3310 if (*text != UCSWIDE) {
4eeb7d09 3311 do_text(ctx, x, y, text, len, attr, lattr);
3312 return;
3313 }
3314 ctype = 2;
3315 attr |= TATTR_RIGHTCURS;
3316 }
3317
3318 fnt_width = char_width = font_width * (1 + (lattr != LATTR_NORM));
3319 if (attr & ATTR_WIDE)
3320 char_width *= 2;
3321 x *= fnt_width;
3322 y *= font_height;
5a73255e 3323 x += offset_width;
3324 y += offset_height;
4eeb7d09 3325
887035a5 3326 if ((attr & TATTR_PASCURS) && (ctype == 0 || term->big_cursor)) {
374330e2 3327 POINT pts[5];
32874aea 3328 HPEN oldpen;
374330e2 3329 pts[0].x = pts[1].x = pts[4].x = x;
4eeb7d09 3330 pts[2].x = pts[3].x = x + char_width - 1;
374330e2 3331 pts[0].y = pts[3].y = pts[4].y = y;
32874aea 3332 pts[1].y = pts[2].y = y + font_height - 1;
cecb13f6 3333 oldpen = SelectObject(hdc, CreatePen(PS_SOLID, 0, colours[261]));
32874aea 3334 Polyline(hdc, pts, 5);
3335 oldpen = SelectObject(hdc, oldpen);
3336 DeleteObject(oldpen);
4eeb7d09 3337 } else if ((attr & (TATTR_ACTCURS | TATTR_PASCURS)) && ctype != 0) {
32874aea 3338 int startx, starty, dx, dy, length, i;
4eeb7d09 3339 if (ctype == 1) {
32874aea 3340 startx = x;
3341 starty = y + descent;
3342 dx = 1;
3343 dy = 0;
4eeb7d09 3344 length = char_width;
32874aea 3345 } else {
4e30ff69 3346 int xadjust = 0;
4eeb7d09 3347 if (attr & TATTR_RIGHTCURS)
3348 xadjust = char_width - 1;
32874aea 3349 startx = x + xadjust;
3350 starty = y;
3351 dx = 0;
3352 dy = 1;
3353 length = font_height;
3354 }
4eeb7d09 3355 if (attr & TATTR_ACTCURS) {
32874aea 3356 HPEN oldpen;
3357 oldpen =
fdc94dd1 3358 SelectObject(hdc, CreatePen(PS_SOLID, 0, colours[261]));
32874aea 3359 MoveToEx(hdc, startx, starty, NULL);
3360 LineTo(hdc, startx + dx * length, starty + dy * length);
3361 oldpen = SelectObject(hdc, oldpen);
3362 DeleteObject(oldpen);
3363 } else {
3364 for (i = 0; i < length; i++) {
3365 if (i % 2 == 0) {
fdc94dd1 3366 SetPixel(hdc, startx, starty, colours[261]);
32874aea 3367 }
3368 startx += dx;
3369 starty += dy;
3370 }
3371 }
4e30ff69 3372 }
374330e2 3373}
3374
5a73255e 3375/* This function gets the actual width of a character in the normal font.
3376 */
2102eb8a 3377int char_width(Context ctx, int uc) {
5a73255e 3378 HDC hdc = ctx;
3379 int ibuf = 0;
3380
3381 /* If the font max is the same as the font ave width then this
3382 * function is a no-op.
3383 */
3384 if (!font_dualwidth) return 1;
3385
3386 switch (uc & CSET_MASK) {
36566009 3387 case CSET_ASCII:
21d2b241 3388 uc = ucsdata.unitab_line[uc & 0xFF];
5a73255e 3389 break;
36566009 3390 case CSET_LINEDRW:
21d2b241 3391 uc = ucsdata.unitab_xterm[uc & 0xFF];
5a73255e 3392 break;
36566009 3393 case CSET_SCOACS:
21d2b241 3394 uc = ucsdata.unitab_scoacs[uc & 0xFF];
5a73255e 3395 break;
3396 }
3397 if (DIRECT_FONT(uc)) {
21d2b241 3398 if (ucsdata.dbcs_screenfont) return 1;
5a73255e 3399
3400 /* Speedup, I know of no font where ascii is the wrong width */
36566009 3401 if ((uc&~CSET_MASK) >= ' ' && (uc&~CSET_MASK)<= '~')
5a73255e 3402 return 1;
3403
36566009 3404 if ( (uc & CSET_MASK) == CSET_ACP ) {
5a73255e 3405 SelectObject(hdc, fonts[FONT_NORMAL]);
36566009 3406 } else if ( (uc & CSET_MASK) == CSET_OEMCP ) {
5a73255e 3407 another_font(FONT_OEM);
3408 if (!fonts[FONT_OEM]) return 0;
3409
3410 SelectObject(hdc, fonts[FONT_OEM]);
3411 } else
3412 return 0;
3413
36566009 3414 if ( GetCharWidth32(hdc, uc&~CSET_MASK, uc&~CSET_MASK, &ibuf) != 1 &&
3415 GetCharWidth(hdc, uc&~CSET_MASK, uc&~CSET_MASK, &ibuf) != 1)
5a73255e 3416 return 0;
3417 } else {
3418 /* Speedup, I know of no font where ascii is the wrong width */
3419 if (uc >= ' ' && uc <= '~') return 1;
3420
3421 SelectObject(hdc, fonts[FONT_NORMAL]);
3422 if ( GetCharWidth32W(hdc, uc, uc, &ibuf) == 1 )
3423 /* Okay that one worked */ ;
3424 else if ( GetCharWidthW(hdc, uc, uc, &ibuf) == 1 )
3425 /* This should work on 9x too, but it's "less accurate" */ ;
3426 else
3427 return 0;
3428 }
3429
3430 ibuf += font_width / 2 -1;
3431 ibuf /= font_width;
3432
3433 return ibuf;
3434}
3435
374330e2 3436/*
c9def1b8 3437 * Translate a WM_(SYS)?KEY(UP|DOWN) message into a string of ASCII
3438 * codes. Returns number of bytes used or zero to drop the message
3439 * or -1 to forward the message to windows.
374330e2 3440 */
3cf144db 3441static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam,
32874aea 3442 unsigned char *output)
3443{
374330e2 3444 BYTE keystate[256];
32874aea 3445 int scan, left_alt = 0, key_down, shift_state;
3446 int r, i, code;
3447 unsigned char *p = output;
4eeb7d09 3448 static int alt_sum = 0;
374330e2 3449
00e3ba0f 3450 HKL kbd_layout = GetKeyboardLayout(0);
3451
c264be08 3452 /* keys is for ToAsciiEx. There's some ick here, see below. */
3453 static WORD keys[3];
0c50ef57 3454 static int compose_char = 0;
3455 static WPARAM compose_key = 0;
32874aea 3456
c9def1b8 3457 r = GetKeyboardState(keystate);
32874aea 3458 if (!r)
3459 memset(keystate, 0, sizeof(keystate));
3460 else {
ec55b220 3461#if 0
4eeb7d09 3462#define SHOW_TOASCII_RESULT
32874aea 3463 { /* Tell us all about key events */
3464 static BYTE oldstate[256];
3465 static int first = 1;
3466 static int scan;
3467 int ch;
3468 if (first)
3469 memcpy(oldstate, keystate, sizeof(oldstate));
3470 first = 0;
3471
3472 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT) {
3473 debug(("+"));
3474 } else if ((HIWORD(lParam) & KF_UP)
3475 && scan == (HIWORD(lParam) & 0xFF)) {
3476 debug((". U"));
3477 } else {
3478 debug((".\n"));
3479 if (wParam >= VK_F1 && wParam <= VK_F20)
3480 debug(("K_F%d", wParam + 1 - VK_F1));
3481 else
3482 switch (wParam) {
3483 case VK_SHIFT:
3484 debug(("SHIFT"));
3485 break;
3486 case VK_CONTROL:
3487 debug(("CTRL"));
3488 break;
3489 case VK_MENU:
3490 debug(("ALT"));
3491 break;
3492 default:
3493 debug(("VK_%02x", wParam));
3494 }
3495 if (message == WM_SYSKEYDOWN || message == WM_SYSKEYUP)
3496 debug(("*"));
3497 debug((", S%02x", scan = (HIWORD(lParam) & 0xFF)));
3498
3499 ch = MapVirtualKeyEx(wParam, 2, kbd_layout);
3500 if (ch >= ' ' && ch <= '~')
3501 debug((", '%c'", ch));
3502 else if (ch)
3503 debug((", $%02x", ch));
3504
3505 if (keys[0])
3506 debug((", KB0=%02x", keys[0]));
3507 if (keys[1])
3508 debug((", KB1=%02x", keys[1]));
3509 if (keys[2])
3510 debug((", KB2=%02x", keys[2]));
3511
3512 if ((keystate[VK_SHIFT] & 0x80) != 0)
3513 debug((", S"));
3514 if ((keystate[VK_CONTROL] & 0x80) != 0)
3515 debug((", C"));
3516 if ((HIWORD(lParam) & KF_EXTENDED))
3517 debug((", E"));
3518 if ((HIWORD(lParam) & KF_UP))
3519 debug((", U"));
3520 }
3521
3522 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT);
3523 else if ((HIWORD(lParam) & KF_UP))
3524 oldstate[wParam & 0xFF] ^= 0x80;
3525 else
3526 oldstate[wParam & 0xFF] ^= 0x81;
3527
3528 for (ch = 0; ch < 256; ch++)
3529 if (oldstate[ch] != keystate[ch])
3530 debug((", M%02x=%02x", ch, keystate[ch]));
3531
3532 memcpy(oldstate, keystate, sizeof(oldstate));
3533 }
ec55b220 3534#endif
3535
32874aea 3536 if (wParam == VK_MENU && (HIWORD(lParam) & KF_EXTENDED)) {
2cba1186 3537 keystate[VK_RMENU] = keystate[VK_MENU];
3538 }
3539
c9def1b8 3540
3541 /* Nastyness with NUMLock - Shift-NUMLock is left alone though */
5789bc94 3542 if ((cfg.funky_type == FUNKY_VT400 ||
3543 (cfg.funky_type <= FUNKY_LINUX && term->app_keypad_keys &&
887035a5 3544 !cfg.no_applic_k))
32874aea 3545 && wParam == VK_NUMLOCK && !(keystate[VK_SHIFT] & 0x80)) {
c9def1b8 3546
3547 wParam = VK_EXECUTE;
3548
3549 /* UnToggle NUMLock */
32874aea 3550 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == 0)
3551 keystate[VK_NUMLOCK] ^= 1;
c9def1b8 3552 }
3553
3554 /* And write back the 'adjusted' state */
32874aea 3555 SetKeyboardState(keystate);
c9def1b8 3556 }
3557
3558 /* Disable Auto repeat if required */
887035a5 3559 if (term->repeat_off &&
3560 (HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT)
32874aea 3561 return 0;
c9def1b8 3562
32874aea 3563 if ((HIWORD(lParam) & KF_ALTDOWN) && (keystate[VK_RMENU] & 0x80) == 0)
c9def1b8 3564 left_alt = 1;
3565
32874aea 3566 key_down = ((HIWORD(lParam) & KF_UP) == 0);
c9def1b8 3567
95bbe1ae 3568 /* Make sure Ctrl-ALT is not the same as AltGr for ToAscii unless told. */
32874aea 3569 if (left_alt && (keystate[VK_CONTROL] & 0x80)) {
95bbe1ae 3570 if (cfg.ctrlaltkeys)
3571 keystate[VK_MENU] = 0;
3572 else {
3573 keystate[VK_RMENU] = 0x80;
3574 left_alt = 0;
3575 }
3576 }
c9def1b8 3577
3578 scan = (HIWORD(lParam) & (KF_UP | KF_EXTENDED | 0xFF));
32874aea 3579 shift_state = ((keystate[VK_SHIFT] & 0x80) != 0)
3580 + ((keystate[VK_CONTROL] & 0x80) != 0) * 2;
374330e2 3581
95bbe1ae 3582 /* Note if AltGr was pressed and if it was used as a compose key */
3583 if (!compose_state) {
159eba53 3584 compose_key = 0x100;
95bbe1ae 3585 if (cfg.compose_key) {
32874aea 3586 if (wParam == VK_MENU && (HIWORD(lParam) & KF_EXTENDED))
95bbe1ae 3587 compose_key = wParam;
3588 }
3589 if (wParam == VK_APPS)
3590 compose_key = wParam;
3591 }
3592
32874aea 3593 if (wParam == compose_key) {
3594 if (compose_state == 0
3595 && (HIWORD(lParam) & (KF_UP | KF_REPEAT)) == 0) compose_state =
3596 1;
3597 else if (compose_state == 1 && (HIWORD(lParam) & KF_UP))
95bbe1ae 3598 compose_state = 2;
3599 else
3600 compose_state = 0;
32874aea 3601 } else if (compose_state == 1 && wParam != VK_CONTROL)
95bbe1ae 3602 compose_state = 0;
3603
32874aea 3604 if (compose_state > 1 && left_alt)
3605 compose_state = 0;
67c339f7 3606
c9def1b8 3607 /* Sanitize the number pad if not using a PC NumPad */
887035a5 3608 if (left_alt || (term->app_keypad_keys && !cfg.no_applic_k
5789bc94 3609 && cfg.funky_type != FUNKY_XTERM)
3610 || cfg.funky_type == FUNKY_VT400 || cfg.nethack_keypad || compose_state) {
32874aea 3611 if ((HIWORD(lParam) & KF_EXTENDED) == 0) {
c9def1b8 3612 int nParam = 0;
32874aea 3613 switch (wParam) {
3614 case VK_INSERT:
3615 nParam = VK_NUMPAD0;
3616 break;
3617 case VK_END:
3618 nParam = VK_NUMPAD1;
3619 break;
3620 case VK_DOWN:
3621 nParam = VK_NUMPAD2;
3622 break;
3623 case VK_NEXT:
3624 nParam = VK_NUMPAD3;
3625 break;
3626 case VK_LEFT:
3627 nParam = VK_NUMPAD4;
3628 break;
3629 case VK_CLEAR:
3630 nParam = VK_NUMPAD5;
3631 break;
3632 case VK_RIGHT:
3633 nParam = VK_NUMPAD6;
3634 break;
3635 case VK_HOME:
3636 nParam = VK_NUMPAD7;
3637 break;
3638 case VK_UP:
3639 nParam = VK_NUMPAD8;
3640 break;
3641 case VK_PRIOR:
3642 nParam = VK_NUMPAD9;
3643 break;
3644 case VK_DELETE:
3645 nParam = VK_DECIMAL;
3646 break;
c9def1b8 3647 }
32874aea 3648 if (nParam) {
3649 if (keystate[VK_NUMLOCK] & 1)
3650 shift_state |= 1;
c9def1b8 3651 wParam = nParam;
3652 }
25d39ef6 3653 }
3654 }
3655
c9def1b8 3656 /* If a key is pressed and AltGr is not active */
32874aea 3657 if (key_down && (keystate[VK_RMENU] & 0x80) == 0 && !compose_state) {
3658 /* Okay, prepare for most alts then ... */
3659 if (left_alt)
3660 *p++ = '\033';
374330e2 3661
c9def1b8 3662 /* Lets see if it's a pattern we know all about ... */
3663 if (wParam == VK_PRIOR && shift_state == 1) {
32874aea 3664 SendMessage(hwnd, WM_VSCROLL, SB_PAGEUP, 0);
3665 return 0;
c9def1b8 3666 }
153580da 3667 if (wParam == VK_PRIOR && shift_state == 2) {
3668 SendMessage(hwnd, WM_VSCROLL, SB_LINEUP, 0);
3669 return 0;
3670 }
c9def1b8 3671 if (wParam == VK_NEXT && shift_state == 1) {
32874aea 3672 SendMessage(hwnd, WM_VSCROLL, SB_PAGEDOWN, 0);
3673 return 0;
3674 }
153580da 3675 if (wParam == VK_NEXT && shift_state == 2) {
3676 SendMessage(hwnd, WM_VSCROLL, SB_LINEDOWN, 0);
3677 return 0;
3678 }
32874aea 3679 if (wParam == VK_INSERT && shift_state == 1) {
887035a5 3680 term_do_paste(term);
32874aea 3681 return 0;
3682 }
c9def1b8 3683 if (left_alt && wParam == VK_F4 && cfg.alt_f4) {
32874aea 3684 return -1;
c9def1b8 3685 }
3686 if (left_alt && wParam == VK_SPACE && cfg.alt_space) {
32874aea 3687 SendMessage(hwnd, WM_SYSCOMMAND, SC_KEYMENU, 0);
3688 return -1;
c9def1b8 3689 }
2cae8529 3690 if (left_alt && wParam == VK_RETURN && cfg.fullscreenonaltenter &&
3691 (cfg.resize_action != RESIZE_DISABLED)) {
0ed2f48e 3692 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) != KF_REPEAT)
3693 flip_full_screen();
8f57d753 3694 return -1;
3695 }
ec55b220 3696 /* Control-Numlock for app-keypad mode switch */
3697 if (wParam == VK_PAUSE && shift_state == 2) {
887035a5 3698 term->app_keypad_keys ^= 1;
ec55b220 3699 return 0;
3700 }
374330e2 3701
c9def1b8 3702 /* Nethack keypad */
3703 if (cfg.nethack_keypad && !left_alt) {
32874aea 3704 switch (wParam) {
3705 case VK_NUMPAD1:
3706 *p++ = shift_state ? 'B' : 'b';
3707 return p - output;
3708 case VK_NUMPAD2:
3709 *p++ = shift_state ? 'J' : 'j';
3710 return p - output;
3711 case VK_NUMPAD3:
3712 *p++ = shift_state ? 'N' : 'n';
3713 return p - output;
3714 case VK_NUMPAD4:
3715 *p++ = shift_state ? 'H' : 'h';
3716 return p - output;
3717 case VK_NUMPAD5:
3718 *p++ = shift_state ? '.' : '.';
3719 return p - output;
3720 case VK_NUMPAD6:
3721 *p++ = shift_state ? 'L' : 'l';
3722 return p - output;
3723 case VK_NUMPAD7:
3724 *p++ = shift_state ? 'Y' : 'y';
3725 return p - output;
3726 case VK_NUMPAD8:
3727 *p++ = shift_state ? 'K' : 'k';
3728 return p - output;
3729 case VK_NUMPAD9:
3730 *p++ = shift_state ? 'U' : 'u';
3731 return p - output;
3732 }
c9def1b8 3733 }
3734
3735 /* Application Keypad */
3736 if (!left_alt) {
32874aea 3737 int xkey = 0;
3738
5789bc94 3739 if (cfg.funky_type == FUNKY_VT400 ||
3740 (cfg.funky_type <= FUNKY_LINUX &&
887035a5 3741 term->app_keypad_keys && !cfg.no_applic_k)) switch (wParam) {
32874aea 3742 case VK_EXECUTE:
3743 xkey = 'P';
3744 break;
3745 case VK_DIVIDE:
3746 xkey = 'Q';
3747 break;
3748 case VK_MULTIPLY:
3749 xkey = 'R';
3750 break;
3751 case VK_SUBTRACT:
3752 xkey = 'S';
3753 break;
3754 }
887035a5 3755 if (term->app_keypad_keys && !cfg.no_applic_k)
32874aea 3756 switch (wParam) {
3757 case VK_NUMPAD0:
3758 xkey = 'p';
3759 break;
3760 case VK_NUMPAD1:
3761 xkey = 'q';
3762 break;
3763 case VK_NUMPAD2:
3764 xkey = 'r';
3765 break;
3766 case VK_NUMPAD3:
3767 xkey = 's';
3768 break;
3769 case VK_NUMPAD4:
3770 xkey = 't';
3771 break;
3772 case VK_NUMPAD5:
3773 xkey = 'u';
3774 break;
3775 case VK_NUMPAD6:
3776 xkey = 'v';
3777 break;
3778 case VK_NUMPAD7:
3779 xkey = 'w';
3780 break;
3781 case VK_NUMPAD8:
3782 xkey = 'x';
3783 break;
3784 case VK_NUMPAD9:
3785 xkey = 'y';
3786 break;
3787
3788 case VK_DECIMAL:
3789 xkey = 'n';
3790 break;
3791 case VK_ADD:
5789bc94 3792 if (cfg.funky_type == FUNKY_XTERM) {
32874aea 3793 if (shift_state)
3794 xkey = 'l';
3795 else
3796 xkey = 'k';
3797 } else if (shift_state)
3798 xkey = 'm';
c9def1b8 3799 else
32874aea 3800 xkey = 'l';
3801 break;
3802
3803 case VK_DIVIDE:
5789bc94 3804 if (cfg.funky_type == FUNKY_XTERM)
32874aea 3805 xkey = 'o';
3806 break;
3807 case VK_MULTIPLY:
5789bc94 3808 if (cfg.funky_type == FUNKY_XTERM)
32874aea 3809 xkey = 'j';
3810 break;
3811 case VK_SUBTRACT:
5789bc94 3812 if (cfg.funky_type == FUNKY_XTERM)
32874aea 3813 xkey = 'm';
3814 break;
3815
3816 case VK_RETURN:
3817 if (HIWORD(lParam) & KF_EXTENDED)
3818 xkey = 'M';
3819 break;
c9def1b8 3820 }
32874aea 3821 if (xkey) {
887035a5 3822 if (term->vt52_mode) {
32874aea 3823 if (xkey >= 'P' && xkey <= 'S')
3824 p += sprintf((char *) p, "\x1B%c", xkey);
3825 else
3826 p += sprintf((char *) p, "\x1B?%c", xkey);
3827 } else
3828 p += sprintf((char *) p, "\x1BO%c", xkey);
3829 return p - output;
c9def1b8 3830 }
3831 }
3832
32874aea 3833 if (wParam == VK_BACK && shift_state == 0) { /* Backspace */
c9def1b8 3834 *p++ = (cfg.bksp_is_delete ? 0x7F : 0x08);
a5f3e637 3835 *p++ = 0;
3836 return -2;
c9def1b8 3837 }
e8e8d6e2 3838 if (wParam == VK_BACK && shift_state == 1) { /* Shift Backspace */
3839 /* We do the opposite of what is configured */
3840 *p++ = (cfg.bksp_is_delete ? 0x08 : 0x7F);
3841 *p++ = 0;
3842 return -2;
3843 }
32874aea 3844 if (wParam == VK_TAB && shift_state == 1) { /* Shift tab */
3845 *p++ = 0x1B;
3846 *p++ = '[';
3847 *p++ = 'Z';
3848 return p - output;
c9def1b8 3849 }
32874aea 3850 if (wParam == VK_SPACE && shift_state == 2) { /* Ctrl-Space */
3851 *p++ = 0;
3852 return p - output;
c9def1b8 3853 }
32874aea 3854 if (wParam == VK_SPACE && shift_state == 3) { /* Ctrl-Shift-Space */
3855 *p++ = 160;
3856 return p - output;
c9def1b8 3857 }
32874aea 3858 if (wParam == VK_CANCEL && shift_state == 2) { /* Ctrl-Break */
3859 *p++ = 3;
a5f3e637 3860 *p++ = 0;
3861 return -2;
c9def1b8 3862 }
32874aea 3863 if (wParam == VK_PAUSE) { /* Break/Pause */
3864 *p++ = 26;
3865 *p++ = 0;
3866 return -2;
95bbe1ae 3867 }
c9def1b8 3868 /* Control-2 to Control-8 are special */
32874aea 3869 if (shift_state == 2 && wParam >= '2' && wParam <= '8') {
3870 *p++ = "\000\033\034\035\036\037\177"[wParam - '2'];
c9def1b8 3871 return p - output;
3872 }
237f2b6e 3873 if (shift_state == 2 && (wParam == 0xBD || wParam == 0xBF)) {
c9def1b8 3874 *p++ = 0x1F;
3875 return p - output;
3876 }
3877 if (shift_state == 2 && wParam == 0xDF) {
3878 *p++ = 0x1C;
3879 return p - output;
3880 }
9aa461e4 3881 if (shift_state == 3 && wParam == 0xDE) {
3882 *p++ = 0x1E; /* Ctrl-~ == Ctrl-^ in xterm at least */
3883 return p - output;
3884 }
887035a5 3885 if (shift_state == 0 && wParam == VK_RETURN && term->cr_lf_return) {
32874aea 3886 *p++ = '\r';
3887 *p++ = '\n';
c9def1b8 3888 return p - output;
3889 }
374330e2 3890
c5e9c988 3891 /*
c9def1b8 3892 * Next, all the keys that do tilde codes. (ESC '[' nn '~',
3893 * for integer decimal nn.)
3894 *
3895 * We also deal with the weird ones here. Linux VCs replace F1
3896 * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
3897 * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
3898 * respectively.
c5e9c988 3899 */
c9def1b8 3900 code = 0;
3901 switch (wParam) {
32874aea 3902 case VK_F1:
3903 code = (keystate[VK_SHIFT] & 0x80 ? 23 : 11);
3904 break;
3905 case VK_F2:
3906 code = (keystate[VK_SHIFT] & 0x80 ? 24 : 12);
3907 break;
3908 case VK_F3:
3909 code = (keystate[VK_SHIFT] & 0x80 ? 25 : 13);
3910 break;
3911 case VK_F4:
3912 code = (keystate[VK_SHIFT] & 0x80 ? 26 : 14);
3913 break;
3914 case VK_F5:
3915 code = (keystate[VK_SHIFT] & 0x80 ? 28 : 15);
3916 break;
3917 case VK_F6:
3918 code = (keystate[VK_SHIFT] & 0x80 ? 29 : 17);
3919 break;
3920 case VK_F7:
3921 code = (keystate[VK_SHIFT] & 0x80 ? 31 : 18);
3922 break;
3923 case VK_F8:
3924 code = (keystate[VK_SHIFT] & 0x80 ? 32 : 19);
3925 break;
3926 case VK_F9:
3927 code = (keystate[VK_SHIFT] & 0x80 ? 33 : 20);
3928 break;
3929 case VK_F10:
3930 code = (keystate[VK_SHIFT] & 0x80 ? 34 : 21);
3931 break;
3932 case VK_F11:
3933 code = 23;
3934 break;
3935 case VK_F12:
3936 code = 24;
3937 break;
3938 case VK_F13:
3939 code = 25;
3940 break;
3941 case VK_F14:
3942 code = 26;
3943 break;
3944 case VK_F15:
3945 code = 28;
3946 break;
3947 case VK_F16:
3948 code = 29;
3949 break;
3950 case VK_F17:
3951 code = 31;
3952 break;
3953 case VK_F18:
3954 code = 32;
3955 break;
3956 case VK_F19:
3957 code = 33;
3958 break;
3959 case VK_F20:
3960 code = 34;
3961 break;
dfca2656 3962 }
3963 if ((shift_state&2) == 0) switch (wParam) {
32874aea 3964 case VK_HOME:
3965 code = 1;
3966 break;
3967 case VK_INSERT:
3968 code = 2;
3969 break;
3970 case VK_DELETE:
3971 code = 3;
3972 break;
3973 case VK_END:
3974 code = 4;
3975 break;
3976 case VK_PRIOR:
3977 code = 5;
3978 break;
3979 case VK_NEXT:
3980 code = 6;
3981 break;
374330e2 3982 }
ec55b220 3983 /* Reorder edit keys to physical order */
5789bc94 3984 if (cfg.funky_type == FUNKY_VT400 && code <= 6)
32874aea 3985 code = "\0\2\1\4\5\3\6"[code];
ec55b220 3986
887035a5 3987 if (term->vt52_mode && code > 0 && code <= 6) {
32874aea 3988 p += sprintf((char *) p, "\x1B%c", " HLMEIG"[code]);
f37caa11 3989 return p - output;
3990 }
3991
5789bc94 3992 if (cfg.funky_type == FUNKY_SCO && /* SCO function keys */
9bc81a2c 3993 code >= 11 && code <= 34) {
e24b1972 3994 char codes[] = "MNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@[\\]^_`{";
3995 int index = 0;
3996 switch (wParam) {
3997 case VK_F1: index = 0; break;
3998 case VK_F2: index = 1; break;
3999 case VK_F3: index = 2; break;
4000 case VK_F4: index = 3; break;
4001 case VK_F5: index = 4; break;
4002 case VK_F6: index = 5; break;
4003 case VK_F7: index = 6; break;
4004 case VK_F8: index = 7; break;
4005 case VK_F9: index = 8; break;
4006 case VK_F10: index = 9; break;
4007 case VK_F11: index = 10; break;
4008 case VK_F12: index = 11; break;
4009 }
4010 if (keystate[VK_SHIFT] & 0x80) index += 12;
4011 if (keystate[VK_CONTROL] & 0x80) index += 24;
4012 p += sprintf((char *) p, "\x1B[%c", codes[index]);
f37caa11 4013 return p - output;
4014 }
5789bc94 4015 if (cfg.funky_type == FUNKY_SCO && /* SCO small keypad */
9bc81a2c 4016 code >= 1 && code <= 6) {
4017 char codes[] = "HL.FIG";
4018 if (code == 3) {
4019 *p++ = '\x7F';
4020 } else {
4021 p += sprintf((char *) p, "\x1B[%c", codes[code-1]);
4022 }
4023 return p - output;
4024 }
5789bc94 4025 if ((term->vt52_mode || cfg.funky_type == FUNKY_VT100P) && code >= 11 && code <= 24) {
f37caa11 4026 int offt = 0;
32874aea 4027 if (code > 15)
4028 offt++;
4029 if (code > 21)
4030 offt++;
887035a5 4031 if (term->vt52_mode)
32874aea 4032 p += sprintf((char *) p, "\x1B%c", code + 'P' - 11 - offt);
f37caa11 4033 else
32874aea 4034 p +=
4035 sprintf((char *) p, "\x1BO%c", code + 'P' - 11 - offt);
f37caa11 4036 return p - output;
4037 }
5789bc94 4038 if (cfg.funky_type == FUNKY_LINUX && code >= 11 && code <= 15) {
32874aea 4039 p += sprintf((char *) p, "\x1B[[%c", code + 'A' - 11);
c9def1b8 4040 return p - output;
4041 }
5789bc94 4042 if (cfg.funky_type == FUNKY_XTERM && code >= 11 && code <= 14) {
887035a5 4043 if (term->vt52_mode)
32874aea 4044 p += sprintf((char *) p, "\x1B%c", code + 'P' - 11);
ec55b220 4045 else
32874aea 4046 p += sprintf((char *) p, "\x1BO%c", code + 'P' - 11);
c9def1b8 4047 return p - output;
4048 }
4049 if (cfg.rxvt_homeend && (code == 1 || code == 4)) {
32874aea 4050 p += sprintf((char *) p, code == 1 ? "\x1B[H" : "\x1BOw");
c9def1b8 4051 return p - output;
4052 }
4053 if (code) {
32874aea 4054 p += sprintf((char *) p, "\x1B[%d~", code);
374330e2 4055 return p - output;
374330e2 4056 }
45dabbc5 4057
c9def1b8 4058 /*
4059 * Now the remaining keys (arrows and Keypad 5. Keypad 5 for
4060 * some reason seems to send VK_CLEAR to Windows...).
4061 */
4062 {
4063 char xkey = 0;
4064 switch (wParam) {
32874aea 4065 case VK_UP:
4066 xkey = 'A';
4067 break;
4068 case VK_DOWN:
4069 xkey = 'B';
4070 break;
4071 case VK_RIGHT:
4072 xkey = 'C';
4073 break;
4074 case VK_LEFT:
4075 xkey = 'D';
4076 break;
4077 case VK_CLEAR:
4078 xkey = 'G';
4079 break;
c9def1b8 4080 }
32874aea 4081 if (xkey) {
887035a5 4082 if (term->vt52_mode)
32874aea 4083 p += sprintf((char *) p, "\x1B%c", xkey);
e864f84f 4084 else {
887035a5 4085 int app_flg = (term->app_cursor_keys && !cfg.no_applic_c);
3a953121 4086#if 0
4087 /*
4088 * RDB: VT100 & VT102 manuals both state the
4089 * app cursor keys only work if the app keypad
4090 * is on.
4091 *
4092 * SGT: That may well be true, but xterm
4093 * disagrees and so does at least one
4094 * application, so I've #if'ed this out and the
4095 * behaviour is back to PuTTY's original: app
4096 * cursor and app keypad are independently
4097 * switchable modes. If anyone complains about
4098 * _this_ I'll have to put in a configurable
4099 * option.
e864f84f 4100 */
887035a5 4101 if (!term->app_keypad_keys)
e864f84f 4102 app_flg = 0;
3a953121 4103#endif
e864f84f 4104 /* Useful mapping of Ctrl-arrows */
4105 if (shift_state == 2)
4106 app_flg = !app_flg;
4107
4108 if (app_flg)
4109 p += sprintf((char *) p, "\x1BO%c", xkey);
4110 else
4111 p += sprintf((char *) p, "\x1B[%c", xkey);
4112 }
c9def1b8 4113 return p - output;
4114 }
4115 }
0c50ef57 4116
4117 /*
4118 * Finally, deal with Return ourselves. (Win95 seems to
4119 * foul it up when Alt is pressed, for some reason.)
4120 */
32874aea 4121 if (wParam == VK_RETURN) { /* Return */
0c50ef57 4122 *p++ = 0x0D;
a5f3e637 4123 *p++ = 0;
4124 return -2;
0c50ef57 4125 }
4eeb7d09 4126
4127 if (left_alt && wParam >= VK_NUMPAD0 && wParam <= VK_NUMPAD9)
4128 alt_sum = alt_sum * 10 + wParam - VK_NUMPAD0;
4129 else
4130 alt_sum = 0;
67c339f7 4131 }
374330e2 4132
c9def1b8 4133 /* Okay we've done everything interesting; let windows deal with
4134 * the boring stuff */
4135 {
a9c02454 4136 BOOL capsOn=0;
4137
4138 /* helg: clear CAPS LOCK state if caps lock switches to cyrillic */
4139 if(cfg.xlat_capslockcyr && keystate[VK_CAPITAL] != 0) {
4140 capsOn= !left_alt;
4141 keystate[VK_CAPITAL] = 0;
4142 }
4143
c264be08 4144 /* XXX how do we know what the max size of the keys array should
4145 * be is? There's indication on MS' website of an Inquire/InquireEx
4146 * functioning returning a KBINFO structure which tells us. */
4147 if (osVersion.dwPlatformId == VER_PLATFORM_WIN32_NT) {
4148 /* XXX 'keys' parameter is declared in MSDN documentation as
4149 * 'LPWORD lpChar'.
4150 * The experience of a French user indicates that on
4151 * Win98, WORD[] should be passed in, but on Win2K, it should
4152 * be BYTE[]. German WinXP and my Win2K with "US International"
4153 * driver corroborate this.
4154 * Experimentally I've conditionalised the behaviour on the
4155 * Win9x/NT split, but I suspect it's worse than that.
4156 * See wishlist item `win-dead-keys' for more horrible detail
4157 * and speculations. */
4158 BYTE keybs[3];
4159 int i;
4160 r = ToAsciiEx(wParam, scan, keystate, (LPWORD)keybs, 0, kbd_layout);
4161 for (i=0; i<3; i++) keys[i] = keybs[i];
4162 } else {
4163 r = ToAsciiEx(wParam, scan, keystate, keys, 0, kbd_layout);
4164 }
4eeb7d09 4165#ifdef SHOW_TOASCII_RESULT
4166 if (r == 1 && !key_down) {
4167 if (alt_sum) {
21d2b241 4168 if (in_utf(term) || ucsdata.dbcs_screenfont)
4eeb7d09 4169 debug((", (U+%04x)", alt_sum));
4170 else
4171 debug((", LCH(%d)", alt_sum));
4172 } else {
4173 debug((", ACH(%d)", keys[0]));
4174 }
4175 } else if (r > 0) {
4176 int r1;
4177 debug((", ASC("));
4178 for (r1 = 0; r1 < r; r1++) {
4179 debug(("%s%d", r1 ? "," : "", keys[r1]));
4180 }
4181 debug((")"));
4182 }
4183#endif
32874aea 4184 if (r > 0) {
4eeb7d09 4185 WCHAR keybuf;
256cb87c 4186
4187 /*
4188 * Interrupt an ongoing paste. I'm not sure this is
4189 * sensible, but for the moment it's preferable to
4190 * having to faff about buffering things.
4191 */
887035a5 4192 term_nopaste(term);
256cb87c 4193
c9def1b8 4194 p = output;
32874aea 4195 for (i = 0; i < r; i++) {
4196 unsigned char ch = (unsigned char) keys[i];
14963b8f 4197
32874aea 4198 if (compose_state == 2 && (ch & 0x80) == 0 && ch > ' ') {
c9def1b8 4199 compose_char = ch;
32874aea 4200 compose_state++;
c9def1b8 4201 continue;
4202 }
32874aea 4203 if (compose_state == 3 && (ch & 0x80) == 0 && ch > ' ') {
c9def1b8 4204 int nc;
4205 compose_state = 0;
4206
32874aea 4207 if ((nc = check_compose(compose_char, ch)) == -1) {
fe50e814 4208 MessageBeep(MB_ICONHAND);
c9def1b8 4209 return 0;
4210 }
4eeb7d09 4211 keybuf = nc;
887035a5 4212 term_seen_key_event(term);
e3be8de5 4213 if (ldisc)
4214 luni_send(ldisc, &keybuf, 1, 1);
4eeb7d09 4215 continue;
c9def1b8 4216 }
374330e2 4217
c9def1b8 4218 compose_state = 0;
374330e2 4219
4eeb7d09 4220 if (!key_down) {
4221 if (alt_sum) {
21d2b241 4222 if (in_utf(term) || ucsdata.dbcs_screenfont) {
4eeb7d09 4223 keybuf = alt_sum;
887035a5 4224 term_seen_key_event(term);
e3be8de5 4225 if (ldisc)
4226 luni_send(ldisc, &keybuf, 1, 1);
4eeb7d09 4227 } else {
4228 ch = (char) alt_sum;
5471d09a 4229 /*
4230 * We need not bother about stdin
4231 * backlogs here, because in GUI PuTTY
4232 * we can't do anything about it
4233 * anyway; there's no means of asking
4234 * Windows to hold off on KEYDOWN
4235 * messages. We _have_ to buffer
4236 * everything we're sent.
4237 */
887035a5 4238 term_seen_key_event(term);
e3be8de5 4239 if (ldisc)
4240 ldisc_send(ldisc, &ch, 1, 1);
4eeb7d09 4241 }
4242 alt_sum = 0;
405a0c29 4243 } else {
887035a5 4244 term_seen_key_event(term);
e3be8de5 4245 if (ldisc)
4246 lpage_send(ldisc, kbd_codepage, &ch, 1, 1);
405a0c29 4247 }
4eeb7d09 4248 } else {
a9c02454 4249 if(capsOn && ch < 0x80) {
4250 WCHAR cbuf[2];
4251 cbuf[0] = 27;
4252 cbuf[1] = xlat_uskbd2cyrllic(ch);
887035a5 4253 term_seen_key_event(term);
e3be8de5 4254 if (ldisc)
4255 luni_send(ldisc, cbuf+!left_alt, 1+!!left_alt, 1);
a9c02454 4256 } else {
4257 char cbuf[2];
4258 cbuf[0] = '\033';
4259 cbuf[1] = ch;
887035a5 4260 term_seen_key_event(term);
e3be8de5 4261 if (ldisc)
4262 lpage_send(ldisc, kbd_codepage,
4263 cbuf+!left_alt, 1+!!left_alt, 1);
a9c02454 4264 }
c9def1b8 4265 }
bca9517a 4266 show_mouseptr(0);
c9def1b8 4267 }
374330e2 4268
c9def1b8 4269 /* This is so the ALT-Numpad and dead keys work correctly. */
4270 keys[0] = 0;
4271
32874aea 4272 return p - output;
c9def1b8 4273 }
159eba53 4274 /* If we're definitly not building up an ALT-54321 then clear it */
32874aea 4275 if (!left_alt)
4276 keys[0] = 0;
4eeb7d09 4277 /* If we will be using alt_sum fix the 256s */
21d2b241 4278 else if (keys[0] && (in_utf(term) || ucsdata.dbcs_screenfont))
4eeb7d09 4279 keys[0] = 10;
374330e2 4280 }
4281
dfca2656 4282 /*
4283 * ALT alone may or may not want to bring up the System menu.
4284 * If it's not meant to, we return 0 on presses or releases of
4285 * ALT, to show that we've swallowed the keystroke. Otherwise
4286 * we return -1, which means Windows will give the keystroke
4287 * its default handling (i.e. bring up the System menu).
4288 */
4289 if (wParam == VK_MENU && !cfg.alt_only)
4290 return 0;
374330e2 4291
c9def1b8 4292 return -1;
374330e2 4293}
4294
a8327734 4295void request_paste(void *frontend)
e6346999 4296{
4297 /*
4298 * In Windows, pasting is synchronous: we can read the
4299 * clipboard with no difficulty, so request_paste() can just go
4300 * ahead and paste.
4301 */
887035a5 4302 term_do_paste(term);
e6346999 4303}
4304
a8327734 4305void set_title(void *frontend, char *title)
32874aea 4306{
4307 sfree(window_name);
3d88e64d 4308 window_name = snewn(1 + strlen(title), char);
32874aea 4309 strcpy(window_name, title);
37508af4 4310 if (cfg.win_name_always || !IsIconic(hwnd))
32874aea 4311 SetWindowText(hwnd, title);
374330e2 4312}
4313
a8327734 4314void set_icon(void *frontend, char *title)
32874aea 4315{
4316 sfree(icon_name);
3d88e64d 4317 icon_name = snewn(1 + strlen(title), char);
32874aea 4318 strcpy(icon_name, title);
37508af4 4319 if (!cfg.win_name_always && IsIconic(hwnd))
32874aea 4320 SetWindowText(hwnd, title);
374330e2 4321}
4322
a8327734 4323void set_sbar(void *frontend, int total, int start, int page)
32874aea 4324{
374330e2 4325 SCROLLINFO si;
c9def1b8 4326
1ba99d2c 4327 if (is_full_screen() ? !cfg.scrollbar_in_fullscreen : !cfg.scrollbar)
32874aea 4328 return;
c9def1b8 4329
374330e2 4330 si.cbSize = sizeof(si);
c9def1b8 4331 si.fMask = SIF_ALL | SIF_DISABLENOSCROLL;
374330e2 4332 si.nMin = 0;
4333 si.nMax = total - 1;
4334 si.nPage = page;
4335 si.nPos = start;
c1f5f956 4336 if (hwnd)
32874aea 4337 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
374330e2 4338}
4339
a8327734 4340Context get_ctx(void *frontend)
32874aea 4341{
374330e2 4342 HDC hdc;
4343 if (hwnd) {
32874aea 4344 hdc = GetDC(hwnd);
374330e2 4345 if (hdc && pal)
32874aea 4346 SelectPalette(hdc, pal, FALSE);
374330e2 4347 return hdc;
4348 } else
4349 return NULL;
4350}
4351
32874aea 4352void free_ctx(Context ctx)
4353{
4354 SelectPalette(ctx, GetStockObject(DEFAULT_PALETTE), FALSE);
4355 ReleaseDC(hwnd, ctx);
374330e2 4356}
4357
32874aea 4358static void real_palette_set(int n, int r, int g, int b)
4359{
374330e2 4360 if (pal) {
4361 logpal->palPalEntry[n].peRed = r;
4362 logpal->palPalEntry[n].peGreen = g;
4363 logpal->palPalEntry[n].peBlue = b;
4364 logpal->palPalEntry[n].peFlags = PC_NOCOLLAPSE;
4365 colours[n] = PALETTERGB(r, g, b);
cecb13f6 4366 SetPaletteEntries(pal, 0, NALLCOLOURS, logpal->palPalEntry);
374330e2 4367 } else
4368 colours[n] = RGB(r, g, b);
4369}
4370
a8327734 4371void palette_set(void *frontend, int n, int r, int g, int b)
32874aea 4372{
cecb13f6 4373 if (n >= 16)
4374 n += 256 - 16;
4375 if (n > NALLCOLOURS)
4376 return;
4377 real_palette_set(n, r, g, b);
374330e2 4378 if (pal) {
a8327734 4379 HDC hdc = get_ctx(frontend);
32874aea 4380 UnrealizeObject(pal);
4381 RealizePalette(hdc);
4382 free_ctx(hdc);
374330e2 4383 }
4384}
4385
a8327734 4386void palette_reset(void *frontend)
32874aea 4387{
374330e2 4388 int i;
4389
cecb13f6 4390 /* And this */
4391 for (i = 0; i < NALLCOLOURS; i++) {
374330e2 4392 if (pal) {
4393 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
4394 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
4395 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
4396 logpal->palPalEntry[i].peFlags = 0;
4397 colours[i] = PALETTERGB(defpal[i].rgbtRed,
4398 defpal[i].rgbtGreen,
4399 defpal[i].rgbtBlue);
4400 } else
4401 colours[i] = RGB(defpal[i].rgbtRed,
32874aea 4402 defpal[i].rgbtGreen, defpal[i].rgbtBlue);
374330e2 4403 }
4404
4405 if (pal) {
4406 HDC hdc;
cecb13f6 4407 SetPaletteEntries(pal, 0, NALLCOLOURS, logpal->palPalEntry);
a8327734 4408 hdc = get_ctx(frontend);
32874aea 4409 RealizePalette(hdc);
4410 free_ctx(hdc);
374330e2 4411 }
4412}
4413
a8327734 4414void write_aclip(void *frontend, char *data, int len, int must_deselect)
32874aea 4415{
374330e2 4416 HGLOBAL clipdata;
4417 void *lock;
4418
32874aea 4419 clipdata = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, len + 1);
374330e2 4420 if (!clipdata)
4421 return;
32874aea 4422 lock = GlobalLock(clipdata);
374330e2 4423 if (!lock)
4424 return;
32874aea 4425 memcpy(lock, data, len);
4426 ((unsigned char *) lock)[len] = 0;
4427 GlobalUnlock(clipdata);
374330e2 4428
f0df44da 4429 if (!must_deselect)
32874aea 4430 SendMessage(hwnd, WM_IGNORE_CLIP, TRUE, 0);
f0df44da 4431
32874aea 4432 if (OpenClipboard(hwnd)) {
374330e2 4433 EmptyClipboard();
32874aea 4434 SetClipboardData(CF_TEXT, clipdata);
374330e2 4435 CloseClipboard();
4436 } else
32874aea 4437 GlobalFree(clipdata);
f0df44da 4438
4439 if (!must_deselect)
32874aea 4440 SendMessage(hwnd, WM_IGNORE_CLIP, FALSE, 0);
374330e2 4441}
4442
4eeb7d09 4443/*
4444 * Note: unlike write_aclip() this will not append a nul.
4445 */
a8327734 4446void write_clip(void *frontend, wchar_t * data, int len, int must_deselect)
4eeb7d09 4447{
a7419ea4 4448 HGLOBAL clipdata, clipdata2, clipdata3;
4eeb7d09 4449 int len2;
a7419ea4 4450 void *lock, *lock2, *lock3;
4eeb7d09 4451
4452 len2 = WideCharToMultiByte(CP_ACP, 0, data, len, 0, 0, NULL, NULL);
4453
4454 clipdata = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE,
4455 len * sizeof(wchar_t));
4456 clipdata2 = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, len2);
4457
0e5e7f46 4458 if (!clipdata || !clipdata2) {
4eeb7d09 4459 if (clipdata)
4460 GlobalFree(clipdata);
4461 if (clipdata2)
4462 GlobalFree(clipdata2);
4463 return;
4464 }
4465 if (!(lock = GlobalLock(clipdata)))
4466 return;
4467 if (!(lock2 = GlobalLock(clipdata2)))
4468 return;
4469
4470 memcpy(lock, data, len * sizeof(wchar_t));
4471 WideCharToMultiByte(CP_ACP, 0, data, len, lock2, len2, NULL, NULL);
4472
a7419ea4 4473 if (cfg.rtf_paste) {
4474 wchar_t unitab[256];
4475 char *rtf = NULL;
4476 unsigned char *tdata = (unsigned char *)lock2;
4477 wchar_t *udata = (wchar_t *)lock;
4478 int rtflen = 0, uindex = 0, tindex = 0;
4479 int rtfsize = 0;
4480 int multilen, blen, alen, totallen, i;
4481 char before[16], after[4];
4482
4483 get_unitab(CP_ACP, unitab, 0);
4484
9a30e26b 4485 rtfsize = 100 + strlen(cfg.font.name);
3d88e64d 4486 rtf = snewn(rtfsize, char);
a7419ea4 4487 sprintf(rtf, "{\\rtf1\\ansi%d{\\fonttbl\\f0\\fmodern %s;}\\f0",
9a30e26b 4488 GetACP(), cfg.font.name);
a7419ea4 4489 rtflen = strlen(rtf);
4490
4491 /*
4492 * We want to construct a piece of RTF that specifies the
4493 * same Unicode text. To do this we will read back in
4494 * parallel from the Unicode data in `udata' and the
4495 * non-Unicode data in `tdata'. For each character in
4496 * `tdata' which becomes the right thing in `udata' when
4497 * looked up in `unitab', we just copy straight over from
4498 * tdata. For each one that doesn't, we must WCToMB it
4499 * individually and produce a \u escape sequence.
4500 *
4501 * It would probably be more robust to just bite the bullet
4502 * and WCToMB each individual Unicode character one by one,
4503 * then MBToWC each one back to see if it was an accurate
4504 * translation; but that strikes me as a horrifying number
4505 * of Windows API calls so I want to see if this faster way
4506 * will work. If it screws up badly we can always revert to
4507 * the simple and slow way.
4508 */
4509 while (tindex < len2 && uindex < len &&
4510 tdata[tindex] && udata[uindex]) {
4511 if (tindex + 1 < len2 &&
4512 tdata[tindex] == '\r' &&
4513 tdata[tindex+1] == '\n') {
4514 tindex++;
4515 uindex++;
4516 }
4517 if (unitab[tdata[tindex]] == udata[uindex]) {
4518 multilen = 1;
4519 before[0] = '\0';
4520 after[0] = '\0';
4521 blen = alen = 0;
4522 } else {
4523 multilen = WideCharToMultiByte(CP_ACP, 0, unitab+uindex, 1,
4524 NULL, 0, NULL, NULL);
4525 if (multilen != 1) {
c3b032a6 4526 blen = sprintf(before, "{\\uc%d\\u%d", multilen,
4527 udata[uindex]);
a7419ea4 4528 alen = 1; strcpy(after, "}");
4529 } else {
4530 blen = sprintf(before, "\\u%d", udata[uindex]);
4531 alen = 0; after[0] = '\0';
4532 }
4533 }
4534 assert(tindex + multilen <= len2);
4535 totallen = blen + alen;
4536 for (i = 0; i < multilen; i++) {
4537 if (tdata[tindex+i] == '\\' ||
4538 tdata[tindex+i] == '{' ||
4539 tdata[tindex+i] == '}')
4540 totallen += 2;
4541 else if (tdata[tindex+i] == 0x0D || tdata[tindex+i] == 0x0A)
4542 totallen += 6; /* \par\r\n */
4543 else if (tdata[tindex+i] > 0x7E || tdata[tindex+i] < 0x20)
4544 totallen += 4;
4545 else
4546 totallen++;
4547 }
4548
4549 if (rtfsize < rtflen + totallen + 3) {
4550 rtfsize = rtflen + totallen + 512;
3d88e64d 4551 rtf = sresize(rtf, rtfsize, char);
a7419ea4 4552 }
4553
4554 strcpy(rtf + rtflen, before); rtflen += blen;
4555 for (i = 0; i < multilen; i++) {
4556 if (tdata[tindex+i] == '\\' ||
4557 tdata[tindex+i] == '{' ||
4558 tdata[tindex+i] == '}') {
4559 rtf[rtflen++] = '\\';
4560 rtf[rtflen++] = tdata[tindex+i];
4561 } else if (tdata[tindex+i] == 0x0D || tdata[tindex+i] == 0x0A) {
4562 rtflen += sprintf(rtf+rtflen, "\\par\r\n");
4563 } else if (tdata[tindex+i] > 0x7E || tdata[tindex+i] < 0x20) {
4564 rtflen += sprintf(rtf+rtflen, "\\'%02x", tdata[tindex+i]);
4565 } else {
4566 rtf[rtflen++] = tdata[tindex+i];
4567 }
4568 }
4569 strcpy(rtf + rtflen, after); rtflen += alen;
4570
4571 tindex += multilen;
4572 uindex++;
4573 }
4574
4575 strcpy(rtf + rtflen, "}");
4576 rtflen += 2;
4577
4578 clipdata3 = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, rtflen);
4579 if (clipdata3 && (lock3 = GlobalLock(clipdata3)) != NULL) {
4580 strcpy(lock3, rtf);
4581 GlobalUnlock(clipdata3);
4582 }
4583 sfree(rtf);
4584 } else
4585 clipdata3 = NULL;
4586
4eeb7d09 4587 GlobalUnlock(clipdata);
4588 GlobalUnlock(clipdata2);
4589
4590 if (!must_deselect)
4591 SendMessage(hwnd, WM_IGNORE_CLIP, TRUE, 0);
4592
4593 if (OpenClipboard(hwnd)) {
4594 EmptyClipboard();
4595 SetClipboardData(CF_UNICODETEXT, clipdata);
4596 SetClipboardData(CF_TEXT, clipdata2);
a7419ea4 4597 if (clipdata3)
4598 SetClipboardData(RegisterClipboardFormat(CF_RTF), clipdata3);
4eeb7d09 4599 CloseClipboard();
4600 } else {
4601 GlobalFree(clipdata);
4602 GlobalFree(clipdata2);
4603 }
4604
4605 if (!must_deselect)
4606 SendMessage(hwnd, WM_IGNORE_CLIP, FALSE, 0);
4607}
4608
a8327734 4609void get_clip(void *frontend, wchar_t ** p, int *len)
32874aea 4610{
374330e2 4611 static HGLOBAL clipdata = NULL;
4eeb7d09 4612 static wchar_t *converted = 0;
4613 wchar_t *p2;
374330e2 4614
4eeb7d09 4615 if (converted) {
4616 sfree(converted);
4617 converted = 0;
4618 }
374330e2 4619 if (!p) {
4620 if (clipdata)
32874aea 4621 GlobalUnlock(clipdata);
374330e2 4622 clipdata = NULL;
4623 return;
4eeb7d09 4624 } else if (OpenClipboard(NULL)) {
2d466ffd 4625 if ((clipdata = GetClipboardData(CF_UNICODETEXT))) {
374330e2 4626 CloseClipboard();
4eeb7d09 4627 *p = GlobalLock(clipdata);
4628 if (*p) {
4629 for (p2 = *p; *p2; p2++);
4630 *len = p2 - *p;
4631 return;
374330e2 4632 }
2d466ffd 4633 } else if ( (clipdata = GetClipboardData(CF_TEXT)) ) {
4eeb7d09 4634 char *s;
4635 int i;
4636 CloseClipboard();
4637 s = GlobalLock(clipdata);
4638 i = MultiByteToWideChar(CP_ACP, 0, s, strlen(s) + 1, 0, 0);
3d88e64d 4639 *p = converted = snewn(i, wchar_t);
4eeb7d09 4640 MultiByteToWideChar(CP_ACP, 0, s, strlen(s) + 1, converted, i);
4641 *len = i - 1;
4642 return;
4643 } else
4644 CloseClipboard();
374330e2 4645 }
4646
4647 *p = NULL;
4648 *len = 0;
4649}
4650
4eeb7d09 4651#if 0
374330e2 4652/*
4653 * Move `lines' lines from position `from' to position `to' in the
4654 * window.
4655 */
a8327734 4656void optimised_move(void *frontend, int to, int from, int lines)
32874aea 4657{
374330e2 4658 RECT r;
f67b4e85 4659 int min, max;
374330e2 4660
4661 min = (to < from ? to : from);
4662 max = to + from - min;
374330e2 4663
5a73255e 4664 r.left = offset_width;
887035a5 4665 r.right = offset_width + term->cols * font_width;
5a73255e 4666 r.top = offset_height + min * font_height;
4667 r.bottom = offset_height + (max + lines) * font_height;
32874aea 4668 ScrollWindow(hwnd, 0, (to - from) * font_height, &r, &r);
374330e2 4669}
4eeb7d09 4670#endif
374330e2 4671
4672/*
4673 * Print a message box and perform a fatal exit.
4674 */
32874aea 4675void fatalbox(char *fmt, ...)
4676{
374330e2 4677 va_list ap;
971bcc0a 4678 char *stuff, morestuff[100];
374330e2 4679
4680 va_start(ap, fmt);
971bcc0a 4681 stuff = dupvprintf(fmt, ap);
374330e2 4682 va_end(ap);
f6f450e2 4683 sprintf(morestuff, "%.70s Fatal Error", appname);
4684 MessageBox(hwnd, stuff, morestuff, MB_ICONERROR | MB_OK);
971bcc0a 4685 sfree(stuff);
93b581bd 4686 cleanup_exit(1);
374330e2 4687}
4688
4689/*
1709795f 4690 * Print a modal (Really Bad) message box and perform a fatal exit.
4691 */
4692void modalfatalbox(char *fmt, ...)
4693{
4694 va_list ap;
971bcc0a 4695 char *stuff, morestuff[100];
1709795f 4696
4697 va_start(ap, fmt);
971bcc0a 4698 stuff = dupvprintf(fmt, ap);
1709795f 4699 va_end(ap);
f6f450e2 4700 sprintf(morestuff, "%.70s Fatal Error", appname);
4701 MessageBox(hwnd, stuff, morestuff,
1709795f 4702 MB_SYSTEMMODAL | MB_ICONERROR | MB_OK);
971bcc0a 4703 sfree(stuff);
1709795f 4704 cleanup_exit(1);
4705}
4706
39934deb 4707static void flash_window(int mode);
4708static long next_flash;
4709static int flashing = 0;
4710
4711static void flash_window_timer(void *ctx, long now)
4712{
4713 if (flashing && now - next_flash >= 0) {
4714 flash_window(1);
4715 }
4716}
4717
1709795f 4718/*
f8a28d1f 4719 * Manage window caption / taskbar flashing, if enabled.
4720 * 0 = stop, 1 = maintain, 2 = start
4721 */
4722static void flash_window(int mode)
4723{
f8a28d1f 4724 if ((mode == 0) || (cfg.beep_ind == B_IND_DISABLED)) {
4725 /* stop */
4726 if (flashing) {
4727 FlashWindow(hwnd, FALSE);
4728 flashing = 0;
4729 }
4730
4731 } else if (mode == 2) {
4732 /* start */
4733 if (!flashing) {
f8a28d1f 4734 flashing = 1;
4735 FlashWindow(hwnd, TRUE);
39934deb 4736 next_flash = schedule_timer(450, flash_window_timer, hwnd);
f8a28d1f 4737 }
4738
4739 } else if ((mode == 1) && (cfg.beep_ind == B_IND_FLASH)) {
4740 /* maintain */
4741 if (flashing) {
39934deb 4742 FlashWindow(hwnd, TRUE); /* toggle */
4743 next_flash = schedule_timer(450, flash_window_timer, hwnd);
f8a28d1f 4744 }
4745 }
4746}
4747
4748/*
374330e2 4749 * Beep.
4750 */
a8327734 4751void beep(void *frontend, int mode)
32874aea 4752{
03169ad0 4753 if (mode == BELL_DEFAULT) {
eb04402e 4754 /*
4755 * For MessageBeep style bells, we want to be careful of
4756 * timing, because they don't have the nice property of
4757 * PlaySound bells that each one cancels the previous
4758 * active one. So we limit the rate to one per 50ms or so.
4759 */
4760 static long lastbeep = 0;
d51cdf1e 4761 long beepdiff;
eb04402e 4762
d51cdf1e 4763 beepdiff = GetTickCount() - lastbeep;
eb04402e 4764 if (beepdiff >= 0 && beepdiff < 50)
4765 return;
156686ef 4766 MessageBeep(MB_OK);
d51cdf1e 4767 /*
4768 * The above MessageBeep call takes time, so we record the
4769 * time _after_ it finishes rather than before it starts.
4770 */
4771 lastbeep = GetTickCount();
03169ad0 4772 } else if (mode == BELL_WAVEFILE) {
9a30e26b 4773 if (!PlaySound(cfg.bell_wavefile.path, NULL,
4774 SND_ASYNC | SND_FILENAME)) {
850323f9 4775 char buf[sizeof(cfg.bell_wavefile.path) + 80];
f6f450e2 4776 char otherbuf[100];
03169ad0 4777 sprintf(buf, "Unable to play sound file\n%s\n"
debe102c 4778 "Using default sound instead", cfg.bell_wavefile.path);
f6f450e2 4779 sprintf(otherbuf, "%.70s Sound Error", appname);
4780 MessageBox(hwnd, buf, otherbuf,
32874aea 4781 MB_OK | MB_ICONEXCLAMATION);
03169ad0 4782 cfg.beep = BELL_DEFAULT;
4783 }
85f6b361 4784 } else if (mode == BELL_PCSPEAKER) {
4785 static long lastbeep = 0;
4786 long beepdiff;
4787
4788 beepdiff = GetTickCount() - lastbeep;
4789 if (beepdiff >= 0 && beepdiff < 50)
4790 return;
4791
4792 /*
4793 * We must beep in different ways depending on whether this
4794 * is a 95-series or NT-series OS.
4795 */
4796 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_NT)
4797 Beep(800, 100);
4798 else
4799 MessageBeep(-1);
4800 lastbeep = GetTickCount();
03169ad0 4801 }
f8a28d1f 4802 /* Otherwise, either visual bell or disabled; do nothing here */
887035a5 4803 if (!term->has_focus) {
f8a28d1f 4804 flash_window(2); /* start */
4805 }
374330e2 4806}
8f57d753 4807
4808/*
68f9b3d9 4809 * Minimise or restore the window in response to a server-side
4810 * request.
4811 */
a8327734 4812void set_iconic(void *frontend, int iconic)
68f9b3d9 4813{
4814 if (IsIconic(hwnd)) {
4815 if (!iconic)
4816 ShowWindow(hwnd, SW_RESTORE);
4817 } else {
4818 if (iconic)
4819 ShowWindow(hwnd, SW_MINIMIZE);
4820 }
4821}
4822
4823/*
4824 * Move the window in response to a server-side request.
4825 */
a8327734 4826void move_window(void *frontend, int x, int y)
68f9b3d9 4827{
d1e0a352 4828 if (cfg.resize_action == RESIZE_DISABLED ||
4829 cfg.resize_action == RESIZE_FONT ||
4830 IsZoomed(hwnd))
4831 return;
4832
68f9b3d9 4833 SetWindowPos(hwnd, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
4834}
4835
4836/*
4837 * Move the window to the top or bottom of the z-order in response
4838 * to a server-side request.
4839 */
a8327734 4840void set_zorder(void *frontend, int top)
68f9b3d9 4841{
1ba99d2c 4842 if (cfg.alwaysontop)
68f9b3d9 4843 return; /* ignore */
4844 SetWindowPos(hwnd, top ? HWND_TOP : HWND_BOTTOM, 0, 0, 0, 0,
4845 SWP_NOMOVE | SWP_NOSIZE);
4846}
4847
4848/*
4849 * Refresh the window in response to a server-side request.
4850 */
a8327734 4851void refresh_window(void *frontend)
68f9b3d9 4852{
4853 InvalidateRect(hwnd, NULL, TRUE);
4854}
4855
4856/*
4857 * Maximise or restore the window in response to a server-side
4858 * request.
4859 */
a8327734 4860void set_zoomed(void *frontend, int zoomed)
68f9b3d9 4861{
1ba99d2c 4862 if (IsZoomed(hwnd)) {
4863 if (!zoomed)
4864 ShowWindow(hwnd, SW_RESTORE);
68f9b3d9 4865 } else {
4866 if (zoomed)
4867 ShowWindow(hwnd, SW_MAXIMIZE);
4868 }
4869}
4870
4871/*
4872 * Report whether the window is iconic, for terminal reports.
4873 */
a8327734 4874int is_iconic(void *frontend)
68f9b3d9 4875{
4876 return IsIconic(hwnd);
4877}
4878
4879/*
4880 * Report the window's position, for terminal reports.
4881 */
a8327734 4882void get_window_pos(void *frontend, int *x, int *y)
68f9b3d9 4883{
4884 RECT r;
4885 GetWindowRect(hwnd, &r);
4886 *x = r.left;
4887 *y = r.top;
4888}
4889
4890/*
4891 * Report the window's pixel size, for terminal reports.
4892 */
a8327734 4893void get_window_pixels(void *frontend, int *x, int *y)
68f9b3d9 4894{
4895 RECT r;
4896 GetWindowRect(hwnd, &r);
4897 *x = r.right - r.left;
4898 *y = r.bottom - r.top;
4899}
4900
4901/*
4902 * Return the window or icon title.
4903 */
a8327734 4904char *get_window_title(void *frontend, int icon)
68f9b3d9 4905{
4906 return icon ? icon_name : window_name;
4907}
1ba99d2c 4908
4909/*
4910 * See if we're in full-screen mode.
4911 */
4e95095a 4912static int is_full_screen()
1ba99d2c 4913{
4914 if (!IsZoomed(hwnd))
4915 return FALSE;
4916 if (GetWindowLong(hwnd, GWL_STYLE) & WS_CAPTION)
4917 return FALSE;
4918 return TRUE;
4919}
4920
d0f1bcb4 4921/* Get the rect/size of a full screen window using the nearest available
4922 * monitor in multimon systems; default to something sensible if only
4923 * one monitor is present. */
4924static int get_fullscreen_rect(RECT * ss)
4925{
5d145a14 4926#if defined(MONITOR_DEFAULTTONEAREST) && !defined(NO_MULTIMON)
d0f1bcb4 4927 HMONITOR mon;
4928 MONITORINFO mi;
4929 mon = MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
4930 mi.cbSize = sizeof(mi);
4931 GetMonitorInfo(mon, &mi);
4932
4933 /* structure copy */
4934 *ss = mi.rcMonitor;
4935 return TRUE;
4936#else
4937/* could also use code like this:
4938 ss->left = ss->top = 0;
4939 ss->right = GetSystemMetrics(SM_CXSCREEN);
4940 ss->bottom = GetSystemMetrics(SM_CYSCREEN);
4941*/
e6f8202f 4942 return GetClientRect(GetDesktopWindow(), ss);
d0f1bcb4 4943#endif
4944}
4945
4946
1ba99d2c 4947/*
4948 * Go full-screen. This should only be called when we are already
4949 * maximised.
4950 */
4e95095a 4951static void make_full_screen()
1ba99d2c 4952{
4953 DWORD style;
d0f1bcb4 4954 RECT ss;
1ba99d2c 4955
4956 assert(IsZoomed(hwnd));
4957
d0f1bcb4 4958 if (is_full_screen())
4959 return;
4960
1ba99d2c 4961 /* Remove the window furniture. */
4962 style = GetWindowLong(hwnd, GWL_STYLE);
4963 style &= ~(WS_CAPTION | WS_BORDER | WS_THICKFRAME);
4964 if (cfg.scrollbar_in_fullscreen)
4965 style |= WS_VSCROLL;
4966 else
4967 style &= ~WS_VSCROLL;
4968 SetWindowLong(hwnd, GWL_STYLE, style);
4969
4970 /* Resize ourselves to exactly cover the nearest monitor. */
d0f1bcb4 4971 get_fullscreen_rect(&ss);
4972 SetWindowPos(hwnd, HWND_TOP, ss.left, ss.top,
4973 ss.right - ss.left,
4974 ss.bottom - ss.top,
4975 SWP_FRAMECHANGED);
1ba99d2c 4976
4977 /* Tick the menu item in the System menu. */
4978 CheckMenuItem(GetSystemMenu(hwnd, FALSE), IDM_FULLSCREEN,
4979 MF_CHECKED);
4980}
4981
4982/*
4983 * Clear the full-screen attributes.
4984 */
4e95095a 4985static void clear_full_screen()
1ba99d2c 4986{
4987 DWORD oldstyle, style;
4988
4989 /* Reinstate the window furniture. */
4990 style = oldstyle = GetWindowLong(hwnd, GWL_STYLE);
811f10b3 4991 style |= WS_CAPTION | WS_BORDER;
4992 if (cfg.resize_action == RESIZE_DISABLED)
4993 style &= ~WS_THICKFRAME;
4994 else
4995 style |= WS_THICKFRAME;
1ba99d2c 4996 if (cfg.scrollbar)
4997 style |= WS_VSCROLL;
4998 else
4999 style &= ~WS_VSCROLL;
5000 if (style != oldstyle) {
5001 SetWindowLong(hwnd, GWL_STYLE, style);
5002 SetWindowPos(hwnd, NULL, 0, 0, 0, 0,
5003 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
5004 SWP_FRAMECHANGED);
5005 }
5006
5007 /* Untick the menu item in the System menu. */
5008 CheckMenuItem(GetSystemMenu(hwnd, FALSE), IDM_FULLSCREEN,
5009 MF_UNCHECKED);
5010}
5011
5012/*
5013 * Toggle full-screen mode.
5014 */
4e95095a 5015static void flip_full_screen()
1ba99d2c 5016{
5017 if (is_full_screen()) {
5018 ShowWindow(hwnd, SW_RESTORE);
5019 } else if (IsZoomed(hwnd)) {
5020 make_full_screen();
5021 } else {
5022 SendMessage(hwnd, WM_FULLSCR_ON_MAX, 0, 0);
5023 ShowWindow(hwnd, SW_MAXIMIZE);
5024 }
5025}
ab2c86b9 5026
b9d7bcad 5027void frontend_keypress(void *handle)
ab2c86b9 5028{
5029 /*
5030 * Keypress termination in non-Close-On-Exit mode is not
5031 * currently supported in PuTTY proper, because the window
5032 * always has a perfectly good Close button anyway. So we do
5033 * nothing here.
5034 */
5035 return;
5036}
fbf6cb3b 5037
5038int from_backend(void *frontend, int is_stderr, const char *data, int len)
5039{
5040 return term_data(term, is_stderr, data, len);
5041}
c44bf5bd 5042
5043void agent_schedule_callback(void (*callback)(void *, void *, int),
5044 void *callback_ctx, void *data, int len)
5045{
5046 struct agent_callback *c = snew(struct agent_callback);
5047 c->callback = callback;
5048 c->callback_ctx = callback_ctx;
5049 c->data = data;
5050 c->len = len;
5051 PostMessage(hwnd, WM_AGENT_CALLBACK, 0, (LPARAM)c);
5052}