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