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