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