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