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