Move some not-compiled-in debug code somewhere more useful.
[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;
14ce9887 102static int font_width, font_height, font_dualwidth, font_varpitch;
5a73255e 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;
f0fccd51 1263 GetCharacterPlacementW(hdc, lpString, cbCount, 0, &gcpr,
c6958dfe 1264 FLI_MASK | GCP_CLASSIN | GCP_DIACRITIC);
f0fccd51 1265
c6958dfe 1266 ExtTextOut(hdc, x, y,
1267 ETO_GLYPH_INDEX | ETO_CLIPPED | (opaque ? ETO_OPAQUE : 0),
1268 lprc, buffer, cbCount, lpDx);
f0fccd51 1269}
1270
1271/*
fe75e503 1272 * The exact_textout() wrapper, unfortunately, destroys the useful
1273 * Windows `font linking' behaviour: automatic handling of Unicode
1274 * code points not supported in this font by falling back to a font
1275 * which does contain them. Therefore, we adopt a multi-layered
1276 * approach: for any potentially-bidi text, we use exact_textout(),
1277 * and for everything else we use a simple ExtTextOut as we did
1278 * before exact_textout() was introduced.
1279 */
1280static void general_textout(HDC hdc, int x, int y, CONST RECT *lprc,
1281 unsigned short *lpString, UINT cbCount,
1282 CONST INT *lpDx, int opaque)
1283{
1284 int i, j, xp, xn;
1285 RECT newrc;
1286
1287#ifdef FIXME_REMOVE_BEFORE_CHECKIN
1288int k;
1289debug(("general_textout: %d,%d", x, y));
1290for(k=0;k<cbCount;k++)debug((" U+%04X", lpString[k]));
1291debug(("\n rect: [%d,%d %d,%d]", lprc->left, lprc->top, lprc->right, lprc->bottom));
1292debug(("\n"));
1293#endif
1294
1295 xp = xn = x;
1296
62ddb51e 1297 for (i = 0; i < (int)cbCount ;) {
fe75e503 1298 int rtl = is_rtl(lpString[i]);
1299
1300 xn += lpDx[i];
1301
62ddb51e 1302 for (j = i+1; j < (int)cbCount; j++) {
fe75e503 1303 if (rtl != is_rtl(lpString[j]))
1304 break;
1305 xn += lpDx[j];
1306 }
1307
1308 /*
1309 * Now [i,j) indicates a maximal substring of lpString
1310 * which should be displayed using the same textout
1311 * function.
1312 */
1313 if (rtl) {
1314 newrc.left = lprc->left + xp - x;
1315 newrc.right = lprc->left + xn - x;
1316 newrc.top = lprc->top;
1317 newrc.bottom = lprc->bottom;
1318#ifdef FIXME_REMOVE_BEFORE_CHECKIN
1319{
1320int k;
1321debug((" exact_textout: %d,%d", xp, y));
1322for(k=0;k<j-i;k++)debug((" U+%04X", lpString[i+k]));
1323debug(("\n rect: [%d,%d %d,%d]\n", newrc.left, newrc.top, newrc.right, newrc.bottom));
1324}
1325#endif
53126a62 1326 exact_textout(hdc, xp, y, &newrc, lpString+i, j-i,
1327 font_varpitch ? NULL : lpDx+i, opaque);
fe75e503 1328 } else {
9e3a3317 1329 newrc.left = lprc->left + xp - x;
1330 newrc.right = lprc->left + xn - x;
1331 newrc.top = lprc->top;
1332 newrc.bottom = lprc->bottom;
fe75e503 1333#ifdef FIXME_REMOVE_BEFORE_CHECKIN
1334{
1335int k;
1336debug((" ExtTextOut : %d,%d", xp, y));
1337for(k=0;k<j-i;k++)debug((" U+%04X", lpString[i+k]));
1338debug(("\n rect: [%d,%d %d,%d]\n", newrc.left, newrc.top, newrc.right, newrc.bottom));
1339}
1340#endif
fe75e503 1341 ExtTextOutW(hdc, xp, y, ETO_CLIPPED | (opaque ? ETO_OPAQUE : 0),
53126a62 1342 &newrc, lpString+i, j-i,
1343 font_varpitch ? NULL : lpDx+i);
fe75e503 1344 }
1345
1346 i = j;
1347 xp = xn;
1348 }
1349
1350#ifdef FIXME_REMOVE_BEFORE_CHECKIN
1351debug(("general_textout: done, xn=%d\n", xn));
1352#endif
e94dde39 1353 assert(xn - x >= lprc->right - lprc->left);
fe75e503 1354}
1355
14ce9887 1356static int get_font_width(HDC hdc, const TEXTMETRIC *tm)
1357{
1358 int ret;
1359 /* Note that the TMPF_FIXED_PITCH bit is defined upside down :-( */
1360 if (!(tm->tmPitchAndFamily & TMPF_FIXED_PITCH)) {
1361 ret = tm->tmAveCharWidth;
1362 } else {
1363#define FIRST '0'
1364#define LAST '9'
1365 ABCFLOAT widths[LAST-FIRST + 1];
1366 int j;
1367
1368 font_varpitch = TRUE;
1369 font_dualwidth = TRUE;
1370 if (GetCharABCWidthsFloat(hdc, FIRST, LAST, widths)) {
1371 ret = 0;
1372 for (j = 0; j < lenof(widths); j++) {
1373 int width = (int)(0.5 + widths[j].abcfA +
1374 widths[j].abcfB + widths[j].abcfC);
1375 if (ret < width)
1376 ret = width;
1377 }
1378 } else {
1379 ret = tm->tmMaxCharWidth;
1380 }
1381#undef FIRST
1382#undef LAST
1383 }
1384 return ret;
1385}
1386
fe75e503 1387/*
4eeb7d09 1388 * Initialise all the fonts we will need initially. There may be as many as
efd51845 1389 * three or as few as one. The other (potentially) twenty-one fonts are done
4eeb7d09 1390 * if/when they are needed.
1391 *
1392 * We also:
374330e2 1393 *
1394 * - check the font width and height, correcting our guesses if
1395 * necessary.
1396 *
1397 * - verify that the bold font is the same width as the ordinary
1398 * one, and engage shadow bolding if not.
1399 *
1400 * - verify that the underlined font is the same width as the
1401 * ordinary one (manual underlining by means of line drawing can
1402 * be done in a pinch).
374330e2 1403 */
5a73255e 1404static void init_fonts(int pick_width, int pick_height)
32874aea 1405{
374330e2 1406 TEXTMETRIC tm;
4eeb7d09 1407 CPINFO cpinfo;
1408 int fontsize[3];
97fc891e 1409 int i;
374330e2 1410 HDC hdc;
1411 int fw_dontcare, fw_bold;
1412
4eeb7d09 1413 for (i = 0; i < FONT_MAXNO; i++)
374330e2 1414 fonts[i] = NULL;
1415
5a73255e 1416 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
1417 und_mode = UND_FONT;
1418
9a30e26b 1419 if (cfg.font.isbold) {
374330e2 1420 fw_dontcare = FW_BOLD;
5b80d07f 1421 fw_bold = FW_HEAVY;
32874aea 1422 } else {
374330e2 1423 fw_dontcare = FW_DONTCARE;
1424 fw_bold = FW_BOLD;
1425 }
1426
97fc891e 1427 hdc = GetDC(hwnd);
1428
5a73255e 1429 if (pick_height)
1430 font_height = pick_height;
1431 else {
9a30e26b 1432 font_height = cfg.font.height;
5a73255e 1433 if (font_height > 0) {
1434 font_height =
1435 -MulDiv(font_height, GetDeviceCaps(hdc, LOGPIXELSY), 72);
1436 }
3b2c664e 1437 }
59ad2c03 1438 font_width = pick_width;
97fc891e 1439
374330e2 1440#define f(i,c,w,u) \
97fc891e 1441 fonts[i] = CreateFont (font_height, font_width, 0, 0, w, FALSE, u, FALSE, \
374330e2 1442 c, OUT_DEFAULT_PRECIS, \
17c7fed1 1443 CLIP_DEFAULT_PRECIS, FONT_QUALITY(cfg.font_quality), \
9a30e26b 1444 FIXED_PITCH | FF_DONTCARE, cfg.font.name)
97fc891e 1445
9a30e26b 1446 f(FONT_NORMAL, cfg.font.charset, fw_dontcare, FALSE);
97fc891e 1447
4eeb7d09 1448 SelectObject(hdc, fonts[FONT_NORMAL]);
1449 GetTextMetrics(hdc, &tm);
5a73255e 1450
fd64bb27 1451 GetObject(fonts[FONT_NORMAL], sizeof(LOGFONT), &lfont);
1452
14ce9887 1453 /* Note that the TMPF_FIXED_PITCH bit is defined upside down :-( */
1454 if (!(tm.tmPitchAndFamily & TMPF_FIXED_PITCH)) {
1455 font_varpitch = FALSE;
1456 font_dualwidth = (tm.tmAveCharWidth != tm.tmMaxCharWidth);
1457 } else {
1458 font_varpitch = TRUE;
1459 font_dualwidth = TRUE;
1460 }
5a73255e 1461 if (pick_width == 0 || pick_height == 0) {
1462 font_height = tm.tmHeight;
14ce9887 1463 font_width = get_font_width(hdc, &tm);
5a73255e 1464 }
5a73255e 1465
1466#ifdef RDB_DEBUG_PATCH
1467 debug(23, "Primary font H=%d, AW=%d, MW=%d",
1468 tm.tmHeight, tm.tmAveCharWidth, tm.tmMaxCharWidth);
1469#endif
97fc891e 1470
4eeb7d09 1471 {
1472 CHARSETINFO info;
1473 DWORD cset = tm.tmCharSet;
1474 memset(&info, 0xFF, sizeof(info));
97fc891e 1475
4eeb7d09 1476 /* !!! Yes the next line is right */
1477 if (cset == OEM_CHARSET)
21d2b241 1478 ucsdata.font_codepage = GetOEMCP();
4eeb7d09 1479 else
21d2b241 1480 if (TranslateCharsetInfo ((DWORD *) cset, &info, TCI_SRCCHARSET))
1481 ucsdata.font_codepage = info.ciACP;
4eeb7d09 1482 else
21d2b241 1483 ucsdata.font_codepage = -1;
32874aea 1484
21d2b241 1485 GetCPInfo(ucsdata.font_codepage, &cpinfo);
1486 ucsdata.dbcs_screenfont = (cpinfo.MaxCharSize > 1);
4eeb7d09 1487 }
97fc891e 1488
9a30e26b 1489 f(FONT_UNDERLINE, cfg.font.charset, fw_dontcare, TRUE);
97fc891e 1490
4eeb7d09 1491 /*
1492 * Some fonts, e.g. 9-pt Courier, draw their underlines
1493 * outside their character cell. We successfully prevent
1494 * screen corruption by clipping the text output, but then
1495 * we lose the underline completely. Here we try to work
1496 * out whether this is such a font, and if it is, we set a
1497 * flag that causes underlines to be drawn by hand.
1498 *
1499 * Having tried other more sophisticated approaches (such
1500 * as examining the TEXTMETRIC structure or requesting the
1501 * height of a string), I think we'll do this the brute
1502 * force way: we create a small bitmap, draw an underlined
1503 * space on it, and test to see whether any pixels are
1504 * foreground-coloured. (Since we expect the underline to
1505 * go all the way across the character cell, we only search
1506 * down a single column of the bitmap, half way across.)
1507 */
1508 {
1509 HDC und_dc;
1510 HBITMAP und_bm, und_oldbm;
1511 int i, gotit;
1512 COLORREF c;
1513
1514 und_dc = CreateCompatibleDC(hdc);
1515 und_bm = CreateCompatibleBitmap(hdc, font_width, font_height);
1516 und_oldbm = SelectObject(und_dc, und_bm);
1517 SelectObject(und_dc, fonts[FONT_UNDERLINE]);
1518 SetTextAlign(und_dc, TA_TOP | TA_LEFT | TA_NOUPDATECP);
1519 SetTextColor(und_dc, RGB(255, 255, 255));
1520 SetBkColor(und_dc, RGB(0, 0, 0));
1521 SetBkMode(und_dc, OPAQUE);
1522 ExtTextOut(und_dc, 0, 0, ETO_OPAQUE, NULL, " ", 1, NULL);
1523 gotit = FALSE;
1524 for (i = 0; i < font_height; i++) {
1525 c = GetPixel(und_dc, font_width / 2, i);
1526 if (c != RGB(0, 0, 0))
1527 gotit = TRUE;
1528 }
1529 SelectObject(und_dc, und_oldbm);
1530 DeleteObject(und_bm);
1531 DeleteDC(und_dc);
1532 if (!gotit) {
1533 und_mode = UND_LINE;
1534 DeleteObject(fonts[FONT_UNDERLINE]);
1535 fonts[FONT_UNDERLINE] = 0;
32874aea 1536 }
4eeb7d09 1537 }
97fc891e 1538
4eeb7d09 1539 if (bold_mode == BOLD_FONT) {
9a30e26b 1540 f(FONT_BOLD, cfg.font.charset, fw_bold, FALSE);
374330e2 1541 }
1542#undef f
1543
97fc891e 1544 descent = tm.tmAscent + 1;
1545 if (descent >= font_height)
1546 descent = font_height - 1;
374330e2 1547
4eeb7d09 1548 for (i = 0; i < 3; i++) {
97fc891e 1549 if (fonts[i]) {
32874aea 1550 if (SelectObject(hdc, fonts[i]) && GetTextMetrics(hdc, &tm))
14ce9887 1551 fontsize[i] = get_font_width(hdc, &tm) + 256 * tm.tmHeight;
32874aea 1552 else
4eeb7d09 1553 fontsize[i] = -i;
32874aea 1554 } else
4eeb7d09 1555 fontsize[i] = -i;
374330e2 1556 }
1557
32874aea 1558 ReleaseDC(hwnd, hdc);
374330e2 1559
4eeb7d09 1560 if (fontsize[FONT_UNDERLINE] != fontsize[FONT_NORMAL]) {
374330e2 1561 und_mode = UND_LINE;
32874aea 1562 DeleteObject(fonts[FONT_UNDERLINE]);
4eeb7d09 1563 fonts[FONT_UNDERLINE] = 0;
374330e2 1564 }
1565
4eeb7d09 1566 if (bold_mode == BOLD_FONT &&
1567 fontsize[FONT_BOLD] != fontsize[FONT_NORMAL]) {
374330e2 1568 bold_mode = BOLD_SHADOW;
32874aea 1569 DeleteObject(fonts[FONT_BOLD]);
4eeb7d09 1570 fonts[FONT_BOLD] = 0;
374330e2 1571 }
4eeb7d09 1572 fontflag[0] = fontflag[1] = fontflag[2] = 1;
1573
21d2b241 1574 init_ucs(&cfg, &ucsdata);
4eeb7d09 1575}
1576
1577static void another_font(int fontno)
1578{
1579 int basefont;
1580 int fw_dontcare, fw_bold;
1581 int c, u, w, x;
1582 char *s;
1583
1584 if (fontno < 0 || fontno >= FONT_MAXNO || fontflag[fontno])
1585 return;
1586
1587 basefont = (fontno & ~(FONT_BOLDUND));
1588 if (basefont != fontno && !fontflag[basefont])
1589 another_font(basefont);
97fc891e 1590
9a30e26b 1591 if (cfg.font.isbold) {
4eeb7d09 1592 fw_dontcare = FW_BOLD;
1593 fw_bold = FW_HEAVY;
1594 } else {
1595 fw_dontcare = FW_DONTCARE;
1596 fw_bold = FW_BOLD;
1597 }
1598
9a30e26b 1599 c = cfg.font.charset;
4eeb7d09 1600 w = fw_dontcare;
1601 u = FALSE;
9a30e26b 1602 s = cfg.font.name;
4eeb7d09 1603 x = font_width;
1604
1605 if (fontno & FONT_WIDE)
1606 x *= 2;
1607 if (fontno & FONT_NARROW)
5a73255e 1608 x = (x+1)/2;
4eeb7d09 1609 if (fontno & FONT_OEM)
1610 c = OEM_CHARSET;
1611 if (fontno & FONT_BOLD)
1612 w = fw_bold;
1613 if (fontno & FONT_UNDERLINE)
1614 u = TRUE;
1615
1616 fonts[fontno] =
1617 CreateFont(font_height * (1 + !!(fontno & FONT_HIGH)), x, 0, 0, w,
1618 FALSE, u, FALSE, c, OUT_DEFAULT_PRECIS,
17c7fed1 1619 CLIP_DEFAULT_PRECIS, FONT_QUALITY(cfg.font_quality),
14ce9887 1620 DEFAULT_PITCH | FF_DONTCARE, s);
4eeb7d09 1621
1622 fontflag[fontno] = 1;
1623}
1624
1625static void deinit_fonts(void)
1626{
1627 int i;
1628 for (i = 0; i < FONT_MAXNO; i++) {
1629 if (fonts[i])
1630 DeleteObject(fonts[i]);
1631 fonts[i] = 0;
1632 fontflag[i] = 0;
374330e2 1633 }
1634}
1635
a8327734 1636void request_resize(void *frontend, int w, int h)
32874aea 1637{
59ad2c03 1638 int width, height;
c9def1b8 1639
1640 /* If the window is maximized supress resizing attempts */
5a73255e 1641 if (IsZoomed(hwnd)) {
0ed2f48e 1642 if (cfg.resize_action == RESIZE_TERM)
5a73255e 1643 return;
1644 }
32874aea 1645
ad5c93cc 1646 if (cfg.resize_action == RESIZE_DISABLED) return;
887035a5 1647 if (h == term->rows && w == term->cols) return;
5a73255e 1648
1649 /* Sanity checks ... */
1650 {
32874aea 1651 static int first_time = 1;
1652 static RECT ss;
1653
1654 switch (first_time) {
1655 case 1:
1656 /* Get the size of the screen */
d0f1bcb4 1657 if (get_fullscreen_rect(&ss))
32874aea 1658 /* first_time = 0 */ ;
1659 else {
1660 first_time = 2;
1661 break;
1662 }
1663 case 0:
1664 /* Make sure the values are sane */
5a73255e 1665 width = (ss.right - ss.left - extra_width) / 4;
1666 height = (ss.bottom - ss.top - extra_height) / 6;
32874aea 1667
5a73255e 1668 if (w > width || h > height)
1669 return;
32874aea 1670 if (w < 15)
1671 w = 15;
1672 if (h < 1)
5a73255e 1673 h = 1;
32874aea 1674 }
c9def1b8 1675 }
59ad2c03 1676
887035a5 1677 term_size(term, h, w, cfg.savelines);
5a73255e 1678
0ed2f48e 1679 if (cfg.resize_action != RESIZE_FONT && !IsZoomed(hwnd)) {
5a73255e 1680 width = extra_width + font_width * w;
1681 height = extra_height + font_height * h;
374330e2 1682
5a73255e 1683 SetWindowPos(hwnd, NULL, 0, 0, width, height,
1684 SWP_NOACTIVATE | SWP_NOCOPYBITS |
1685 SWP_NOMOVE | SWP_NOZORDER);
1686 } else
1687 reset_window(0);
1688
1689 InvalidateRect(hwnd, NULL, TRUE);
1690}
1691
1692static void reset_window(int reinit) {
1693 /*
1694 * This function decides how to resize or redraw when the
1695 * user changes something.
1696 *
1697 * This function doesn't like to change the terminal size but if the
1698 * font size is locked that may be it's only soluion.
1699 */
1700 int win_width, win_height;
1701 RECT cr, wr;
1702
1703#ifdef RDB_DEBUG_PATCH
1704 debug((27, "reset_window()"));
1705#endif
1706
1707 /* Current window sizes ... */
1708 GetWindowRect(hwnd, &wr);
1709 GetClientRect(hwnd, &cr);
1710
1711 win_width = cr.right - cr.left;
1712 win_height = cr.bottom - cr.top;
1713
0ed2f48e 1714 if (cfg.resize_action == RESIZE_DISABLED) reinit = 2;
1715
5a73255e 1716 /* Are we being forced to reload the fonts ? */
1717 if (reinit>1) {
1718#ifdef RDB_DEBUG_PATCH
1719 debug((27, "reset_window() -- Forced deinit"));
1720#endif
1721 deinit_fonts();
1722 init_fonts(0,0);
1723 }
1724
1725 /* Oh, looks like we're minimised */
1726 if (win_width == 0 || win_height == 0)
1727 return;
1728
1729 /* Is the window out of position ? */
1730 if ( !reinit &&
887035a5 1731 (offset_width != (win_width-font_width*term->cols)/2 ||
1732 offset_height != (win_height-font_height*term->rows)/2) ){
1733 offset_width = (win_width-font_width*term->cols)/2;
1734 offset_height = (win_height-font_height*term->rows)/2;
5a73255e 1735 InvalidateRect(hwnd, NULL, TRUE);
1736#ifdef RDB_DEBUG_PATCH
1737 debug((27, "reset_window() -> Reposition terminal"));
1738#endif
1739 }
1740
6003660f 1741 if (IsZoomed(hwnd)) {
5a73255e 1742 /* We're fullscreen, this means we must not change the size of
1743 * the window so it's the font size or the terminal itself.
1744 */
1745
1746 extra_width = wr.right - wr.left - cr.right + cr.left;
1747 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
1748
0ed2f48e 1749 if (cfg.resize_action != RESIZE_TERM) {
887035a5 1750 if ( font_width != win_width/term->cols ||
1751 font_height != win_height/term->rows) {
5a73255e 1752 deinit_fonts();
887035a5 1753 init_fonts(win_width/term->cols, win_height/term->rows);
1754 offset_width = (win_width-font_width*term->cols)/2;
1755 offset_height = (win_height-font_height*term->rows)/2;
5a73255e 1756 InvalidateRect(hwnd, NULL, TRUE);
1757#ifdef RDB_DEBUG_PATCH
1758 debug((25, "reset_window() -> Z font resize to (%d, %d)",
1759 font_width, font_height));
1760#endif
1761 }
1762 } else {
1620020b 1763 if ( font_width * term->cols != win_width ||
1764 font_height * term->rows != win_height) {
5a73255e 1765 /* Our only choice at this point is to change the
1766 * size of the terminal; Oh well.
1767 */
887035a5 1768 term_size(term, win_height/font_height, win_width/font_width,
1769 cfg.savelines);
1770 offset_width = (win_width-font_width*term->cols)/2;
1771 offset_height = (win_height-font_height*term->rows)/2;
5a73255e 1772 InvalidateRect(hwnd, NULL, TRUE);
1773#ifdef RDB_DEBUG_PATCH
1774 debug((27, "reset_window() -> Zoomed term_size"));
1775#endif
1776 }
1777 }
1778 return;
1779 }
1780
1781 /* Hmm, a force re-init means we should ignore the current window
1782 * so we resize to the default font size.
1783 */
1784 if (reinit>0) {
1785#ifdef RDB_DEBUG_PATCH
1786 debug((27, "reset_window() -> Forced re-init"));
1787#endif
1788
1789 offset_width = offset_height = cfg.window_border;
1790 extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
1791 extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
1792
887035a5 1793 if (win_width != font_width*term->cols + offset_width*2 ||
1794 win_height != font_height*term->rows + offset_height*2) {
5a73255e 1795
1796 /* If this is too large windows will resize it to the maximum
1797 * allowed window size, we will then be back in here and resize
1798 * the font or terminal to fit.
1799 */
1800 SetWindowPos(hwnd, NULL, 0, 0,
887035a5 1801 font_width*term->cols + extra_width,
1802 font_height*term->rows + extra_height,
5a73255e 1803 SWP_NOMOVE | SWP_NOZORDER);
1804 }
0ed2f48e 1805
1806 InvalidateRect(hwnd, NULL, TRUE);
5a73255e 1807 return;
1808 }
1809
1810 /* Okay the user doesn't want us to change the font so we try the
1811 * window. But that may be too big for the screen which forces us
1812 * to change the terminal.
1813 */
0ed2f48e 1814 if ((cfg.resize_action == RESIZE_TERM && reinit<=0) ||
1815 (cfg.resize_action == RESIZE_EITHER && reinit<0) ||
1816 reinit>0) {
5a73255e 1817 offset_width = offset_height = cfg.window_border;
1818 extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
1819 extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
1820
887035a5 1821 if (win_width != font_width*term->cols + offset_width*2 ||
1822 win_height != font_height*term->rows + offset_height*2) {
5a73255e 1823
1824 static RECT ss;
1825 int width, height;
d0f1bcb4 1826
1827 get_fullscreen_rect(&ss);
5a73255e 1828
5a73255e 1829 width = (ss.right - ss.left - extra_width) / font_width;
1830 height = (ss.bottom - ss.top - extra_height) / font_height;
1831
1832 /* Grrr too big */
887035a5 1833 if ( term->rows > height || term->cols > width ) {
0ed2f48e 1834 if (cfg.resize_action == RESIZE_EITHER) {
1835 /* Make the font the biggest we can */
887035a5 1836 if (term->cols > width)
1837 font_width = (ss.right - ss.left - extra_width)
1838 / term->cols;
1839 if (term->rows > height)
1840 font_height = (ss.bottom - ss.top - extra_height)
1841 / term->rows;
0ed2f48e 1842
1843 deinit_fonts();
1844 init_fonts(font_width, font_height);
1845
1846 width = (ss.right - ss.left - extra_width) / font_width;
1847 height = (ss.bottom - ss.top - extra_height) / font_height;
1848 } else {
887035a5 1849 if ( height > term->rows ) height = term->rows;
1850 if ( width > term->cols ) width = term->cols;
1851 term_size(term, height, width, cfg.savelines);
5a73255e 1852#ifdef RDB_DEBUG_PATCH
0ed2f48e 1853 debug((27, "reset_window() -> term resize to (%d,%d)",
1854 height, width));
5a73255e 1855#endif
0ed2f48e 1856 }
5a73255e 1857 }
1858
1859 SetWindowPos(hwnd, NULL, 0, 0,
887035a5 1860 font_width*term->cols + extra_width,
1861 font_height*term->rows + extra_height,
5a73255e 1862 SWP_NOMOVE | SWP_NOZORDER);
1863
1864 InvalidateRect(hwnd, NULL, TRUE);
1865#ifdef RDB_DEBUG_PATCH
1866 debug((27, "reset_window() -> window resize to (%d,%d)",
887035a5 1867 font_width*term->cols + extra_width,
1868 font_height*term->rows + extra_height));
5a73255e 1869#endif
1870 }
1871 return;
1872 }
1873
1874 /* We're allowed to or must change the font but do we want to ? */
1875
887035a5 1876 if (font_width != (win_width-cfg.window_border*2)/term->cols ||
1877 font_height != (win_height-cfg.window_border*2)/term->rows) {
5a73255e 1878
1879 deinit_fonts();
887035a5 1880 init_fonts((win_width-cfg.window_border*2)/term->cols,
1881 (win_height-cfg.window_border*2)/term->rows);
1882 offset_width = (win_width-font_width*term->cols)/2;
1883 offset_height = (win_height-font_height*term->rows)/2;
5a73255e 1884
1885 extra_width = wr.right - wr.left - cr.right + cr.left +offset_width*2;
1886 extra_height = wr.bottom - wr.top - cr.bottom + cr.top+offset_height*2;
1887
1888 InvalidateRect(hwnd, NULL, TRUE);
1889#ifdef RDB_DEBUG_PATCH
1890 debug((25, "reset_window() -> font resize to (%d,%d)",
1891 font_width, font_height));
1892#endif
1893 }
374330e2 1894}
1895
a5ce2e9f 1896static void set_input_locale(HKL kl)
1897{
1898 char lbuf[20];
1899
1900 GetLocaleInfo(LOWORD(kl), LOCALE_IDEFAULTANSICODEPAGE,
1901 lbuf, sizeof(lbuf));
1902
1903 kbd_codepage = atoi(lbuf);
1904}
1905
6908fed7 1906static void click(Mouse_Button b, int x, int y, int shift, int ctrl, int alt)
32874aea 1907{
fdedf2c8 1908 int thistime = GetMessageTime();
1909
b90840c3 1910 if (send_raw_mouse && !(cfg.mouse_override && shift)) {
1911 lastbtn = MBT_NOTHING;
fc5b0934 1912 term_mouse(term, b, translate_button(b), MA_CLICK,
1913 x, y, shift, ctrl, alt);
01c034ad 1914 return;
1915 }
1916
fdedf2c8 1917 if (lastbtn == b && thistime - lasttime < dbltime) {
374330e2 1918 lastact = (lastact == MA_CLICK ? MA_2CLK :
1919 lastact == MA_2CLK ? MA_3CLK :
1920 lastact == MA_3CLK ? MA_CLICK : MA_NOTHING);
1921 } else {
1922 lastbtn = b;
1923 lastact = MA_CLICK;
1924 }
1925 if (lastact != MA_NOTHING)
fc5b0934 1926 term_mouse(term, b, translate_button(b), lastact,
1927 x, y, shift, ctrl, alt);
fdedf2c8 1928 lasttime = thistime;
374330e2 1929}
1930
01c034ad 1931/*
1932 * Translate a raw mouse button designation (LEFT, MIDDLE, RIGHT)
1933 * into a cooked one (SELECT, EXTEND, PASTE).
1934 */
2c02ed02 1935static Mouse_Button translate_button(Mouse_Button button)
32874aea 1936{
01c034ad 1937 if (button == MBT_LEFT)
1938 return MBT_SELECT;
1939 if (button == MBT_MIDDLE)
ebc0310d 1940 return cfg.mouse_is_xterm == 1 ? MBT_PASTE : MBT_EXTEND;
01c034ad 1941 if (button == MBT_RIGHT)
ebc0310d 1942 return cfg.mouse_is_xterm == 1 ? MBT_EXTEND : MBT_PASTE;
2d466ffd 1943 return 0; /* shouldn't happen */
01c034ad 1944}
1945
32874aea 1946static void show_mouseptr(int show)
1947{
755e0524 1948 /* NB that the counter in ShowCursor() is also frobbed by
1949 * update_mouse_pointer() */
554c540d 1950 static int cursor_visible = 1;
32874aea 1951 if (!cfg.hide_mouseptr) /* override if this feature disabled */
1952 show = 1;
554c540d 1953 if (cursor_visible && !show)
32874aea 1954 ShowCursor(FALSE);
554c540d 1955 else if (!cursor_visible && show)
32874aea 1956 ShowCursor(TRUE);
554c540d 1957 cursor_visible = show;
1958}
1959
6908fed7 1960static int is_alt_pressed(void)
1961{
1962 BYTE keystate[256];
1963 int r = GetKeyboardState(keystate);
1964 if (!r)
1965 return FALSE;
1966 if (keystate[VK_MENU] & 0x80)
1967 return TRUE;
1968 if (keystate[VK_RMENU] & 0x80)
1969 return TRUE;
1970 return FALSE;
1971}
1972
68f9b3d9 1973static int resizing;
1974
95587c73 1975void notify_remote_exit(void *fe)
1976{
1977 int exitcode;
1978
1979 if (!session_closed &&
1980 (exitcode = back->exitcode(backhandle)) >= 0) {
1981 /* Abnormal exits will already have set session_closed and taken
1982 * appropriate action. */
1983 if (cfg.close_on_exit == FORCE_ON ||
1984 (cfg.close_on_exit == AUTO && exitcode != INT_MAX)) {
1985 PostQuitMessage(0);
1986 } else {
1987 must_close_session = TRUE;
1988 session_closed = TRUE;
1989 /* exitcode == INT_MAX indicates that the connection was closed
1990 * by a fatal error, so an error box will be coming our way and
1991 * we should not generate this informational one. */
1992 if (exitcode != INT_MAX)
1993 MessageBox(hwnd, "Connection closed by remote host",
1994 appname, MB_OK | MB_ICONINFORMATION);
1995 }
1996 }
1997}
39934deb 1998
1999void timer_change_notify(long next)
2000{
2001 long ticks = next - GETTICKCOUNT();
2002 if (ticks <= 0) ticks = 1; /* just in case */
2003 KillTimer(hwnd, TIMING_TIMER_ID);
2004 SetTimer(hwnd, TIMING_TIMER_ID, ticks, NULL);
2005 timing_next_time = next;
2006}
2007
32874aea 2008static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
2009 WPARAM wParam, LPARAM lParam)
2010{
374330e2 2011 HDC hdc;
374330e2 2012 static int ignore_clip = FALSE;
3ad8c6db 2013 static int need_backend_resize = FALSE;
1ba99d2c 2014 static int fullscr_on_max = FALSE;
19caf318 2015 static int processed_resize = FALSE;
d8a13f62 2016 static UINT last_mousemove = 0;
374330e2 2017
2018 switch (message) {
59ad2c03 2019 case WM_TIMER:
39934deb 2020 if ((UINT_PTR)wParam == TIMING_TIMER_ID) {
2021 long next;
2022
2023 KillTimer(hwnd, TIMING_TIMER_ID);
2024 if (run_timers(timing_next_time, &next)) {
2025 timer_change_notify(next);
2026 } else {
32874aea 2027 }
2028 }
59ad2c03 2029 return 0;
374330e2 2030 case WM_CREATE:
2031 break;
68130d34 2032 case WM_CLOSE:
f6f450e2 2033 {
2034 char *str;
2035 show_mouseptr(1);
2036 str = dupprintf("%s Exit Confirmation", appname);
2037 if (!cfg.warn_on_close || session_closed ||
2038 MessageBox(hwnd,
2039 "Are you sure you want to close this session?",
84d264cd 2040 str, MB_ICONWARNING | MB_OKCANCEL | MB_DEFBUTTON1)
76347f46 2041 == IDOK)
f6f450e2 2042 DestroyWindow(hwnd);
2043 sfree(str);
2044 }
68130d34 2045 return 0;
374330e2 2046 case WM_DESTROY:
32874aea 2047 show_mouseptr(1);
2048 PostQuitMessage(0);
374330e2 2049 return 0;
12745e35 2050 case WM_INITMENUPOPUP:
2051 if ((HMENU)wParam == savedsess_menu) {
2052 /* About to pop up Saved Sessions sub-menu.
2053 * Refresh the session list. */
2054 get_sesslist(&sesslist, FALSE); /* free */
2055 get_sesslist(&sesslist, TRUE);
2056 update_savedsess_menu();
2057 return 0;
2058 }
2059 break;
63be7767 2060 case WM_COMMAND:
6833a413 2061 case WM_SYSCOMMAND:
2062 switch (wParam & ~0xF) { /* low 4 bits reserved to Windows */
374330e2 2063 case IDM_SHOWLOG:
c5e9c988 2064 showeventlog(hwnd);
374330e2 2065 break;
2066 case IDM_NEWSESS:
2067 case IDM_DUPSESS:
6833a413 2068 case IDM_SAVEDSESS:
374330e2 2069 {
2070 char b[2048];
2071 char c[30], *cl;
e4e4cc7e 2072 int freecl = FALSE;
8e90e4c6 2073 BOOL inherit_handles;
374330e2 2074 STARTUPINFO si;
2075 PROCESS_INFORMATION pi;
2076 HANDLE filemap = NULL;
2077
2078 if (wParam == IDM_DUPSESS) {
2079 /*
2080 * Allocate a file-mapping memory chunk for the
2081 * config structure.
2082 */
2083 SECURITY_ATTRIBUTES sa;
2084 Config *p;
2085
2086 sa.nLength = sizeof(sa);
2087 sa.lpSecurityDescriptor = NULL;
2088 sa.bInheritHandle = TRUE;
4a0b6d61 2089 filemap = CreateFileMapping(INVALID_HANDLE_VALUE,
374330e2 2090 &sa,
2091 PAGE_READWRITE,
32874aea 2092 0, sizeof(Config), NULL);
4a0b6d61 2093 if (filemap && filemap != INVALID_HANDLE_VALUE) {
32874aea 2094 p = (Config *) MapViewOfFile(filemap,
2095 FILE_MAP_WRITE,
2096 0, 0, sizeof(Config));
374330e2 2097 if (p) {
2098 *p = cfg; /* structure copy */
2099 UnmapViewOfFile(p);
2100 }
2101 }
8e90e4c6 2102 inherit_handles = TRUE;
1d470ad2 2103 sprintf(c, "putty &%p", filemap);
374330e2 2104 cl = c;
0a4aa984 2105 } else if (wParam == IDM_SAVEDSESS) {
865e82ad 2106 unsigned int sessno = ((lParam - IDM_SAVED_MIN)
2107 / MENU_SAVED_STEP) + 1;
62ddb51e 2108 if (sessno < (unsigned)sesslist.nsessions) {
1f1e3232 2109 char *session = sesslist.sessions[sessno];
1f1e3232 2110 cl = dupprintf("putty @%s", session);
8e90e4c6 2111 inherit_handles = FALSE;
1f1e3232 2112 freecl = TRUE;
f8d7977b 2113 } else
2114 break;
8e90e4c6 2115 } else /* IDM_NEWSESS */ {
6833a413 2116 cl = NULL;
8e90e4c6 2117 inherit_handles = FALSE;
2118 }
374330e2 2119
32874aea 2120 GetModuleFileName(NULL, b, sizeof(b) - 1);
374330e2 2121 si.cb = sizeof(si);
2122 si.lpReserved = NULL;
2123 si.lpDesktop = NULL;
2124 si.lpTitle = NULL;
2125 si.dwFlags = 0;
2126 si.cbReserved2 = 0;
2127 si.lpReserved2 = NULL;
8e90e4c6 2128 CreateProcess(b, cl, NULL, NULL, inherit_handles,
32874aea 2129 NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi);
374330e2 2130
2131 if (filemap)
2132 CloseHandle(filemap);
e4e4cc7e 2133 if (freecl)
dcbde236 2134 sfree(cl);
374330e2 2135 }
2136 break;
e3be8de5 2137 case IDM_RESTART:
2138 if (!back) {
2139 logevent(NULL, "----- Session restarted -----");
900f9aca 2140 term_pwron(term, FALSE);
e3be8de5 2141 start_backend();
2142 }
2143
2144 break;
32874aea 2145 case IDM_RECONF:
2146 {
5a73255e 2147 Config prev_cfg;
2148 int init_lvl = 1;
68a66cc3 2149 int reconfig_result;
5a73255e 2150
359fd192 2151 if (reconfiguring)
68a66cc3 2152 break;
359fd192 2153 else
68a66cc3 2154 reconfiguring = TRUE;
359fd192 2155
32874aea 2156 GetWindowText(hwnd, cfg.wintitle, sizeof(cfg.wintitle));
5a73255e 2157 prev_cfg = cfg;
e1c8e0ed 2158
68a66cc3 2159 reconfig_result =
b56ff5c3 2160 do_reconfig(hwnd, back ? back->cfg_info(backhandle) : 0);
68a66cc3 2161 reconfiguring = FALSE;
2162 if (!reconfig_result)
32874aea 2163 break;
e1c8e0ed 2164
2cae8529 2165 {
2166 /* Disable full-screen if resizing forbidden */
52c70126 2167 int i;
2168 for (i = 0; i < lenof(popup_menus); i++)
2169 EnableMenuItem(popup_menus[i].menu, IDM_FULLSCREEN,
2170 MF_BYCOMMAND |
2171 (cfg.resize_action == RESIZE_DISABLED)
2172 ? MF_GRAYED : MF_ENABLED);
2cae8529 2173 /* Gracefully unzoom if necessary */
1ba99d2c 2174 if (IsZoomed(hwnd) &&
2cae8529 2175 (cfg.resize_action == RESIZE_DISABLED)) {
1ba99d2c 2176 ShowWindow(hwnd, SW_RESTORE);
2cae8529 2177 }
a401e5f3 2178 }
2179
c229ef97 2180 /* Pass new config data to the logging module */
2181 log_reconfig(logctx, &cfg);
e1c8e0ed 2182
32874aea 2183 sfree(logpal);
2184 /*
2185 * Flush the line discipline's edit buffer in the
2186 * case where local editing has just been disabled.
2187 */
e3be8de5 2188 if (ldisc)
2189 ldisc_send(ldisc, NULL, 0, 0);
32874aea 2190 if (pal)
2191 DeleteObject(pal);
2192 logpal = NULL;
2193 pal = NULL;
2194 cfgtopalette();
2195 init_palette();
2196
64734920 2197 /* Pass new config data to the terminal */
2198 term_reconfig(term, &cfg);
0d2086c5 2199
86916870 2200 /* Pass new config data to the back end */
e3be8de5 2201 if (back)
2202 back->reconfig(backhandle, &cfg);
86916870 2203
5a73255e 2204 /* Screen size changed ? */
2205 if (cfg.height != prev_cfg.height ||
2206 cfg.width != prev_cfg.width ||
2207 cfg.savelines != prev_cfg.savelines ||
0ed2f48e 2208 cfg.resize_action == RESIZE_FONT ||
811f10b3 2209 (cfg.resize_action == RESIZE_EITHER && IsZoomed(hwnd)) ||
0ed2f48e 2210 cfg.resize_action == RESIZE_DISABLED)
887035a5 2211 term_size(term, cfg.height, cfg.width, cfg.savelines);
5a73255e 2212
32874aea 2213 /* Enable or disable the scroll bar, etc */
2214 {
1e5eefb6 2215 LONG nflg, flag = GetWindowLongPtr(hwnd, GWL_STYLE);
32874aea 2216 LONG nexflag, exflag =
1e5eefb6 2217 GetWindowLongPtr(hwnd, GWL_EXSTYLE);
32874aea 2218
2219 nexflag = exflag;
5a73255e 2220 if (cfg.alwaysontop != prev_cfg.alwaysontop) {
32874aea 2221 if (cfg.alwaysontop) {
2222 nexflag |= WS_EX_TOPMOST;
2223 SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0,
2224 SWP_NOMOVE | SWP_NOSIZE);
2225 } else {
2226 nexflag &= ~(WS_EX_TOPMOST);
2227 SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, 0, 0,
2228 SWP_NOMOVE | SWP_NOSIZE);
2229 }
2230 }
2231 if (cfg.sunken_edge)
2232 nexflag |= WS_EX_CLIENTEDGE;
2233 else
2234 nexflag &= ~(WS_EX_CLIENTEDGE);
2235
2236 nflg = flag;
1ba99d2c 2237 if (is_full_screen() ?
2cae8529 2238 cfg.scrollbar_in_fullscreen : cfg.scrollbar)
32874aea 2239 nflg |= WS_VSCROLL;
2240 else
2241 nflg &= ~WS_VSCROLL;
811f10b3 2242
2243 if (cfg.resize_action == RESIZE_DISABLED ||
2244 is_full_screen())
2245 nflg &= ~WS_THICKFRAME;
2246 else
2247 nflg |= WS_THICKFRAME;
2248
ad5c93cc 2249 if (cfg.resize_action == RESIZE_DISABLED)
811f10b3 2250 nflg &= ~WS_MAXIMIZEBOX;
32874aea 2251 else
811f10b3 2252 nflg |= WS_MAXIMIZEBOX;
32874aea 2253
2254 if (nflg != flag || nexflag != exflag) {
32874aea 2255 if (nflg != flag)
1e5eefb6 2256 SetWindowLongPtr(hwnd, GWL_STYLE, nflg);
32874aea 2257 if (nexflag != exflag)
1e5eefb6 2258 SetWindowLongPtr(hwnd, GWL_EXSTYLE, nexflag);
32874aea 2259
32874aea 2260 SetWindowPos(hwnd, NULL, 0, 0, 0, 0,
2261 SWP_NOACTIVATE | SWP_NOCOPYBITS |
5a73255e 2262 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
2263 SWP_FRAMECHANGED);
c9def1b8 2264
5a73255e 2265 init_lvl = 2;
e44d78b6 2266 }
32874aea 2267 }
5a73255e 2268
e44d78b6 2269 /* Oops */
ad5c93cc 2270 if (cfg.resize_action == RESIZE_DISABLED && IsZoomed(hwnd)) {
e44d78b6 2271 force_normal(hwnd);
5a73255e 2272 init_lvl = 2;
2273 }
2274
a8327734 2275 set_title(NULL, cfg.wintitle);
32874aea 2276 if (IsIconic(hwnd)) {
2277 SetWindowText(hwnd,
2278 cfg.win_name_always ? window_name :
2279 icon_name);
3da0b1d2 2280 }
5a73255e 2281
9a30e26b 2282 if (strcmp(cfg.font.name, prev_cfg.font.name) != 0 ||
5a73255e 2283 strcmp(cfg.line_codepage, prev_cfg.line_codepage) != 0 ||
9a30e26b 2284 cfg.font.isbold != prev_cfg.font.isbold ||
2285 cfg.font.height != prev_cfg.font.height ||
2286 cfg.font.charset != prev_cfg.font.charset ||
17c7fed1 2287 cfg.font_quality != prev_cfg.font_quality ||
5a73255e 2288 cfg.vtmode != prev_cfg.vtmode ||
2289 cfg.bold_colour != prev_cfg.bold_colour ||
0ed2f48e 2290 cfg.resize_action == RESIZE_DISABLED ||
2291 cfg.resize_action == RESIZE_EITHER ||
2292 (cfg.resize_action != prev_cfg.resize_action))
5a73255e 2293 init_lvl = 2;
2294
2295 InvalidateRect(hwnd, NULL, TRUE);
2296 reset_window(init_lvl);
7732d38a 2297 net_pending_errors();
32874aea 2298 }
2299 break;
bc1235d4 2300 case IDM_COPYALL:
887035a5 2301 term_copyall(term);
bc1235d4 2302 break;
63be7767 2303 case IDM_PASTE:
e9609ce5 2304 request_paste(NULL);
63be7767 2305 break;
32874aea 2306 case IDM_CLRSB:
887035a5 2307 term_clrsb(term);
32874aea 2308 break;
2309 case IDM_RESET:
900f9aca 2310 term_pwron(term, TRUE);
e3be8de5 2311 if (ldisc)
2312 ldisc_send(ldisc, NULL, 0, 0);
32874aea 2313 break;
374330e2 2314 case IDM_ABOUT:
32874aea 2315 showabout(hwnd);
374330e2 2316 break;
70133c0e 2317 case IDM_HELP:
cb2708d3 2318 launch_help(hwnd, NULL);
70133c0e 2319 break;
0d6dcf38 2320 case SC_MOUSEMENU:
2321 /*
2322 * We get this if the System menu has been activated
2323 * using the mouse.
2324 */
2325 show_mouseptr(1);
2326 break;
dfca2656 2327 case SC_KEYMENU:
2328 /*
0d6dcf38 2329 * We get this if the System menu has been activated
2330 * using the keyboard. This might happen from within
2331 * TranslateKey, in which case it really wants to be
2332 * followed by a `space' character to actually _bring
2333 * the menu up_ rather than just sitting there in
2334 * `ready to appear' state.
dfca2656 2335 */
0d6dcf38 2336 show_mouseptr(1); /* make sure pointer is visible */
dfca2656 2337 if( lParam == 0 )
2338 PostMessage(hwnd, WM_CHAR, ' ', 0);
2339 break;
a401e5f3 2340 case IDM_FULLSCREEN:
1ba99d2c 2341 flip_full_screen();
2342 break;
32874aea 2343 default:
1f1e3232 2344 if (wParam >= IDM_SAVED_MIN && wParam < IDM_SAVED_MAX) {
32874aea 2345 SendMessage(hwnd, WM_SYSCOMMAND, IDM_SAVEDSESS, wParam);
2346 }
125105d1 2347 if (wParam >= IDM_SPECIAL_MIN && wParam <= IDM_SPECIAL_MAX) {
2348 int i = (wParam - IDM_SPECIAL_MIN) / 0x10;
125105d1 2349 /*
2350 * Ensure we haven't been sent a bogus SYSCOMMAND
2351 * which would cause us to reference invalid memory
2352 * and crash. Perhaps I'm just too paranoid here.
2353 */
6f2d0cde 2354 if (i >= n_specials)
2355 break;
2356 if (back)
2357 back->special(backhandle, specials[i].code);
2358 net_pending_errors();
125105d1 2359 }
374330e2 2360 }
2361 break;
37508af4 2362
2363#define X_POS(l) ((int)(short)LOWORD(l))
2364#define Y_POS(l) ((int)(short)HIWORD(l))
2365
5a73255e 2366#define TO_CHR_X(x) ((((x)<0 ? (x)-font_width+1 : (x))-offset_width) / font_width)
2367#define TO_CHR_Y(y) ((((y)<0 ? (y)-font_height+1: (y))-offset_height) / font_height)
374330e2 2368 case WM_LBUTTONDOWN:
374330e2 2369 case WM_MBUTTONDOWN:
374330e2 2370 case WM_RBUTTONDOWN:
01c034ad 2371 case WM_LBUTTONUP:
2372 case WM_MBUTTONUP:
374330e2 2373 case WM_RBUTTONUP:
ebc0310d 2374 if (message == WM_RBUTTONDOWN &&
2375 ((wParam & MK_CONTROL) || (cfg.mouse_is_xterm == 2))) {
63be7767 2376 POINT cursorpos;
2377
ebc0310d 2378 show_mouseptr(1); /* make sure pointer is visible */
63be7767 2379 GetCursorPos(&cursorpos);
2380 TrackPopupMenu(popup_menus[CTXMENU].menu,
2381 TPM_LEFTALIGN | TPM_TOPALIGN | TPM_RIGHTBUTTON,
2382 cursorpos.x, cursorpos.y,
2383 0, hwnd, NULL);
2384 break;
2385 }
01c034ad 2386 {
2387 int button, press;
6908fed7 2388
01c034ad 2389 switch (message) {
32874aea 2390 case WM_LBUTTONDOWN:
2391 button = MBT_LEFT;
472f9eae 2392 wParam |= MK_LBUTTON;
32874aea 2393 press = 1;
2394 break;
2395 case WM_MBUTTONDOWN:
2396 button = MBT_MIDDLE;
472f9eae 2397 wParam |= MK_MBUTTON;
32874aea 2398 press = 1;
2399 break;
2400 case WM_RBUTTONDOWN:
2401 button = MBT_RIGHT;
472f9eae 2402 wParam |= MK_RBUTTON;
32874aea 2403 press = 1;
2404 break;
2405 case WM_LBUTTONUP:
2406 button = MBT_LEFT;
472f9eae 2407 wParam &= ~MK_LBUTTON;
32874aea 2408 press = 0;
2409 break;
2410 case WM_MBUTTONUP:
2411 button = MBT_MIDDLE;
472f9eae 2412 wParam &= ~MK_MBUTTON;
32874aea 2413 press = 0;
2414 break;
2415 case WM_RBUTTONUP:
2416 button = MBT_RIGHT;
472f9eae 2417 wParam &= ~MK_RBUTTON;
32874aea 2418 press = 0;
2419 break;
2d466ffd 2420 default:
2421 button = press = 0; /* shouldn't happen */
01c034ad 2422 }
2423 show_mouseptr(1);
2cae8529 2424 /*
2425 * Special case: in full-screen mode, if the left
2426 * button is clicked in the very top left corner of the
2427 * window, we put up the System menu instead of doing
2428 * selection.
2429 */
52a4d159 2430 {
2431 char mouse_on_hotspot = 0;
2432 POINT pt;
2433
2434 GetCursorPos(&pt);
2435#ifndef NO_MULTIMON
2436 {
2437 HMONITOR mon;
2438 MONITORINFO mi;
2439
2440 mon = MonitorFromPoint(pt, MONITOR_DEFAULTTONULL);
2441
2442 if (mon != NULL) {
2443 mi.cbSize = sizeof(MONITORINFO);
2444 GetMonitorInfo(mon, &mi);
2445
2446 if (mi.rcMonitor.left == pt.x &&
2447 mi.rcMonitor.top == pt.y) {
2448 mouse_on_hotspot = 1;
2449 }
52a4d159 2450 }
2451 }
2452#else
2453 if (pt.x == 0 && pt.y == 0) {
2454 mouse_on_hotspot = 1;
2455 }
2456#endif
2457 if (is_full_screen() && press &&
2458 button == MBT_LEFT && mouse_on_hotspot) {
2459 SendMessage(hwnd, WM_SYSCOMMAND, SC_MOUSEMENU,
2460 MAKELPARAM(pt.x, pt.y));
2461 return 0;
2462 }
2cae8529 2463 }
52a4d159 2464
01c034ad 2465 if (press) {
32874aea 2466 click(button,
2467 TO_CHR_X(X_POS(lParam)), TO_CHR_Y(Y_POS(lParam)),
6908fed7 2468 wParam & MK_SHIFT, wParam & MK_CONTROL,
2469 is_alt_pressed());
01c034ad 2470 SetCapture(hwnd);
2471 } else {
fc5b0934 2472 term_mouse(term, button, translate_button(button), MA_RELEASE,
32874aea 2473 TO_CHR_X(X_POS(lParam)),
2474 TO_CHR_Y(Y_POS(lParam)), wParam & MK_SHIFT,
6908fed7 2475 wParam & MK_CONTROL, is_alt_pressed());
472f9eae 2476 if (!(wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON)))
2477 ReleaseCapture();
01c034ad 2478 }
2479 }
374330e2 2480 return 0;
2481 case WM_MOUSEMOVE:
d8a13f62 2482 {
2483 /*
2484 * Windows seems to like to occasionally send MOUSEMOVE
2485 * events even if the mouse hasn't moved. Don't unhide
2486 * the mouse pointer in this case.
2487 */
2488 static WPARAM wp = 0;
2489 static LPARAM lp = 0;
2490 if (wParam != wp || lParam != lp ||
2491 last_mousemove != WM_MOUSEMOVE) {
2492 show_mouseptr(1);
2493 wp = wParam; lp = lParam;
2494 last_mousemove = WM_MOUSEMOVE;
2495 }
2496 }
374330e2 2497 /*
2498 * Add the mouse position and message time to the random
7d6ee6ff 2499 * number noise.
374330e2 2500 */
32874aea 2501 noise_ultralight(lParam);
374330e2 2502
319bfe5a 2503 if (wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON) &&
2504 GetCapture() == hwnd) {
374330e2 2505 Mouse_Button b;
2506 if (wParam & MK_LBUTTON)
6c6e7711 2507 b = MBT_LEFT;
374330e2 2508 else if (wParam & MK_MBUTTON)
6c6e7711 2509 b = MBT_MIDDLE;
374330e2 2510 else
6c6e7711 2511 b = MBT_RIGHT;
fc5b0934 2512 term_mouse(term, b, translate_button(b), MA_DRAG,
2513 TO_CHR_X(X_POS(lParam)),
32874aea 2514 TO_CHR_Y(Y_POS(lParam)), wParam & MK_SHIFT,
6908fed7 2515 wParam & MK_CONTROL, is_alt_pressed());
374330e2 2516 }
374330e2 2517 return 0;
d318ef8e 2518 case WM_NCMOUSEMOVE:
d8a13f62 2519 {
2520 static WPARAM wp = 0;
2521 static LPARAM lp = 0;
2522 if (wParam != wp || lParam != lp ||
2523 last_mousemove != WM_NCMOUSEMOVE) {
2524 show_mouseptr(1);
2525 wp = wParam; lp = lParam;
2526 last_mousemove = WM_NCMOUSEMOVE;
2527 }
2528 }
32874aea 2529 noise_ultralight(lParam);
f9cbc48c 2530 break;
374330e2 2531 case WM_IGNORE_CLIP:
2532 ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */
2533 break;
2534 case WM_DESTROYCLIPBOARD:
2535 if (!ignore_clip)
887035a5 2536 term_deselect(term);
374330e2 2537 ignore_clip = FALSE;
2538 return 0;
2539 case WM_PAINT:
2540 {
2541 PAINTSTRUCT p;
39934deb 2542
32874aea 2543 HideCaret(hwnd);
2544 hdc = BeginPaint(hwnd, &p);
374330e2 2545 if (pal) {
32874aea 2546 SelectPalette(hdc, pal, TRUE);
2547 RealizePalette(hdc);
374330e2 2548 }
39934deb 2549
8788a416 2550 /*
2551 * We have to be careful about term_paint(). It will
2552 * set a bunch of character cells to INVALID and then
2553 * call do_paint(), which will redraw those cells and
2554 * _then mark them as done_. This may not be accurate:
2555 * when painting in WM_PAINT context we are restricted
2556 * to the rectangle which has just been exposed - so if
2557 * that only covers _part_ of a character cell and the
2558 * rest of it was already visible, that remainder will
2559 * not be redrawn at all. Accordingly, we must not
2560 * paint any character cell in a WM_PAINT context which
2561 * already has a pending update due to terminal output.
2562 * The simplest solution to this - and many, many
2563 * thanks to Hung-Te Lin for working all this out - is
2564 * not to do any actual painting at _all_ if there's a
2565 * pending terminal update: just mark the relevant
2566 * character cells as INVALID and wait for the
2567 * scheduled full update to sort it out.
2568 *
2569 * I have a suspicion this isn't the _right_ solution.
2570 * An alternative approach would be to have terminal.c
2571 * separately track what _should_ be on the terminal
2572 * screen and what _is_ on the terminal screen, and
2573 * have two completely different types of redraw (one
2574 * for full updates, which syncs the former with the
2575 * terminal itself, and one for WM_PAINT which syncs
2576 * the latter with the former); yet another possibility
2577 * would be to have the Windows front end do what the
2578 * GTK one already does, and maintain a bitmap of the
2579 * current terminal appearance so that WM_PAINT becomes
2580 * completely trivial. However, this should do for now.
2581 */
887035a5 2582 term_paint(term, hdc,
5a73255e 2583 (p.rcPaint.left-offset_width)/font_width,
2584 (p.rcPaint.top-offset_height)/font_height,
2585 (p.rcPaint.right-offset_width-1)/font_width,
c1b55581 2586 (p.rcPaint.bottom-offset_height-1)/font_height,
8788a416 2587 !term->window_update_pending);
5a73255e 2588
2589 if (p.fErase ||
2590 p.rcPaint.left < offset_width ||
2591 p.rcPaint.top < offset_height ||
887035a5 2592 p.rcPaint.right >= offset_width + font_width*term->cols ||
2593 p.rcPaint.bottom>= offset_height + font_height*term->rows)
5a73255e 2594 {
2595 HBRUSH fillcolour, oldbrush;
2596 HPEN edge, oldpen;
2597 fillcolour = CreateSolidBrush (
c50f9fde 2598 colours[ATTR_DEFBG>>ATTR_BGSHIFT]);
5a73255e 2599 oldbrush = SelectObject(hdc, fillcolour);
2600 edge = CreatePen(PS_SOLID, 0,
c50f9fde 2601 colours[ATTR_DEFBG>>ATTR_BGSHIFT]);
5a73255e 2602 oldpen = SelectObject(hdc, edge);
2603
bfa7a5db 2604 /*
2605 * Jordan Russell reports that this apparently
2606 * ineffectual IntersectClipRect() call masks a
2607 * Windows NT/2K bug causing strange display
2608 * problems when the PuTTY window is taller than
2609 * the primary monitor. It seems harmless enough...
2610 */
2611 IntersectClipRect(hdc,
2612 p.rcPaint.left, p.rcPaint.top,
2613 p.rcPaint.right, p.rcPaint.bottom);
2614
5a73255e 2615 ExcludeClipRect(hdc,
2616 offset_width, offset_height,
887035a5 2617 offset_width+font_width*term->cols,
2618 offset_height+font_height*term->rows);
5a73255e 2619
2620 Rectangle(hdc, p.rcPaint.left, p.rcPaint.top,
2621 p.rcPaint.right, p.rcPaint.bottom);
2622
31fb1866 2623 /* SelectClipRgn(hdc, NULL); */
5a73255e 2624
2625 SelectObject(hdc, oldbrush);
2626 DeleteObject(fillcolour);
2627 SelectObject(hdc, oldpen);
2628 DeleteObject(edge);
2629 }
32874aea 2630 SelectObject(hdc, GetStockObject(SYSTEM_FONT));
2631 SelectObject(hdc, GetStockObject(WHITE_PEN));
2632 EndPaint(hwnd, &p);
2633 ShowCaret(hwnd);
374330e2 2634 }
2635 return 0;
2636 case WM_NETEVENT:
56f8ea28 2637 /* Notice we can get multiple netevents, FD_READ, FD_WRITE etc
2638 * but the only one that's likely to try to overload us is FD_READ.
2639 * This means buffering just one is fine.
2640 */
2641 if (pending_netevent)
2642 enact_pending_netevent();
2643
2644 pending_netevent = TRUE;
2645 pend_netevent_wParam = wParam;
2646 pend_netevent_lParam = lParam;
2647 if (WSAGETSELECTEVENT(lParam) != FD_READ)
2648 enact_pending_netevent();
2649
39934deb 2650 net_pending_errors();
374330e2 2651 return 0;
2652 case WM_SETFOCUS:
1cff1320 2653 term_set_focus(term, TRUE);
32874aea 2654 CreateCaret(hwnd, caretbm, font_width, font_height);
2655 ShowCaret(hwnd);
f8a28d1f 2656 flash_window(0); /* stop */
32874aea 2657 compose_state = 0;
887035a5 2658 term_update(term);
374330e2 2659 break;
2660 case WM_KILLFOCUS:
32874aea 2661 show_mouseptr(1);
1cff1320 2662 term_set_focus(term, FALSE);
32874aea 2663 DestroyCaret();
c1da5066 2664 caret_x = caret_y = -1; /* ensure caret is replaced next time */
887035a5 2665 term_update(term);
374330e2 2666 break;
73251d5d 2667 case WM_ENTERSIZEMOVE:
5a73255e 2668#ifdef RDB_DEBUG_PATCH
2669 debug((27, "WM_ENTERSIZEMOVE"));
2670#endif
32874aea 2671 EnableSizeTip(1);
2672 resizing = TRUE;
3ad8c6db 2673 need_backend_resize = FALSE;
32874aea 2674 break;
73251d5d 2675 case WM_EXITSIZEMOVE:
32874aea 2676 EnableSizeTip(0);
2677 resizing = FALSE;
5a73255e 2678#ifdef RDB_DEBUG_PATCH
2679 debug((27, "WM_EXITSIZEMOVE"));
2680#endif
2681 if (need_backend_resize) {
887035a5 2682 term_size(term, cfg.height, cfg.width, cfg.savelines);
5a73255e 2683 InvalidateRect(hwnd, NULL, TRUE);
2684 }
32874aea 2685 break;
374330e2 2686 case WM_SIZING:
5a73255e 2687 /*
2688 * This does two jobs:
2689 * 1) Keep the sizetip uptodate
2690 * 2) Make sure the window size is _stepped_ in units of the font size.
2691 */
47779c35 2692 if (cfg.resize_action == RESIZE_TERM ||
2693 (cfg.resize_action == RESIZE_EITHER && !is_alt_pressed())) {
374330e2 2694 int width, height, w, h, ew, eh;
32874aea 2695 LPRECT r = (LPRECT) lParam;
374330e2 2696
0ed2f48e 2697 if ( !need_backend_resize && cfg.resize_action == RESIZE_EITHER &&
887035a5 2698 (cfg.height != term->rows || cfg.width != term->cols )) {
5a73255e 2699 /*
0ed2f48e 2700 * Great! It seems that both the terminal size and the
2701 * font size have been changed and the user is now dragging.
2702 *
2703 * It will now be difficult to get back to the configured
2704 * font size!
2705 *
2706 * This would be easier but it seems to be too confusing.
2707
887035a5 2708 term_size(term, cfg.height, cfg.width, cfg.savelines);
5a73255e 2709 reset_window(2);
0ed2f48e 2710 */
887035a5 2711 cfg.height=term->rows; cfg.width=term->cols;
0ed2f48e 2712
5a73255e 2713 InvalidateRect(hwnd, NULL, TRUE);
2714 need_backend_resize = TRUE;
2715 }
2716
374330e2 2717 width = r->right - r->left - extra_width;
2718 height = r->bottom - r->top - extra_height;
32874aea 2719 w = (width + font_width / 2) / font_width;
2720 if (w < 1)
2721 w = 1;
2722 h = (height + font_height / 2) / font_height;
2723 if (h < 1)
2724 h = 1;
2725 UpdateSizeTip(hwnd, w, h);
374330e2 2726 ew = width - w * font_width;
2727 eh = height - h * font_height;
2728 if (ew != 0) {
2729 if (wParam == WMSZ_LEFT ||
32874aea 2730 wParam == WMSZ_BOTTOMLEFT || wParam == WMSZ_TOPLEFT)
374330e2 2731 r->left += ew;
2732 else
2733 r->right -= ew;
2734 }
2735 if (eh != 0) {
2736 if (wParam == WMSZ_TOP ||
32874aea 2737 wParam == WMSZ_TOPRIGHT || wParam == WMSZ_TOPLEFT)
374330e2 2738 r->top += eh;
2739 else
2740 r->bottom -= eh;
2741 }
2742 if (ew || eh)
2743 return 1;
2744 else
2745 return 0;
5a73255e 2746 } else {
2747 int width, height, w, h, rv = 0;
2748 int ex_width = extra_width + (cfg.window_border - offset_width) * 2;
2749 int ex_height = extra_height + (cfg.window_border - offset_height) * 2;
2750 LPRECT r = (LPRECT) lParam;
2751
2752 width = r->right - r->left - ex_width;
2753 height = r->bottom - r->top - ex_height;
2754
887035a5 2755 w = (width + term->cols/2)/term->cols;
2756 h = (height + term->rows/2)/term->rows;
2757 if ( r->right != r->left + w*term->cols + ex_width)
5a73255e 2758 rv = 1;
2759
2760 if (wParam == WMSZ_LEFT ||
2761 wParam == WMSZ_BOTTOMLEFT || wParam == WMSZ_TOPLEFT)
887035a5 2762 r->left = r->right - w*term->cols - ex_width;
5a73255e 2763 else
887035a5 2764 r->right = r->left + w*term->cols + ex_width;
5a73255e 2765
887035a5 2766 if (r->bottom != r->top + h*term->rows + ex_height)
5a73255e 2767 rv = 1;
2768
2769 if (wParam == WMSZ_TOP ||
2770 wParam == WMSZ_TOPRIGHT || wParam == WMSZ_TOPLEFT)
887035a5 2771 r->top = r->bottom - h*term->rows - ex_height;
5a73255e 2772 else
887035a5 2773 r->bottom = r->top + h*term->rows + ex_height;
5a73255e 2774
2775 return rv;
374330e2 2776 }
32874aea 2777 /* break; (never reached) */
1ba99d2c 2778 case WM_FULLSCR_ON_MAX:
2779 fullscr_on_max = TRUE;
2780 break;
c1da5066 2781 case WM_MOVE:
2782 sys_cursor_update();
2783 break;
374330e2 2784 case WM_SIZE:
5a73255e 2785#ifdef RDB_DEBUG_PATCH
2786 debug((27, "WM_SIZE %s (%d,%d)",
2787 (wParam == SIZE_MINIMIZED) ? "SIZE_MINIMIZED":
2788 (wParam == SIZE_MAXIMIZED) ? "SIZE_MAXIMIZED":
2789 (wParam == SIZE_RESTORED && resizing) ? "to":
2790 (wParam == SIZE_RESTORED) ? "SIZE_RESTORED":
2791 "...",
2792 LOWORD(lParam), HIWORD(lParam)));
2793#endif
0ed2f48e 2794 if (wParam == SIZE_MINIMIZED)
32874aea 2795 SetWindowText(hwnd,
2796 cfg.win_name_always ? window_name : icon_name);
374330e2 2797 if (wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED)
32874aea 2798 SetWindowText(hwnd, window_name);
19caf318 2799 if (wParam == SIZE_RESTORED) {
2800 processed_resize = FALSE;
811f10b3 2801 clear_full_screen();
19caf318 2802 if (processed_resize) {
2803 /*
2804 * Inhibit normal processing of this WM_SIZE; a
2805 * secondary one was triggered just now by
2806 * clear_full_screen which contained the correct
2807 * client area size.
2808 */
2809 return 0;
2810 }
2811 }
811f10b3 2812 if (wParam == SIZE_MAXIMIZED && fullscr_on_max) {
811f10b3 2813 fullscr_on_max = FALSE;
19caf318 2814 processed_resize = FALSE;
d0f1bcb4 2815 make_full_screen();
19caf318 2816 if (processed_resize) {
2817 /*
2818 * Inhibit normal processing of this WM_SIZE; a
2819 * secondary one was triggered just now by
2820 * make_full_screen which contained the correct client
2821 * area size.
2822 */
2823 return 0;
2824 }
811f10b3 2825 }
5a73255e 2826
19caf318 2827 processed_resize = TRUE;
2828
ad5c93cc 2829 if (cfg.resize_action == RESIZE_DISABLED) {
5a73255e 2830 /* A resize, well it better be a minimize. */
2831 reset_window(-1);
2832 } else {
2833
1a6f78fe 2834 int width, height, w, h;
374330e2 2835
2836 width = LOWORD(lParam);
2837 height = HIWORD(lParam);
5a73255e 2838
232c6eac 2839 if (wParam == SIZE_MAXIMIZED && !was_zoomed) {
2840 was_zoomed = 1;
2841 prev_rows = term->rows;
2842 prev_cols = term->cols;
2843 if (cfg.resize_action == RESIZE_TERM) {
2844 w = width / font_width;
2845 if (w < 1) w = 1;
2846 h = height / font_height;
2847 if (h < 1) h = 1;
2848
2849 term_size(term, h, w, cfg.savelines);
2850 }
2851 reset_window(0);
2852 } else if (wParam == SIZE_RESTORED && was_zoomed) {
2853 was_zoomed = 0;
754fa076 2854 if (cfg.resize_action == RESIZE_TERM) {
2855 w = (width-cfg.window_border*2) / font_width;
2856 if (w < 1) w = 1;
2857 h = (height-cfg.window_border*2) / font_height;
2858 if (h < 1) h = 1;
2859 term_size(term, h, w, cfg.savelines);
4e05e104 2860 reset_window(2);
754fa076 2861 } else if (cfg.resize_action != RESIZE_FONT)
232c6eac 2862 reset_window(2);
2863 else
2864 reset_window(0);
2865 } else if (wParam == SIZE_MINIMIZED) {
2866 /* do nothing */
47779c35 2867 } else if (cfg.resize_action == RESIZE_TERM ||
2868 (cfg.resize_action == RESIZE_EITHER &&
2869 !is_alt_pressed())) {
232c6eac 2870 w = (width-cfg.window_border*2) / font_width;
2871 if (w < 1) w = 1;
2872 h = (height-cfg.window_border*2) / font_height;
2873 if (h < 1) h = 1;
2874
2875 if (resizing) {
2876 /*
2877 * Don't call back->size in mid-resize. (To
2878 * prevent massive numbers of resize events
2879 * getting sent down the connection during an NT
2880 * opaque drag.)
2881 */
3ad8c6db 2882 need_backend_resize = TRUE;
e44d78b6 2883 cfg.height = h;
2884 cfg.width = w;
232c6eac 2885 } else {
2886 term_size(term, h, w, cfg.savelines);
2887 }
2888 } else {
2889 reset_window(0);
374330e2 2890 }
2891 }
c1da5066 2892 sys_cursor_update();
374330e2 2893 return 0;
2894 case WM_VSCROLL:
2895 switch (LOWORD(wParam)) {
32874aea 2896 case SB_BOTTOM:
887035a5 2897 term_scroll(term, -1, 0);
32874aea 2898 break;
2899 case SB_TOP:
887035a5 2900 term_scroll(term, +1, 0);
32874aea 2901 break;
2902 case SB_LINEDOWN:
887035a5 2903 term_scroll(term, 0, +1);
32874aea 2904 break;
2905 case SB_LINEUP:
887035a5 2906 term_scroll(term, 0, -1);
32874aea 2907 break;
2908 case SB_PAGEDOWN:
887035a5 2909 term_scroll(term, 0, +term->rows / 2);
32874aea 2910 break;
2911 case SB_PAGEUP:
887035a5 2912 term_scroll(term, 0, -term->rows / 2);
32874aea 2913 break;
2914 case SB_THUMBPOSITION:
2915 case SB_THUMBTRACK:
887035a5 2916 term_scroll(term, 1, HIWORD(wParam));
32874aea 2917 break;
2918 }
2919 break;
2920 case WM_PALETTECHANGED:
374330e2 2921 if ((HWND) wParam != hwnd && pal != NULL) {
a8327734 2922 HDC hdc = get_ctx(NULL);
374330e2 2923 if (hdc) {
32874aea 2924 if (RealizePalette(hdc) > 0)
2925 UpdateColors(hdc);
2926 free_ctx(hdc);
374330e2 2927 }
2928 }
2929 break;
2930 case WM_QUERYNEWPALETTE:
2931 if (pal != NULL) {
a8327734 2932 HDC hdc = get_ctx(NULL);
374330e2 2933 if (hdc) {
32874aea 2934 if (RealizePalette(hdc) > 0)
2935 UpdateColors(hdc);
2936 free_ctx(hdc);
374330e2 2937 return TRUE;
2938 }
2939 }
2940 return FALSE;
2941 case WM_KEYDOWN:
2942 case WM_SYSKEYDOWN:
c9def1b8 2943 case WM_KEYUP:
2944 case WM_SYSKEYUP:
374330e2 2945 /*
2946 * Add the scan code and keypress timing to the random
7d6ee6ff 2947 * number noise.
374330e2 2948 */
32874aea 2949 noise_ultralight(lParam);
374330e2 2950
2951 /*
2952 * We don't do TranslateMessage since it disassociates the
2953 * resulting CHAR message from the KEYDOWN that sparked it,
2954 * which we occasionally don't want. Instead, we process
2955 * KEYDOWN, and call the Win32 translator functions so that
2956 * we get the translations under _our_ control.
2957 */
2958 {
2959 unsigned char buf[20];
2960 int len;
2961
43e95114 2962 if (wParam == VK_PROCESSKEY) { /* IME PROCESS key */
2963 if (message == WM_KEYDOWN) {
2964 MSG m;
2965 m.hwnd = hwnd;
2966 m.message = WM_KEYDOWN;
2967 m.wParam = wParam;
2968 m.lParam = lParam & 0xdfff;
2969 TranslateMessage(&m);
2970 } else break; /* pass to Windows for default processing */
32874aea 2971 } else {
2972 len = TranslateKey(message, wParam, lParam, buf);
3cf144db 2973 if (len == -1)
32874aea 2974 return DefWindowProc(hwnd, message, wParam, lParam);
5471d09a 2975
b2a1eade 2976 if (len != 0) {
bca9517a 2977 /*
256cb87c 2978 * Interrupt an ongoing paste. I'm not sure
2979 * this is sensible, but for the moment it's
2980 * preferable to having to faff about buffering
2981 * things.
2982 */
887035a5 2983 term_nopaste(term);
256cb87c 2984
2985 /*
bca9517a 2986 * We need not bother about stdin backlogs
2987 * here, because in GUI PuTTY we can't do
2988 * anything about it anyway; there's no means
2989 * of asking Windows to hold off on KEYDOWN
2990 * messages. We _have_ to buffer everything
2991 * we're sent.
2992 */
887035a5 2993 term_seen_key_event(term);
e3be8de5 2994 if (ldisc)
2995 ldisc_send(ldisc, buf, len, 1);
32874aea 2996 show_mouseptr(0);
bca9517a 2997 }
3cf144db 2998 }
374330e2 2999 }
7732d38a 3000 net_pending_errors();
374330e2 3001 return 0;
4eeb7d09 3002 case WM_INPUTLANGCHANGE:
a5ce2e9f 3003 /* wParam == Font number */
3004 /* lParam == Locale */
3005 set_input_locale((HKL)lParam);
c1da5066 3006 sys_cursor_update();
4eeb7d09 3007 break;
fd64bb27 3008 case WM_IME_STARTCOMPOSITION:
3009 {
71f6951d 3010 HIMC hImc = ImmGetContext(hwnd);
3011 ImmSetCompositionFont(hImc, &lfont);
3012 ImmReleaseContext(hwnd, hImc);
71f6951d 3013 }
3014 break;
88485e4d 3015 case WM_IME_COMPOSITION:
3016 {
3017 HIMC hIMC;
3018 int n;
3019 char *buff;
a3cfd0c8 3020
88485e4d 3021 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS ||
3022 osVersion.dwPlatformId == VER_PLATFORM_WIN32s) break; /* no Unicode */
3023
3024 if ((lParam & GCS_RESULTSTR) == 0) /* Composition unfinished. */
3025 break; /* fall back to DefWindowProc */
3026
3027 hIMC = ImmGetContext(hwnd);
3028 n = ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, NULL, 0);
3029
3030 if (n > 0) {
a3cfd0c8 3031 int i;
3d88e64d 3032 buff = snewn(n, char);
88485e4d 3033 ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, buff, n);
a3cfd0c8 3034 /*
3035 * Jaeyoun Chung reports that Korean character
3036 * input doesn't work correctly if we do a single
3037 * luni_send() covering the whole of buff. So
3038 * instead we luni_send the characters one by one.
3039 */
887035a5 3040 term_seen_key_event(term);
2cb50250 3041 for (i = 0; i < n; i += 2) {
e3be8de5 3042 if (ldisc)
3043 luni_send(ldisc, (unsigned short *)(buff+i), 1, 1);
2cb50250 3044 }
88485e4d 3045 free(buff);
3046 }
3047 ImmReleaseContext(hwnd, hIMC);
3048 return 1;
3049 }
3050
4eeb7d09 3051 case WM_IME_CHAR:
3052 if (wParam & 0xFF00) {
3cf144db 3053 unsigned char buf[2];
3054
3055 buf[1] = wParam;
3056 buf[0] = wParam >> 8;
887035a5 3057 term_seen_key_event(term);
e3be8de5 3058 if (ldisc)
3059 lpage_send(ldisc, kbd_codepage, buf, 2, 1);
4eeb7d09 3060 } else {
3061 char c = (unsigned char) wParam;
887035a5 3062 term_seen_key_event(term);
e3be8de5 3063 if (ldisc)
3064 lpage_send(ldisc, kbd_codepage, &c, 1, 1);
3cf144db 3065 }
4eeb7d09 3066 return (0);
374330e2 3067 case WM_CHAR:
3068 case WM_SYSCHAR:
3069 /*
3070 * Nevertheless, we are prepared to deal with WM_CHAR
3071 * messages, should they crop up. So if someone wants to
3072 * post the things to us as part of a macro manoeuvre,
3073 * we're ready to cope.
3074 */
32874aea 3075 {
4eeb7d09 3076 char c = (unsigned char)wParam;
887035a5 3077 term_seen_key_event(term);
e3be8de5 3078 if (ldisc)
3079 lpage_send(ldisc, CP_ACP, &c, 1, 1);
374330e2 3080 }
3081 return 0;
49a332ff 3082 case WM_SYSCOLORCHANGE:
3083 if (cfg.system_colour) {
3084 /* Refresh palette from system colours. */
3085 /* XXX actually this zaps the entire palette. */
3086 systopalette();
3087 init_palette();
3088 /* Force a repaint of the terminal window. */
3089 term_invalidate(term);
3090 }
3091 break;
c44bf5bd 3092 case WM_AGENT_CALLBACK:
3093 {
3094 struct agent_callback *c = (struct agent_callback *)lParam;
3095 c->callback(c->callback_ctx, c->data, c->len);
3096 sfree(c);
3097 }
3098 return 0;
1d432454 3099 case WM_GOT_CLIPDATA:
3100 if (process_clipdata((HGLOBAL)lParam, wParam))
3101 term_do_paste(term);
3102 return 0;
011b0e33 3103 default:
16837214 3104 if (message == wm_mousewheel || message == WM_MOUSEWHEEL) {
c1b55581 3105 int shift_pressed=0, control_pressed=0;
011b0e33 3106
3107 if (message == WM_MOUSEWHEEL) {
3108 wheel_accumulator += (short)HIWORD(wParam);
3109 shift_pressed=LOWORD(wParam) & MK_SHIFT;
3110 control_pressed=LOWORD(wParam) & MK_CONTROL;
3111 } else {
3112 BYTE keys[256];
3113 wheel_accumulator += (int)wParam;
3114 if (GetKeyboardState(keys)!=0) {
3115 shift_pressed=keys[VK_SHIFT]&0x80;
3116 control_pressed=keys[VK_CONTROL]&0x80;
3117 }
3118 }
3119
3120 /* process events when the threshold is reached */
3121 while (abs(wheel_accumulator) >= WHEEL_DELTA) {
3122 int b;
3123
3124 /* reduce amount for next time */
3125 if (wheel_accumulator > 0) {
3126 b = MBT_WHEEL_UP;
3127 wheel_accumulator -= WHEEL_DELTA;
3128 } else if (wheel_accumulator < 0) {
3129 b = MBT_WHEEL_DOWN;
3130 wheel_accumulator += WHEEL_DELTA;
3131 } else
3132 break;
3133
3134 if (send_raw_mouse &&
3135 !(cfg.mouse_override && shift_pressed)) {
7a3fbdaf 3136 /* Mouse wheel position is in screen coordinates for
3137 * some reason */
3138 POINT p;
3139 p.x = X_POS(lParam); p.y = Y_POS(lParam);
3140 if (ScreenToClient(hwnd, &p)) {
3141 /* send a mouse-down followed by a mouse up */
3142 term_mouse(term, b, translate_button(b),
3143 MA_CLICK,
3144 TO_CHR_X(p.x),
3145 TO_CHR_Y(p.y), shift_pressed,
3146 control_pressed, is_alt_pressed());
3147 term_mouse(term, b, translate_button(b),
3148 MA_RELEASE, TO_CHR_X(p.x),
3149 TO_CHR_Y(p.y), shift_pressed,
3150 control_pressed, is_alt_pressed());
3151 } /* else: not sure when this can fail */
011b0e33 3152 } else {
3153 /* trigger a scroll */
887035a5 3154 term_scroll(term, 0,
3155 b == MBT_WHEEL_UP ?
3156 -term->rows / 2 : term->rows / 2);
011b0e33 3157 }
3158 }
3159 return 0;
3160 }
374330e2 3161 }
3162
5c4dea05 3163 /*
3164 * Any messages we don't process completely above are passed through to
3165 * DefWindowProc() for default processing.
3166 */
32874aea 3167 return DefWindowProc(hwnd, message, wParam, lParam);
374330e2 3168}
3169
3170/*
ec8679e9 3171 * Move the system caret. (We maintain one, even though it's
3172 * invisible, for the benefit of blind people: apparently some
3173 * helper software tracks the system caret, so we should arrange to
3174 * have one.)
3175 */
a8327734 3176void sys_cursor(void *frontend, int x, int y)
32874aea 3177{
c1da5066 3178 int cx, cy;
3179
887035a5 3180 if (!term->has_focus) return;
c1da5066 3181
3182 /*
3183 * Avoid gratuitously re-updating the cursor position and IMM
3184 * window if there's no actual change required.
3185 */
3186 cx = x * font_width + offset_width;
3187 cy = y * font_height + offset_height;
3188 if (cx == caret_x && cy == caret_y)
3189 return;
3190 caret_x = cx;
3191 caret_y = cy;
3192
3193 sys_cursor_update();
3194}
3195
3196static void sys_cursor_update(void)
3197{
88485e4d 3198 COMPOSITIONFORM cf;
3199 HIMC hIMC;
3200
887035a5 3201 if (!term->has_focus) return;
c1da5066 3202
3203 if (caret_x < 0 || caret_y < 0)
3204 return;
3205
3206 SetCaretPos(caret_x, caret_y);
88485e4d 3207
3208 /* IMM calls on Win98 and beyond only */
3209 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32s) return; /* 3.11 */
3210
3211 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS &&
3212 osVersion.dwMinorVersion == 0) return; /* 95 */
3213
3214 /* we should have the IMM functions */
3215 hIMC = ImmGetContext(hwnd);
3216 cf.dwStyle = CFS_POINT;
c1da5066 3217 cf.ptCurrentPos.x = caret_x;
3218 cf.ptCurrentPos.y = caret_y;
88485e4d 3219 ImmSetCompositionWindow(hIMC, &cf);
3220
3221 ImmReleaseContext(hwnd, hIMC);
ec8679e9 3222}
3223
3224/*
374330e2 3225 * Draw a line of text in the window, at given character
3226 * coordinates, in given attributes.
3227 *
3228 * We are allowed to fiddle with the contents of `text'.
3229 */
c6958dfe 3230void do_text_internal(Context ctx, int x, int y, wchar_t *text, int len,
3231 unsigned long attr, int lattr)
32874aea 3232{
374330e2 3233 COLORREF fg, bg, t;
3234 int nfg, nbg, nfont;
3235 HDC hdc = ctx;
59ad2c03 3236 RECT line_box;
3237 int force_manual_underline = 0;
36566009 3238 int fnt_width, char_width;
4eeb7d09 3239 int text_adjust = 0;
14ce9887 3240 int xoffset = 0;
3241 int maxlen, remaining, opaque;
4eeb7d09 3242 static int *IpDx = 0, IpDxLEN = 0;
14ce9887 3243 int *IpDxReal;
4eeb7d09 3244
36566009 3245 lattr &= LATTR_MODE;
3246
3247 char_width = fnt_width = font_width * (1 + (lattr != LATTR_NORM));
3248
4eeb7d09 3249 if (attr & ATTR_WIDE)
3250 char_width *= 2;
59ad2c03 3251
4eeb7d09 3252 if (len > IpDxLEN || IpDx[0] != char_width) {
59ad2c03 3253 int i;
32874aea 3254 if (len > IpDxLEN) {
59ad2c03 3255 sfree(IpDx);
3d88e64d 3256 IpDx = snewn(len + 16, int);
32874aea 3257 IpDxLEN = (len + 16);
59ad2c03 3258 }
32874aea 3259 for (i = 0; i < IpDxLEN; i++)
4eeb7d09 3260 IpDx[i] = char_width;
59ad2c03 3261 }
374330e2 3262
5a73255e 3263 /* Only want the left half of double width lines */
887035a5 3264 if (lattr != LATTR_NORM && x*2 >= term->cols)
5a73255e 3265 return;
3266
c9def1b8 3267 x *= fnt_width;
374330e2 3268 y *= font_height;
5a73255e 3269 x += offset_width;
3270 y += offset_height;
374330e2 3271
887035a5 3272 if ((attr & TATTR_ACTCURS) && (cfg.cursor_type == 0 || term->big_cursor)) {
cecb13f6 3273 attr &= ~(ATTR_REVERSE|ATTR_BLINK|ATTR_COLOURS);
3274 if (bold_mode == BOLD_COLOURS)
3275 attr &= ~ATTR_BOLD;
3276
3277 /* cursor fg and bg */
3278 attr |= (260 << ATTR_FGSHIFT) | (261 << ATTR_BGSHIFT);
374330e2 3279 }
3280
3281 nfont = 0;
4eeb7d09 3282 if (cfg.vtmode == VT_POORMAN && lattr != LATTR_NORM) {
3283 /* Assume a poorman font is borken in other ways too. */
3284 lattr = LATTR_WIDE;
3285 } else
3286 switch (lattr) {
3287 case LATTR_NORM:
3288 break;
3289 case LATTR_WIDE:
3290 nfont |= FONT_WIDE;
374330e2 3291 break;
4eeb7d09 3292 default:
3293 nfont |= FONT_WIDE + FONT_HIGH;
3294 break;
3295 }
5a73255e 3296 if (attr & ATTR_NARROW)
3297 nfont |= FONT_NARROW;
4eeb7d09 3298
3299 /* Special hack for the VT100 linedraw glyphs. */
36566009 3300 if (text[0] >= 0x23BA && text[0] <= 0x23BD) {
3301 switch ((unsigned char) (text[0])) {
3302 case 0xBA:
3303 text_adjust = -2 * font_height / 5;
3304 break;
3305 case 0xBB:
3306 text_adjust = -1 * font_height / 5;
3307 break;
3308 case 0xBC:
3309 text_adjust = font_height / 5;
3310 break;
3311 case 0xBD:
3312 text_adjust = 2 * font_height / 5;
3313 break;
3314 }
3315 if (lattr == LATTR_TOP || lattr == LATTR_BOT)
3316 text_adjust *= 2;
3317 text[0] = ucsdata.unitab_xterm['q'];
3318 if (attr & ATTR_UNDER) {
3319 attr &= ~ATTR_UNDER;
3320 force_manual_underline = 1;
374330e2 3321 }
3322 }
3323
4eeb7d09 3324 /* Anything left as an original character set is unprintable. */
36566009 3325 if (DIRECT_CHAR(text[0])) {
3326 int i;
3327 for (i = 0; i < len; i++)
3328 text[i] = 0xFFFD;
4eeb7d09 3329 }
3330
3331 /* OEM CP */
36566009 3332 if ((text[0] & CSET_MASK) == CSET_OEMCP)
4eeb7d09 3333 nfont |= FONT_OEM;
3334
37ca32ed 3335 nfg = ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
37ca32ed 3336 nbg = ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
374330e2 3337 if (bold_mode == BOLD_FONT && (attr & ATTR_BOLD))
3338 nfont |= FONT_BOLD;
3339 if (und_mode == UND_FONT && (attr & ATTR_UNDER))
3340 nfont |= FONT_UNDERLINE;
4eeb7d09 3341 another_font(nfont);
32874aea 3342 if (!fonts[nfont]) {
3343 if (nfont & FONT_UNDERLINE)
59ad2c03 3344 force_manual_underline = 1;
3345 /* Don't do the same for manual bold, it could be bad news. */
3346
32874aea 3347 nfont &= ~(FONT_BOLD | FONT_UNDERLINE);
59ad2c03 3348 }
4eeb7d09 3349 another_font(nfont);
3350 if (!fonts[nfont])
3351 nfont = FONT_NORMAL;
374330e2 3352 if (attr & ATTR_REVERSE) {
32874aea 3353 t = nfg;
3354 nfg = nbg;
3355 nbg = t;
374330e2 3356 }
cecb13f6 3357 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BOLD)) {
3358 if (nfg < 16) nfg |= 8;
3359 else if (nfg >= 256) nfg |= 1;
3360 }
3361 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BLINK)) {
3362 if (nbg < 16) nbg |= 8;
3363 else if (nbg >= 256) nbg |= 1;
3364 }
374330e2 3365 fg = colours[nfg];
3366 bg = colours[nbg];
32874aea 3367 SelectObject(hdc, fonts[nfont]);
3368 SetTextColor(hdc, fg);
3369 SetBkColor(hdc, bg);
c6958dfe 3370 if (attr & TATTR_COMBINING)
3371 SetBkMode(hdc, TRANSPARENT);
3372 else
3373 SetBkMode(hdc, OPAQUE);
32874aea 3374 line_box.left = x;
3375 line_box.top = y;
4eeb7d09 3376 line_box.right = x + char_width * len;
32874aea 3377 line_box.bottom = y + font_height;
4eeb7d09 3378
5a73255e 3379 /* Only want the left half of double width lines */
887035a5 3380 if (line_box.right > font_width*term->cols+offset_width)
3381 line_box.right = font_width*term->cols+offset_width;
5a73255e 3382
14ce9887 3383 if (font_varpitch) {
3384 /*
3385 * If we're using a variable-pitch font, we unconditionally
3386 * draw the glyphs one at a time and centre them in their
3387 * character cells (which means in particular that we must
3388 * disable the IpDx mechanism). This gives slightly odd but
3389 * generally reasonable results.
3390 */
3391 xoffset = char_width / 2;
3392 SetTextAlign(hdc, TA_TOP | TA_CENTER | TA_NOUPDATECP);
3393 IpDxReal = NULL;
3394 maxlen = 1;
3395 } else {
3396 /*
3397 * In a fixed-pitch font, we draw the whole string in one go
3398 * in the normal way.
3399 */
3400 xoffset = 0;
3401 SetTextAlign(hdc, TA_TOP | TA_LEFT | TA_NOUPDATECP);
3402 IpDxReal = IpDx;
3403 maxlen = len;
3404 }
3405
3406 opaque = TRUE; /* start by erasing the rectangle */
3407 for (remaining = len; remaining > 0;
3408 text += len, remaining -= len, x += char_width * len) {
3409 len = (maxlen < remaining ? maxlen : remaining);
3410
3411 /* We're using a private area for direct to font. (512 chars.) */
3412 if (ucsdata.dbcs_screenfont && (text[0] & CSET_MASK) == CSET_ACP) {
3413 /* Ho Hum, dbcs fonts are a PITA! */
3414 /* To display on W9x I have to convert to UCS */
3415 static wchar_t *uni_buf = 0;
3416 static int uni_len = 0;
3417 int nlen, mptr;
3418 if (len > uni_len) {
3419 sfree(uni_buf);
3420 uni_len = len;
3421 uni_buf = snewn(uni_len, wchar_t);
3422 }
36566009 3423
14ce9887 3424 for(nlen = mptr = 0; mptr<len; mptr++) {
3425 uni_buf[nlen] = 0xFFFD;
3426 if (IsDBCSLeadByteEx(ucsdata.font_codepage,
3427 (BYTE) text[mptr])) {
3428 char dbcstext[2];
3429 dbcstext[0] = text[mptr] & 0xFF;
3430 dbcstext[1] = text[mptr+1] & 0xFF;
3431 IpDx[nlen] += char_width;
3432 MultiByteToWideChar(ucsdata.font_codepage, MB_USEGLYPHCHARS,
3433 dbcstext, 2, uni_buf+nlen, 1);
3434 mptr++;
3435 }
3436 else
3437 {
3438 char dbcstext[1];
3439 dbcstext[0] = text[mptr] & 0xFF;
3440 MultiByteToWideChar(ucsdata.font_codepage, MB_USEGLYPHCHARS,
3441 dbcstext, 1, uni_buf+nlen, 1);
3442 }
3443 nlen++;
3444 }
3445 if (nlen <= 0)
3446 return; /* Eeek! */
3447
3448 ExtTextOutW(hdc, x + xoffset,
3449 y - font_height * (lattr == LATTR_BOT) + text_adjust,
3450 ETO_CLIPPED | (opaque ? ETO_OPAQUE : 0),
3451 &line_box, uni_buf, nlen,
3452 IpDxReal);
3453 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
3454 SetBkMode(hdc, TRANSPARENT);
3455 ExtTextOutW(hdc, x + xoffset - 1,
3456 y - font_height * (lattr ==
3457 LATTR_BOT) + text_adjust,
3458 ETO_CLIPPED, &line_box, uni_buf, nlen, IpDxReal);
3459 }
36566009 3460
14ce9887 3461 IpDx[0] = -1;
3462 } else if (DIRECT_FONT(text[0])) {
3463 static char *directbuf = NULL;
3464 static int directlen = 0;
3465 int i;
3466 if (len > directlen) {
3467 directlen = len;
3468 directbuf = sresize(directbuf, directlen, char);
3469 }
4eeb7d09 3470
14ce9887 3471 for (i = 0; i < len; i++)
3472 directbuf[i] = text[i] & 0xFF;
3473
3474 ExtTextOut(hdc, x + xoffset,
3475 y - font_height * (lattr == LATTR_BOT) + text_adjust,
3476 ETO_CLIPPED | (opaque ? ETO_OPAQUE : 0),
3477 &line_box, directbuf, len, IpDxReal);
3478 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
3479 SetBkMode(hdc, TRANSPARENT);
3480
3481 /* GRR: This draws the character outside its box and
3482 * can leave 'droppings' even with the clip box! I
3483 * suppose I could loop it one character at a time ...
3484 * yuk.
3485 *
3486 * Or ... I could do a test print with "W", and use +1
3487 * or -1 for this shift depending on if the leftmost
3488 * column is blank...
3489 */
3490 ExtTextOut(hdc, x + xoffset - 1,
3491 y - font_height * (lattr ==
3492 LATTR_BOT) + text_adjust,
3493 ETO_CLIPPED, &line_box, directbuf, len, IpDxReal);
3494 }
3495 } else {
3496 /* And 'normal' unicode characters */
3497 static WCHAR *wbuf = NULL;
3498 static int wlen = 0;
3499 int i;
3500
3501 if (wlen < len) {
3502 sfree(wbuf);
3503 wlen = len;
3504 wbuf = snewn(wlen, WCHAR);
3505 }
c6958dfe 3506
14ce9887 3507 for (i = 0; i < len; i++)
3508 wbuf[i] = text[i];
3509
3510 /* print Glyphs as they are, without Windows' Shaping*/
3511 general_textout(hdc, x + xoffset,
3512 y - font_height * (lattr==LATTR_BOT) + text_adjust,
53126a62 3513 &line_box, wbuf, len, IpDx,
14ce9887 3514 opaque && !(attr & TATTR_COMBINING));
3515
3516 /* And the shadow bold hack. */
3517 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
3518 SetBkMode(hdc, TRANSPARENT);
3519 ExtTextOutW(hdc, x + xoffset - 1,
3520 y - font_height * (lattr ==
3521 LATTR_BOT) + text_adjust,
3522 ETO_CLIPPED, &line_box, wbuf, len, IpDxReal);
3523 }
3524 }
c6958dfe 3525
14ce9887 3526 /*
3527 * If we're looping round again, stop erasing the background
3528 * rectangle.
3529 */
3530 SetBkMode(hdc, TRANSPARENT);
3531 opaque = FALSE;
374330e2 3532 }
4eeb7d09 3533 if (lattr != LATTR_TOP && (force_manual_underline ||
3534 (und_mode == UND_LINE
3535 && (attr & ATTR_UNDER)))) {
32874aea 3536 HPEN oldpen;
4eeb7d09 3537 int dec = descent;
3538 if (lattr == LATTR_BOT)
3539 dec = dec * 2 - font_height;
3540
32874aea 3541 oldpen = SelectObject(hdc, CreatePen(PS_SOLID, 0, fg));
4eeb7d09 3542 MoveToEx(hdc, x, y + dec, NULL);
3543 LineTo(hdc, x + len * char_width, y + dec);
32874aea 3544 oldpen = SelectObject(hdc, oldpen);
3545 DeleteObject(oldpen);
374330e2 3546 }
4eeb7d09 3547}
3548
c6958dfe 3549/*
3550 * Wrapper that handles combining characters.
3551 */
3552void do_text(Context ctx, int x, int y, wchar_t *text, int len,
3553 unsigned long attr, int lattr)
3554{
3555 if (attr & TATTR_COMBINING) {
3556 unsigned long a = 0;
3557 attr &= ~TATTR_COMBINING;
3558 while (len--) {
3559 do_text_internal(ctx, x, y, text, 1, attr | a, lattr);
3560 text++;
3561 a = TATTR_COMBINING;
3562 }
3563 } else
3564 do_text_internal(ctx, x, y, text, len, attr, lattr);
3565}
3566
36566009 3567void do_cursor(Context ctx, int x, int y, wchar_t *text, int len,
4eeb7d09 3568 unsigned long attr, int lattr)
3569{
3570
3571 int fnt_width;
3572 int char_width;
3573 HDC hdc = ctx;
3574 int ctype = cfg.cursor_type;
3575
8af95aa3 3576 lattr &= LATTR_MODE;
3577
887035a5 3578 if ((attr & TATTR_ACTCURS) && (ctype == 0 || term->big_cursor)) {
36566009 3579 if (*text != UCSWIDE) {
4eeb7d09 3580 do_text(ctx, x, y, text, len, attr, lattr);
3581 return;
3582 }
3583 ctype = 2;
3584 attr |= TATTR_RIGHTCURS;
3585 }
3586
3587 fnt_width = char_width = font_width * (1 + (lattr != LATTR_NORM));
3588 if (attr & ATTR_WIDE)
3589 char_width *= 2;
3590 x *= fnt_width;
3591 y *= font_height;
5a73255e 3592 x += offset_width;
3593 y += offset_height;
4eeb7d09 3594
887035a5 3595 if ((attr & TATTR_PASCURS) && (ctype == 0 || term->big_cursor)) {
374330e2 3596 POINT pts[5];
32874aea 3597 HPEN oldpen;
374330e2 3598 pts[0].x = pts[1].x = pts[4].x = x;
4eeb7d09 3599 pts[2].x = pts[3].x = x + char_width - 1;
374330e2 3600 pts[0].y = pts[3].y = pts[4].y = y;
32874aea 3601 pts[1].y = pts[2].y = y + font_height - 1;
cecb13f6 3602 oldpen = SelectObject(hdc, CreatePen(PS_SOLID, 0, colours[261]));
32874aea 3603 Polyline(hdc, pts, 5);
3604 oldpen = SelectObject(hdc, oldpen);
3605 DeleteObject(oldpen);
4eeb7d09 3606 } else if ((attr & (TATTR_ACTCURS | TATTR_PASCURS)) && ctype != 0) {
32874aea 3607 int startx, starty, dx, dy, length, i;
4eeb7d09 3608 if (ctype == 1) {
32874aea 3609 startx = x;
3610 starty = y + descent;
3611 dx = 1;
3612 dy = 0;
4eeb7d09 3613 length = char_width;
32874aea 3614 } else {
4e30ff69 3615 int xadjust = 0;
4eeb7d09 3616 if (attr & TATTR_RIGHTCURS)
3617 xadjust = char_width - 1;
32874aea 3618 startx = x + xadjust;
3619 starty = y;
3620 dx = 0;
3621 dy = 1;
3622 length = font_height;
3623 }
4eeb7d09 3624 if (attr & TATTR_ACTCURS) {
32874aea 3625 HPEN oldpen;
3626 oldpen =
fdc94dd1 3627 SelectObject(hdc, CreatePen(PS_SOLID, 0, colours[261]));
32874aea 3628 MoveToEx(hdc, startx, starty, NULL);
3629 LineTo(hdc, startx + dx * length, starty + dy * length);
3630 oldpen = SelectObject(hdc, oldpen);
3631 DeleteObject(oldpen);
3632 } else {
3633 for (i = 0; i < length; i++) {
3634 if (i % 2 == 0) {
fdc94dd1 3635 SetPixel(hdc, startx, starty, colours[261]);
32874aea 3636 }
3637 startx += dx;
3638 starty += dy;
3639 }
3640 }
4e30ff69 3641 }
374330e2 3642}
3643
5a73255e 3644/* This function gets the actual width of a character in the normal font.
3645 */
2102eb8a 3646int char_width(Context ctx, int uc) {
5a73255e 3647 HDC hdc = ctx;
3648 int ibuf = 0;
3649
3650 /* If the font max is the same as the font ave width then this
3651 * function is a no-op.
3652 */
3653 if (!font_dualwidth) return 1;
3654
3655 switch (uc & CSET_MASK) {
36566009 3656 case CSET_ASCII:
21d2b241 3657 uc = ucsdata.unitab_line[uc & 0xFF];
5a73255e 3658 break;
36566009 3659 case CSET_LINEDRW:
21d2b241 3660 uc = ucsdata.unitab_xterm[uc & 0xFF];
5a73255e 3661 break;
36566009 3662 case CSET_SCOACS:
21d2b241 3663 uc = ucsdata.unitab_scoacs[uc & 0xFF];
5a73255e 3664 break;
3665 }
3666 if (DIRECT_FONT(uc)) {
21d2b241 3667 if (ucsdata.dbcs_screenfont) return 1;
5a73255e 3668
3669 /* Speedup, I know of no font where ascii is the wrong width */
36566009 3670 if ((uc&~CSET_MASK) >= ' ' && (uc&~CSET_MASK)<= '~')
5a73255e 3671 return 1;
3672
36566009 3673 if ( (uc & CSET_MASK) == CSET_ACP ) {
5a73255e 3674 SelectObject(hdc, fonts[FONT_NORMAL]);
36566009 3675 } else if ( (uc & CSET_MASK) == CSET_OEMCP ) {
5a73255e 3676 another_font(FONT_OEM);
3677 if (!fonts[FONT_OEM]) return 0;
3678
3679 SelectObject(hdc, fonts[FONT_OEM]);
3680 } else
3681 return 0;
3682
36566009 3683 if ( GetCharWidth32(hdc, uc&~CSET_MASK, uc&~CSET_MASK, &ibuf) != 1 &&
3684 GetCharWidth(hdc, uc&~CSET_MASK, uc&~CSET_MASK, &ibuf) != 1)
5a73255e 3685 return 0;
3686 } else {
3687 /* Speedup, I know of no font where ascii is the wrong width */
3688 if (uc >= ' ' && uc <= '~') return 1;
3689
3690 SelectObject(hdc, fonts[FONT_NORMAL]);
3691 if ( GetCharWidth32W(hdc, uc, uc, &ibuf) == 1 )
3692 /* Okay that one worked */ ;
3693 else if ( GetCharWidthW(hdc, uc, uc, &ibuf) == 1 )
3694 /* This should work on 9x too, but it's "less accurate" */ ;
3695 else
3696 return 0;
3697 }
3698
3699 ibuf += font_width / 2 -1;
3700 ibuf /= font_width;
3701
3702 return ibuf;
3703}
3704
374330e2 3705/*
c9def1b8 3706 * Translate a WM_(SYS)?KEY(UP|DOWN) message into a string of ASCII
58c840dc 3707 * codes. Returns number of bytes used, zero to drop the message,
3708 * -1 to forward the message to Windows, or another negative number
3709 * to indicate a NUL-terminated "special" string.
374330e2 3710 */
3cf144db 3711static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam,
32874aea 3712 unsigned char *output)
3713{
374330e2 3714 BYTE keystate[256];
32874aea 3715 int scan, left_alt = 0, key_down, shift_state;
3716 int r, i, code;
3717 unsigned char *p = output;
4eeb7d09 3718 static int alt_sum = 0;
374330e2 3719
00e3ba0f 3720 HKL kbd_layout = GetKeyboardLayout(0);
3721
c264be08 3722 /* keys is for ToAsciiEx. There's some ick here, see below. */
3723 static WORD keys[3];
0c50ef57 3724 static int compose_char = 0;
3725 static WPARAM compose_key = 0;
32874aea 3726
c9def1b8 3727 r = GetKeyboardState(keystate);
32874aea 3728 if (!r)
3729 memset(keystate, 0, sizeof(keystate));
3730 else {
ec55b220 3731#if 0
4eeb7d09 3732#define SHOW_TOASCII_RESULT
32874aea 3733 { /* Tell us all about key events */
3734 static BYTE oldstate[256];
3735 static int first = 1;
3736 static int scan;
3737 int ch;
3738 if (first)
3739 memcpy(oldstate, keystate, sizeof(oldstate));
3740 first = 0;
3741
3742 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT) {
3743 debug(("+"));
3744 } else if ((HIWORD(lParam) & KF_UP)
3745 && scan == (HIWORD(lParam) & 0xFF)) {
3746 debug((". U"));
3747 } else {
3748 debug((".\n"));
3749 if (wParam >= VK_F1 && wParam <= VK_F20)
3750 debug(("K_F%d", wParam + 1 - VK_F1));
3751 else
3752 switch (wParam) {
3753 case VK_SHIFT:
3754 debug(("SHIFT"));
3755 break;
3756 case VK_CONTROL:
3757 debug(("CTRL"));
3758 break;
3759 case VK_MENU:
3760 debug(("ALT"));
3761 break;
3762 default:
3763 debug(("VK_%02x", wParam));
3764 }
3765 if (message == WM_SYSKEYDOWN || message == WM_SYSKEYUP)
3766 debug(("*"));
3767 debug((", S%02x", scan = (HIWORD(lParam) & 0xFF)));
3768
3769 ch = MapVirtualKeyEx(wParam, 2, kbd_layout);
3770 if (ch >= ' ' && ch <= '~')
3771 debug((", '%c'", ch));
3772 else if (ch)
3773 debug((", $%02x", ch));
3774
3775 if (keys[0])
3776 debug((", KB0=%02x", keys[0]));
3777 if (keys[1])
3778 debug((", KB1=%02x", keys[1]));
3779 if (keys[2])
3780 debug((", KB2=%02x", keys[2]));
3781
3782 if ((keystate[VK_SHIFT] & 0x80) != 0)
3783 debug((", S"));
3784 if ((keystate[VK_CONTROL] & 0x80) != 0)
3785 debug((", C"));
3786 if ((HIWORD(lParam) & KF_EXTENDED))
3787 debug((", E"));
3788 if ((HIWORD(lParam) & KF_UP))
3789 debug((", U"));
3790 }
3791
3792 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT);
3793 else if ((HIWORD(lParam) & KF_UP))
3794 oldstate[wParam & 0xFF] ^= 0x80;
3795 else
3796 oldstate[wParam & 0xFF] ^= 0x81;
3797
3798 for (ch = 0; ch < 256; ch++)
3799 if (oldstate[ch] != keystate[ch])
3800 debug((", M%02x=%02x", ch, keystate[ch]));
3801
3802 memcpy(oldstate, keystate, sizeof(oldstate));
3803 }
ec55b220 3804#endif
3805
32874aea 3806 if (wParam == VK_MENU && (HIWORD(lParam) & KF_EXTENDED)) {
2cba1186 3807 keystate[VK_RMENU] = keystate[VK_MENU];
3808 }
3809
c9def1b8 3810
3811 /* Nastyness with NUMLock - Shift-NUMLock is left alone though */
5789bc94 3812 if ((cfg.funky_type == FUNKY_VT400 ||
3813 (cfg.funky_type <= FUNKY_LINUX && term->app_keypad_keys &&
887035a5 3814 !cfg.no_applic_k))
32874aea 3815 && wParam == VK_NUMLOCK && !(keystate[VK_SHIFT] & 0x80)) {
c9def1b8 3816
3817 wParam = VK_EXECUTE;
3818
3819 /* UnToggle NUMLock */
32874aea 3820 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == 0)
3821 keystate[VK_NUMLOCK] ^= 1;
c9def1b8 3822 }
3823
3824 /* And write back the 'adjusted' state */
32874aea 3825 SetKeyboardState(keystate);
c9def1b8 3826 }
3827
3828 /* Disable Auto repeat if required */
887035a5 3829 if (term->repeat_off &&
3830 (HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT)
32874aea 3831 return 0;
c9def1b8 3832
32874aea 3833 if ((HIWORD(lParam) & KF_ALTDOWN) && (keystate[VK_RMENU] & 0x80) == 0)
c9def1b8 3834 left_alt = 1;
3835
32874aea 3836 key_down = ((HIWORD(lParam) & KF_UP) == 0);
c9def1b8 3837
95bbe1ae 3838 /* Make sure Ctrl-ALT is not the same as AltGr for ToAscii unless told. */
32874aea 3839 if (left_alt && (keystate[VK_CONTROL] & 0x80)) {
95bbe1ae 3840 if (cfg.ctrlaltkeys)
3841 keystate[VK_MENU] = 0;
3842 else {
3843 keystate[VK_RMENU] = 0x80;
3844 left_alt = 0;
3845 }
3846 }
c9def1b8 3847
3848 scan = (HIWORD(lParam) & (KF_UP | KF_EXTENDED | 0xFF));
32874aea 3849 shift_state = ((keystate[VK_SHIFT] & 0x80) != 0)
3850 + ((keystate[VK_CONTROL] & 0x80) != 0) * 2;
374330e2 3851
95bbe1ae 3852 /* Note if AltGr was pressed and if it was used as a compose key */
3853 if (!compose_state) {
159eba53 3854 compose_key = 0x100;
95bbe1ae 3855 if (cfg.compose_key) {
32874aea 3856 if (wParam == VK_MENU && (HIWORD(lParam) & KF_EXTENDED))
95bbe1ae 3857 compose_key = wParam;
3858 }
3859 if (wParam == VK_APPS)
3860 compose_key = wParam;
3861 }
3862
32874aea 3863 if (wParam == compose_key) {
3864 if (compose_state == 0
3865 && (HIWORD(lParam) & (KF_UP | KF_REPEAT)) == 0) compose_state =
3866 1;
3867 else if (compose_state == 1 && (HIWORD(lParam) & KF_UP))
95bbe1ae 3868 compose_state = 2;
3869 else
3870 compose_state = 0;
32874aea 3871 } else if (compose_state == 1 && wParam != VK_CONTROL)
95bbe1ae 3872 compose_state = 0;
3873
32874aea 3874 if (compose_state > 1 && left_alt)
3875 compose_state = 0;
67c339f7 3876
c9def1b8 3877 /* Sanitize the number pad if not using a PC NumPad */
887035a5 3878 if (left_alt || (term->app_keypad_keys && !cfg.no_applic_k
5789bc94 3879 && cfg.funky_type != FUNKY_XTERM)
3880 || cfg.funky_type == FUNKY_VT400 || cfg.nethack_keypad || compose_state) {
32874aea 3881 if ((HIWORD(lParam) & KF_EXTENDED) == 0) {
c9def1b8 3882 int nParam = 0;
32874aea 3883 switch (wParam) {
3884 case VK_INSERT:
3885 nParam = VK_NUMPAD0;
3886 break;
3887 case VK_END:
3888 nParam = VK_NUMPAD1;
3889 break;
3890 case VK_DOWN:
3891 nParam = VK_NUMPAD2;
3892 break;
3893 case VK_NEXT:
3894 nParam = VK_NUMPAD3;
3895 break;
3896 case VK_LEFT:
3897 nParam = VK_NUMPAD4;
3898 break;
3899 case VK_CLEAR:
3900 nParam = VK_NUMPAD5;
3901 break;
3902 case VK_RIGHT:
3903 nParam = VK_NUMPAD6;
3904 break;
3905 case VK_HOME:
3906 nParam = VK_NUMPAD7;
3907 break;
3908 case VK_UP:
3909 nParam = VK_NUMPAD8;
3910 break;
3911 case VK_PRIOR:
3912 nParam = VK_NUMPAD9;
3913 break;
3914 case VK_DELETE:
3915 nParam = VK_DECIMAL;
3916 break;
c9def1b8 3917 }
32874aea 3918 if (nParam) {
3919 if (keystate[VK_NUMLOCK] & 1)
3920 shift_state |= 1;
c9def1b8 3921 wParam = nParam;
3922 }
25d39ef6 3923 }
3924 }
3925
c9def1b8 3926 /* If a key is pressed and AltGr is not active */
32874aea 3927 if (key_down && (keystate[VK_RMENU] & 0x80) == 0 && !compose_state) {
3928 /* Okay, prepare for most alts then ... */
3929 if (left_alt)
3930 *p++ = '\033';
374330e2 3931
c9def1b8 3932 /* Lets see if it's a pattern we know all about ... */
3933 if (wParam == VK_PRIOR && shift_state == 1) {
32874aea 3934 SendMessage(hwnd, WM_VSCROLL, SB_PAGEUP, 0);
3935 return 0;
c9def1b8 3936 }
153580da 3937 if (wParam == VK_PRIOR && shift_state == 2) {
3938 SendMessage(hwnd, WM_VSCROLL, SB_LINEUP, 0);
3939 return 0;
3940 }
c9def1b8 3941 if (wParam == VK_NEXT && shift_state == 1) {
32874aea 3942 SendMessage(hwnd, WM_VSCROLL, SB_PAGEDOWN, 0);
3943 return 0;
3944 }
153580da 3945 if (wParam == VK_NEXT && shift_state == 2) {
3946 SendMessage(hwnd, WM_VSCROLL, SB_LINEDOWN, 0);
3947 return 0;
3948 }
cf6ddb95 3949 if ((wParam == VK_PRIOR || wParam == VK_NEXT) && shift_state == 3) {
3950 term_scroll_to_selection(term, (wParam == VK_PRIOR ? 0 : 1));
3951 return 0;
3952 }
32874aea 3953 if (wParam == VK_INSERT && shift_state == 1) {
e9609ce5 3954 request_paste(NULL);
32874aea 3955 return 0;
3956 }
c9def1b8 3957 if (left_alt && wParam == VK_F4 && cfg.alt_f4) {
32874aea 3958 return -1;
c9def1b8 3959 }
3960 if (left_alt && wParam == VK_SPACE && cfg.alt_space) {
32874aea 3961 SendMessage(hwnd, WM_SYSCOMMAND, SC_KEYMENU, 0);
3962 return -1;
c9def1b8 3963 }
2cae8529 3964 if (left_alt && wParam == VK_RETURN && cfg.fullscreenonaltenter &&
3965 (cfg.resize_action != RESIZE_DISABLED)) {
0ed2f48e 3966 if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) != KF_REPEAT)
3967 flip_full_screen();
8f57d753 3968 return -1;
3969 }
ec55b220 3970 /* Control-Numlock for app-keypad mode switch */
3971 if (wParam == VK_PAUSE && shift_state == 2) {
887035a5 3972 term->app_keypad_keys ^= 1;
ec55b220 3973 return 0;
3974 }
374330e2 3975
c9def1b8 3976 /* Nethack keypad */
3977 if (cfg.nethack_keypad && !left_alt) {
32874aea 3978 switch (wParam) {
3979 case VK_NUMPAD1:
6e67448b 3980 *p++ = "bB\002\002"[shift_state & 3];
32874aea 3981 return p - output;
3982 case VK_NUMPAD2:
6e67448b 3983 *p++ = "jJ\012\012"[shift_state & 3];
32874aea 3984 return p - output;
3985 case VK_NUMPAD3:
6e67448b 3986 *p++ = "nN\016\016"[shift_state & 3];
32874aea 3987 return p - output;
3988 case VK_NUMPAD4:
6e67448b 3989 *p++ = "hH\010\010"[shift_state & 3];
32874aea 3990 return p - output;
3991 case VK_NUMPAD5:
3992 *p++ = shift_state ? '.' : '.';
3993 return p - output;
3994 case VK_NUMPAD6:
6e67448b 3995 *p++ = "lL\014\014"[shift_state & 3];
32874aea 3996 return p - output;
3997 case VK_NUMPAD7:
6e67448b 3998 *p++ = "yY\031\031"[shift_state & 3];
32874aea 3999 return p - output;
4000 case VK_NUMPAD8:
6e67448b 4001 *p++ = "kK\013\013"[shift_state & 3];
32874aea 4002 return p - output;
4003 case VK_NUMPAD9:
6e67448b 4004 *p++ = "uU\025\025"[shift_state & 3];
32874aea 4005 return p - output;
4006 }
c9def1b8 4007 }
4008
4009 /* Application Keypad */
4010 if (!left_alt) {
32874aea 4011 int xkey = 0;
4012
5789bc94 4013 if (cfg.funky_type == FUNKY_VT400 ||
4014 (cfg.funky_type <= FUNKY_LINUX &&
887035a5 4015 term->app_keypad_keys && !cfg.no_applic_k)) switch (wParam) {
32874aea 4016 case VK_EXECUTE:
4017 xkey = 'P';
4018 break;
4019 case VK_DIVIDE:
4020 xkey = 'Q';
4021 break;
4022 case VK_MULTIPLY:
4023 xkey = 'R';
4024 break;
4025 case VK_SUBTRACT:
4026 xkey = 'S';
4027 break;
4028 }
887035a5 4029 if (term->app_keypad_keys && !cfg.no_applic_k)
32874aea 4030 switch (wParam) {
4031 case VK_NUMPAD0:
4032 xkey = 'p';
4033 break;
4034 case VK_NUMPAD1:
4035 xkey = 'q';
4036 break;
4037 case VK_NUMPAD2:
4038 xkey = 'r';
4039 break;
4040 case VK_NUMPAD3:
4041 xkey = 's';
4042 break;
4043 case VK_NUMPAD4:
4044 xkey = 't';
4045 break;
4046 case VK_NUMPAD5:
4047 xkey = 'u';
4048 break;
4049 case VK_NUMPAD6:
4050 xkey = 'v';
4051 break;
4052 case VK_NUMPAD7:
4053 xkey = 'w';
4054 break;
4055 case VK_NUMPAD8:
4056 xkey = 'x';
4057 break;
4058 case VK_NUMPAD9:
4059 xkey = 'y';
4060 break;
4061
4062 case VK_DECIMAL:
4063 xkey = 'n';
4064 break;
4065 case VK_ADD:
5789bc94 4066 if (cfg.funky_type == FUNKY_XTERM) {
32874aea 4067 if (shift_state)
4068 xkey = 'l';
4069 else
4070 xkey = 'k';
4071 } else if (shift_state)
4072 xkey = 'm';
c9def1b8 4073 else
32874aea 4074 xkey = 'l';
4075 break;
4076
4077 case VK_DIVIDE:
5789bc94 4078 if (cfg.funky_type == FUNKY_XTERM)
32874aea 4079 xkey = 'o';
4080 break;
4081 case VK_MULTIPLY:
5789bc94 4082 if (cfg.funky_type == FUNKY_XTERM)
32874aea 4083 xkey = 'j';
4084 break;
4085 case VK_SUBTRACT:
5789bc94 4086 if (cfg.funky_type == FUNKY_XTERM)
32874aea 4087 xkey = 'm';
4088 break;
4089
4090 case VK_RETURN:
4091 if (HIWORD(lParam) & KF_EXTENDED)
4092 xkey = 'M';
4093 break;
c9def1b8 4094 }
32874aea 4095 if (xkey) {
887035a5 4096 if (term->vt52_mode) {
32874aea 4097 if (xkey >= 'P' && xkey <= 'S')
4098 p += sprintf((char *) p, "\x1B%c", xkey);
4099 else
4100 p += sprintf((char *) p, "\x1B?%c", xkey);
4101 } else
4102 p += sprintf((char *) p, "\x1BO%c", xkey);
4103 return p - output;
c9def1b8 4104 }
4105 }
4106
32874aea 4107 if (wParam == VK_BACK && shift_state == 0) { /* Backspace */
c9def1b8 4108 *p++ = (cfg.bksp_is_delete ? 0x7F : 0x08);
a5f3e637 4109 *p++ = 0;
4110 return -2;
c9def1b8 4111 }
e8e8d6e2 4112 if (wParam == VK_BACK && shift_state == 1) { /* Shift Backspace */
4113 /* We do the opposite of what is configured */
4114 *p++ = (cfg.bksp_is_delete ? 0x08 : 0x7F);
4115 *p++ = 0;
4116 return -2;
4117 }
32874aea 4118 if (wParam == VK_TAB && shift_state == 1) { /* Shift tab */
4119 *p++ = 0x1B;
4120 *p++ = '[';
4121 *p++ = 'Z';
4122 return p - output;
c9def1b8 4123 }
32874aea 4124 if (wParam == VK_SPACE && shift_state == 2) { /* Ctrl-Space */
4125 *p++ = 0;
4126 return p - output;
c9def1b8 4127 }
32874aea 4128 if (wParam == VK_SPACE && shift_state == 3) { /* Ctrl-Shift-Space */
4129 *p++ = 160;
4130 return p - output;
c9def1b8 4131 }
32874aea 4132 if (wParam == VK_CANCEL && shift_state == 2) { /* Ctrl-Break */
58c840dc 4133 if (back)
4134 back->special(backhandle, TS_BRK);
4135 return 0;
c9def1b8 4136 }
32874aea 4137 if (wParam == VK_PAUSE) { /* Break/Pause */
4138 *p++ = 26;
4139 *p++ = 0;
4140 return -2;
95bbe1ae 4141 }
c9def1b8 4142 /* Control-2 to Control-8 are special */
32874aea 4143 if (shift_state == 2 && wParam >= '2' && wParam <= '8') {
4144 *p++ = "\000\033\034\035\036\037\177"[wParam - '2'];
c9def1b8 4145 return p - output;
4146 }
237f2b6e 4147 if (shift_state == 2 && (wParam == 0xBD || wParam == 0xBF)) {
c9def1b8 4148 *p++ = 0x1F;
4149 return p - output;
4150 }
e414a330 4151 if (shift_state == 2 && (wParam == 0xDF || wParam == 0xDC)) {
c9def1b8 4152 *p++ = 0x1C;
4153 return p - output;
4154 }
9aa461e4 4155 if (shift_state == 3 && wParam == 0xDE) {
4156 *p++ = 0x1E; /* Ctrl-~ == Ctrl-^ in xterm at least */
4157 return p - output;
4158 }
887035a5 4159 if (shift_state == 0 && wParam == VK_RETURN && term->cr_lf_return) {
32874aea 4160 *p++ = '\r';
4161 *p++ = '\n';
c9def1b8 4162 return p - output;
4163 }
374330e2 4164
c5e9c988 4165 /*
c9def1b8 4166 * Next, all the keys that do tilde codes. (ESC '[' nn '~',
4167 * for integer decimal nn.)
4168 *
4169 * We also deal with the weird ones here. Linux VCs replace F1
4170 * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
4171 * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
4172 * respectively.
c5e9c988 4173 */
c9def1b8 4174 code = 0;
4175 switch (wParam) {
32874aea 4176 case VK_F1:
4177 code = (keystate[VK_SHIFT] & 0x80 ? 23 : 11);
4178 break;
4179 case VK_F2:
4180 code = (keystate[VK_SHIFT] & 0x80 ? 24 : 12);
4181 break;
4182 case VK_F3:
4183 code = (keystate[VK_SHIFT] & 0x80 ? 25 : 13);
4184 break;
4185 case VK_F4:
4186 code = (keystate[VK_SHIFT] & 0x80 ? 26 : 14);
4187 break;
4188 case VK_F5:
4189 code = (keystate[VK_SHIFT] & 0x80 ? 28 : 15);
4190 break;
4191 case VK_F6:
4192 code = (keystate[VK_SHIFT] & 0x80 ? 29 : 17);
4193 break;
4194 case VK_F7:
4195 code = (keystate[VK_SHIFT] & 0x80 ? 31 : 18);
4196 break;
4197 case VK_F8:
4198 code = (keystate[VK_SHIFT] & 0x80 ? 32 : 19);
4199 break;
4200 case VK_F9:
4201 code = (keystate[VK_SHIFT] & 0x80 ? 33 : 20);
4202 break;
4203 case VK_F10:
4204 code = (keystate[VK_SHIFT] & 0x80 ? 34 : 21);
4205 break;
4206 case VK_F11:
4207 code = 23;
4208 break;
4209 case VK_F12:
4210 code = 24;
4211 break;
4212 case VK_F13:
4213 code = 25;
4214 break;
4215 case VK_F14:
4216 code = 26;
4217 break;
4218 case VK_F15:
4219 code = 28;
4220 break;
4221 case VK_F16:
4222 code = 29;
4223 break;
4224 case VK_F17:
4225 code = 31;
4226 break;
4227 case VK_F18:
4228 code = 32;
4229 break;
4230 case VK_F19:
4231 code = 33;
4232 break;
4233 case VK_F20:
4234 code = 34;
4235 break;
dfca2656 4236 }
4237 if ((shift_state&2) == 0) switch (wParam) {
32874aea 4238 case VK_HOME:
4239 code = 1;
4240 break;
4241 case VK_INSERT:
4242 code = 2;
4243 break;
4244 case VK_DELETE:
4245 code = 3;
4246 break;
4247 case VK_END:
4248 code = 4;
4249 break;
4250 case VK_PRIOR:
4251 code = 5;
4252 break;
4253 case VK_NEXT:
4254 code = 6;
4255 break;
374330e2 4256 }
ec55b220 4257 /* Reorder edit keys to physical order */
5789bc94 4258 if (cfg.funky_type == FUNKY_VT400 && code <= 6)
32874aea 4259 code = "\0\2\1\4\5\3\6"[code];
ec55b220 4260
887035a5 4261 if (term->vt52_mode && code > 0 && code <= 6) {
32874aea 4262 p += sprintf((char *) p, "\x1B%c", " HLMEIG"[code]);
f37caa11 4263 return p - output;
4264 }
4265
5789bc94 4266 if (cfg.funky_type == FUNKY_SCO && /* SCO function keys */
9bc81a2c 4267 code >= 11 && code <= 34) {
e24b1972 4268 char codes[] = "MNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@[\\]^_`{";
4269 int index = 0;
4270 switch (wParam) {
4271 case VK_F1: index = 0; break;
4272 case VK_F2: index = 1; break;
4273 case VK_F3: index = 2; break;
4274 case VK_F4: index = 3; break;
4275 case VK_F5: index = 4; break;
4276 case VK_F6: index = 5; break;
4277 case VK_F7: index = 6; break;
4278 case VK_F8: index = 7; break;
4279 case VK_F9: index = 8; break;
4280 case VK_F10: index = 9; break;
4281 case VK_F11: index = 10; break;
4282 case VK_F12: index = 11; break;
4283 }
4284 if (keystate[VK_SHIFT] & 0x80) index += 12;
4285 if (keystate[VK_CONTROL] & 0x80) index += 24;
4286 p += sprintf((char *) p, "\x1B[%c", codes[index]);
f37caa11 4287 return p - output;
4288 }
5789bc94 4289 if (cfg.funky_type == FUNKY_SCO && /* SCO small keypad */
9bc81a2c 4290 code >= 1 && code <= 6) {
4291 char codes[] = "HL.FIG";
4292 if (code == 3) {
4293 *p++ = '\x7F';
4294 } else {
4295 p += sprintf((char *) p, "\x1B[%c", codes[code-1]);
4296 }
4297 return p - output;
4298 }
5789bc94 4299 if ((term->vt52_mode || cfg.funky_type == FUNKY_VT100P) && code >= 11 && code <= 24) {
f37caa11 4300 int offt = 0;
32874aea 4301 if (code > 15)
4302 offt++;
4303 if (code > 21)
4304 offt++;
887035a5 4305 if (term->vt52_mode)
32874aea 4306 p += sprintf((char *) p, "\x1B%c", code + 'P' - 11 - offt);
f37caa11 4307 else
32874aea 4308 p +=
4309 sprintf((char *) p, "\x1BO%c", code + 'P' - 11 - offt);
f37caa11 4310 return p - output;
4311 }
5789bc94 4312 if (cfg.funky_type == FUNKY_LINUX && code >= 11 && code <= 15) {
32874aea 4313 p += sprintf((char *) p, "\x1B[[%c", code + 'A' - 11);
c9def1b8 4314 return p - output;
4315 }
5789bc94 4316 if (cfg.funky_type == FUNKY_XTERM && code >= 11 && code <= 14) {
887035a5 4317 if (term->vt52_mode)
32874aea 4318 p += sprintf((char *) p, "\x1B%c", code + 'P' - 11);
ec55b220 4319 else
32874aea 4320 p += sprintf((char *) p, "\x1BO%c", code + 'P' - 11);
c9def1b8 4321 return p - output;
4322 }
4323 if (cfg.rxvt_homeend && (code == 1 || code == 4)) {
32874aea 4324 p += sprintf((char *) p, code == 1 ? "\x1B[H" : "\x1BOw");
c9def1b8 4325 return p - output;
4326 }
4327 if (code) {
32874aea 4328 p += sprintf((char *) p, "\x1B[%d~", code);
374330e2 4329 return p - output;
374330e2 4330 }
45dabbc5 4331
c9def1b8 4332 /*
4333 * Now the remaining keys (arrows and Keypad 5. Keypad 5 for
4334 * some reason seems to send VK_CLEAR to Windows...).
4335 */
4336 {
4337 char xkey = 0;
4338 switch (wParam) {
32874aea 4339 case VK_UP:
4340 xkey = 'A';
4341 break;
4342 case VK_DOWN:
4343 xkey = 'B';
4344 break;
4345 case VK_RIGHT:
4346 xkey = 'C';
4347 break;
4348 case VK_LEFT:
4349 xkey = 'D';
4350 break;
4351 case VK_CLEAR:
4352 xkey = 'G';
4353 break;
c9def1b8 4354 }
32874aea 4355 if (xkey) {
720f700e 4356 p += format_arrow_key(p, term, xkey, shift_state);
c9def1b8 4357 return p - output;
4358 }
4359 }
0c50ef57 4360
4361 /*
4362 * Finally, deal with Return ourselves. (Win95 seems to
4363 * foul it up when Alt is pressed, for some reason.)
4364 */
32874aea 4365 if (wParam == VK_RETURN) { /* Return */
0c50ef57 4366 *p++ = 0x0D;
a5f3e637 4367 *p++ = 0;
4368 return -2;
0c50ef57 4369 }
4eeb7d09 4370
4371 if (left_alt && wParam >= VK_NUMPAD0 && wParam <= VK_NUMPAD9)
4372 alt_sum = alt_sum * 10 + wParam - VK_NUMPAD0;
4373 else
4374 alt_sum = 0;
67c339f7 4375 }
374330e2 4376
c9def1b8 4377 /* Okay we've done everything interesting; let windows deal with
4378 * the boring stuff */
4379 {
a9c02454 4380 BOOL capsOn=0;
4381
4382 /* helg: clear CAPS LOCK state if caps lock switches to cyrillic */
4383 if(cfg.xlat_capslockcyr && keystate[VK_CAPITAL] != 0) {
4384 capsOn= !left_alt;
4385 keystate[VK_CAPITAL] = 0;
4386 }
4387
c264be08 4388 /* XXX how do we know what the max size of the keys array should
4389 * be is? There's indication on MS' website of an Inquire/InquireEx
4390 * functioning returning a KBINFO structure which tells us. */
4391 if (osVersion.dwPlatformId == VER_PLATFORM_WIN32_NT) {
4392 /* XXX 'keys' parameter is declared in MSDN documentation as
4393 * 'LPWORD lpChar'.
4394 * The experience of a French user indicates that on
4395 * Win98, WORD[] should be passed in, but on Win2K, it should
4396 * be BYTE[]. German WinXP and my Win2K with "US International"
4397 * driver corroborate this.
4398 * Experimentally I've conditionalised the behaviour on the
4399 * Win9x/NT split, but I suspect it's worse than that.
4400 * See wishlist item `win-dead-keys' for more horrible detail
4401 * and speculations. */
4402 BYTE keybs[3];
4403 int i;
4404 r = ToAsciiEx(wParam, scan, keystate, (LPWORD)keybs, 0, kbd_layout);
4405 for (i=0; i<3; i++) keys[i] = keybs[i];
4406 } else {
4407 r = ToAsciiEx(wParam, scan, keystate, keys, 0, kbd_layout);
4408 }
4eeb7d09 4409#ifdef SHOW_TOASCII_RESULT
4410 if (r == 1 && !key_down) {
4411 if (alt_sum) {
21d2b241 4412 if (in_utf(term) || ucsdata.dbcs_screenfont)
4eeb7d09 4413 debug((", (U+%04x)", alt_sum));
4414 else
4415 debug((", LCH(%d)", alt_sum));
4416 } else {
4417 debug((", ACH(%d)", keys[0]));
4418 }
4419 } else if (r > 0) {
4420 int r1;
4421 debug((", ASC("));
4422 for (r1 = 0; r1 < r; r1++) {
4423 debug(("%s%d", r1 ? "," : "", keys[r1]));
4424 }
4425 debug((")"));
4426 }
4427#endif
32874aea 4428 if (r > 0) {
4eeb7d09 4429 WCHAR keybuf;
256cb87c 4430
4431 /*
4432 * Interrupt an ongoing paste. I'm not sure this is
4433 * sensible, but for the moment it's preferable to
4434 * having to faff about buffering things.
4435 */
887035a5 4436 term_nopaste(term);
256cb87c 4437
c9def1b8 4438 p = output;
32874aea 4439 for (i = 0; i < r; i++) {
4440 unsigned char ch = (unsigned char) keys[i];
14963b8f 4441
32874aea 4442 if (compose_state == 2 && (ch & 0x80) == 0 && ch > ' ') {
c9def1b8 4443 compose_char = ch;
32874aea 4444 compose_state++;
c9def1b8 4445 continue;
4446 }
32874aea 4447 if (compose_state == 3 && (ch & 0x80) == 0 && ch > ' ') {
c9def1b8 4448 int nc;
4449 compose_state = 0;
4450
32874aea 4451 if ((nc = check_compose(compose_char, ch)) == -1) {
fe50e814 4452 MessageBeep(MB_ICONHAND);
c9def1b8 4453 return 0;
4454 }
4eeb7d09 4455 keybuf = nc;
887035a5 4456 term_seen_key_event(term);
e3be8de5 4457 if (ldisc)
4458 luni_send(ldisc, &keybuf, 1, 1);
4eeb7d09 4459 continue;
c9def1b8 4460 }
374330e2 4461
c9def1b8 4462 compose_state = 0;
374330e2 4463
4eeb7d09 4464 if (!key_down) {
4465 if (alt_sum) {
21d2b241 4466 if (in_utf(term) || ucsdata.dbcs_screenfont) {
4eeb7d09 4467 keybuf = alt_sum;
887035a5 4468 term_seen_key_event(term);
e3be8de5 4469 if (ldisc)
4470 luni_send(ldisc, &keybuf, 1, 1);
4eeb7d09 4471 } else {
4472 ch = (char) alt_sum;
5471d09a 4473 /*
4474 * We need not bother about stdin
4475 * backlogs here, because in GUI PuTTY
4476 * we can't do anything about it
4477 * anyway; there's no means of asking
4478 * Windows to hold off on KEYDOWN
4479 * messages. We _have_ to buffer
4480 * everything we're sent.
4481 */
887035a5 4482 term_seen_key_event(term);
e3be8de5 4483 if (ldisc)
4484 ldisc_send(ldisc, &ch, 1, 1);
4eeb7d09 4485 }
4486 alt_sum = 0;
405a0c29 4487 } else {
887035a5 4488 term_seen_key_event(term);
e3be8de5 4489 if (ldisc)
4490 lpage_send(ldisc, kbd_codepage, &ch, 1, 1);
405a0c29 4491 }
4eeb7d09 4492 } else {
a9c02454 4493 if(capsOn && ch < 0x80) {
4494 WCHAR cbuf[2];
4495 cbuf[0] = 27;
4496 cbuf[1] = xlat_uskbd2cyrllic(ch);
887035a5 4497 term_seen_key_event(term);
e3be8de5 4498 if (ldisc)
4499 luni_send(ldisc, cbuf+!left_alt, 1+!!left_alt, 1);
a9c02454 4500 } else {
4501 char cbuf[2];
4502 cbuf[0] = '\033';
4503 cbuf[1] = ch;
887035a5 4504 term_seen_key_event(term);
e3be8de5 4505 if (ldisc)
4506 lpage_send(ldisc, kbd_codepage,
4507 cbuf+!left_alt, 1+!!left_alt, 1);
a9c02454 4508 }
c9def1b8 4509 }
bca9517a 4510 show_mouseptr(0);
c9def1b8 4511 }
374330e2 4512
c9def1b8 4513 /* This is so the ALT-Numpad and dead keys work correctly. */
4514 keys[0] = 0;
4515
32874aea 4516 return p - output;
c9def1b8 4517 }
159eba53 4518 /* If we're definitly not building up an ALT-54321 then clear it */
32874aea 4519 if (!left_alt)
4520 keys[0] = 0;
4eeb7d09 4521 /* If we will be using alt_sum fix the 256s */
21d2b241 4522 else if (keys[0] && (in_utf(term) || ucsdata.dbcs_screenfont))
4eeb7d09 4523 keys[0] = 10;
374330e2 4524 }
4525
dfca2656 4526 /*
4527 * ALT alone may or may not want to bring up the System menu.
4528 * If it's not meant to, we return 0 on presses or releases of
4529 * ALT, to show that we've swallowed the keystroke. Otherwise
4530 * we return -1, which means Windows will give the keystroke
4531 * its default handling (i.e. bring up the System menu).
4532 */
4533 if (wParam == VK_MENU && !cfg.alt_only)
4534 return 0;
374330e2 4535
c9def1b8 4536 return -1;
374330e2 4537}
4538
a8327734 4539void set_title(void *frontend, char *title)
32874aea 4540{
4541 sfree(window_name);
3d88e64d 4542 window_name = snewn(1 + strlen(title), char);
32874aea 4543 strcpy(window_name, title);
37508af4 4544 if (cfg.win_name_always || !IsIconic(hwnd))
32874aea 4545 SetWindowText(hwnd, title);
374330e2 4546}
4547
a8327734 4548void set_icon(void *frontend, char *title)
32874aea 4549{
4550 sfree(icon_name);
3d88e64d 4551 icon_name = snewn(1 + strlen(title), char);
32874aea 4552 strcpy(icon_name, title);
37508af4 4553 if (!cfg.win_name_always && IsIconic(hwnd))
32874aea 4554 SetWindowText(hwnd, title);
374330e2 4555}
4556
a8327734 4557void set_sbar(void *frontend, int total, int start, int page)
32874aea 4558{
374330e2 4559 SCROLLINFO si;
c9def1b8 4560
1ba99d2c 4561 if (is_full_screen() ? !cfg.scrollbar_in_fullscreen : !cfg.scrollbar)
32874aea 4562 return;
c9def1b8 4563
374330e2 4564 si.cbSize = sizeof(si);
c9def1b8 4565 si.fMask = SIF_ALL | SIF_DISABLENOSCROLL;
374330e2 4566 si.nMin = 0;
4567 si.nMax = total - 1;
4568 si.nPage = page;
4569 si.nPos = start;
c1f5f956 4570 if (hwnd)
32874aea 4571 SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
374330e2 4572}
4573
a8327734 4574Context get_ctx(void *frontend)
32874aea 4575{
374330e2 4576 HDC hdc;
4577 if (hwnd) {
32874aea 4578 hdc = GetDC(hwnd);
374330e2 4579 if (hdc && pal)
32874aea 4580 SelectPalette(hdc, pal, FALSE);
374330e2 4581 return hdc;
4582 } else
4583 return NULL;
4584}
4585
32874aea 4586void free_ctx(Context ctx)
4587{
4588 SelectPalette(ctx, GetStockObject(DEFAULT_PALETTE), FALSE);
4589 ReleaseDC(hwnd, ctx);
374330e2 4590}
4591
32874aea 4592static void real_palette_set(int n, int r, int g, int b)
4593{
374330e2 4594 if (pal) {
4595 logpal->palPalEntry[n].peRed = r;
4596 logpal->palPalEntry[n].peGreen = g;
4597 logpal->palPalEntry[n].peBlue = b;
4598 logpal->palPalEntry[n].peFlags = PC_NOCOLLAPSE;
4599 colours[n] = PALETTERGB(r, g, b);
cecb13f6 4600 SetPaletteEntries(pal, 0, NALLCOLOURS, logpal->palPalEntry);
374330e2 4601 } else
4602 colours[n] = RGB(r, g, b);
4603}
4604
a8327734 4605void palette_set(void *frontend, int n, int r, int g, int b)
32874aea 4606{
cecb13f6 4607 if (n >= 16)
4608 n += 256 - 16;
4609 if (n > NALLCOLOURS)
4610 return;
4611 real_palette_set(n, r, g, b);
374330e2 4612 if (pal) {
a8327734 4613 HDC hdc = get_ctx(frontend);
32874aea 4614 UnrealizeObject(pal);
4615 RealizePalette(hdc);
4616 free_ctx(hdc);
6092b4ee 4617 } else {
4618 if (n == (ATTR_DEFBG>>ATTR_BGSHIFT))
4619 /* If Default Background changes, we need to ensure any
4620 * space between the text area and the window border is
4621 * redrawn. */
4622 InvalidateRect(hwnd, NULL, TRUE);
374330e2 4623 }
4624}
4625
a8327734 4626void palette_reset(void *frontend)
32874aea 4627{
374330e2 4628 int i;
4629
cecb13f6 4630 /* And this */
4631 for (i = 0; i < NALLCOLOURS; i++) {
374330e2 4632 if (pal) {
4633 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
4634 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
4635 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
4636 logpal->palPalEntry[i].peFlags = 0;
4637 colours[i] = PALETTERGB(defpal[i].rgbtRed,
4638 defpal[i].rgbtGreen,
4639 defpal[i].rgbtBlue);
4640 } else
4641 colours[i] = RGB(defpal[i].rgbtRed,
32874aea 4642 defpal[i].rgbtGreen, defpal[i].rgbtBlue);
374330e2 4643 }
4644
4645 if (pal) {
4646 HDC hdc;
cecb13f6 4647 SetPaletteEntries(pal, 0, NALLCOLOURS, logpal->palPalEntry);
a8327734 4648 hdc = get_ctx(frontend);
32874aea 4649 RealizePalette(hdc);
4650 free_ctx(hdc);
6092b4ee 4651 } else {
4652 /* Default Background may have changed. Ensure any space between
4653 * text area and window border is redrawn. */
4654 InvalidateRect(hwnd, NULL, TRUE);
374330e2 4655 }
4656}
4657
a8327734 4658void write_aclip(void *frontend, char *data, int len, int must_deselect)
32874aea 4659{
374330e2 4660 HGLOBAL clipdata;
4661 void *lock;
4662
32874aea 4663 clipdata = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, len + 1);
374330e2 4664 if (!clipdata)
4665 return;
32874aea 4666 lock = GlobalLock(clipdata);
374330e2 4667 if (!lock)
4668 return;
32874aea 4669 memcpy(lock, data, len);
4670 ((unsigned char *) lock)[len] = 0;
4671 GlobalUnlock(clipdata);
374330e2 4672
f0df44da 4673 if (!must_deselect)
32874aea 4674 SendMessage(hwnd, WM_IGNORE_CLIP, TRUE, 0);
f0df44da 4675
32874aea 4676 if (OpenClipboard(hwnd)) {
374330e2 4677 EmptyClipboard();
32874aea 4678 SetClipboardData(CF_TEXT, clipdata);
374330e2 4679 CloseClipboard();
4680 } else
32874aea 4681 GlobalFree(clipdata);
f0df44da 4682
4683 if (!must_deselect)
32874aea 4684 SendMessage(hwnd, WM_IGNORE_CLIP, FALSE, 0);
374330e2 4685}
4686
4eeb7d09 4687/*
4688 * Note: unlike write_aclip() this will not append a nul.
4689 */
c83c79bd 4690void write_clip(void *frontend, wchar_t * data, int *attr, int len, int must_deselect)
4eeb7d09 4691{
a7419ea4 4692 HGLOBAL clipdata, clipdata2, clipdata3;
4eeb7d09 4693 int len2;
a7419ea4 4694 void *lock, *lock2, *lock3;
4eeb7d09 4695
4696 len2 = WideCharToMultiByte(CP_ACP, 0, data, len, 0, 0, NULL, NULL);
4697
4698 clipdata = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE,
4699 len * sizeof(wchar_t));
4700 clipdata2 = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, len2);
4701
0e5e7f46 4702 if (!clipdata || !clipdata2) {
4eeb7d09 4703 if (clipdata)
4704 GlobalFree(clipdata);
4705 if (clipdata2)
4706 GlobalFree(clipdata2);
4707 return;
4708 }
4709 if (!(lock = GlobalLock(clipdata)))
4710 return;
4711 if (!(lock2 = GlobalLock(clipdata2)))
4712 return;
4713
4714 memcpy(lock, data, len * sizeof(wchar_t));
4715 WideCharToMultiByte(CP_ACP, 0, data, len, lock2, len2, NULL, NULL);
4716
a7419ea4 4717 if (cfg.rtf_paste) {
4718 wchar_t unitab[256];
4719 char *rtf = NULL;
4720 unsigned char *tdata = (unsigned char *)lock2;
4721 wchar_t *udata = (wchar_t *)lock;
4722 int rtflen = 0, uindex = 0, tindex = 0;
4723 int rtfsize = 0;
4724 int multilen, blen, alen, totallen, i;
4725 char before[16], after[4];
c83c79bd 4726 int fgcolour, lastfgcolour = 0;
4727 int bgcolour, lastbgcolour = 0;
4728 int attrBold, lastAttrBold = 0;
4729 int attrUnder, lastAttrUnder = 0;
4730 int palette[NALLCOLOURS];
4731 int numcolours;
a7419ea4 4732
4733 get_unitab(CP_ACP, unitab, 0);
4734
9a30e26b 4735 rtfsize = 100 + strlen(cfg.font.name);
3d88e64d 4736 rtf = snewn(rtfsize, char);
c83c79bd 4737 rtflen = sprintf(rtf, "{\\rtf1\\ansi\\deff0{\\fonttbl\\f0\\fmodern %s;}\\f0\\fs%d",
4738 cfg.font.name, cfg.font.height*2);
4739
4740 /*
4741 * Add colour palette
4742 * {\colortbl ;\red255\green0\blue0;\red0\green0\blue128;}
4743 */
4744
4745 /*
4746 * First - Determine all colours in use
4747 * o Foregound and background colours share the same palette
4748 */
4749 if (attr) {
4750 memset(palette, 0, sizeof(palette));
4751 for (i = 0; i < (len-1); i++) {
4752 fgcolour = ((attr[i] & ATTR_FGMASK) >> ATTR_FGSHIFT);
4753 bgcolour = ((attr[i] & ATTR_BGMASK) >> ATTR_BGSHIFT);
4754
4755 if (attr[i] & ATTR_REVERSE) {
4756 int tmpcolour = fgcolour; /* Swap foreground and background */
4757 fgcolour = bgcolour;
4758 bgcolour = tmpcolour;
4759 }
4760
4761 if (bold_mode == BOLD_COLOURS && (attr[i] & ATTR_BOLD)) {
4762 if (fgcolour < 8) /* ANSI colours */
4763 fgcolour += 8;
4764 else if (fgcolour >= 256) /* Default colours */
4765 fgcolour ++;
4766 }
4767
4768 if (attr[i] & ATTR_BLINK) {
4769 if (bgcolour < 8) /* ANSI colours */
4770 bgcolour += 8;
4771 else if (bgcolour >= 256) /* Default colours */
4772 bgcolour ++;
4773 }
4774
4775 palette[fgcolour]++;
4776 palette[bgcolour]++;
4777 }
4778
4779 /*
4780 * Next - Create a reduced palette
4781 */
4782 numcolours = 0;
4783 for (i = 0; i < NALLCOLOURS; i++) {
4784 if (palette[i] != 0)
4785 palette[i] = ++numcolours;
4786 }
4787
4788 /*
4789 * Finally - Write the colour table
4790 */
4791 rtf = sresize(rtf, rtfsize + (numcolours * 25), char);
4792 strcat(rtf, "{\\colortbl ;");
4793 rtflen = strlen(rtf);
4794
4795 for (i = 0; i < NALLCOLOURS; i++) {
4796 if (palette[i] != 0) {
4797 rtflen += sprintf(&rtf[rtflen], "\\red%d\\green%d\\blue%d;", defpal[i].rgbtRed, defpal[i].rgbtGreen, defpal[i].rgbtBlue);
4798 }
4799 }
4800 strcpy(&rtf[rtflen], "}");
4801 rtflen ++;
4802 }
a7419ea4 4803
4804 /*
4805 * We want to construct a piece of RTF that specifies the
4806 * same Unicode text. To do this we will read back in
4807 * parallel from the Unicode data in `udata' and the
4808 * non-Unicode data in `tdata'. For each character in
4809 * `tdata' which becomes the right thing in `udata' when
4810 * looked up in `unitab', we just copy straight over from
4811 * tdata. For each one that doesn't, we must WCToMB it
4812 * individually and produce a \u escape sequence.
4813 *
4814 * It would probably be more robust to just bite the bullet
4815 * and WCToMB each individual Unicode character one by one,
4816 * then MBToWC each one back to see if it was an accurate
4817 * translation; but that strikes me as a horrifying number
4818 * of Windows API calls so I want to see if this faster way
4819 * will work. If it screws up badly we can always revert to
4820 * the simple and slow way.
4821 */
4822 while (tindex < len2 && uindex < len &&
4823 tdata[tindex] && udata[uindex]) {
4824 if (tindex + 1 < len2 &&
4825 tdata[tindex] == '\r' &&
4826 tdata[tindex+1] == '\n') {
4827 tindex++;
4828 uindex++;
c83c79bd 4829 }
4830
4831 /*
4832 * Set text attributes
4833 */
4834 if (attr) {
4835 if (rtfsize < rtflen + 64) {
4836 rtfsize = rtflen + 512;
4837 rtf = sresize(rtf, rtfsize, char);
4838 }
4839
4840 /*
4841 * Determine foreground and background colours
4842 */
4843 fgcolour = ((attr[tindex] & ATTR_FGMASK) >> ATTR_FGSHIFT);
4844 bgcolour = ((attr[tindex] & ATTR_BGMASK) >> ATTR_BGSHIFT);
4845
4846 if (attr[tindex] & ATTR_REVERSE) {
4847 int tmpcolour = fgcolour; /* Swap foreground and background */
4848 fgcolour = bgcolour;
4849 bgcolour = tmpcolour;
4850 }
4851
4852 if (bold_mode == BOLD_COLOURS && (attr[tindex] & ATTR_BOLD)) {
4853 if (fgcolour < 8) /* ANSI colours */
4854 fgcolour += 8;
4855 else if (fgcolour >= 256) /* Default colours */
4856 fgcolour ++;
4857 }
4858
4859 if (attr[tindex] & ATTR_BLINK) {
4860 if (bgcolour < 8) /* ANSI colours */
4861 bgcolour += 8;
4862 else if (bgcolour >= 256) /* Default colours */
4863 bgcolour ++;
4864 }
4865
4866 /*
4867 * Collect other attributes
4868 */
4869 if (bold_mode != BOLD_COLOURS)
4870 attrBold = attr[tindex] & ATTR_BOLD;
4871 else
4872 attrBold = 0;
4873
4874 attrUnder = attr[tindex] & ATTR_UNDER;
4875
4876 /*
4877 * Reverse video
4878 * o If video isn't reversed, ignore colour attributes for default foregound
4879 * or background.
4880 * o Special case where bolded text is displayed using the default foregound
4881 * and background colours - force to bolded RTF.
4882 */
4883 if (!(attr[tindex] & ATTR_REVERSE)) {
4884 if (bgcolour >= 256) /* Default color */
4885 bgcolour = -1; /* No coloring */
4886
4887 if (fgcolour >= 256) { /* Default colour */
4888 if (bold_mode == BOLD_COLOURS && (fgcolour & 1) && bgcolour == -1)
4889 attrBold = ATTR_BOLD; /* Emphasize text with bold attribute */
4890
4891 fgcolour = -1; /* No coloring */
4892 }
4893 }
4894
4895 /*
4896 * Write RTF text attributes
4897 */
4898 if (lastfgcolour != fgcolour) {
4899 lastfgcolour = fgcolour;
4900 rtflen += sprintf(&rtf[rtflen], "\\cf%d ", (fgcolour >= 0) ? palette[fgcolour] : 0);
4901 }
4902
4903 if (lastbgcolour != bgcolour) {
4904 lastbgcolour = bgcolour;
4905 rtflen += sprintf(&rtf[rtflen], "\\highlight%d ", (bgcolour >= 0) ? palette[bgcolour] : 0);
4906 }
4907
4908 if (lastAttrBold != attrBold) {
4909 lastAttrBold = attrBold;
4910 rtflen += sprintf(&rtf[rtflen], "%s", attrBold ? "\\b " : "\\b0 ");
4911 }
4912
4913 if (lastAttrUnder != attrUnder) {
4914 lastAttrUnder = attrUnder;
4915 rtflen += sprintf(&rtf[rtflen], "%s", attrUnder ? "\\ul " : "\\ulnone ");
4916 }
a7419ea4 4917 }
c83c79bd 4918
a7419ea4 4919 if (unitab[tdata[tindex]] == udata[uindex]) {
4920 multilen = 1;
4921 before[0] = '\0';
4922 after[0] = '\0';
4923 blen = alen = 0;
4924 } else {
4925 multilen = WideCharToMultiByte(CP_ACP, 0, unitab+uindex, 1,
4926 NULL, 0, NULL, NULL);
4927 if (multilen != 1) {
c3b032a6 4928 blen = sprintf(before, "{\\uc%d\\u%d", multilen,
4929 udata[uindex]);
a7419ea4 4930 alen = 1; strcpy(after, "}");
4931 } else {
4932 blen = sprintf(before, "\\u%d", udata[uindex]);
4933 alen = 0; after[0] = '\0';
4934 }
4935 }
4936 assert(tindex + multilen <= len2);
4937 totallen = blen + alen;
4938 for (i = 0; i < multilen; i++) {
4939 if (tdata[tindex+i] == '\\' ||
4940 tdata[tindex+i] == '{' ||
4941 tdata[tindex+i] == '}')
4942 totallen += 2;
4943 else if (tdata[tindex+i] == 0x0D || tdata[tindex+i] == 0x0A)
4944 totallen += 6; /* \par\r\n */
4945 else if (tdata[tindex+i] > 0x7E || tdata[tindex+i] < 0x20)
4946 totallen += 4;
4947 else
4948 totallen++;
4949 }
4950
4951 if (rtfsize < rtflen + totallen + 3) {
4952 rtfsize = rtflen + totallen + 512;
3d88e64d 4953 rtf = sresize(rtf, rtfsize, char);
a7419ea4 4954 }
4955
4956 strcpy(rtf + rtflen, before); rtflen += blen;
4957 for (i = 0; i < multilen; i++) {
4958 if (tdata[tindex+i] == '\\' ||
4959 tdata[tindex+i] == '{' ||
4960 tdata[tindex+i] == '}') {
4961 rtf[rtflen++] = '\\';
4962 rtf[rtflen++] = tdata[tindex+i];
4963 } else if (tdata[tindex+i] == 0x0D || tdata[tindex+i] == 0x0A) {
4964 rtflen += sprintf(rtf+rtflen, "\\par\r\n");
4965 } else if (tdata[tindex+i] > 0x7E || tdata[tindex+i] < 0x20) {
4966 rtflen += sprintf(rtf+rtflen, "\\'%02x", tdata[tindex+i]);
4967 } else {
4968 rtf[rtflen++] = tdata[tindex+i];
4969 }
4970 }
4971 strcpy(rtf + rtflen, after); rtflen += alen;
4972
4973 tindex += multilen;
4974 uindex++;
4975 }
4976
c83c79bd 4977 rtf[rtflen++] = '}'; /* Terminate RTF stream */
4978 rtf[rtflen++] = '\0';
4979 rtf[rtflen++] = '\0';
a7419ea4 4980
4981 clipdata3 = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, rtflen);
4982 if (clipdata3 && (lock3 = GlobalLock(clipdata3)) != NULL) {
c83c79bd 4983 memcpy(lock3, rtf, rtflen);
a7419ea4 4984 GlobalUnlock(clipdata3);
4985 }
4986 sfree(rtf);
4987 } else
4988 clipdata3 = NULL;
4989
4eeb7d09 4990 GlobalUnlock(clipdata);
4991 GlobalUnlock(clipdata2);
4992
4993 if (!must_deselect)
4994 SendMessage(hwnd, WM_IGNORE_CLIP, TRUE, 0);
4995
4996 if (OpenClipboard(hwnd)) {
4997 EmptyClipboard();
4998 SetClipboardData(CF_UNICODETEXT, clipdata);
4999 SetClipboardData(CF_TEXT, clipdata2);
a7419ea4 5000 if (clipdata3)
5001 SetClipboardData(RegisterClipboardFormat(CF_RTF), clipdata3);
4eeb7d09 5002 CloseClipboard();
5003 } else {
5004 GlobalFree(clipdata);
5005 GlobalFree(clipdata2);
5006 }
5007
5008 if (!must_deselect)
5009 SendMessage(hwnd, WM_IGNORE_CLIP, FALSE, 0);
5010}
5011
1d432454 5012static DWORD WINAPI clipboard_read_threadfunc(void *param)
32874aea 5013{
1d432454 5014 HWND hwnd = (HWND)param;
5015 HGLOBAL clipdata;
374330e2 5016
1d432454 5017 if (OpenClipboard(NULL)) {
2d466ffd 5018 if ((clipdata = GetClipboardData(CF_UNICODETEXT))) {
1d432454 5019 SendMessage(hwnd, WM_GOT_CLIPDATA, (WPARAM)1, (LPARAM)clipdata);
5020 } else if ((clipdata = GetClipboardData(CF_TEXT))) {
5021 SendMessage(hwnd, WM_GOT_CLIPDATA, (WPARAM)0, (LPARAM)clipdata);
5022 }
5023 CloseClipboard();
5024 }
5025
5026 return 0;
5027}
5028
5029static int process_clipdata(HGLOBAL clipdata, int unicode)
5030{
1d432454 5031 sfree(clipboard_contents);
5032 clipboard_contents = NULL;
5033 clipboard_length = 0;
5034
5035 if (unicode) {
5036 wchar_t *p = GlobalLock(clipdata);
5037 wchar_t *p2;
5038
5039 if (p) {
5040 /* Unwilling to rely on Windows having wcslen() */
5041 for (p2 = p; *p2; p2++);
5042 clipboard_length = p2 - p;
5043 clipboard_contents = snewn(clipboard_length + 1, wchar_t);
5044 memcpy(clipboard_contents, p, clipboard_length * sizeof(wchar_t));
5045 clipboard_contents[clipboard_length] = L'\0';
5046 return TRUE;
5047 }
5048 } else {
5049 char *s = GlobalLock(clipdata);
5050 int i;
5051
5052 if (s) {
4eeb7d09 5053 i = MultiByteToWideChar(CP_ACP, 0, s, strlen(s) + 1, 0, 0);
1d432454 5054 clipboard_contents = snewn(i, wchar_t);
5055 MultiByteToWideChar(CP_ACP, 0, s, strlen(s) + 1,
5056 clipboard_contents, i);
5057 clipboard_length = i - 1;
5058 clipboard_contents[clipboard_length] = L'\0';
5059 return TRUE;
5060 }
374330e2 5061 }
5062
1d432454 5063 return FALSE;
5064}
5065
5066void request_paste(void *frontend)
5067{
5068 /*
5069 * I always thought pasting was synchronous in Windows; the
5070 * clipboard access functions certainly _look_ synchronous,
5071 * unlike the X ones. But in fact it seems that in some
5072 * situations the contents of the clipboard might not be
5073 * immediately available, and the clipboard-reading functions
5074 * may block. This leads to trouble if the application
5075 * delivering the clipboard data has to get hold of it by -
5076 * for example - talking over a network connection which is
5077 * forwarded through this very PuTTY.
5078 *
5079 * Hence, we spawn a subthread to read the clipboard, and do
5080 * our paste when it's finished. The thread will send a
5081 * message back to our main window when it terminates, and
5082 * that tells us it's OK to paste.
5083 */
5084 DWORD in_threadid; /* required for Win9x */
5085 CreateThread(NULL, 0, clipboard_read_threadfunc,
5086 hwnd, 0, &in_threadid);
5087}
5088
5089void get_clip(void *frontend, wchar_t **p, int *len)
5090{
5091 if (p) {
5092 *p = clipboard_contents;
5093 *len = clipboard_length;
5094 }
374330e2 5095}
5096
4eeb7d09 5097#if 0
374330e2 5098/*
5099 * Move `lines' lines from position `from' to position `to' in the
5100 * window.
5101 */
a8327734 5102void optimised_move(void *frontend, int to, int from, int lines)
32874aea 5103{
374330e2 5104 RECT r;
f67b4e85 5105 int min, max;
374330e2 5106
5107 min = (to < from ? to : from);
5108 max = to + from - min;
374330e2 5109
5a73255e 5110 r.left = offset_width;
887035a5 5111 r.right = offset_width + term->cols * font_width;
5a73255e 5112 r.top = offset_height + min * font_height;
5113 r.bottom = offset_height + (max + lines) * font_height;
32874aea 5114 ScrollWindow(hwnd, 0, (to - from) * font_height, &r, &r);
374330e2 5115}
4eeb7d09 5116#endif
374330e2 5117
5118/*
5119 * Print a message box and perform a fatal exit.
5120 */
32874aea 5121void fatalbox(char *fmt, ...)
5122{
374330e2 5123 va_list ap;
971bcc0a 5124 char *stuff, morestuff[100];
374330e2 5125
5126 va_start(ap, fmt);
971bcc0a 5127 stuff = dupvprintf(fmt, ap);
374330e2 5128 va_end(ap);
f6f450e2 5129 sprintf(morestuff, "%.70s Fatal Error", appname);
5130 MessageBox(hwnd, stuff, morestuff, MB_ICONERROR | MB_OK);
971bcc0a 5131 sfree(stuff);
93b581bd 5132 cleanup_exit(1);
374330e2 5133}
5134
5135/*
1709795f 5136 * Print a modal (Really Bad) message box and perform a fatal exit.
5137 */
5138void modalfatalbox(char *fmt, ...)
5139{
5140 va_list ap;
971bcc0a 5141 char *stuff, morestuff[100];
1709795f 5142
5143 va_start(ap, fmt);
971bcc0a 5144 stuff = dupvprintf(fmt, ap);
1709795f 5145 va_end(ap);
f6f450e2 5146 sprintf(morestuff, "%.70s Fatal Error", appname);
5147 MessageBox(hwnd, stuff, morestuff,
1709795f 5148 MB_SYSTEMMODAL | MB_ICONERROR | MB_OK);
971bcc0a 5149 sfree(stuff);
1709795f 5150 cleanup_exit(1);
5151}
5152
9099600a 5153DECL_WINDOWS_FUNCTION(static, BOOL, FlashWindowEx, (PFLASHWINFO));
09644e07 5154
5155static void init_flashwindow(void)
5156{
bda368a5 5157 HMODULE user32_module = load_system32_dll("user32.dll");
9099600a 5158 GET_WINDOWS_FUNCTION(user32_module, FlashWindowEx);
09644e07 5159}
5160
5161static BOOL flash_window_ex(DWORD dwFlags, UINT uCount, DWORD dwTimeout)
5162{
5163 if (p_FlashWindowEx) {
5164 FLASHWINFO fi;
5165 fi.cbSize = sizeof(fi);
5166 fi.hwnd = hwnd;
5167 fi.dwFlags = dwFlags;
5168 fi.uCount = uCount;
5169 fi.dwTimeout = dwTimeout;
5170 return (*p_FlashWindowEx)(&fi);
5171 }
5172 else
5173 return FALSE; /* shrug */
5174}
5175
39934deb 5176static void flash_window(int mode);
5177static long next_flash;
5178static int flashing = 0;
5179
09644e07 5180/*
5181 * Timer for platforms where we must maintain window flashing manually
5182 * (e.g., Win95).
5183 */
39934deb 5184static void flash_window_timer(void *ctx, long now)
5185{
5186 if (flashing && now - next_flash >= 0) {
5187 flash_window(1);
5188 }
5189}
5190
1709795f 5191/*
f8a28d1f 5192 * Manage window caption / taskbar flashing, if enabled.
5193 * 0 = stop, 1 = maintain, 2 = start
5194 */
5195static void flash_window(int mode)
5196{
f8a28d1f 5197 if ((mode == 0) || (cfg.beep_ind == B_IND_DISABLED)) {
5198 /* stop */
5199 if (flashing) {
f8a28d1f 5200 flashing = 0;
09644e07 5201 if (p_FlashWindowEx)
5202 flash_window_ex(FLASHW_STOP, 0, 0);
5203 else
5204 FlashWindow(hwnd, FALSE);
f8a28d1f 5205 }
5206
5207 } else if (mode == 2) {
5208 /* start */
5209 if (!flashing) {
f8a28d1f 5210 flashing = 1;
09644e07 5211 if (p_FlashWindowEx) {
5212 /* For so-called "steady" mode, we use uCount=2, which
5213 * seems to be the traditional number of flashes used
5214 * by user notifications (e.g., by Explorer).
5215 * uCount=0 appears to enable continuous flashing, per
5216 * "flashing" mode, although I haven't seen this
5217 * documented. */
5218 flash_window_ex(FLASHW_ALL | FLASHW_TIMER,
5219 (cfg.beep_ind == B_IND_FLASH ? 0 : 2),
5220 0 /* system cursor blink rate */);
5221 /* No need to schedule timer */
5222 } else {
5223 FlashWindow(hwnd, TRUE);
5224 next_flash = schedule_timer(450, flash_window_timer, hwnd);
5225 }
f8a28d1f 5226 }
5227
5228 } else if ((mode == 1) && (cfg.beep_ind == B_IND_FLASH)) {
5229 /* maintain */
09644e07 5230 if (flashing && !p_FlashWindowEx) {
39934deb 5231 FlashWindow(hwnd, TRUE); /* toggle */
5232 next_flash = schedule_timer(450, flash_window_timer, hwnd);
f8a28d1f 5233 }
5234 }
5235}
5236
5237/*
374330e2 5238 * Beep.
5239 */
860a34f8 5240void do_beep(void *frontend, int mode)
32874aea 5241{
03169ad0 5242 if (mode == BELL_DEFAULT) {
eb04402e 5243 /*
5244 * For MessageBeep style bells, we want to be careful of
5245 * timing, because they don't have the nice property of
5246 * PlaySound bells that each one cancels the previous
5247 * active one. So we limit the rate to one per 50ms or so.
5248 */
5249 static long lastbeep = 0;
d51cdf1e 5250 long beepdiff;
eb04402e 5251
d51cdf1e 5252 beepdiff = GetTickCount() - lastbeep;
eb04402e 5253 if (beepdiff >= 0 && beepdiff < 50)
5254 return;
156686ef 5255 MessageBeep(MB_OK);
d51cdf1e 5256 /*
5257 * The above MessageBeep call takes time, so we record the
5258 * time _after_ it finishes rather than before it starts.
5259 */
5260 lastbeep = GetTickCount();
03169ad0 5261 } else if (mode == BELL_WAVEFILE) {
9a30e26b 5262 if (!PlaySound(cfg.bell_wavefile.path, NULL,
5263 SND_ASYNC | SND_FILENAME)) {
850323f9 5264 char buf[sizeof(cfg.bell_wavefile.path) + 80];
f6f450e2 5265 char otherbuf[100];
03169ad0 5266 sprintf(buf, "Unable to play sound file\n%s\n"
debe102c 5267 "Using default sound instead", cfg.bell_wavefile.path);
f6f450e2 5268 sprintf(otherbuf, "%.70s Sound Error", appname);
5269 MessageBox(hwnd, buf, otherbuf,
32874aea 5270 MB_OK | MB_ICONEXCLAMATION);
03169ad0 5271 cfg.beep = BELL_DEFAULT;
5272 }
85f6b361 5273 } else if (mode == BELL_PCSPEAKER) {
5274 static long lastbeep = 0;
5275 long beepdiff;
5276
5277 beepdiff = GetTickCount() - lastbeep;
5278 if (beepdiff >= 0 && beepdiff < 50)
5279 return;
5280
5281 /*
5282 * We must beep in different ways depending on whether this
5283 * is a 95-series or NT-series OS.
5284 */
5285 if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_NT)
5286 Beep(800, 100);
5287 else
5288 MessageBeep(-1);
5289 lastbeep = GetTickCount();
03169ad0 5290 }
f8a28d1f 5291 /* Otherwise, either visual bell or disabled; do nothing here */
887035a5 5292 if (!term->has_focus) {
f8a28d1f 5293 flash_window(2); /* start */
5294 }
374330e2 5295}
8f57d753 5296
5297/*
68f9b3d9 5298 * Minimise or restore the window in response to a server-side
5299 * request.
5300 */
a8327734 5301void set_iconic(void *frontend, int iconic)
68f9b3d9 5302{
5303 if (IsIconic(hwnd)) {
5304 if (!iconic)
5305 ShowWindow(hwnd, SW_RESTORE);
5306 } else {
5307 if (iconic)
5308 ShowWindow(hwnd, SW_MINIMIZE);
5309 }
5310}
5311
5312/*
5313 * Move the window in response to a server-side request.
5314 */
a8327734 5315void move_window(void *frontend, int x, int y)
68f9b3d9 5316{
d1e0a352 5317 if (cfg.resize_action == RESIZE_DISABLED ||
5318 cfg.resize_action == RESIZE_FONT ||
5319 IsZoomed(hwnd))
5320 return;
5321
68f9b3d9 5322 SetWindowPos(hwnd, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
5323}
5324
5325/*
5326 * Move the window to the top or bottom of the z-order in response
5327 * to a server-side request.
5328 */
a8327734 5329void set_zorder(void *frontend, int top)
68f9b3d9 5330{
1ba99d2c 5331 if (cfg.alwaysontop)
68f9b3d9 5332 return; /* ignore */
5333 SetWindowPos(hwnd, top ? HWND_TOP : HWND_BOTTOM, 0, 0, 0, 0,
5334 SWP_NOMOVE | SWP_NOSIZE);
5335}
5336
5337/*
5338 * Refresh the window in response to a server-side request.
5339 */
a8327734 5340void refresh_window(void *frontend)
68f9b3d9 5341{
5342 InvalidateRect(hwnd, NULL, TRUE);
5343}
5344
5345/*
5346 * Maximise or restore the window in response to a server-side
5347 * request.
5348 */
a8327734 5349void set_zoomed(void *frontend, int zoomed)
68f9b3d9 5350{
1ba99d2c 5351 if (IsZoomed(hwnd)) {
5352 if (!zoomed)
5353 ShowWindow(hwnd, SW_RESTORE);
68f9b3d9 5354 } else {
5355 if (zoomed)
5356 ShowWindow(hwnd, SW_MAXIMIZE);
5357 }
5358}
5359
5360/*
5361 * Report whether the window is iconic, for terminal reports.
5362 */
a8327734 5363int is_iconic(void *frontend)
68f9b3d9 5364{
5365 return IsIconic(hwnd);
5366}
5367
5368/*
5369 * Report the window's position, for terminal reports.
5370 */
a8327734 5371void get_window_pos(void *frontend, int *x, int *y)
68f9b3d9 5372{
5373 RECT r;
5374 GetWindowRect(hwnd, &r);
5375 *x = r.left;
5376 *y = r.top;
5377}
5378
5379/*
5380 * Report the window's pixel size, for terminal reports.
5381 */
a8327734 5382void get_window_pixels(void *frontend, int *x, int *y)
68f9b3d9 5383{
5384 RECT r;
5385 GetWindowRect(hwnd, &r);
5386 *x = r.right - r.left;
5387 *y = r.bottom - r.top;
5388}
5389
5390/*
5391 * Return the window or icon title.
5392 */
a8327734 5393char *get_window_title(void *frontend, int icon)
68f9b3d9 5394{
5395 return icon ? icon_name : window_name;
5396}
1ba99d2c 5397
5398/*
5399 * See if we're in full-screen mode.
5400 */
4e95095a 5401static int is_full_screen()
1ba99d2c 5402{
5403 if (!IsZoomed(hwnd))
5404 return FALSE;
1e5eefb6 5405 if (GetWindowLongPtr(hwnd, GWL_STYLE) & WS_CAPTION)
1ba99d2c 5406 return FALSE;
5407 return TRUE;
5408}
5409
d0f1bcb4 5410/* Get the rect/size of a full screen window using the nearest available
5411 * monitor in multimon systems; default to something sensible if only
5412 * one monitor is present. */
5413static int get_fullscreen_rect(RECT * ss)
5414{
5d145a14 5415#if defined(MONITOR_DEFAULTTONEAREST) && !defined(NO_MULTIMON)
d0f1bcb4 5416 HMONITOR mon;
5417 MONITORINFO mi;
5418 mon = MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
5419 mi.cbSize = sizeof(mi);
5420 GetMonitorInfo(mon, &mi);
5421
5422 /* structure copy */
5423 *ss = mi.rcMonitor;
5424 return TRUE;
5425#else
5426/* could also use code like this:
5427 ss->left = ss->top = 0;
5428 ss->right = GetSystemMetrics(SM_CXSCREEN);
5429 ss->bottom = GetSystemMetrics(SM_CYSCREEN);
5430*/
e6f8202f 5431 return GetClientRect(GetDesktopWindow(), ss);
d0f1bcb4 5432#endif
5433}
5434
5435
1ba99d2c 5436/*
5437 * Go full-screen. This should only be called when we are already
5438 * maximised.
5439 */
4e95095a 5440static void make_full_screen()
1ba99d2c 5441{
5442 DWORD style;
d0f1bcb4 5443 RECT ss;
1ba99d2c 5444
5445 assert(IsZoomed(hwnd));
5446
d0f1bcb4 5447 if (is_full_screen())
5448 return;
5449
1ba99d2c 5450 /* Remove the window furniture. */
1e5eefb6 5451 style = GetWindowLongPtr(hwnd, GWL_STYLE);
1ba99d2c 5452 style &= ~(WS_CAPTION | WS_BORDER | WS_THICKFRAME);
5453 if (cfg.scrollbar_in_fullscreen)
5454 style |= WS_VSCROLL;
5455 else
5456 style &= ~WS_VSCROLL;
1e5eefb6 5457 SetWindowLongPtr(hwnd, GWL_STYLE, style);
1ba99d2c 5458
5459 /* Resize ourselves to exactly cover the nearest monitor. */
d0f1bcb4 5460 get_fullscreen_rect(&ss);
5461 SetWindowPos(hwnd, HWND_TOP, ss.left, ss.top,
5462 ss.right - ss.left,
5463 ss.bottom - ss.top,
5464 SWP_FRAMECHANGED);
1ba99d2c 5465
1620020b 5466 /* We may have changed size as a result */
5467
5468 reset_window(0);
5469
52c70126 5470 /* Tick the menu item in the System and context menus. */
5471 {
5472 int i;
5473 for (i = 0; i < lenof(popup_menus); i++)
5474 CheckMenuItem(popup_menus[i].menu, IDM_FULLSCREEN, MF_CHECKED);
5475 }
1ba99d2c 5476}
5477
5478/*
5479 * Clear the full-screen attributes.
5480 */
4e95095a 5481static void clear_full_screen()
1ba99d2c 5482{
5483 DWORD oldstyle, style;
5484
5485 /* Reinstate the window furniture. */
1e5eefb6 5486 style = oldstyle = GetWindowLongPtr(hwnd, GWL_STYLE);
811f10b3 5487 style |= WS_CAPTION | WS_BORDER;
5488 if (cfg.resize_action == RESIZE_DISABLED)
5489 style &= ~WS_THICKFRAME;
5490 else
5491 style |= WS_THICKFRAME;
1ba99d2c 5492 if (cfg.scrollbar)
5493 style |= WS_VSCROLL;
5494 else
5495 style &= ~WS_VSCROLL;
5496 if (style != oldstyle) {
1e5eefb6 5497 SetWindowLongPtr(hwnd, GWL_STYLE, style);
1ba99d2c 5498 SetWindowPos(hwnd, NULL, 0, 0, 0, 0,
5499 SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
5500 SWP_FRAMECHANGED);
5501 }
5502
52c70126 5503 /* Untick the menu item in the System and context menus. */
5504 {
5505 int i;
5506 for (i = 0; i < lenof(popup_menus); i++)
5507 CheckMenuItem(popup_menus[i].menu, IDM_FULLSCREEN, MF_UNCHECKED);
5508 }
1ba99d2c 5509}
5510
5511/*
5512 * Toggle full-screen mode.
5513 */
4e95095a 5514static void flip_full_screen()
1ba99d2c 5515{
5516 if (is_full_screen()) {
5517 ShowWindow(hwnd, SW_RESTORE);
5518 } else if (IsZoomed(hwnd)) {
5519 make_full_screen();
5520 } else {
5521 SendMessage(hwnd, WM_FULLSCR_ON_MAX, 0, 0);
5522 ShowWindow(hwnd, SW_MAXIMIZE);
5523 }
5524}
ab2c86b9 5525
b9d7bcad 5526void frontend_keypress(void *handle)
ab2c86b9 5527{
5528 /*
5529 * Keypress termination in non-Close-On-Exit mode is not
5530 * currently supported in PuTTY proper, because the window
5531 * always has a perfectly good Close button anyway. So we do
5532 * nothing here.
5533 */
5534 return;
5535}
fbf6cb3b 5536
5537int from_backend(void *frontend, int is_stderr, const char *data, int len)
5538{
5539 return term_data(term, is_stderr, data, len);
5540}
c44bf5bd 5541
edd0cb8a 5542int from_backend_untrusted(void *frontend, const char *data, int len)
5543{
5544 return term_data_untrusted(term, data, len);
5545}
5546
5547int get_userpass_input(prompts_t *p, unsigned char *in, int inlen)
5548{
5549 int ret;
5550 ret = cmdline_get_passwd_input(p, in, inlen);
5551 if (ret == -1)
5552 ret = term_get_userpass_input(term, p, in, inlen);
5553 return ret;
5554}
5555
c44bf5bd 5556void agent_schedule_callback(void (*callback)(void *, void *, int),
5557 void *callback_ctx, void *data, int len)
5558{
5559 struct agent_callback *c = snew(struct agent_callback);
5560 c->callback = callback;
5561 c->callback_ctx = callback_ctx;
5562 c->data = data;
5563 c->len = len;
5564 PostMessage(hwnd, WM_AGENT_CALLBACK, 0, (LPARAM)c);
5565}