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