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