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