Improved entropy gathering.
[u/mdw/putty] / window.c
1 #include <windows.h>
2 #include <commctrl.h>
3 #ifndef AUTO_WINSOCK
4 #ifdef WINSOCK_TWO
5 #include <winsock2.h>
6 #else
7 #include <winsock.h>
8 #endif
9 #endif
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <ctype.h>
13 #include <time.h>
14
15 #define PUTTY_DO_GLOBALS /* actually _define_ globals */
16 #include "putty.h"
17 #include "winstuff.h"
18 #include "storage.h"
19 #include "win_res.h"
20
21 #define IDM_SHOWLOG 0x0010
22 #define IDM_NEWSESS 0x0020
23 #define IDM_DUPSESS 0x0030
24 #define IDM_RECONF 0x0040
25 #define IDM_CLRSB 0x0050
26 #define IDM_RESET 0x0060
27 #define IDM_TEL_AYT 0x0070
28 #define IDM_TEL_BRK 0x0080
29 #define IDM_TEL_SYNCH 0x0090
30 #define IDM_TEL_EC 0x00a0
31 #define IDM_TEL_EL 0x00b0
32 #define IDM_TEL_GA 0x00c0
33 #define IDM_TEL_NOP 0x00d0
34 #define IDM_TEL_ABORT 0x00e0
35 #define IDM_TEL_AO 0x00f0
36 #define IDM_TEL_IP 0x0100
37 #define IDM_TEL_SUSP 0x0110
38 #define IDM_TEL_EOR 0x0120
39 #define IDM_TEL_EOF 0x0130
40 #define IDM_ABOUT 0x0140
41 #define IDM_SAVEDSESS 0x0150
42
43 #define IDM_SAVED_MIN 0x1000
44 #define IDM_SAVED_MAX 0x2000
45
46 #define WM_IGNORE_SIZE (WM_XUSER + 1)
47 #define WM_IGNORE_CLIP (WM_XUSER + 2)
48
49 /* Needed for Chinese support and apparently not always defined. */
50 #ifndef VK_PROCESSKEY
51 #define VK_PROCESSKEY 0xE5
52 #endif
53
54 static LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
55 static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam, unsigned char *output);
56 static void cfgtopalette(void);
57 static void init_palette(void);
58 static void init_fonts(int);
59
60 static int extra_width, extra_height;
61
62 static int pending_netevent = 0;
63 static WPARAM pend_netevent_wParam = 0;
64 static LPARAM pend_netevent_lParam = 0;
65 static void enact_pending_netevent(void);
66
67 static time_t last_movement = 0;
68
69 #define FONT_NORMAL 0
70 #define FONT_BOLD 1
71 #define FONT_UNDERLINE 2
72 #define FONT_BOLDUND 3
73 #define FONT_OEM 4
74 #define FONT_OEMBOLD 5
75 #define FONT_OEMBOLDUND 6
76 #define FONT_OEMUND 7
77 static HFONT fonts[8];
78 static int font_needs_hand_underlining;
79 static enum {
80 BOLD_COLOURS, BOLD_SHADOW, BOLD_FONT
81 } bold_mode;
82 static enum {
83 UND_LINE, UND_FONT
84 } und_mode;
85 static int descent;
86
87 #define NCOLOURS 24
88 static COLORREF colours[NCOLOURS];
89 static HPALETTE pal;
90 static LPLOGPALETTE logpal;
91 static RGBTRIPLE defpal[NCOLOURS];
92
93 static HWND hwnd;
94
95 static HBITMAP caretbm;
96
97 static int dbltime, lasttime, lastact;
98 static Mouse_Button lastbtn;
99
100 static char *window_name, *icon_name;
101
102 static Ldisc *real_ldisc;
103
104 void begin_session(void) {
105 ldisc = real_ldisc;
106 }
107
108 int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) {
109 static char appname[] = "PuTTY";
110 WORD winsock_ver;
111 WSADATA wsadata;
112 WNDCLASS wndclass;
113 MSG msg;
114 int guess_width, guess_height;
115
116 hinst = inst;
117 flags = FLAG_VERBOSE | FLAG_INTERACTIVE;
118
119 winsock_ver = MAKEWORD(1, 1);
120 if (WSAStartup(winsock_ver, &wsadata)) {
121 MessageBox(NULL, "Unable to initialise WinSock", "WinSock Error",
122 MB_OK | MB_ICONEXCLAMATION);
123 return 1;
124 }
125 if (LOBYTE(wsadata.wVersion) != 1 || HIBYTE(wsadata.wVersion) != 1) {
126 MessageBox(NULL, "WinSock version is incompatible with 1.1",
127 "WinSock Error", MB_OK | MB_ICONEXCLAMATION);
128 WSACleanup();
129 return 1;
130 }
131 /* WISHLIST: maybe allow config tweaking even if winsock not present? */
132 sk_init();
133
134 InitCommonControls();
135
136 /* Ensure a Maximize setting in Explorer doesn't maximise the
137 * config box. */
138 defuse_showwindow();
139
140 /*
141 * Process the command line.
142 */
143 {
144 char *p;
145
146 default_protocol = DEFAULT_PROTOCOL;
147 default_port = DEFAULT_PORT;
148
149 do_defaults(NULL, &cfg);
150
151 p = cmdline;
152 while (*p && isspace(*p)) p++;
153
154 /*
155 * Process command line options first. Yes, this can be
156 * done better, and it will be as soon as I have the
157 * energy...
158 */
159 while (*p == '-') {
160 char *q = p + strcspn(p, " \t");
161 p++;
162 if (q == p + 3 &&
163 tolower(p[0]) == 's' &&
164 tolower(p[1]) == 's' &&
165 tolower(p[2]) == 'h') {
166 default_protocol = cfg.protocol = PROT_SSH;
167 default_port = cfg.port = 22;
168 } else if (q == p + 3 &&
169 tolower(p[0]) == 'l' &&
170 tolower(p[1]) == 'o' &&
171 tolower(p[2]) == 'g') {
172 logfile = "putty.log";
173 } else if (q == p + 7 &&
174 tolower(p[0]) == 'c' &&
175 tolower(p[1]) == 'l' &&
176 tolower(p[2]) == 'e' &&
177 tolower(p[3]) == 'a' &&
178 tolower(p[4]) == 'n' &&
179 tolower(p[5]) == 'u' &&
180 tolower(p[6]) == 'p') {
181 /*
182 * `putty -cleanup'. Remove all registry entries
183 * associated with PuTTY, and also find and delete
184 * the random seed file.
185 */
186 if (MessageBox(NULL,
187 "This procedure will remove ALL Registry\n"
188 "entries associated with PuTTY, and will\n"
189 "also remove the PuTTY random seed file.\n"
190 "\n"
191 "THIS PROCESS WILL DESTROY YOUR SAVED\n"
192 "SESSIONS. Are you really sure you want\n"
193 "to continue?",
194 "PuTTY Warning",
195 MB_YESNO | MB_ICONWARNING) == IDYES) {
196 cleanup_all();
197 }
198 exit(0);
199 }
200 p = q + strspn(q, " \t");
201 }
202
203 /*
204 * An initial @ means to activate a saved session.
205 */
206 if (*p == '@') {
207 int i = strlen(p);
208 while (i > 1 && isspace(p[i-1]))
209 i--;
210 p[i] = '\0';
211 do_defaults (p+1, &cfg);
212 if (!*cfg.host && !do_config()) {
213 WSACleanup();
214 return 0;
215 }
216 } else if (*p == '&') {
217 /*
218 * An initial & means we've been given a command line
219 * containing the hex value of a HANDLE for a file
220 * mapping object, which we must then extract as a
221 * config.
222 */
223 HANDLE filemap;
224 Config *cp;
225 if (sscanf(p+1, "%p", &filemap) == 1 &&
226 (cp = MapViewOfFile(filemap, FILE_MAP_READ,
227 0, 0, sizeof(Config))) != NULL) {
228 cfg = *cp;
229 UnmapViewOfFile(cp);
230 CloseHandle(filemap);
231 } else if (!do_config()) {
232 WSACleanup();
233 return 0;
234 }
235 } else if (*p) {
236 char *q = p;
237 /*
238 * If the hostname starts with "telnet:", set the
239 * protocol to Telnet and process the string as a
240 * Telnet URL.
241 */
242 if (!strncmp(q, "telnet:", 7)) {
243 char c;
244
245 q += 7;
246 if (q[0] == '/' && q[1] == '/')
247 q += 2;
248 cfg.protocol = PROT_TELNET;
249 p = q;
250 while (*p && *p != ':' && *p != '/') p++;
251 c = *p;
252 if (*p)
253 *p++ = '\0';
254 if (c == ':')
255 cfg.port = atoi(p);
256 else
257 cfg.port = -1;
258 strncpy (cfg.host, q, sizeof(cfg.host)-1);
259 cfg.host[sizeof(cfg.host)-1] = '\0';
260 } else {
261 while (*p && !isspace(*p)) p++;
262 if (*p)
263 *p++ = '\0';
264 strncpy (cfg.host, q, sizeof(cfg.host)-1);
265 cfg.host[sizeof(cfg.host)-1] = '\0';
266 while (*p && isspace(*p)) p++;
267 if (*p)
268 cfg.port = atoi(p);
269 else
270 cfg.port = -1;
271 }
272 } else {
273 if (!do_config()) {
274 WSACleanup();
275 return 0;
276 }
277 }
278
279 /* See if host is of the form user@host */
280 if (cfg.host[0] != '\0') {
281 char *atsign = strchr(cfg.host, '@');
282 /* Make sure we're not overflowing the user field */
283 if (atsign) {
284 if (atsign-cfg.host < sizeof cfg.username) {
285 strncpy (cfg.username, cfg.host, atsign-cfg.host);
286 cfg.username[atsign-cfg.host] = '\0';
287 }
288 memmove(cfg.host, atsign+1, 1+strlen(atsign+1));
289 }
290 }
291 }
292
293 /*
294 * Select protocol. This is farmed out into a table in a
295 * separate file to enable an ssh-free variant.
296 */
297 {
298 int i;
299 back = NULL;
300 for (i = 0; backends[i].backend != NULL; i++)
301 if (backends[i].protocol == cfg.protocol) {
302 back = backends[i].backend;
303 break;
304 }
305 if (back == NULL) {
306 MessageBox(NULL, "Unsupported protocol number found",
307 "PuTTY Internal Error", MB_OK | MB_ICONEXCLAMATION);
308 WSACleanup();
309 return 1;
310 }
311 }
312
313 real_ldisc = (cfg.ldisc_term ? &ldisc_term : &ldisc_simple);
314 /* To start with, we use the simple line discipline, so we can
315 * type passwords etc without fear of them being echoed... */
316 ldisc = &ldisc_simple;
317
318 if (!prev) {
319 wndclass.style = 0;
320 wndclass.lpfnWndProc = WndProc;
321 wndclass.cbClsExtra = 0;
322 wndclass.cbWndExtra = 0;
323 wndclass.hInstance = inst;
324 wndclass.hIcon = LoadIcon (inst,
325 MAKEINTRESOURCE(IDI_MAINICON));
326 wndclass.hCursor = LoadCursor (NULL, IDC_IBEAM);
327 wndclass.hbrBackground = GetStockObject (BLACK_BRUSH);
328 wndclass.lpszMenuName = NULL;
329 wndclass.lpszClassName = appname;
330
331 RegisterClass (&wndclass);
332 }
333
334 hwnd = NULL;
335
336 savelines = cfg.savelines;
337 term_init();
338
339 cfgtopalette();
340
341 /*
342 * Guess some defaults for the window size. This all gets
343 * updated later, so we don't really care too much. However, we
344 * do want the font width/height guesses to correspond to a
345 * large font rather than a small one...
346 */
347
348 font_width = 10;
349 font_height = 20;
350 extra_width = 25;
351 extra_height = 28;
352 term_size (cfg.height, cfg.width, cfg.savelines);
353 guess_width = extra_width + font_width * cols;
354 guess_height = extra_height + font_height * rows;
355 {
356 RECT r;
357 HWND w = GetDesktopWindow();
358 GetWindowRect (w, &r);
359 if (guess_width > r.right - r.left)
360 guess_width = r.right - r.left;
361 if (guess_height > r.bottom - r.top)
362 guess_height = r.bottom - r.top;
363 }
364
365 {
366 int winmode = WS_OVERLAPPEDWINDOW|WS_VSCROLL;
367 if (!cfg.scrollbar) winmode &= ~(WS_VSCROLL);
368 if (cfg.locksize) winmode &= ~(WS_THICKFRAME|WS_MAXIMIZEBOX);
369 hwnd = CreateWindow (appname, appname,
370 winmode,
371 CW_USEDEFAULT, CW_USEDEFAULT,
372 guess_width, guess_height,
373 NULL, NULL, inst, NULL);
374 }
375
376 /*
377 * Initialise the fonts, simultaneously correcting the guesses
378 * for font_{width,height}.
379 */
380 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
381 und_mode = UND_FONT;
382 init_fonts(0);
383
384 /*
385 * Correct the guesses for extra_{width,height}.
386 */
387 {
388 RECT cr, wr;
389 GetWindowRect (hwnd, &wr);
390 GetClientRect (hwnd, &cr);
391 extra_width = wr.right - wr.left - cr.right + cr.left;
392 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
393 }
394
395 /*
396 * Resize the window, now we know what size we _really_ want it
397 * to be.
398 */
399 guess_width = extra_width + font_width * cols;
400 guess_height = extra_height + font_height * rows;
401 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
402 SetWindowPos (hwnd, NULL, 0, 0, guess_width, guess_height,
403 SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER);
404
405 /*
406 * Set up a caret bitmap, with no content.
407 */
408 {
409 char *bits;
410 int size = (font_width+15)/16 * 2 * font_height;
411 bits = calloc(size, 1);
412 caretbm = CreateBitmap(font_width, font_height, 1, 1, bits);
413 free(bits);
414 }
415
416 /*
417 * Initialise the scroll bar.
418 */
419 {
420 SCROLLINFO si;
421
422 si.cbSize = sizeof(si);
423 si.fMask = SIF_ALL | SIF_DISABLENOSCROLL;
424 si.nMin = 0;
425 si.nMax = rows-1;
426 si.nPage = rows;
427 si.nPos = 0;
428 SetScrollInfo (hwnd, SB_VERT, &si, FALSE);
429 }
430
431 /*
432 * Start up the telnet connection.
433 */
434 {
435 char *error;
436 char msg[1024], *title;
437 char *realhost;
438
439 error = back->init (cfg.host, cfg.port, &realhost);
440 if (error) {
441 sprintf(msg, "Unable to open connection:\n%s", error);
442 MessageBox(NULL, msg, "PuTTY Error", MB_ICONERROR | MB_OK);
443 return 0;
444 }
445 window_name = icon_name = NULL;
446 if (*cfg.wintitle) {
447 title = cfg.wintitle;
448 } else {
449 sprintf(msg, "%s - PuTTY", realhost);
450 title = msg;
451 }
452 set_title (title);
453 set_icon (title);
454 }
455
456 session_closed = FALSE;
457
458 /*
459 * Set up the input and output buffers.
460 */
461 inbuf_head = 0;
462 outbuf_reap = outbuf_head = 0;
463
464 /*
465 * Prepare the mouse handler.
466 */
467 lastact = MA_NOTHING;
468 lastbtn = MB_NOTHING;
469 dbltime = GetDoubleClickTime();
470
471 /*
472 * Set up the session-control options on the system menu.
473 */
474 {
475 HMENU m = GetSystemMenu (hwnd, FALSE);
476 HMENU p,s;
477 int i;
478
479 AppendMenu (m, MF_SEPARATOR, 0, 0);
480 if (cfg.protocol == PROT_TELNET) {
481 p = CreateMenu();
482 AppendMenu (p, MF_ENABLED, IDM_TEL_AYT, "Are You There");
483 AppendMenu (p, MF_ENABLED, IDM_TEL_BRK, "Break");
484 AppendMenu (p, MF_ENABLED, IDM_TEL_SYNCH, "Synch");
485 AppendMenu (p, MF_SEPARATOR, 0, 0);
486 AppendMenu (p, MF_ENABLED, IDM_TEL_EC, "Erase Character");
487 AppendMenu (p, MF_ENABLED, IDM_TEL_EL, "Erase Line");
488 AppendMenu (p, MF_ENABLED, IDM_TEL_GA, "Go Ahead");
489 AppendMenu (p, MF_ENABLED, IDM_TEL_NOP, "No Operation");
490 AppendMenu (p, MF_SEPARATOR, 0, 0);
491 AppendMenu (p, MF_ENABLED, IDM_TEL_ABORT, "Abort Process");
492 AppendMenu (p, MF_ENABLED, IDM_TEL_AO, "Abort Output");
493 AppendMenu (p, MF_ENABLED, IDM_TEL_IP, "Interrupt Process");
494 AppendMenu (p, MF_ENABLED, IDM_TEL_SUSP, "Suspend Process");
495 AppendMenu (p, MF_SEPARATOR, 0, 0);
496 AppendMenu (p, MF_ENABLED, IDM_TEL_EOR, "End Of Record");
497 AppendMenu (p, MF_ENABLED, IDM_TEL_EOF, "End Of File");
498 AppendMenu (m, MF_POPUP | MF_ENABLED, (UINT) p, "Telnet Command");
499 AppendMenu (m, MF_SEPARATOR, 0, 0);
500 }
501 AppendMenu (m, MF_ENABLED, IDM_SHOWLOG, "&Event Log");
502 AppendMenu (m, MF_SEPARATOR, 0, 0);
503 AppendMenu (m, MF_ENABLED, IDM_NEWSESS, "Ne&w Session");
504 AppendMenu (m, MF_ENABLED, IDM_DUPSESS, "&Duplicate Session");
505 s = CreateMenu();
506 get_sesslist(TRUE);
507 for (i = 1 ; i < ((nsessions < 256) ? nsessions : 256) ; i++)
508 AppendMenu (s, MF_ENABLED, IDM_SAVED_MIN + (16 * i) , sessions[i]);
509 AppendMenu (m, MF_POPUP | MF_ENABLED, (UINT) s, "Sa&ved Sessions");
510 AppendMenu (m, MF_ENABLED, IDM_RECONF, "Chan&ge Settings");
511 AppendMenu (m, MF_SEPARATOR, 0, 0);
512 AppendMenu (m, MF_ENABLED, IDM_CLRSB, "C&lear Scrollback");
513 AppendMenu (m, MF_ENABLED, IDM_RESET, "Rese&t Terminal");
514 AppendMenu (m, MF_SEPARATOR, 0, 0);
515 AppendMenu (m, MF_ENABLED, IDM_ABOUT, "&About PuTTY");
516 }
517
518 /*
519 * Finally show the window!
520 */
521 ShowWindow (hwnd, show);
522
523 /*
524 * Set the palette up.
525 */
526 pal = NULL;
527 logpal = NULL;
528 init_palette();
529
530 has_focus = (GetForegroundWindow() == hwnd);
531 UpdateWindow (hwnd);
532
533 if (GetMessage (&msg, NULL, 0, 0) == 1)
534 {
535 int timer_id = 0, long_timer = 0;
536
537 while (msg.message != WM_QUIT) {
538 /* Sometimes DispatchMessage calls routines that use their own
539 * GetMessage loop, setup this timer so we get some control back.
540 *
541 * Also call term_update() from the timer so that if the host
542 * is sending data flat out we still do redraws.
543 */
544 if(timer_id && long_timer) {
545 KillTimer(hwnd, timer_id);
546 long_timer = timer_id = 0;
547 }
548 if(!timer_id)
549 timer_id = SetTimer(hwnd, 1, 20, NULL);
550 DispatchMessage (&msg);
551
552 /* Make sure we blink everything that needs it. */
553 term_blink(0);
554
555 /* Send the paste buffer if there's anything to send */
556 term_paste();
557
558 /* If there's nothing new in the queue then we can do everything
559 * we've delayed, reading the socket, writing, and repainting
560 * the window.
561 */
562 if (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE))
563 continue;
564
565 if (pending_netevent) {
566 enact_pending_netevent();
567
568 /* Force the cursor blink on */
569 term_blink(1);
570
571 if (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE))
572 continue;
573 }
574
575 /* Okay there is now nothing to do so we make sure the screen is
576 * completely up to date then tell windows to call us in a little
577 * while.
578 */
579 if (timer_id) {
580 KillTimer(hwnd, timer_id);
581 timer_id = 0;
582 }
583 HideCaret(hwnd);
584 if (inbuf_head)
585 term_out();
586 term_update();
587 ShowCaret(hwnd);
588 if (!has_focus)
589 timer_id = SetTimer(hwnd, 1, 59500, NULL);
590 else
591 timer_id = SetTimer(hwnd, 1, 250, NULL);
592 long_timer = 1;
593
594 /* There's no point rescanning everything in the message queue
595 * so we do an apperently unneccesary wait here
596 */
597 WaitMessage();
598 if (GetMessage (&msg, NULL, 0, 0) != 1)
599 break;
600 }
601 }
602
603 /*
604 * Clean up.
605 */
606 {
607 int i;
608 for (i=0; i<8; i++)
609 if (fonts[i])
610 DeleteObject(fonts[i]);
611 }
612 sfree(logpal);
613 if (pal)
614 DeleteObject(pal);
615 WSACleanup();
616
617 if (cfg.protocol == PROT_SSH) {
618 random_save_seed();
619 #ifdef MSCRYPTOAPI
620 crypto_wrapup();
621 #endif
622 }
623
624 return msg.wParam;
625 }
626
627 /*
628 * Set up, or shut down, an AsyncSelect. Called from winnet.c.
629 */
630 char *do_select(SOCKET skt, int startup) {
631 int msg, events;
632 if (startup) {
633 msg = WM_NETEVENT;
634 events = FD_READ | FD_WRITE | FD_OOB | FD_CLOSE;
635 } else {
636 msg = events = 0;
637 }
638 if (!hwnd)
639 return "do_select(): internal error (hwnd==NULL)";
640 if (WSAAsyncSelect (skt, hwnd, msg, events) == SOCKET_ERROR) {
641 switch (WSAGetLastError()) {
642 case WSAENETDOWN: return "Network is down";
643 default: return "WSAAsyncSelect(): unknown error";
644 }
645 }
646 return NULL;
647 }
648
649 /*
650 * Print a message box and close the connection.
651 */
652 void connection_fatal(char *fmt, ...) {
653 va_list ap;
654 char stuff[200];
655
656 va_start(ap, fmt);
657 vsprintf(stuff, fmt, ap);
658 va_end(ap);
659 MessageBox(hwnd, stuff, "PuTTY Fatal Error", MB_ICONERROR | MB_OK);
660 if (cfg.close_on_exit)
661 PostQuitMessage(1);
662 else {
663 session_closed = TRUE;
664 SetWindowText (hwnd, "PuTTY (inactive)");
665 }
666 }
667
668 /*
669 * Actually do the job requested by a WM_NETEVENT
670 */
671 static void enact_pending_netevent(void) {
672 static int reentering = 0;
673 extern int select_result(WPARAM, LPARAM);
674 int ret;
675
676 if (reentering)
677 return; /* don't unpend the pending */
678
679 pending_netevent = FALSE;
680
681 reentering = 1;
682 ret = select_result (pend_netevent_wParam, pend_netevent_lParam);
683 reentering = 0;
684
685 if (ret == 0) {
686 if (cfg.close_on_exit)
687 PostQuitMessage(0);
688 else {
689 session_closed = TRUE;
690 MessageBox(hwnd, "Connection closed by remote host",
691 "PuTTY", MB_OK | MB_ICONINFORMATION);
692 SetWindowText (hwnd, "PuTTY (inactive)");
693 }
694 }
695 }
696
697 /*
698 * Copy the colour palette from the configuration data into defpal.
699 * This is non-trivial because the colour indices are different.
700 */
701 static void cfgtopalette(void) {
702 int i;
703 static const int ww[] = {
704 6, 7, 8, 9, 10, 11, 12, 13,
705 14, 15, 16, 17, 18, 19, 20, 21,
706 0, 1, 2, 3, 4, 4, 5, 5
707 };
708
709 for (i=0; i<24; i++) {
710 int w = ww[i];
711 defpal[i].rgbtRed = cfg.colours[w][0];
712 defpal[i].rgbtGreen = cfg.colours[w][1];
713 defpal[i].rgbtBlue = cfg.colours[w][2];
714 }
715 }
716
717 /*
718 * Set up the colour palette.
719 */
720 static void init_palette(void) {
721 int i;
722 HDC hdc = GetDC (hwnd);
723 if (hdc) {
724 if (cfg.try_palette &&
725 GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE) {
726 logpal = smalloc(sizeof(*logpal)
727 - sizeof(logpal->palPalEntry)
728 + NCOLOURS * sizeof(PALETTEENTRY));
729 logpal->palVersion = 0x300;
730 logpal->palNumEntries = NCOLOURS;
731 for (i = 0; i < NCOLOURS; i++) {
732 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
733 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
734 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
735 logpal->palPalEntry[i].peFlags = PC_NOCOLLAPSE;
736 }
737 pal = CreatePalette (logpal);
738 if (pal) {
739 SelectPalette (hdc, pal, FALSE);
740 RealizePalette (hdc);
741 SelectPalette (hdc, GetStockObject (DEFAULT_PALETTE),
742 FALSE);
743 }
744 }
745 ReleaseDC (hwnd, hdc);
746 }
747 if (pal)
748 for (i=0; i<NCOLOURS; i++)
749 colours[i] = PALETTERGB(defpal[i].rgbtRed,
750 defpal[i].rgbtGreen,
751 defpal[i].rgbtBlue);
752 else
753 for(i=0; i<NCOLOURS; i++)
754 colours[i] = RGB(defpal[i].rgbtRed,
755 defpal[i].rgbtGreen,
756 defpal[i].rgbtBlue);
757 }
758
759 /*
760 * Initialise all the fonts we will need. There may be as many as
761 * eight or as few as one. We also:
762 *
763 * - check the font width and height, correcting our guesses if
764 * necessary.
765 *
766 * - verify that the bold font is the same width as the ordinary
767 * one, and engage shadow bolding if not.
768 *
769 * - verify that the underlined font is the same width as the
770 * ordinary one (manual underlining by means of line drawing can
771 * be done in a pinch).
772 */
773 static void init_fonts(int pick_width) {
774 TEXTMETRIC tm;
775 int i;
776 int fsize[8];
777 HDC hdc;
778 int fw_dontcare, fw_bold;
779 int firstchar = ' ';
780
781 #ifdef CHECKOEMFONT
782 font_messup:
783 #endif
784 for (i=0; i<8; i++)
785 fonts[i] = NULL;
786
787 if (cfg.fontisbold) {
788 fw_dontcare = FW_BOLD;
789 fw_bold = FW_HEAVY;
790 } else {
791 fw_dontcare = FW_DONTCARE;
792 fw_bold = FW_BOLD;
793 }
794
795 hdc = GetDC(hwnd);
796
797 font_height = cfg.fontheight;
798 font_width = pick_width;
799
800 #define f(i,c,w,u) \
801 fonts[i] = CreateFont (font_height, font_width, 0, 0, w, FALSE, u, FALSE, \
802 c, OUT_DEFAULT_PRECIS, \
803 CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, \
804 FIXED_PITCH | FF_DONTCARE, cfg.font)
805
806 if (cfg.vtmode != VT_OEMONLY) {
807 f(FONT_NORMAL, cfg.fontcharset, fw_dontcare, FALSE);
808
809 SelectObject (hdc, fonts[FONT_NORMAL]);
810 GetTextMetrics(hdc, &tm);
811 font_height = tm.tmHeight;
812 font_width = tm.tmAveCharWidth;
813
814 f(FONT_UNDERLINE, cfg.fontcharset, fw_dontcare, TRUE);
815
816 /*
817 * Some fonts, e.g. 9-pt Courier, draw their underlines
818 * outside their character cell. We successfully prevent
819 * screen corruption by clipping the text output, but then
820 * we lose the underline completely. Here we try to work
821 * out whether this is such a font, and if it is, we set a
822 * flag that causes underlines to be drawn by hand.
823 *
824 * Having tried other more sophisticated approaches (such
825 * as examining the TEXTMETRIC structure or requesting the
826 * height of a string), I think we'll do this the brute
827 * force way: we create a small bitmap, draw an underlined
828 * space on it, and test to see whether any pixels are
829 * foreground-coloured. (Since we expect the underline to
830 * go all the way across the character cell, we only search
831 * down a single column of the bitmap, half way across.)
832 */
833 {
834 HDC und_dc;
835 HBITMAP und_bm, und_oldbm;
836 int i, gotit;
837 COLORREF c;
838
839 und_dc = CreateCompatibleDC(hdc);
840 und_bm = CreateCompatibleBitmap(hdc, font_width, font_height);
841 und_oldbm = SelectObject(und_dc, und_bm);
842 SelectObject(und_dc, fonts[FONT_UNDERLINE]);
843 SetTextAlign(und_dc, TA_TOP | TA_LEFT | TA_NOUPDATECP);
844 SetTextColor (und_dc, RGB(255,255,255));
845 SetBkColor (und_dc, RGB(0,0,0));
846 SetBkMode (und_dc, OPAQUE);
847 ExtTextOut (und_dc, 0, 0, ETO_OPAQUE, NULL, " ", 1, NULL);
848 gotit = FALSE;
849 for (i = 0; i < font_height; i++) {
850 c = GetPixel(und_dc, font_width/2, i);
851 if (c != RGB(0,0,0))
852 gotit = TRUE;
853 }
854 SelectObject(und_dc, und_oldbm);
855 DeleteObject(und_bm);
856 DeleteDC(und_dc);
857 font_needs_hand_underlining = !gotit;
858 }
859
860 if (bold_mode == BOLD_FONT) {
861 f(FONT_BOLD, cfg.fontcharset, fw_bold, FALSE);
862 f(FONT_BOLDUND, cfg.fontcharset, fw_bold, TRUE);
863 }
864
865 if (cfg.vtmode == VT_OEMANSI) {
866 f(FONT_OEM, OEM_CHARSET, fw_dontcare, FALSE);
867 f(FONT_OEMUND, OEM_CHARSET, fw_dontcare, TRUE);
868
869 if (bold_mode == BOLD_FONT) {
870 f(FONT_OEMBOLD, OEM_CHARSET, fw_bold, FALSE);
871 f(FONT_OEMBOLDUND, OEM_CHARSET, fw_bold, TRUE);
872 }
873 }
874 }
875 else
876 {
877 f(FONT_OEM, cfg.fontcharset, fw_dontcare, FALSE);
878
879 SelectObject (hdc, fonts[FONT_OEM]);
880 GetTextMetrics(hdc, &tm);
881 font_height = tm.tmHeight;
882 font_width = tm.tmAveCharWidth;
883
884 f(FONT_OEMUND, cfg.fontcharset, fw_dontcare, TRUE);
885
886 if (bold_mode == BOLD_FONT) {
887 f(FONT_BOLD, cfg.fontcharset, fw_bold, FALSE);
888 f(FONT_BOLDUND, cfg.fontcharset, fw_bold, TRUE);
889 }
890 }
891 #undef f
892
893 descent = tm.tmAscent + 1;
894 if (descent >= font_height)
895 descent = font_height - 1;
896 firstchar = tm.tmFirstChar;
897
898 for (i=0; i<8; i++) {
899 if (fonts[i]) {
900 if (SelectObject (hdc, fonts[i]) &&
901 GetTextMetrics(hdc, &tm) )
902 fsize[i] = tm.tmAveCharWidth + 256 * tm.tmHeight;
903 else fsize[i] = -i;
904 }
905 else fsize[i] = -i;
906 }
907
908 ReleaseDC (hwnd, hdc);
909
910 /* ... This is wrong in OEM only mode */
911 if (fsize[FONT_UNDERLINE] != fsize[FONT_NORMAL] ||
912 (bold_mode == BOLD_FONT &&
913 fsize[FONT_BOLDUND] != fsize[FONT_BOLD])) {
914 und_mode = UND_LINE;
915 DeleteObject (fonts[FONT_UNDERLINE]);
916 if (bold_mode == BOLD_FONT)
917 DeleteObject (fonts[FONT_BOLDUND]);
918 }
919
920 if (bold_mode == BOLD_FONT &&
921 fsize[FONT_BOLD] != fsize[FONT_NORMAL]) {
922 bold_mode = BOLD_SHADOW;
923 DeleteObject (fonts[FONT_BOLD]);
924 if (und_mode == UND_FONT)
925 DeleteObject (fonts[FONT_BOLDUND]);
926 }
927
928 #ifdef CHECKOEMFONT
929 /* With the fascist font painting it doesn't matter if the linedraw font
930 * isn't exactly the right size anymore so we don't have to check this.
931 */
932 if (cfg.vtmode == VT_OEMANSI && fsize[FONT_OEM] != fsize[FONT_NORMAL] ) {
933 if( cfg.fontcharset == OEM_CHARSET )
934 {
935 MessageBox(NULL, "The OEM and ANSI versions of this font are\n"
936 "different sizes. Using OEM-only mode instead",
937 "Font Size Mismatch", MB_ICONINFORMATION | MB_OK);
938 cfg.vtmode = VT_OEMONLY;
939 }
940 else if( firstchar < ' ' )
941 {
942 MessageBox(NULL, "The OEM and ANSI versions of this font are\n"
943 "different sizes. Using XTerm mode instead",
944 "Font Size Mismatch", MB_ICONINFORMATION | MB_OK);
945 cfg.vtmode = VT_XWINDOWS;
946 }
947 else
948 {
949 MessageBox(NULL, "The OEM and ANSI versions of this font are\n"
950 "different sizes. Using ISO8859-1 mode instead",
951 "Font Size Mismatch", MB_ICONINFORMATION | MB_OK);
952 cfg.vtmode = VT_POORMAN;
953 }
954
955 for (i=0; i<8; i++)
956 if (fonts[i])
957 DeleteObject (fonts[i]);
958 goto font_messup;
959 }
960 #endif
961 }
962
963 void request_resize (int w, int h, int refont) {
964 int width, height;
965
966 /* If the window is maximized supress resizing attempts */
967 if(IsZoomed(hwnd)) return;
968
969 #ifdef CHECKOEMFONT
970 /* Don't do this in OEMANSI, you may get disable messages */
971 if (refont && w != cols && (cols==80 || cols==132)
972 && cfg.vtmode != VT_OEMANSI)
973 #else
974 if (refont && w != cols && (cols==80 || cols==132))
975 #endif
976 {
977 /* If font width too big for screen should we shrink the font more ? */
978 if (w==132)
979 font_width = ((font_width*cols+w/2)/w);
980 else
981 font_width = 0;
982 {
983 int i;
984 for (i=0; i<8; i++)
985 if (fonts[i])
986 DeleteObject(fonts[i]);
987 }
988 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
989 und_mode = UND_FONT;
990 init_fonts(font_width);
991 }
992 else
993 {
994 static int first_time = 1;
995 static RECT ss;
996
997 switch(first_time)
998 {
999 case 1:
1000 /* Get the size of the screen */
1001 if (GetClientRect(GetDesktopWindow(),&ss))
1002 /* first_time = 0 */;
1003 else { first_time = 2; break; }
1004 case 0:
1005 /* Make sure the values are sane */
1006 width = (ss.right-ss.left-extra_width ) / font_width;
1007 height = (ss.bottom-ss.top-extra_height ) / font_height;
1008
1009 if (w>width) w=width;
1010 if (h>height) h=height;
1011 if (w<15) w = 15;
1012 if (h<1) w = 1;
1013 }
1014 }
1015
1016 width = extra_width + font_width * w;
1017 height = extra_height + font_height * h;
1018
1019 SetWindowPos (hwnd, NULL, 0, 0, width, height,
1020 SWP_NOACTIVATE | SWP_NOCOPYBITS |
1021 SWP_NOMOVE | SWP_NOZORDER);
1022 }
1023
1024 static void click (Mouse_Button b, int x, int y) {
1025 int thistime = GetMessageTime();
1026
1027 if (lastbtn == b && thistime - lasttime < dbltime) {
1028 lastact = (lastact == MA_CLICK ? MA_2CLK :
1029 lastact == MA_2CLK ? MA_3CLK :
1030 lastact == MA_3CLK ? MA_CLICK : MA_NOTHING);
1031 } else {
1032 lastbtn = b;
1033 lastact = MA_CLICK;
1034 }
1035 if (lastact != MA_NOTHING)
1036 term_mouse (b, lastact, x, y);
1037 lasttime = thistime;
1038 }
1039
1040 static LRESULT CALLBACK WndProc (HWND hwnd, UINT message,
1041 WPARAM wParam, LPARAM lParam) {
1042 HDC hdc;
1043 static int ignore_size = FALSE;
1044 static int ignore_clip = FALSE;
1045 static int just_reconfigged = FALSE;
1046 static int resizing = FALSE;
1047
1048 switch (message) {
1049 case WM_TIMER:
1050 if (pending_netevent)
1051 enact_pending_netevent();
1052 if (inbuf_head)
1053 term_out();
1054 noise_regular();
1055 HideCaret(hwnd);
1056 term_update();
1057 ShowCaret(hwnd);
1058 if (cfg.ping_interval > 0)
1059 {
1060 time_t now;
1061 time(&now);
1062 if (now-last_movement > cfg.ping_interval * 60 - 10)
1063 {
1064 back->special(TS_PING);
1065 last_movement = now;
1066 }
1067 }
1068 return 0;
1069 case WM_CREATE:
1070 break;
1071 case WM_CLOSE:
1072 if (!cfg.warn_on_close || session_closed ||
1073 MessageBox(hwnd, "Are you sure you want to close this session?",
1074 "PuTTY Exit Confirmation",
1075 MB_ICONWARNING | MB_OKCANCEL) == IDOK)
1076 DestroyWindow(hwnd);
1077 return 0;
1078 case WM_DESTROY:
1079 PostQuitMessage (0);
1080 return 0;
1081 case WM_SYSCOMMAND:
1082 switch (wParam & ~0xF) { /* low 4 bits reserved to Windows */
1083 case IDM_SHOWLOG:
1084 showeventlog(hwnd);
1085 break;
1086 case IDM_NEWSESS:
1087 case IDM_DUPSESS:
1088 case IDM_SAVEDSESS:
1089 {
1090 char b[2048];
1091 char c[30], *cl;
1092 int freecl = FALSE;
1093 STARTUPINFO si;
1094 PROCESS_INFORMATION pi;
1095 HANDLE filemap = NULL;
1096
1097 if (wParam == IDM_DUPSESS) {
1098 /*
1099 * Allocate a file-mapping memory chunk for the
1100 * config structure.
1101 */
1102 SECURITY_ATTRIBUTES sa;
1103 Config *p;
1104
1105 sa.nLength = sizeof(sa);
1106 sa.lpSecurityDescriptor = NULL;
1107 sa.bInheritHandle = TRUE;
1108 filemap = CreateFileMapping((HANDLE)0xFFFFFFFF,
1109 &sa,
1110 PAGE_READWRITE,
1111 0,
1112 sizeof(Config),
1113 NULL);
1114 if (filemap) {
1115 p = (Config *)MapViewOfFile(filemap,
1116 FILE_MAP_WRITE,
1117 0, 0, sizeof(Config));
1118 if (p) {
1119 *p = cfg; /* structure copy */
1120 UnmapViewOfFile(p);
1121 }
1122 }
1123 sprintf(c, "putty &%p", filemap);
1124 cl = c;
1125 } else if (wParam == IDM_SAVEDSESS) {
1126 char *session = sessions[(lParam - IDM_SAVED_MIN) / 16];
1127 cl = malloc(16 + strlen(session)); /* 8, but play safe */
1128 if (!cl)
1129 cl = NULL; /* not a very important failure mode */
1130 else {
1131 sprintf(cl, "putty @%s", session);
1132 freecl = TRUE;
1133 }
1134 } else
1135 cl = NULL;
1136
1137 GetModuleFileName (NULL, b, sizeof(b)-1);
1138 si.cb = sizeof(si);
1139 si.lpReserved = NULL;
1140 si.lpDesktop = NULL;
1141 si.lpTitle = NULL;
1142 si.dwFlags = 0;
1143 si.cbReserved2 = 0;
1144 si.lpReserved2 = NULL;
1145 CreateProcess (b, cl, NULL, NULL, TRUE,
1146 NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi);
1147
1148 if (filemap)
1149 CloseHandle(filemap);
1150 if (freecl)
1151 free(cl);
1152 }
1153 break;
1154 case IDM_RECONF:
1155 if (!do_reconfig(hwnd))
1156 break;
1157 just_reconfigged = TRUE;
1158 {
1159 int i;
1160 for (i=0; i<8; i++)
1161 if (fonts[i])
1162 DeleteObject(fonts[i]);
1163 }
1164 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
1165 und_mode = UND_FONT;
1166 init_fonts(0);
1167 sfree(logpal);
1168 /* Telnet will change local echo -> remote if the remote asks */
1169 if (cfg.protocol != PROT_TELNET)
1170 ldisc = (cfg.ldisc_term ? &ldisc_term : &ldisc_simple);
1171 if (pal)
1172 DeleteObject(pal);
1173 logpal = NULL;
1174 pal = NULL;
1175 cfgtopalette();
1176 init_palette();
1177
1178 /* Enable or disable the scroll bar, etc */
1179 {
1180 LONG nflg, flag = GetWindowLong(hwnd, GWL_STYLE);
1181
1182 nflg = flag;
1183 if (cfg.scrollbar) nflg |= WS_VSCROLL;
1184 else nflg &= ~WS_VSCROLL;
1185 if (cfg.locksize)
1186 nflg &= ~(WS_THICKFRAME|WS_MAXIMIZEBOX);
1187 else
1188 nflg |= (WS_THICKFRAME|WS_MAXIMIZEBOX);
1189
1190 if (nflg != flag)
1191 {
1192 RECT cr, wr;
1193
1194 SetWindowLong(hwnd, GWL_STYLE, nflg);
1195 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
1196 SetWindowPos(hwnd, NULL, 0,0,0,0,
1197 SWP_NOACTIVATE|SWP_NOCOPYBITS|
1198 SWP_NOMOVE|SWP_NOSIZE| SWP_NOZORDER|
1199 SWP_FRAMECHANGED);
1200
1201 GetWindowRect (hwnd, &wr);
1202 GetClientRect (hwnd, &cr);
1203 extra_width = wr.right - wr.left - cr.right + cr.left;
1204 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
1205 }
1206 }
1207
1208 term_size(cfg.height, cfg.width, cfg.savelines);
1209 InvalidateRect(hwnd, NULL, TRUE);
1210 SetWindowPos (hwnd, NULL, 0, 0,
1211 extra_width + font_width * cfg.width,
1212 extra_height + font_height * cfg.height,
1213 SWP_NOACTIVATE | SWP_NOCOPYBITS |
1214 SWP_NOMOVE | SWP_NOZORDER);
1215 if (IsIconic(hwnd)) {
1216 SetWindowText (hwnd,
1217 cfg.win_name_always ? window_name : icon_name);
1218 }
1219 break;
1220 case IDM_CLRSB:
1221 term_clrsb();
1222 break;
1223 case IDM_RESET:
1224 term_pwron();
1225 break;
1226 case IDM_TEL_AYT: back->special (TS_AYT); break;
1227 case IDM_TEL_BRK: back->special (TS_BRK); break;
1228 case IDM_TEL_SYNCH: back->special (TS_SYNCH); break;
1229 case IDM_TEL_EC: back->special (TS_EC); break;
1230 case IDM_TEL_EL: back->special (TS_EL); break;
1231 case IDM_TEL_GA: back->special (TS_GA); break;
1232 case IDM_TEL_NOP: back->special (TS_NOP); break;
1233 case IDM_TEL_ABORT: back->special (TS_ABORT); break;
1234 case IDM_TEL_AO: back->special (TS_AO); break;
1235 case IDM_TEL_IP: back->special (TS_IP); break;
1236 case IDM_TEL_SUSP: back->special (TS_SUSP); break;
1237 case IDM_TEL_EOR: back->special (TS_EOR); break;
1238 case IDM_TEL_EOF: back->special (TS_EOF); break;
1239 case IDM_ABOUT:
1240 showabout (hwnd);
1241 break;
1242 default:
1243 if (wParam >= IDM_SAVED_MIN && wParam <= IDM_SAVED_MAX) {
1244 SendMessage(hwnd, WM_SYSCOMMAND, IDM_SAVEDSESS, wParam);
1245 }
1246 }
1247 break;
1248
1249 #define X_POS(l) ((int)(short)LOWORD(l))
1250 #define Y_POS(l) ((int)(short)HIWORD(l))
1251
1252 #define TO_CHR_X(x) (((x)<0 ? (x)-font_width+1 : (x)) / font_width)
1253 #define TO_CHR_Y(y) (((y)<0 ? (y)-font_height+1: (y)) / font_height)
1254
1255 case WM_LBUTTONDOWN:
1256 click (MB_SELECT, TO_CHR_X(X_POS(lParam)),
1257 TO_CHR_Y(Y_POS(lParam)));
1258 SetCapture(hwnd);
1259 return 0;
1260 case WM_LBUTTONUP:
1261 term_mouse (MB_SELECT, MA_RELEASE, TO_CHR_X(X_POS(lParam)),
1262 TO_CHR_Y(Y_POS(lParam)));
1263 ReleaseCapture();
1264 return 0;
1265 case WM_MBUTTONDOWN:
1266 SetCapture(hwnd);
1267 click (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
1268 TO_CHR_X(X_POS(lParam)),
1269 TO_CHR_Y(Y_POS(lParam)));
1270 return 0;
1271 case WM_MBUTTONUP:
1272 term_mouse (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
1273 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
1274 TO_CHR_Y(Y_POS(lParam)));
1275 ReleaseCapture();
1276 return 0;
1277 case WM_RBUTTONDOWN:
1278 SetCapture(hwnd);
1279 click (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
1280 TO_CHR_X(X_POS(lParam)),
1281 TO_CHR_Y(Y_POS(lParam)));
1282 return 0;
1283 case WM_RBUTTONUP:
1284 term_mouse (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
1285 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
1286 TO_CHR_Y(Y_POS(lParam)));
1287 ReleaseCapture();
1288 return 0;
1289 case WM_MOUSEMOVE:
1290 /*
1291 * Add the mouse position and message time to the random
1292 * number noise.
1293 */
1294 noise_ultralight(lParam);
1295
1296 if (wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON)) {
1297 Mouse_Button b;
1298 if (wParam & MK_LBUTTON)
1299 b = MB_SELECT;
1300 else if (wParam & MK_MBUTTON)
1301 b = cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND;
1302 else
1303 b = cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE;
1304 term_mouse (b, MA_DRAG, TO_CHR_X(X_POS(lParam)),
1305 TO_CHR_Y(Y_POS(lParam)));
1306 }
1307 return 0;
1308 case WM_IGNORE_CLIP:
1309 ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */
1310 break;
1311 case WM_DESTROYCLIPBOARD:
1312 if (!ignore_clip)
1313 term_deselect();
1314 ignore_clip = FALSE;
1315 return 0;
1316 case WM_PAINT:
1317 {
1318 PAINTSTRUCT p;
1319 HideCaret(hwnd);
1320 hdc = BeginPaint (hwnd, &p);
1321 if (pal) {
1322 SelectPalette (hdc, pal, TRUE);
1323 RealizePalette (hdc);
1324 }
1325 term_paint (hdc, p.rcPaint.left, p.rcPaint.top,
1326 p.rcPaint.right, p.rcPaint.bottom);
1327 SelectObject (hdc, GetStockObject(SYSTEM_FONT));
1328 SelectObject (hdc, GetStockObject(WHITE_PEN));
1329 EndPaint (hwnd, &p);
1330 ShowCaret(hwnd);
1331 }
1332 return 0;
1333 case WM_NETEVENT:
1334 /* Notice we can get multiple netevents, FD_READ, FD_WRITE etc
1335 * but the only one that's likely to try to overload us is FD_READ.
1336 * This means buffering just one is fine.
1337 */
1338 if (pending_netevent)
1339 enact_pending_netevent();
1340
1341 pending_netevent = TRUE;
1342 pend_netevent_wParam=wParam;
1343 pend_netevent_lParam=lParam;
1344 time(&last_movement);
1345 return 0;
1346 case WM_SETFOCUS:
1347 has_focus = TRUE;
1348 CreateCaret(hwnd, caretbm, 0, 0);
1349 ShowCaret(hwnd);
1350 term_out();
1351 term_update();
1352 break;
1353 case WM_KILLFOCUS:
1354 has_focus = FALSE;
1355 DestroyCaret();
1356 term_out();
1357 term_update();
1358 break;
1359 case WM_IGNORE_SIZE:
1360 ignore_size = TRUE; /* don't panic on next WM_SIZE msg */
1361 break;
1362 case WM_ENTERSIZEMOVE:
1363 EnableSizeTip(1);
1364 resizing = TRUE;
1365 break;
1366 case WM_EXITSIZEMOVE:
1367 EnableSizeTip(0);
1368 resizing = FALSE;
1369 back->size();
1370 break;
1371 case WM_SIZING:
1372 {
1373 int width, height, w, h, ew, eh;
1374 LPRECT r = (LPRECT)lParam;
1375
1376 width = r->right - r->left - extra_width;
1377 height = r->bottom - r->top - extra_height;
1378 w = (width + font_width/2) / font_width; if (w < 1) w = 1;
1379 h = (height + font_height/2) / font_height; if (h < 1) h = 1;
1380 UpdateSizeTip(hwnd, w, h);
1381 ew = width - w * font_width;
1382 eh = height - h * font_height;
1383 if (ew != 0) {
1384 if (wParam == WMSZ_LEFT ||
1385 wParam == WMSZ_BOTTOMLEFT ||
1386 wParam == WMSZ_TOPLEFT)
1387 r->left += ew;
1388 else
1389 r->right -= ew;
1390 }
1391 if (eh != 0) {
1392 if (wParam == WMSZ_TOP ||
1393 wParam == WMSZ_TOPRIGHT ||
1394 wParam == WMSZ_TOPLEFT)
1395 r->top += eh;
1396 else
1397 r->bottom -= eh;
1398 }
1399 if (ew || eh)
1400 return 1;
1401 else
1402 return 0;
1403 }
1404 /* break; (never reached) */
1405 case WM_SIZE:
1406 if (wParam == SIZE_MINIMIZED) {
1407 SetWindowText (hwnd,
1408 cfg.win_name_always ? window_name : icon_name);
1409 break;
1410 }
1411 if (wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED)
1412 SetWindowText (hwnd, window_name);
1413 if (!ignore_size) {
1414 int width, height, w, h;
1415 #if 0 /* we have fixed this using WM_SIZING now */
1416 int ew, eh;
1417 #endif
1418
1419 width = LOWORD(lParam);
1420 height = HIWORD(lParam);
1421 w = width / font_width; if (w < 1) w = 1;
1422 h = height / font_height; if (h < 1) h = 1;
1423 #if 0 /* we have fixed this using WM_SIZING now */
1424 ew = width - w * font_width;
1425 eh = height - h * font_height;
1426 if (ew != 0 || eh != 0) {
1427 RECT r;
1428 GetWindowRect (hwnd, &r);
1429 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
1430 SetWindowPos (hwnd, NULL, 0, 0,
1431 r.right - r.left - ew, r.bottom - r.top - eh,
1432 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
1433 }
1434 #endif
1435 if (w != cols || h != rows || just_reconfigged) {
1436 term_invalidate();
1437 term_size (h, w, cfg.savelines);
1438 /*
1439 * Don't call back->size in mid-resize. (To prevent
1440 * massive numbers of resize events getting sent
1441 * down the connection during an NT opaque drag.)
1442 */
1443 if (!resizing)
1444 back->size();
1445 just_reconfigged = FALSE;
1446 }
1447 }
1448 ignore_size = FALSE;
1449 return 0;
1450 case WM_VSCROLL:
1451 switch (LOWORD(wParam)) {
1452 case SB_BOTTOM: term_scroll(-1, 0); break;
1453 case SB_TOP: term_scroll(+1, 0); break;
1454 case SB_LINEDOWN: term_scroll (0, +1); break;
1455 case SB_LINEUP: term_scroll (0, -1); break;
1456 case SB_PAGEDOWN: term_scroll (0, +rows/2); break;
1457 case SB_PAGEUP: term_scroll (0, -rows/2); break;
1458 case SB_THUMBPOSITION: case SB_THUMBTRACK:
1459 term_scroll (1, HIWORD(wParam)); break;
1460 }
1461 break;
1462 case WM_PALETTECHANGED:
1463 if ((HWND) wParam != hwnd && pal != NULL) {
1464 HDC hdc = get_ctx();
1465 if (hdc) {
1466 if (RealizePalette (hdc) > 0)
1467 UpdateColors (hdc);
1468 free_ctx (hdc);
1469 }
1470 }
1471 break;
1472 case WM_QUERYNEWPALETTE:
1473 if (pal != NULL) {
1474 HDC hdc = get_ctx();
1475 if (hdc) {
1476 if (RealizePalette (hdc) > 0)
1477 UpdateColors (hdc);
1478 free_ctx (hdc);
1479 return TRUE;
1480 }
1481 }
1482 return FALSE;
1483 case WM_KEYDOWN:
1484 case WM_SYSKEYDOWN:
1485 case WM_KEYUP:
1486 case WM_SYSKEYUP:
1487 /*
1488 * Add the scan code and keypress timing to the random
1489 * number noise.
1490 */
1491 noise_ultralight(lParam);
1492
1493 /*
1494 * We don't do TranslateMessage since it disassociates the
1495 * resulting CHAR message from the KEYDOWN that sparked it,
1496 * which we occasionally don't want. Instead, we process
1497 * KEYDOWN, and call the Win32 translator functions so that
1498 * we get the translations under _our_ control.
1499 */
1500 {
1501 unsigned char buf[20];
1502 int len;
1503
1504 if (wParam==VK_PROCESSKEY) {
1505 MSG m;
1506 m.hwnd = hwnd;
1507 m.message = WM_KEYDOWN;
1508 m.wParam = wParam;
1509 m.lParam = lParam & 0xdfff;
1510 TranslateMessage(&m);
1511 } else {
1512 len = TranslateKey (message, wParam, lParam, buf);
1513 if (len == -1)
1514 return DefWindowProc (hwnd, message, wParam, lParam);
1515 ldisc->send (buf, len);
1516 }
1517 }
1518 return 0;
1519 case WM_IME_CHAR:
1520 {
1521 unsigned char buf[2];
1522
1523 buf[1] = wParam;
1524 buf[0] = wParam >> 8;
1525 ldisc->send (buf, 2);
1526 }
1527 case WM_CHAR:
1528 case WM_SYSCHAR:
1529 /*
1530 * Nevertheless, we are prepared to deal with WM_CHAR
1531 * messages, should they crop up. So if someone wants to
1532 * post the things to us as part of a macro manoeuvre,
1533 * we're ready to cope.
1534 */
1535 {
1536 char c = xlat_kbd2tty((unsigned char)wParam);
1537 ldisc->send (&c, 1);
1538 }
1539 return 0;
1540 }
1541
1542 return DefWindowProc (hwnd, message, wParam, lParam);
1543 }
1544
1545 /*
1546 * Move the system caret. (We maintain one, even though it's
1547 * invisible, for the benefit of blind people: apparently some
1548 * helper software tracks the system caret, so we should arrange to
1549 * have one.)
1550 */
1551 void sys_cursor(int x, int y) {
1552 SetCaretPos(x * font_width, y * font_height);
1553 }
1554
1555 /*
1556 * Draw a line of text in the window, at given character
1557 * coordinates, in given attributes.
1558 *
1559 * We are allowed to fiddle with the contents of `text'.
1560 */
1561 void do_text (Context ctx, int x, int y, char *text, int len,
1562 unsigned long attr, int lattr) {
1563 COLORREF fg, bg, t;
1564 int nfg, nbg, nfont;
1565 HDC hdc = ctx;
1566 RECT line_box;
1567 int force_manual_underline = 0;
1568 int fnt_width = font_width*(1+(lattr!=LATTR_NORM));
1569 static int *IpDx = 0, IpDxLEN = 0;;
1570
1571 if (len>IpDxLEN || IpDx[0] != fnt_width) {
1572 int i;
1573 if (len>IpDxLEN) {
1574 sfree(IpDx);
1575 IpDx = smalloc((len+16)*sizeof(int));
1576 IpDxLEN = (len+16);
1577 }
1578 for(i=0; i<IpDxLEN; i++)
1579 IpDx[i] = fnt_width;
1580 }
1581
1582 x *= fnt_width;
1583 y *= font_height;
1584
1585 if (attr & ATTR_ACTCURS) {
1586 attr &= (bold_mode == BOLD_COLOURS ? 0x300200 : 0x300300);
1587 attr ^= ATTR_CUR_XOR;
1588 }
1589
1590 nfont = 0;
1591 if (cfg.vtmode == VT_OEMONLY)
1592 nfont |= FONT_OEM;
1593
1594 /*
1595 * Map high-half characters in order to approximate ISO using
1596 * OEM character set. No characters are missing if the OEM codepage
1597 * is CP850.
1598 */
1599 if (nfont & FONT_OEM) {
1600 int i;
1601 for (i=0; i<len; i++)
1602 if (text[i] >= '\xA0' && text[i] <= '\xFF') {
1603 #if 0
1604 /* This is CP850 ... perfect translation */
1605 static const char oemhighhalf[] =
1606 "\x20\xAD\xBD\x9C\xCF\xBE\xDD\xF5" /* A0-A7 */
1607 "\xF9\xB8\xA6\xAE\xAA\xF0\xA9\xEE" /* A8-AF */
1608 "\xF8\xF1\xFD\xFC\xEF\xE6\xF4\xFA" /* B0-B7 */
1609 "\xF7\xFB\xA7\xAF\xAC\xAB\xF3\xA8" /* B8-BF */
1610 "\xB7\xB5\xB6\xC7\x8E\x8F\x92\x80" /* C0-C7 */
1611 "\xD4\x90\xD2\xD3\xDE\xD6\xD7\xD8" /* C8-CF */
1612 "\xD1\xA5\xE3\xE0\xE2\xE5\x99\x9E" /* D0-D7 */
1613 "\x9D\xEB\xE9\xEA\x9A\xED\xE8\xE1" /* D8-DF */
1614 "\x85\xA0\x83\xC6\x84\x86\x91\x87" /* E0-E7 */
1615 "\x8A\x82\x88\x89\x8D\xA1\x8C\x8B" /* E8-EF */
1616 "\xD0\xA4\x95\xA2\x93\xE4\x94\xF6" /* F0-F7 */
1617 "\x9B\x97\xA3\x96\x81\xEC\xE7\x98" /* F8-FF */
1618 ;
1619 #endif
1620 /* This is CP437 ... junk translation */
1621 static const unsigned char oemhighhalf[] = {
1622 0xff, 0xad, 0x9b, 0x9c, 0x6f, 0x9d, 0x7c, 0x15,
1623 0x22, 0x43, 0xa6, 0xae, 0xaa, 0x2d, 0x52, 0xc4,
1624 0xf8, 0xf1, 0xfd, 0x33, 0x27, 0xe6, 0x14, 0xfa,
1625 0x2c, 0x31, 0xa7, 0xaf, 0xac, 0xab, 0x2f, 0xa8,
1626 0x41, 0x41, 0x41, 0x41, 0x8e, 0x8f, 0x92, 0x80,
1627 0x45, 0x90, 0x45, 0x45, 0x49, 0x49, 0x49, 0x49,
1628 0x44, 0xa5, 0x4f, 0x4f, 0x4f, 0x4f, 0x99, 0x78,
1629 0xed, 0x55, 0x55, 0x55, 0x9a, 0x59, 0x50, 0xe1,
1630 0x85, 0xa0, 0x83, 0x61, 0x84, 0x86, 0x91, 0x87,
1631 0x8a, 0x82, 0x88, 0x89, 0x8d, 0xa1, 0x8c, 0x8b,
1632 0x0b, 0xa4, 0x95, 0xa2, 0x93, 0x6f, 0x94, 0xf6,
1633 0xed, 0x97, 0xa3, 0x96, 0x81, 0x79, 0x70, 0x98
1634 };
1635
1636 text[i] = oemhighhalf[(unsigned char)text[i] - 0xA0];
1637 }
1638 }
1639
1640 if (attr & ATTR_LINEDRW) {
1641 int i;
1642 /* ISO 8859-1 */
1643 static const char poorman[] =
1644 "*#****\xB0\xB1**+++++-----++++|****\xA3\xB7";
1645
1646 /* CP437 */
1647 static const char oemmap_437[] =
1648 "\x04\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1649 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3\xF3\xF2\xE3*\x9C\xFA";
1650
1651 /* CP850 */
1652 static const char oemmap_850[] =
1653 "\x04\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1654 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3****\x9C\xFA";
1655
1656 /* Poor windows font ... eg: windows courier */
1657 static const char oemmap[] =
1658 "*\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1659 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3****\x9C\xFA";
1660
1661 /*
1662 * Line drawing mapping: map ` thru ~ (0x60 thru 0x7E) to
1663 * VT100 line drawing chars; everything else stays normal.
1664 *
1665 * Actually '_' maps to space too, but that's done before.
1666 */
1667 switch (cfg.vtmode) {
1668 case VT_XWINDOWS:
1669 for (i=0; i<len; i++)
1670 if (text[i] >= '\x60' && text[i] <= '\x7E')
1671 text[i] += '\x01' - '\x60';
1672 break;
1673 case VT_OEMANSI:
1674 /* Make sure we actually have an OEM font */
1675 if (fonts[nfont|FONT_OEM]) {
1676 case VT_OEMONLY:
1677 nfont |= FONT_OEM;
1678 for (i=0; i<len; i++)
1679 if (text[i] >= '\x60' && text[i] <= '\x7E')
1680 text[i] = oemmap[(unsigned char)text[i] - 0x60];
1681 break;
1682 }
1683 case VT_POORMAN:
1684 for (i=0; i<len; i++)
1685 if (text[i] >= '\x60' && text[i] <= '\x7E')
1686 text[i] = poorman[(unsigned char)text[i] - 0x60];
1687 break;
1688 }
1689 }
1690
1691 nfg = 2 * ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
1692 nbg = 2 * ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
1693 if (bold_mode == BOLD_FONT && (attr & ATTR_BOLD))
1694 nfont |= FONT_BOLD;
1695 if (und_mode == UND_FONT && (attr & ATTR_UNDER))
1696 nfont |= FONT_UNDERLINE;
1697 if (!fonts[nfont])
1698 {
1699 if (nfont&FONT_UNDERLINE)
1700 force_manual_underline = 1;
1701 /* Don't do the same for manual bold, it could be bad news. */
1702
1703 nfont &= ~(FONT_BOLD|FONT_UNDERLINE);
1704 }
1705 if (font_needs_hand_underlining && (attr & ATTR_UNDER))
1706 force_manual_underline = 1;
1707 if (attr & ATTR_REVERSE) {
1708 t = nfg; nfg = nbg; nbg = t;
1709 }
1710 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BOLD))
1711 nfg++;
1712 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BLINK))
1713 nbg++;
1714 fg = colours[nfg];
1715 bg = colours[nbg];
1716 SelectObject (hdc, fonts[nfont]);
1717 SetTextColor (hdc, fg);
1718 SetBkColor (hdc, bg);
1719 SetBkMode (hdc, OPAQUE);
1720 line_box.left = x;
1721 line_box.top = y;
1722 line_box.right = x+fnt_width*len;
1723 line_box.bottom = y+font_height;
1724 ExtTextOut (hdc, x, y, ETO_CLIPPED|ETO_OPAQUE, &line_box, text, len, IpDx);
1725 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
1726 SetBkMode (hdc, TRANSPARENT);
1727
1728 /* GRR: This draws the character outside it's box and can leave
1729 * 'droppings' even with the clip box! I suppose I could loop it
1730 * one character at a time ... yuk.
1731 *
1732 * Or ... I could do a test print with "W", and use +1 or -1 for this
1733 * shift depending on if the leftmost column is blank...
1734 */
1735 ExtTextOut (hdc, x-1, y, ETO_CLIPPED, &line_box, text, len, IpDx);
1736 }
1737 if (force_manual_underline ||
1738 (und_mode == UND_LINE && (attr & ATTR_UNDER))) {
1739 HPEN oldpen;
1740 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, fg));
1741 MoveToEx (hdc, x, y+descent, NULL);
1742 LineTo (hdc, x+len*fnt_width, y+descent);
1743 oldpen = SelectObject (hdc, oldpen);
1744 DeleteObject (oldpen);
1745 }
1746 if (attr & ATTR_PASCURS) {
1747 POINT pts[5];
1748 HPEN oldpen;
1749 pts[0].x = pts[1].x = pts[4].x = x;
1750 pts[2].x = pts[3].x = x+fnt_width-1;
1751 pts[0].y = pts[3].y = pts[4].y = y;
1752 pts[1].y = pts[2].y = y+font_height-1;
1753 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, colours[23]));
1754 Polyline (hdc, pts, 5);
1755 oldpen = SelectObject (hdc, oldpen);
1756 DeleteObject (oldpen);
1757 }
1758 }
1759
1760 static int check_compose(int first, int second) {
1761
1762 static char * composetbl[] = {
1763 "++#", "AA@", "(([", "//\\", "))]", "(-{", "-)}", "/^|", "!!¡", "C/¢",
1764 "C|¢", "L-£", "L=£", "XO¤", "X0¤", "Y-¥", "Y=¥", "||¦", "SO§", "S!§",
1765 "S0§", "\"\"¨", "CO©", "C0©", "A_ª", "<<«", ",-¬", "--­", "RO®",
1766 "-^¯", "0^°", "+-±", "2^²", "3^³", "''´", "/Uµ", "P!¶", ".^·", ",,¸",
1767 "1^¹", "O_º", ">>»", "14¼", "12½", "34¾", "??¿", "`AÀ", "'AÁ", "^AÂ",
1768 "~AÃ", "\"AÄ", "*AÅ", "AEÆ", ",CÇ", "`EÈ", "'EÉ", "^EÊ", "\"EË",
1769 "`IÌ", "'IÍ", "^IÎ", "\"IÏ", "-DÐ", "~NÑ", "`OÒ", "'OÓ", "^OÔ",
1770 "~OÕ", "\"OÖ", "XX×", "/OØ", "`UÙ", "'UÚ", "^UÛ", "\"UÜ", "'YÝ",
1771 "HTÞ", "ssß", "`aà", "'aá", "^aâ", "~aã", "\"aä", "*aå", "aeæ", ",cç",
1772 "`eè", "'eé", "^eê", "\"eë", "`iì", "'ií", "^iî", "\"iï", "-dð", "~nñ",
1773 "`oò", "'oó", "^oô", "~oõ", "\"oö", ":-÷", "o/ø", "`uù", "'uú", "^uû",
1774 "\"uü", "'yý", "htþ", "\"yÿ",
1775 0};
1776
1777 char ** c;
1778 static int recurse = 0;
1779 int nc = -1;
1780
1781 for(c=composetbl; *c; c++) {
1782 if( (*c)[0] == first && (*c)[1] == second)
1783 {
1784 return (*c)[2] & 0xFF;
1785 }
1786 }
1787
1788 if(recurse==0)
1789 {
1790 recurse=1;
1791 nc = check_compose(second, first);
1792 if(nc == -1)
1793 nc = check_compose(toupper(first), toupper(second));
1794 if(nc == -1)
1795 nc = check_compose(toupper(second), toupper(first));
1796 recurse=0;
1797 }
1798 return nc;
1799 }
1800
1801
1802 /*
1803 * Translate a WM_(SYS)?KEY(UP|DOWN) message into a string of ASCII
1804 * codes. Returns number of bytes used or zero to drop the message
1805 * or -1 to forward the message to windows.
1806 */
1807 static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam,
1808 unsigned char *output) {
1809 BYTE keystate[256];
1810 int scan, left_alt = 0, key_down, shift_state;
1811 int r, i, code;
1812 unsigned char * p = output;
1813
1814 static WORD keys[3];
1815 static int compose_state = 0;
1816 static int compose_char = 0;
1817 static WPARAM compose_key = 0;
1818
1819 r = GetKeyboardState(keystate);
1820 if (!r) memset(keystate, 0, sizeof(keystate));
1821 else
1822 {
1823 #if 0
1824 { /* Tell us all about key events */
1825 static BYTE oldstate[256];
1826 static int first = 1;
1827 static int scan;
1828 int ch;
1829 if(first) memcpy(oldstate, keystate, sizeof(oldstate));
1830 first=0;
1831
1832 if ((HIWORD(lParam)&(KF_UP|KF_REPEAT))==KF_REPEAT) {
1833 debug(("+"));
1834 } else if ((HIWORD(lParam)&KF_UP) && scan==(HIWORD(lParam) & 0xFF) ) {
1835 debug((". U"));
1836 } else {
1837 debug((".\n"));
1838 if (wParam >= VK_F1 && wParam <= VK_F20 )
1839 debug(("K_F%d", wParam+1-VK_F1));
1840 else switch(wParam)
1841 {
1842 case VK_SHIFT: debug(("SHIFT")); break;
1843 case VK_CONTROL: debug(("CTRL")); break;
1844 case VK_MENU: debug(("ALT")); break;
1845 default: debug(("VK_%02x", wParam));
1846 }
1847 if(message == WM_SYSKEYDOWN || message == WM_SYSKEYUP)
1848 debug(("*"));
1849 debug((", S%02x", scan=(HIWORD(lParam) & 0xFF) ));
1850
1851 ch = MapVirtualKey(wParam, 2);
1852 if (ch>=' ' && ch<='~') debug((", '%c'", ch));
1853 else if (ch) debug((", $%02x", ch));
1854
1855 if (keys[0]) debug((", KB0=%02x", keys[0]));
1856 if (keys[1]) debug((", KB1=%02x", keys[1]));
1857 if (keys[2]) debug((", KB2=%02x", keys[2]));
1858
1859 if ( (keystate[VK_SHIFT]&0x80)!=0) debug((", S"));
1860 if ( (keystate[VK_CONTROL]&0x80)!=0) debug((", C"));
1861 if ( (HIWORD(lParam)&KF_EXTENDED) ) debug((", E"));
1862 if ( (HIWORD(lParam)&KF_UP) ) debug((", U"));
1863 }
1864
1865 if ((HIWORD(lParam)&(KF_UP|KF_REPEAT))==KF_REPEAT)
1866 ;
1867 else if ( (HIWORD(lParam)&KF_UP) )
1868 oldstate[wParam&0xFF] ^= 0x80;
1869 else
1870 oldstate[wParam&0xFF] ^= 0x81;
1871
1872 for(ch=0; ch<256; ch++)
1873 if (oldstate[ch] != keystate[ch])
1874 debug((", M%02x=%02x", ch, keystate[ch]));
1875
1876 memcpy(oldstate, keystate, sizeof(oldstate));
1877 }
1878 #endif
1879
1880 /* Note if AltGr was pressed and if it was used as a compose key */
1881 if (cfg.compose_key) {
1882 if (wParam == VK_MENU && (HIWORD(lParam)&KF_EXTENDED))
1883 {
1884 keystate[VK_RMENU] = keystate[VK_MENU];
1885 if (!compose_state) compose_key = wParam;
1886 }
1887 if (wParam == VK_APPS && !compose_state)
1888 compose_key = wParam;
1889
1890 if (wParam == compose_key)
1891 {
1892 if (compose_state == 0 && (HIWORD(lParam)&(KF_UP|KF_REPEAT))==0)
1893 compose_state = 1;
1894 else if (compose_state == 1 && (HIWORD(lParam)&KF_UP))
1895 compose_state = 2;
1896 else
1897 compose_state = 0;
1898 }
1899 else if (compose_state==1 && wParam != VK_CONTROL)
1900 compose_state = 0;
1901 } else
1902 compose_state = 0;
1903
1904 /* Nastyness with NUMLock - Shift-NUMLock is left alone though */
1905 if ( (cfg.funky_type == 3 || (cfg.funky_type <= 1 && app_keypad_keys))
1906 && wParam==VK_NUMLOCK && !(keystate[VK_SHIFT]&0x80)) {
1907
1908 wParam = VK_EXECUTE;
1909
1910 /* UnToggle NUMLock */
1911 if ((HIWORD(lParam)&(KF_UP|KF_REPEAT))==0)
1912 keystate[VK_NUMLOCK] ^= 1;
1913 }
1914
1915 /* And write back the 'adjusted' state */
1916 SetKeyboardState (keystate);
1917 }
1918
1919 /* Disable Auto repeat if required */
1920 if (repeat_off && (HIWORD(lParam)&(KF_UP|KF_REPEAT))==KF_REPEAT)
1921 return 0;
1922
1923 if ((HIWORD(lParam)&KF_ALTDOWN) && (keystate[VK_RMENU]&0x80) == 0)
1924 left_alt = 1;
1925
1926 key_down = ((HIWORD(lParam)&KF_UP)==0);
1927
1928 /* Make sure Ctrl-ALT is not the same as AltGr for ToAscii */
1929 if (left_alt && (keystate[VK_CONTROL]&0x80))
1930 keystate[VK_MENU] = 0;
1931
1932 scan = (HIWORD(lParam) & (KF_UP | KF_EXTENDED | 0xFF));
1933 shift_state = ((keystate[VK_SHIFT]&0x80)!=0)
1934 + ((keystate[VK_CONTROL]&0x80)!=0)*2;
1935
1936 /*
1937 * Record that we pressed key so the scroll window can be reset, but
1938 * be careful to avoid Shift-UP/Down
1939 */
1940 if( wParam != VK_SHIFT && wParam != VK_PRIOR && wParam != VK_NEXT ) {
1941 seen_key_event = 1;
1942 }
1943
1944 /* Make sure we're not pasting */
1945 if (key_down) term_nopaste();
1946
1947 if (compose_state>1 && left_alt) compose_state = 0;
1948
1949 /* Sanitize the number pad if not using a PC NumPad */
1950 if( left_alt || (app_keypad_keys && cfg.funky_type != 2)
1951 || cfg.funky_type == 3 || cfg.nethack_keypad || compose_state )
1952 {
1953 if ((HIWORD(lParam)&KF_EXTENDED) == 0)
1954 {
1955 int nParam = 0;
1956 switch(wParam)
1957 {
1958 case VK_INSERT: nParam = VK_NUMPAD0; break;
1959 case VK_END: nParam = VK_NUMPAD1; break;
1960 case VK_DOWN: nParam = VK_NUMPAD2; break;
1961 case VK_NEXT: nParam = VK_NUMPAD3; break;
1962 case VK_LEFT: nParam = VK_NUMPAD4; break;
1963 case VK_CLEAR: nParam = VK_NUMPAD5; break;
1964 case VK_RIGHT: nParam = VK_NUMPAD6; break;
1965 case VK_HOME: nParam = VK_NUMPAD7; break;
1966 case VK_UP: nParam = VK_NUMPAD8; break;
1967 case VK_PRIOR: nParam = VK_NUMPAD9; break;
1968 case VK_DELETE: nParam = VK_DECIMAL; break;
1969 }
1970 if (nParam)
1971 {
1972 if (keystate[VK_NUMLOCK]&1) shift_state |= 1;
1973 wParam = nParam;
1974 }
1975 }
1976 }
1977
1978 /* If a key is pressed and AltGr is not active */
1979 if (key_down && (keystate[VK_RMENU]&0x80) == 0 && !compose_state)
1980 {
1981 /* Okay, prepare for most alts then ...*/
1982 if (left_alt) *p++ = '\033';
1983
1984 /* Lets see if it's a pattern we know all about ... */
1985 if (wParam == VK_PRIOR && shift_state == 1) {
1986 SendMessage (hwnd, WM_VSCROLL, SB_PAGEUP, 0);
1987 return 0;
1988 }
1989 if (wParam == VK_NEXT && shift_state == 1) {
1990 SendMessage (hwnd, WM_VSCROLL, SB_PAGEDOWN, 0);
1991 return 0;
1992 }
1993 if (wParam == VK_INSERT && shift_state == 1) {
1994 term_mouse (MB_PASTE, MA_CLICK, 0, 0);
1995 term_mouse (MB_PASTE, MA_RELEASE, 0, 0);
1996 return 0;
1997 }
1998 if (left_alt && wParam == VK_F4 && cfg.alt_f4) {
1999 return -1;
2000 }
2001 if (left_alt && wParam == VK_SPACE && cfg.alt_space) {
2002
2003 SendMessage (hwnd, WM_SYSCOMMAND, SC_KEYMENU, 0);
2004 return -1;
2005 }
2006 /* Control-Numlock for app-keypad mode switch */
2007 if (wParam == VK_PAUSE && shift_state == 2) {
2008 app_keypad_keys ^= 1;
2009 return 0;
2010 }
2011
2012 /* Nethack keypad */
2013 if (cfg.nethack_keypad && !left_alt) {
2014 switch(wParam) {
2015 case VK_NUMPAD1: *p++ = shift_state ? 'B': 'b'; return p-output;
2016 case VK_NUMPAD2: *p++ = shift_state ? 'J': 'j'; return p-output;
2017 case VK_NUMPAD3: *p++ = shift_state ? 'N': 'n'; return p-output;
2018 case VK_NUMPAD4: *p++ = shift_state ? 'H': 'h'; return p-output;
2019 case VK_NUMPAD5: *p++ = shift_state ? '.': '.'; return p-output;
2020 case VK_NUMPAD6: *p++ = shift_state ? 'L': 'l'; return p-output;
2021 case VK_NUMPAD7: *p++ = shift_state ? 'Y': 'y'; return p-output;
2022 case VK_NUMPAD8: *p++ = shift_state ? 'K': 'k'; return p-output;
2023 case VK_NUMPAD9: *p++ = shift_state ? 'U': 'u'; return p-output;
2024 }
2025 }
2026
2027 /* Application Keypad */
2028 if (!left_alt) {
2029 int xkey = 0;
2030
2031 if ( cfg.funky_type == 3 ||
2032 ( cfg.funky_type <= 1 && app_keypad_keys)) switch(wParam) {
2033 case VK_EXECUTE: xkey = 'P'; break;
2034 case VK_DIVIDE: xkey = 'Q'; break;
2035 case VK_MULTIPLY:xkey = 'R'; break;
2036 case VK_SUBTRACT:xkey = 'S'; break;
2037 }
2038 if(app_keypad_keys) switch(wParam) {
2039 case VK_NUMPAD0: xkey = 'p'; break;
2040 case VK_NUMPAD1: xkey = 'q'; break;
2041 case VK_NUMPAD2: xkey = 'r'; break;
2042 case VK_NUMPAD3: xkey = 's'; break;
2043 case VK_NUMPAD4: xkey = 't'; break;
2044 case VK_NUMPAD5: xkey = 'u'; break;
2045 case VK_NUMPAD6: xkey = 'v'; break;
2046 case VK_NUMPAD7: xkey = 'w'; break;
2047 case VK_NUMPAD8: xkey = 'x'; break;
2048 case VK_NUMPAD9: xkey = 'y'; break;
2049
2050 case VK_DECIMAL: xkey = 'n'; break;
2051 case VK_ADD: if(cfg.funky_type==2) {
2052 if(shift_state) xkey = 'l';
2053 else xkey = 'k';
2054 } else if(shift_state) xkey = 'm';
2055 else xkey = 'l';
2056 break;
2057
2058 case VK_DIVIDE: if(cfg.funky_type==2) xkey = 'o'; break;
2059 case VK_MULTIPLY:if(cfg.funky_type==2) xkey = 'j'; break;
2060 case VK_SUBTRACT:if(cfg.funky_type==2) xkey = 'm'; break;
2061
2062 case VK_RETURN:
2063 if (HIWORD(lParam)&KF_EXTENDED)
2064 xkey = 'M';
2065 break;
2066 }
2067 if(xkey)
2068 {
2069 if (vt52_mode)
2070 {
2071 if (xkey>='P' && xkey<='S')
2072 p += sprintf((char *)p, "\x1B%c", xkey);
2073 else
2074 p += sprintf((char *)p, "\x1B?%c", xkey);
2075 }
2076 else
2077 p += sprintf((char *)p, "\x1BO%c", xkey);
2078 return p - output;
2079 }
2080 }
2081
2082 if (wParam == VK_BACK && shift_state == 0 ) /* Backspace */
2083 {
2084 *p++ = (cfg.bksp_is_delete ? 0x7F : 0x08);
2085 return p-output;
2086 }
2087 if (wParam == VK_TAB && shift_state == 1 ) /* Shift tab */
2088 {
2089 *p++ = 0x1B; *p++ = '['; *p++ = 'Z'; return p - output;
2090 }
2091 if (wParam == VK_SPACE && shift_state == 2 ) /* Ctrl-Space */
2092 {
2093 *p++ = 0; return p - output;
2094 }
2095 if (wParam == VK_SPACE && shift_state == 3 ) /* Ctrl-Shift-Space */
2096 {
2097 *p++ = 160; return p - output;
2098 }
2099 if (wParam == VK_CANCEL && shift_state == 2 ) /* Ctrl-Break */
2100 {
2101 *p++ = 3; return p - output;
2102 }
2103 /* Control-2 to Control-8 are special */
2104 if (shift_state == 2 && wParam >= '2' && wParam <= '8')
2105 {
2106 *p++ = "\000\033\034\035\036\037\177"[wParam-'2'];
2107 return p - output;
2108 }
2109 if (shift_state == 2 && wParam == 0xBD) {
2110 *p++ = 0x1F;
2111 return p - output;
2112 }
2113 if (shift_state == 2 && wParam == 0xDF) {
2114 *p++ = 0x1C;
2115 return p - output;
2116 }
2117 if (shift_state == 0 && wParam == VK_RETURN && cr_lf_return) {
2118 *p++ = '\r'; *p++ = '\n';
2119 return p - output;
2120 }
2121
2122 /*
2123 * Next, all the keys that do tilde codes. (ESC '[' nn '~',
2124 * for integer decimal nn.)
2125 *
2126 * We also deal with the weird ones here. Linux VCs replace F1
2127 * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
2128 * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
2129 * respectively.
2130 */
2131 code = 0;
2132 switch (wParam) {
2133 case VK_F1: code = (keystate[VK_SHIFT] & 0x80 ? 23 : 11); break;
2134 case VK_F2: code = (keystate[VK_SHIFT] & 0x80 ? 24 : 12); break;
2135 case VK_F3: code = (keystate[VK_SHIFT] & 0x80 ? 25 : 13); break;
2136 case VK_F4: code = (keystate[VK_SHIFT] & 0x80 ? 26 : 14); break;
2137 case VK_F5: code = (keystate[VK_SHIFT] & 0x80 ? 28 : 15); break;
2138 case VK_F6: code = (keystate[VK_SHIFT] & 0x80 ? 29 : 17); break;
2139 case VK_F7: code = (keystate[VK_SHIFT] & 0x80 ? 31 : 18); break;
2140 case VK_F8: code = (keystate[VK_SHIFT] & 0x80 ? 32 : 19); break;
2141 case VK_F9: code = (keystate[VK_SHIFT] & 0x80 ? 33 : 20); break;
2142 case VK_F10: code = (keystate[VK_SHIFT] & 0x80 ? 34 : 21); break;
2143 case VK_F11: code = 23; break;
2144 case VK_F12: code = 24; break;
2145 case VK_F13: code = 25; break;
2146 case VK_F14: code = 26; break;
2147 case VK_F15: code = 28; break;
2148 case VK_F16: code = 29; break;
2149 case VK_F17: code = 31; break;
2150 case VK_F18: code = 32; break;
2151 case VK_F19: code = 33; break;
2152 case VK_F20: code = 34; break;
2153 case VK_HOME: code = 1; break;
2154 case VK_INSERT: code = 2; break;
2155 case VK_DELETE: code = 3; break;
2156 case VK_END: code = 4; break;
2157 case VK_PRIOR: code = 5; break;
2158 case VK_NEXT: code = 6; break;
2159 }
2160 /* Reorder edit keys to physical order */
2161 if (cfg.funky_type == 3 && code <= 6 ) code = "\0\2\1\4\5\3\6"[code];
2162
2163 if (cfg.funky_type == 1 && code >= 11 && code <= 15) {
2164 p += sprintf((char *)p, "\x1B[[%c", code + 'A' - 11);
2165 return p - output;
2166 }
2167 if (cfg.funky_type == 2 && code >= 11 && code <= 14) {
2168 if (vt52_mode)
2169 p += sprintf((char *)p, "\x1B%c", code + 'P' - 11);
2170 else
2171 p += sprintf((char *)p, "\x1BO%c", code + 'P' - 11);
2172 return p - output;
2173 }
2174 if (cfg.rxvt_homeend && (code == 1 || code == 4)) {
2175 p += sprintf((char *)p, code == 1 ? "\x1B[H" : "\x1BOw");
2176 return p - output;
2177 }
2178 if (code) {
2179 p += sprintf((char *)p, "\x1B[%d~", code);
2180 return p - output;
2181 }
2182
2183 /*
2184 * Now the remaining keys (arrows and Keypad 5. Keypad 5 for
2185 * some reason seems to send VK_CLEAR to Windows...).
2186 */
2187 {
2188 char xkey = 0;
2189 switch (wParam) {
2190 case VK_UP: xkey = 'A'; break;
2191 case VK_DOWN: xkey = 'B'; break;
2192 case VK_RIGHT: xkey = 'C'; break;
2193 case VK_LEFT: xkey = 'D'; break;
2194 case VK_CLEAR: xkey = 'G'; break;
2195 }
2196 if (xkey)
2197 {
2198 if (vt52_mode)
2199 p += sprintf((char *)p, "\x1B%c", xkey);
2200 else if (app_cursor_keys)
2201 p += sprintf((char *)p, "\x1BO%c", xkey);
2202 else
2203 p += sprintf((char *)p, "\x1B[%c", xkey);
2204 return p - output;
2205 }
2206 }
2207
2208 /*
2209 * Finally, deal with Return ourselves. (Win95 seems to
2210 * foul it up when Alt is pressed, for some reason.)
2211 */
2212 if (wParam == VK_RETURN) /* Return */
2213 {
2214 *p++ = 0x0D;
2215 return p-output;
2216 }
2217 }
2218
2219 /* Okay we've done everything interesting; let windows deal with
2220 * the boring stuff */
2221 {
2222 BOOL capsOn=keystate[VK_CAPITAL] !=0;
2223
2224 /* helg: clear CAPS LOCK state if caps lock switches to cyrillic */
2225 if(cfg.xlat_capslockcyr)
2226 keystate[VK_CAPITAL] = 0;
2227
2228 r = ToAscii (wParam, scan, keystate, keys, 0);
2229 if(r>0)
2230 {
2231 p = output;
2232 for(i=0; i<r; i++)
2233 {
2234 unsigned char ch = (unsigned char)keys[i];
2235
2236 if (compose_state==2 && (ch&0x80) == 0 && ch>' ') {
2237 compose_char = ch;
2238 compose_state ++;
2239 continue;
2240 }
2241 if (compose_state==3 && (ch&0x80) == 0 && ch>' ') {
2242 int nc;
2243 compose_state = 0;
2244
2245 if ((nc=check_compose(compose_char,ch)) == -1)
2246 {
2247 MessageBeep(MB_ICONHAND);
2248 return 0;
2249 }
2250 *p++ = xlat_kbd2tty((unsigned char)nc);
2251 return p-output;
2252 }
2253
2254 compose_state = 0;
2255
2256 if( left_alt && key_down ) *p++ = '\033';
2257 if (!key_down)
2258 *p++ = ch;
2259 else
2260 {
2261 if(capsOn)
2262 ch = xlat_latkbd2win(ch);
2263 *p++ = xlat_kbd2tty(ch);
2264 }
2265 }
2266
2267 /* This is so the ALT-Numpad and dead keys work correctly. */
2268 keys[0] = 0;
2269
2270 return p-output;
2271 }
2272 }
2273
2274 /* This stops ALT press-release doing a 'COMMAND MENU' function */
2275 if (!cfg.alt_only) {
2276 if (message == WM_SYSKEYUP && wParam == VK_MENU)
2277 return 0;
2278 }
2279
2280 return -1;
2281 }
2282
2283 void set_title (char *title) {
2284 sfree (window_name);
2285 window_name = smalloc(1+strlen(title));
2286 strcpy (window_name, title);
2287 if (cfg.win_name_always || !IsIconic(hwnd))
2288 SetWindowText (hwnd, title);
2289 }
2290
2291 void set_icon (char *title) {
2292 sfree (icon_name);
2293 icon_name = smalloc(1+strlen(title));
2294 strcpy (icon_name, title);
2295 if (!cfg.win_name_always && IsIconic(hwnd))
2296 SetWindowText (hwnd, title);
2297 }
2298
2299 void set_sbar (int total, int start, int page) {
2300 SCROLLINFO si;
2301
2302 if (!cfg.scrollbar) return;
2303
2304 si.cbSize = sizeof(si);
2305 si.fMask = SIF_ALL | SIF_DISABLENOSCROLL;
2306 si.nMin = 0;
2307 si.nMax = total - 1;
2308 si.nPage = page;
2309 si.nPos = start;
2310 if (hwnd)
2311 SetScrollInfo (hwnd, SB_VERT, &si, TRUE);
2312 }
2313
2314 Context get_ctx(void) {
2315 HDC hdc;
2316 if (hwnd) {
2317 hdc = GetDC (hwnd);
2318 if (hdc && pal)
2319 SelectPalette (hdc, pal, FALSE);
2320 return hdc;
2321 } else
2322 return NULL;
2323 }
2324
2325 void free_ctx (Context ctx) {
2326 SelectPalette (ctx, GetStockObject (DEFAULT_PALETTE), FALSE);
2327 ReleaseDC (hwnd, ctx);
2328 }
2329
2330 static void real_palette_set (int n, int r, int g, int b) {
2331 if (pal) {
2332 logpal->palPalEntry[n].peRed = r;
2333 logpal->palPalEntry[n].peGreen = g;
2334 logpal->palPalEntry[n].peBlue = b;
2335 logpal->palPalEntry[n].peFlags = PC_NOCOLLAPSE;
2336 colours[n] = PALETTERGB(r, g, b);
2337 SetPaletteEntries (pal, 0, NCOLOURS, logpal->palPalEntry);
2338 } else
2339 colours[n] = RGB(r, g, b);
2340 }
2341
2342 void palette_set (int n, int r, int g, int b) {
2343 static const int first[21] = {
2344 0, 2, 4, 6, 8, 10, 12, 14,
2345 1, 3, 5, 7, 9, 11, 13, 15,
2346 16, 17, 18, 20, 22
2347 };
2348 real_palette_set (first[n], r, g, b);
2349 if (first[n] >= 18)
2350 real_palette_set (first[n]+1, r, g, b);
2351 if (pal) {
2352 HDC hdc = get_ctx();
2353 UnrealizeObject (pal);
2354 RealizePalette (hdc);
2355 free_ctx (hdc);
2356 }
2357 }
2358
2359 void palette_reset (void) {
2360 int i;
2361
2362 for (i = 0; i < NCOLOURS; i++) {
2363 if (pal) {
2364 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
2365 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
2366 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
2367 logpal->palPalEntry[i].peFlags = 0;
2368 colours[i] = PALETTERGB(defpal[i].rgbtRed,
2369 defpal[i].rgbtGreen,
2370 defpal[i].rgbtBlue);
2371 } else
2372 colours[i] = RGB(defpal[i].rgbtRed,
2373 defpal[i].rgbtGreen,
2374 defpal[i].rgbtBlue);
2375 }
2376
2377 if (pal) {
2378 HDC hdc;
2379 SetPaletteEntries (pal, 0, NCOLOURS, logpal->palPalEntry);
2380 hdc = get_ctx();
2381 RealizePalette (hdc);
2382 free_ctx (hdc);
2383 }
2384 }
2385
2386 void write_clip (void *data, int len, int must_deselect) {
2387 HGLOBAL clipdata;
2388 void *lock;
2389
2390 clipdata = GlobalAlloc (GMEM_DDESHARE | GMEM_MOVEABLE, len + 1);
2391 if (!clipdata)
2392 return;
2393 lock = GlobalLock (clipdata);
2394 if (!lock)
2395 return;
2396 memcpy (lock, data, len);
2397 ((unsigned char *) lock) [len] = 0;
2398 GlobalUnlock (clipdata);
2399
2400 if (!must_deselect)
2401 SendMessage (hwnd, WM_IGNORE_CLIP, TRUE, 0);
2402
2403 if (OpenClipboard (hwnd)) {
2404 EmptyClipboard();
2405 SetClipboardData (CF_TEXT, clipdata);
2406 CloseClipboard();
2407 } else
2408 GlobalFree (clipdata);
2409
2410 if (!must_deselect)
2411 SendMessage (hwnd, WM_IGNORE_CLIP, FALSE, 0);
2412 }
2413
2414 void get_clip (void **p, int *len) {
2415 static HGLOBAL clipdata = NULL;
2416
2417 if (!p) {
2418 if (clipdata)
2419 GlobalUnlock (clipdata);
2420 clipdata = NULL;
2421 return;
2422 } else {
2423 if (OpenClipboard (NULL)) {
2424 clipdata = GetClipboardData (CF_TEXT);
2425 CloseClipboard();
2426 if (clipdata) {
2427 *p = GlobalLock (clipdata);
2428 if (*p) {
2429 *len = strlen(*p);
2430 return;
2431 }
2432 }
2433 }
2434 }
2435
2436 *p = NULL;
2437 *len = 0;
2438 }
2439
2440 /*
2441 * Move `lines' lines from position `from' to position `to' in the
2442 * window.
2443 */
2444 void optimised_move (int to, int from, int lines) {
2445 RECT r;
2446 int min, max;
2447
2448 min = (to < from ? to : from);
2449 max = to + from - min;
2450
2451 r.left = 0; r.right = cols * font_width;
2452 r.top = min * font_height; r.bottom = (max+lines) * font_height;
2453 ScrollWindow (hwnd, 0, (to - from) * font_height, &r, &r);
2454 }
2455
2456 /*
2457 * Print a message box and perform a fatal exit.
2458 */
2459 void fatalbox(char *fmt, ...) {
2460 va_list ap;
2461 char stuff[200];
2462
2463 va_start(ap, fmt);
2464 vsprintf(stuff, fmt, ap);
2465 va_end(ap);
2466 MessageBox(hwnd, stuff, "PuTTY Fatal Error", MB_ICONERROR | MB_OK);
2467 exit(1);
2468 }
2469
2470 /*
2471 * Beep.
2472 */
2473 void beep(int errorbeep) {
2474 static long last_beep = 0;
2475 long now, beep_diff;
2476
2477 now = GetTickCount();
2478 beep_diff = now-last_beep;
2479
2480 /* Make sure we only respond to one beep per packet or so */
2481 if (beep_diff>=0 && beep_diff<50)
2482 return;
2483
2484 if(errorbeep)
2485 MessageBeep(MB_ICONHAND);
2486 else
2487 MessageBeep(MB_OK);
2488
2489 last_beep = GetTickCount();
2490 }