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