Rationalised host key storage. Also started code reorg: persistent-state
[u/mdw/putty] / window.c
Content-type: text/html git.distorted.org.uk Git - u/mdw/putty/blame - window.c


500 - Internal Server Error

Malformed UTF-8 character (fatal) at (eval 5) line 1, <$fd> line 3849.
CommitLineData
374330e2 1#include <windows.h>
2#include <commctrl.h>
4d331a77 3#ifndef AUTO_WINSOCK
4#ifdef WINSOCK_TWO
5#include <winsock2.h>
6#else
374330e2 7#include <winsock.h>
4d331a77 8#endif
9#endif
374330e2 10#include <stdio.h>
11#include <stdlib.h>
1d470ad2 12#include <ctype.h>
374330e2 13
14#define PUTTY_DO_GLOBALS /* actually _define_ globals */
15#include "putty.h"
d5859615 16#include "storage.h"
374330e2 17#include "win_res.h"
18
6833a413 19#define IDM_SHOWLOG 0x0010
20#define IDM_NEWSESS 0x0020
21#define IDM_DUPSESS 0x0030
22#define IDM_RECONF 0x0040
23#define IDM_CLRSB 0x0050
24#define IDM_RESET 0x0060
25#define IDM_TEL_AYT 0x0070
26#define IDM_TEL_BRK 0x0080
27#define IDM_TEL_SYNCH 0x0090
28#define IDM_TEL_EC 0x00a0
29#define IDM_TEL_EL 0x00b0
30#define IDM_TEL_GA 0x00c0
31#define IDM_TEL_NOP 0x00d0
32#define IDM_TEL_ABORT 0x00e0
33#define IDM_TEL_AO 0x00f0
34#define IDM_TEL_IP 0x0100
35#define IDM_TEL_SUSP 0x0110
36#define IDM_TEL_EOR 0x0120
37#define IDM_TEL_EOF 0x0130
38#define IDM_ABOUT 0x0140
39#define IDM_SAVEDSESS 0x0150
40
41#define IDM_SAVED_MIN 0x1000
42#define IDM_SAVED_MAX 0x2000
374330e2 43
59ad2c03 44#define WM_IGNORE_SIZE (WM_XUSER + 1)
45#define WM_IGNORE_CLIP (WM_XUSER + 2)
374330e2 46
996c8c3b 47static LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
c9def1b8 48static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam, unsigned char *output);
374330e2 49static void cfgtopalette(void);
50static void init_palette(void);
59ad2c03 51static void init_fonts(int);
374330e2 52
53static int extra_width, extra_height;
54
59ad2c03 55static int pending_netevent = 0;
56static WPARAM pend_netevent_wParam = 0;
57static LPARAM pend_netevent_lParam = 0;
58static void enact_pending_netevent(void);
59
374330e2 60#define FONT_NORMAL 0
61#define FONT_BOLD 1
62#define FONT_UNDERLINE 2
63#define FONT_BOLDUND 3
64#define FONT_OEM 4
65#define FONT_OEMBOLD 5
66#define FONT_OEMBOLDUND 6
67#define FONT_OEMUND 7
68static HFONT fonts[8];
09798031 69static int font_needs_hand_underlining;
374330e2 70static enum {
71 BOLD_COLOURS, BOLD_SHADOW, BOLD_FONT
72} bold_mode;
73static enum {
74 UND_LINE, UND_FONT
75} und_mode;
76static int descent;
77
78#define NCOLOURS 24
79static COLORREF colours[NCOLOURS];
80static HPALETTE pal;
81static LPLOGPALETTE logpal;
82static RGBTRIPLE defpal[NCOLOURS];
83
84static HWND hwnd;
85
86static int dbltime, lasttime, lastact;
87static Mouse_Button lastbtn;
88
89static char *window_name, *icon_name;
90
6f34e365 91static Ldisc *real_ldisc;
92
93void begin_session(void) {
94 ldisc = real_ldisc;
95}
96
374330e2 97int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) {
98 static char appname[] = "PuTTY";
99 WORD winsock_ver;
100 WSADATA wsadata;
101 WNDCLASS wndclass;
102 MSG msg;
103 int guess_width, guess_height;
104
73251d5d 105 putty_inst = inst;
67779be7 106 flags = FLAG_VERBOSE | FLAG_INTERACTIVE;
73251d5d 107
374330e2 108 winsock_ver = MAKEWORD(1, 1);
109 if (WSAStartup(winsock_ver, &wsadata)) {
110 MessageBox(NULL, "Unable to initialise WinSock", "WinSock Error",
111 MB_OK | MB_ICONEXCLAMATION);
112 return 1;
113 }
114 if (LOBYTE(wsadata.wVersion) != 1 || HIBYTE(wsadata.wVersion) != 1) {
115 MessageBox(NULL, "WinSock version is incompatible with 1.1",
116 "WinSock Error", MB_OK | MB_ICONEXCLAMATION);
117 WSACleanup();
118 return 1;
119 }
120 /* WISHLIST: maybe allow config tweaking even if winsock not present? */
121
122 InitCommonControls();
123
124 /*
125 * Process the command line.
126 */
127 {
128 char *p;
129
e277c42d 130 default_protocol = DEFAULT_PROTOCOL;
131 default_port = DEFAULT_PORT;
132
374330e2 133 do_defaults(NULL);
134
135 p = cmdline;
136 while (*p && isspace(*p)) p++;
137
138 /*
e277c42d 139 * Process command line options first. Yes, this can be
140 * done better, and it will be as soon as I have the
141 * energy...
142 */
143 while (*p == '-') {
144 char *q = p + strcspn(p, " \t");
145 p++;
146 if (q == p + 3 &&
147 tolower(p[0]) == 's' &&
148 tolower(p[1]) == 's' &&
149 tolower(p[2]) == 'h') {
150 default_protocol = cfg.protocol = PROT_SSH;
151 default_port = cfg.port = 22;
5fd04f07 152 } else if (q == p + 3 &&
153 tolower(p[0]) == 'l' &&
154 tolower(p[1]) == 'o' &&
155 tolower(p[2]) == 'g') {
156 logfile = "putty.log";
de3df031 157 } else if (q == p + 7 &&
158 tolower(p[0]) == 'c' &&
159 tolower(p[1]) == 'l' &&
160 tolower(p[2]) == 'e' &&
161 tolower(p[3]) == 'a' &&
162 tolower(p[4]) == 'n' &&
163 tolower(p[5]) == 'u' &&
164 tolower(p[6]) == 'p') {
165 /*
166 * `putty -cleanup'. Remove all registry entries
167 * associated with PuTTY, and also find and delete
168 * the random seed file.
169 */
170 if (MessageBox(NULL,
171 "This procedure will remove ALL Registry\n"
172 "entries associated with PuTTY, and will\n"
173 "also remove the PuTTY random seed file.\n"
174 "\n"
175 "THIS PROCESS WILL DESTROY YOUR SAVED\n"
176 "SESSIONS. Are you really sure you want\n"
177 "to continue?",
178 "PuTTY Warning",
179 MB_YESNO | MB_ICONWARNING) == IDYES) {
d5859615 180 cleanup_all();
de3df031 181 }
182 exit(0);
e277c42d 183 }
184 p = q + strspn(q, " \t");
185 }
186
187 /*
374330e2 188 * An initial @ means to activate a saved session.
189 */
190 if (*p == '@') {
191 do_defaults (p+1);
192 if (!*cfg.host && !do_config()) {
193 WSACleanup();
194 return 0;
195 }
196 } else if (*p == '&') {
197 /*
198 * An initial & means we've been given a command line
199 * containing the hex value of a HANDLE for a file
200 * mapping object, which we must then extract as a
201 * config.
202 */
203 HANDLE filemap;
204 Config *cp;
1d470ad2 205 if (sscanf(p+1, "%p", &filemap) == 1 &&
374330e2 206 (cp = MapViewOfFile(filemap, FILE_MAP_READ,
207 0, 0, sizeof(Config))) != NULL) {
208 cfg = *cp;
209 UnmapViewOfFile(cp);
210 CloseHandle(filemap);
211 } else if (!do_config()) {
212 WSACleanup();
213 return 0;
214 }
215 } else if (*p) {
216 char *q = p;
4e8bc59f 217 /*
70887be9 218 * If the hostname starts with "telnet:", set the
4e8bc59f 219 * protocol to Telnet and process the string as a
220 * Telnet URL.
221 */
70887be9 222 if (!strncmp(q, "telnet:", 7)) {
ab21de77 223 char c;
224
70887be9 225 q += 7;
226 if (q[0] == '/' && q[1] == '/')
227 q += 2;
4e8bc59f 228 cfg.protocol = PROT_TELNET;
229 p = q;
ab21de77 230 while (*p && *p != ':' && *p != '/') p++;
231 c = *p;
232 if (*p)
4e8bc59f 233 *p++ = '\0';
ab21de77 234 if (c == ':')
4e8bc59f 235 cfg.port = atoi(p);
ab21de77 236 else
4e8bc59f 237 cfg.port = -1;
238 strncpy (cfg.host, q, sizeof(cfg.host)-1);
239 cfg.host[sizeof(cfg.host)-1] = '\0';
240 } else {
241 while (*p && !isspace(*p)) p++;
242 if (*p)
243 *p++ = '\0';
244 strncpy (cfg.host, q, sizeof(cfg.host)-1);
245 cfg.host[sizeof(cfg.host)-1] = '\0';
246 while (*p && isspace(*p)) p++;
247 if (*p)
248 cfg.port = atoi(p);
249 else
250 cfg.port = -1;
251 }
374330e2 252 } else {
253 if (!do_config()) {
254 WSACleanup();
255 return 0;
256 }
257 }
13eafebf 258
259 /* See if host is of the form user@host */
260 if (cfg.host[0] != '\0') {
261 char *atsign = strchr(cfg.host, '@');
262 /* Make sure we're not overflowing the user field */
263 if (atsign) {
264 if (atsign-cfg.host < sizeof cfg.username) {
265 strncpy (cfg.username, cfg.host, atsign-cfg.host);
266 cfg.username[atsign-cfg.host] = '\0';
267 }
268 memmove(cfg.host, atsign+1, 1+strlen(atsign+1));
269 }
270 }
374330e2 271 }
272
89ee5268 273 /*
274 * Select protocol. This is farmed out into a table in a
275 * separate file to enable an ssh-free variant.
276 */
277 {
278 int i;
279 back = NULL;
280 for (i = 0; backends[i].backend != NULL; i++)
281 if (backends[i].protocol == cfg.protocol) {
282 back = backends[i].backend;
283 break;
284 }
285 if (back == NULL) {
286 MessageBox(NULL, "Unsupported protocol number found",
287 "PuTTY Internal Error", MB_OK | MB_ICONEXCLAMATION);
288 WSACleanup();
289 return 1;
290 }
291 }
5bc238bb 292
6f34e365 293 real_ldisc = (cfg.ldisc_term ? &ldisc_term : &ldisc_simple);
294 /* To start with, we use the simple line discipline, so we can
295 * type passwords etc without fear of them being echoed... */
296 ldisc = &ldisc_simple;
374330e2 297
298 if (!prev) {
299 wndclass.style = 0;
300 wndclass.lpfnWndProc = WndProc;
301 wndclass.cbClsExtra = 0;
302 wndclass.cbWndExtra = 0;
303 wndclass.hInstance = inst;
304 wndclass.hIcon = LoadIcon (inst,
305 MAKEINTRESOURCE(IDI_MAINICON));
1bb542b2 306 wndclass.hCursor = LoadCursor (NULL, IDC_IBEAM);
374330e2 307 wndclass.hbrBackground = GetStockObject (BLACK_BRUSH);
308 wndclass.lpszMenuName = NULL;
309 wndclass.lpszClassName = appname;
310
311 RegisterClass (&wndclass);
312 }
313
314 hwnd = NULL;
315
316 savelines = cfg.savelines;
317 term_init();
318
319 cfgtopalette();
320
321 /*
322 * Guess some defaults for the window size. This all gets
323 * updated later, so we don't really care too much. However, we
324 * do want the font width/height guesses to correspond to a
325 * large font rather than a small one...
326 */
327
328 font_width = 10;
329 font_height = 20;
330 extra_width = 25;
331 extra_height = 28;
332 term_size (cfg.height, cfg.width, cfg.savelines);
333 guess_width = extra_width + font_width * cols;
334 guess_height = extra_height + font_height * rows;
335 {
336 RECT r;
337 HWND w = GetDesktopWindow();
338 GetWindowRect (w, &r);
339 if (guess_width > r.right - r.left)
340 guess_width = r.right - r.left;
341 if (guess_height > r.bottom - r.top)
342 guess_height = r.bottom - r.top;
343 }
344
c9def1b8 345 {
346 int winmode = WS_OVERLAPPEDWINDOW|WS_VSCROLL;
347 if (!cfg.scrollbar) winmode &= ~(WS_VSCROLL);
348 if (cfg.locksize) winmode &= ~(WS_THICKFRAME|WS_MAXIMIZEBOX);
349 hwnd = CreateWindow (appname, appname,
350 winmode,
351 CW_USEDEFAULT, CW_USEDEFAULT,
352 guess_width, guess_height,
353 NULL, NULL, inst, NULL);
354 }
374330e2 355
356 /*
357 * Initialise the fonts, simultaneously correcting the guesses
358 * for font_{width,height}.
359 */
360 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
361 und_mode = UND_FONT;
59ad2c03 362 init_fonts(0);
374330e2 363
364 /*
365 * Correct the guesses for extra_{width,height}.
366 */
367 {
368 RECT cr, wr;
369 GetWindowRect (hwnd, &wr);
370 GetClientRect (hwnd, &cr);
371 extra_width = wr.right - wr.left - cr.right + cr.left;
372 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
373 }
374
375 /*
376 * Resize the window, now we know what size we _really_ want it
377 * to be.
378 */
379 guess_width = extra_width + font_width * cols;
380 guess_height = extra_height + font_height * rows;
381 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
382 SetWindowPos (hwnd, NULL, 0, 0, guess_width, guess_height,
383 SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER);
384
385 /*
386 * Initialise the scroll bar.
387 */
388 {
389 SCROLLINFO si;
390
391 si.cbSize = sizeof(si);
c9def1b8 392 si.fMask = SIF_ALL | SIF_DISABLENOSCROLL;
374330e2 393 si.nMin = 0;
394 si.nMax = rows-1;
395 si.nPage = rows;
396 si.nPos = 0;
397 SetScrollInfo (hwnd, SB_VERT, &si, FALSE);
398 }
399
400 /*
401 * Start up the telnet connection.
402 */
403 {
404 char *error;
405 char msg[1024];
406 char *realhost;
407
408 error = back->init (hwnd, cfg.host, cfg.port, &realhost);
409 if (error) {
410 sprintf(msg, "Unable to open connection:\n%s", error);
411 MessageBox(NULL, msg, "PuTTY Error", MB_ICONERROR | MB_OK);
412 return 0;
413 }
414 window_name = icon_name = NULL;
5ac36532 415 sprintf(msg, "%s - PuTTY", realhost);
374330e2 416 set_title (msg);
417 set_icon (msg);
418 }
419
d85548fe 420 session_closed = FALSE;
421
374330e2 422 /*
423 * Set up the input and output buffers.
424 */
c9def1b8 425 inbuf_head = 0;
374330e2 426 outbuf_reap = outbuf_head = 0;
427
428 /*
429 * Prepare the mouse handler.
430 */
431 lastact = MA_NOTHING;
432 lastbtn = MB_NOTHING;
433 dbltime = GetDoubleClickTime();
434
435 /*
436 * Set up the session-control options on the system menu.
437 */
438 {
439 HMENU m = GetSystemMenu (hwnd, FALSE);
0a4aa984 440 HMENU p,s;
441 int i;
374330e2 442
443 AppendMenu (m, MF_SEPARATOR, 0, 0);
444 if (cfg.protocol == PROT_TELNET) {
445 p = CreateMenu();
446 AppendMenu (p, MF_ENABLED, IDM_TEL_AYT, "Are You There");
447 AppendMenu (p, MF_ENABLED, IDM_TEL_BRK, "Break");
448 AppendMenu (p, MF_ENABLED, IDM_TEL_SYNCH, "Synch");
449 AppendMenu (p, MF_SEPARATOR, 0, 0);
450 AppendMenu (p, MF_ENABLED, IDM_TEL_EC, "Erase Character");
451 AppendMenu (p, MF_ENABLED, IDM_TEL_EL, "Erase Line");
452 AppendMenu (p, MF_ENABLED, IDM_TEL_GA, "Go Ahead");
453 AppendMenu (p, MF_ENABLED, IDM_TEL_NOP, "No Operation");
454 AppendMenu (p, MF_SEPARATOR, 0, 0);
455 AppendMenu (p, MF_ENABLED, IDM_TEL_ABORT, "Abort Process");
456 AppendMenu (p, MF_ENABLED, IDM_TEL_AO, "Abort Output");
457 AppendMenu (p, MF_ENABLED, IDM_TEL_IP, "Interrupt Process");
458 AppendMenu (p, MF_ENABLED, IDM_TEL_SUSP, "Suspend Process");
459 AppendMenu (p, MF_SEPARATOR, 0, 0);
460 AppendMenu (p, MF_ENABLED, IDM_TEL_EOR, "End Of Record");
461 AppendMenu (p, MF_ENABLED, IDM_TEL_EOF, "End Of File");
462 AppendMenu (m, MF_POPUP | MF_ENABLED, (UINT) p, "Telnet Command");
374330e2 463 AppendMenu (m, MF_SEPARATOR, 0, 0);
464 }
45c4ea18 465 AppendMenu (m, MF_ENABLED, IDM_SHOWLOG, "&Event Log");
c5e9c988 466 AppendMenu (m, MF_SEPARATOR, 0, 0);
45c4ea18 467 AppendMenu (m, MF_ENABLED, IDM_NEWSESS, "Ne&w Session");
468 AppendMenu (m, MF_ENABLED, IDM_DUPSESS, "&Duplicate Session");
0a4aa984 469 s = CreateMenu();
470 get_sesslist(TRUE);
471 for (i = 1 ; i < ((nsessions < 256) ? nsessions : 256) ; i++)
472 AppendMenu (s, MF_ENABLED, IDM_SAVED_MIN + (16 * i) , sessions[i]);
45c4ea18 473 AppendMenu (m, MF_POPUP | MF_ENABLED, (UINT) s, "Sa&ved Sessions");
474 AppendMenu (m, MF_ENABLED, IDM_RECONF, "Chan&ge Settings");
374330e2 475 AppendMenu (m, MF_SEPARATOR, 0, 0);
45c4ea18 476 AppendMenu (m, MF_ENABLED, IDM_CLRSB, "C&lear Scrollback");
477 AppendMenu (m, MF_ENABLED, IDM_RESET, "Rese&t Terminal");
374330e2 478 AppendMenu (m, MF_SEPARATOR, 0, 0);
45c4ea18 479 AppendMenu (m, MF_ENABLED, IDM_ABOUT, "&About PuTTY");
374330e2 480 }
481
482 /*
483 * Finally show the window!
484 */
485 ShowWindow (hwnd, show);
486
487 /*
488 * Set the palette up.
489 */
490 pal = NULL;
491 logpal = NULL;
492 init_palette();
493
494 has_focus = (GetForegroundWindow() == hwnd);
495 UpdateWindow (hwnd);
496
59ad2c03 497 {
498 int timer_id = 0, long_timer = 0;
499
500 while (GetMessage (&msg, NULL, 0, 0) == 1) {
501 /* Sometimes DispatchMessage calls routines that use their own
502 * GetMessage loop, setup this timer so we get some control back.
503 *
504 * Also call term_update() from the timer so that if the host
505 * is sending data flat out we still do redraws.
506 */
507 if(timer_id && long_timer) {
508 KillTimer(hwnd, timer_id);
509 long_timer = timer_id = 0;
510 }
511 if(!timer_id)
512 timer_id = SetTimer(hwnd, 1, 20, NULL);
513 DispatchMessage (&msg);
514
515 /* This is too fast, but I'll leave it for now 'cause it shows
516 * how often term_update is called (far too often at times!)
517 */
518 term_blink(0);
519
c9def1b8 520 /* Send the paste buffer if there's anything to send */
521 term_paste();
522
59ad2c03 523 /* If there's nothing new in the queue then we can do everything
524 * we've delayed, reading the socket, writing, and repainting
525 * the window.
526 */
527 if (!PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE)) {
528 if (pending_netevent) {
529 enact_pending_netevent();
530
531 term_blink(1);
532 }
533 } else continue;
534 if (!PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE)) {
535 if (timer_id) {
536 KillTimer(hwnd, timer_id);
537 timer_id = 0;
538 }
c9def1b8 539 if (inbuf_head)
59ad2c03 540 term_out();
541 term_update();
c9def1b8 542 if (!has_focus)
543 timer_id = SetTimer(hwnd, 1, 2000, NULL);
544 else if (cfg.blinktext)
545 timer_id = SetTimer(hwnd, 1, 250, NULL);
546 else
547 timer_id = SetTimer(hwnd, 1, 500, NULL);
59ad2c03 548 long_timer = 1;
549 }
550 }
374330e2 551 }
552
553 /*
554 * Clean up.
555 */
556 {
557 int i;
558 for (i=0; i<8; i++)
559 if (fonts[i])
560 DeleteObject(fonts[i]);
561 }
562 sfree(logpal);
563 if (pal)
564 DeleteObject(pal);
565 WSACleanup();
566
8f203108 567 if (cfg.protocol == PROT_SSH) {
374330e2 568 random_save_seed();
8f203108 569#ifdef MSCRYPTOAPI
570 crypto_wrapup();
571#endif
572 }
374330e2 573
574 return msg.wParam;
575}
576
577/*
8d5de777 578 * Print a message box and close the connection.
579 */
580void connection_fatal(char *fmt, ...) {
581 va_list ap;
582 char stuff[200];
583
584 va_start(ap, fmt);
585 vsprintf(stuff, fmt, ap);
586 va_end(ap);
587 MessageBox(hwnd, stuff, "PuTTY Fatal Error", MB_ICONERROR | MB_OK);
588 if (cfg.close_on_exit)
589 PostQuitMessage(1);
590 else {
591 session_closed = TRUE;
592 SetWindowText (hwnd, "PuTTY (inactive)");
593 }
594}
595
596/*
59ad2c03 597 * Actually do the job requested by a WM_NETEVENT
598 */
599static void enact_pending_netevent(void) {
600 int i;
9dde0b46 601 static int reentering = 0;
602
603 if (reentering)
604 return; /* don't unpend the pending */
605
59ad2c03 606 pending_netevent = FALSE;
9dde0b46 607
608 reentering = 1;
59ad2c03 609 i = back->msg (pend_netevent_wParam, pend_netevent_lParam);
9dde0b46 610 reentering = 0;
59ad2c03 611
612 if (i < 0) {
613 char buf[1024];
614 switch (WSABASEERR + (-i) % 10000) {
615 case WSAECONNRESET:
616 sprintf(buf, "Connection reset by peer");
617 break;
618 default:
619 sprintf(buf, "Unexpected network error %d", -i);
620 break;
621 }
8d5de777 622 connection_fatal(buf);
623 }
624 if (i <= 0) {
59ad2c03 625 if (cfg.close_on_exit)
626 PostQuitMessage(0);
627 else {
628 session_closed = TRUE;
629 MessageBox(hwnd, "Connection closed by remote host",
630 "PuTTY", MB_OK | MB_ICONINFORMATION);
631 SetWindowText (hwnd, "PuTTY (inactive)");
632 }
633 }
634}
635
636/*
374330e2 637 * Copy the colour palette from the configuration data into defpal.
638 * This is non-trivial because the colour indices are different.
639 */
640static void cfgtopalette(void) {
641 int i;
642 static const int ww[] = {
643 6, 7, 8, 9, 10, 11, 12, 13,
644 14, 15, 16, 17, 18, 19, 20, 21,
645 0, 1, 2, 3, 4, 4, 5, 5
646 };
647
648 for (i=0; i<24; i++) {
649 int w = ww[i];
650 defpal[i].rgbtRed = cfg.colours[w][0];
651 defpal[i].rgbtGreen = cfg.colours[w][1];
652 defpal[i].rgbtBlue = cfg.colours[w][2];
653 }
654}
655
656/*
657 * Set up the colour palette.
658 */
659static void init_palette(void) {
660 int i;
661 HDC hdc = GetDC (hwnd);
662 if (hdc) {
663 if (cfg.try_palette &&
664 GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE) {
665 logpal = smalloc(sizeof(*logpal)
666 - sizeof(logpal->palPalEntry)
667 + NCOLOURS * sizeof(PALETTEENTRY));
668 logpal->palVersion = 0x300;
669 logpal->palNumEntries = NCOLOURS;
670 for (i = 0; i < NCOLOURS; i++) {
671 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
672 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
673 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
674 logpal->palPalEntry[i].peFlags = PC_NOCOLLAPSE;
675 }
676 pal = CreatePalette (logpal);
677 if (pal) {
678 SelectPalette (hdc, pal, FALSE);
679 RealizePalette (hdc);
680 SelectPalette (hdc, GetStockObject (DEFAULT_PALETTE),
681 FALSE);
682 }
683 }
684 ReleaseDC (hwnd, hdc);
685 }
686 if (pal)
687 for (i=0; i<NCOLOURS; i++)
688 colours[i] = PALETTERGB(defpal[i].rgbtRed,
689 defpal[i].rgbtGreen,
690 defpal[i].rgbtBlue);
691 else
692 for(i=0; i<NCOLOURS; i++)
693 colours[i] = RGB(defpal[i].rgbtRed,
694 defpal[i].rgbtGreen,
695 defpal[i].rgbtBlue);
696}
697
698/*
699 * Initialise all the fonts we will need. There may be as many as
700 * eight or as few as one. We also:
701 *
702 * - check the font width and height, correcting our guesses if
703 * necessary.
704 *
705 * - verify that the bold font is the same width as the ordinary
706 * one, and engage shadow bolding if not.
707 *
708 * - verify that the underlined font is the same width as the
709 * ordinary one (manual underlining by means of line drawing can
710 * be done in a pinch).
374330e2 711 */
59ad2c03 712static void init_fonts(int pick_width) {
374330e2 713 TEXTMETRIC tm;
97fc891e 714 int i;
59ad2c03 715 int fsize[8];
374330e2 716 HDC hdc;
717 int fw_dontcare, fw_bold;
97fc891e 718 int firstchar = ' ';
374330e2 719
59ad2c03 720#ifdef CHECKOEMFONT
97fc891e 721font_messup:
59ad2c03 722#endif
374330e2 723 for (i=0; i<8; i++)
724 fonts[i] = NULL;
725
726 if (cfg.fontisbold) {
727 fw_dontcare = FW_BOLD;
728 fw_bold = FW_BLACK;
729 } else {
730 fw_dontcare = FW_DONTCARE;
731 fw_bold = FW_BOLD;
732 }
733
97fc891e 734 hdc = GetDC(hwnd);
735
736 font_height = cfg.fontheight;
59ad2c03 737 font_width = pick_width;
97fc891e 738
374330e2 739#define f(i,c,w,u) \
97fc891e 740 fonts[i] = CreateFont (font_height, font_width, 0, 0, w, FALSE, u, FALSE, \
374330e2 741 c, OUT_DEFAULT_PRECIS, \
742 CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, \
743 FIXED_PITCH | FF_DONTCARE, cfg.font)
97fc891e 744
374330e2 745 if (cfg.vtmode != VT_OEMONLY) {
14963b8f 746 f(FONT_NORMAL, cfg.fontcharset, fw_dontcare, FALSE);
97fc891e 747
748 SelectObject (hdc, fonts[FONT_NORMAL]);
749 GetTextMetrics(hdc, &tm);
750 font_height = tm.tmHeight;
751 font_width = tm.tmAveCharWidth;
752
14963b8f 753 f(FONT_UNDERLINE, cfg.fontcharset, fw_dontcare, TRUE);
97fc891e 754
09798031 755 /*
756 * Some fonts, e.g. 9-pt Courier, draw their underlines
757 * outside their character cell. We successfully prevent
758 * screen corruption by clipping the text output, but then
759 * we lose the underline completely. Here we try to work
760 * out whether this is such a font, and if it is, we set a
761 * flag that causes underlines to be drawn by hand.
762 *
763 * Having tried other more sophisticated approaches (such
764 * as examining the TEXTMETRIC structure or requesting the
765 * height of a string), I think we'll do this the brute
766 * force way: we create a small bitmap, draw an underlined
767 * space on it, and test to see whether any pixels are
768 * foreground-coloured. (Since we expect the underline to
769 * go all the way across the character cell, we only search
770 * down a single column of the bitmap, half way across.)
771 */
772 {
773 HDC und_dc;
774 HBITMAP und_bm, und_oldbm;
775 int i, gotit;
776 COLORREF c;
777
778 und_dc = CreateCompatibleDC(hdc);
779 und_bm = CreateCompatibleBitmap(hdc, font_width, font_height);
780 und_oldbm = SelectObject(und_dc, und_bm);
781 SelectObject(und_dc, fonts[FONT_UNDERLINE]);
782 SetTextAlign(und_dc, TA_TOP | TA_LEFT | TA_NOUPDATECP);
783 SetTextColor (und_dc, RGB(255,255,255));
784 SetBkColor (und_dc, RGB(0,0,0));
785 SetBkMode (und_dc, OPAQUE);
786 ExtTextOut (und_dc, 0, 0, ETO_OPAQUE, NULL, " ", 1, NULL);
787 gotit = FALSE;
788 for (i = 0; i < font_height; i++) {
789 c = GetPixel(und_dc, font_width/2, i);
790 if (c != RGB(0,0,0))
791 gotit = TRUE;
792 }
793 SelectObject(und_dc, und_oldbm);
794 DeleteObject(und_bm);
795 DeleteDC(und_dc);
796 font_needs_hand_underlining = !gotit;
797 }
798
97fc891e 799 if (bold_mode == BOLD_FONT) {
14963b8f 800 f(FONT_BOLD, cfg.fontcharset, fw_bold, FALSE);
801 f(FONT_BOLDUND, cfg.fontcharset, fw_bold, TRUE);
374330e2 802 }
97fc891e 803
804 if (cfg.vtmode == VT_OEMANSI) {
805 f(FONT_OEM, OEM_CHARSET, fw_dontcare, FALSE);
806 f(FONT_OEMUND, OEM_CHARSET, fw_dontcare, TRUE);
807
808 if (bold_mode == BOLD_FONT) {
809 f(FONT_OEMBOLD, OEM_CHARSET, fw_bold, FALSE);
810 f(FONT_OEMBOLDUND, OEM_CHARSET, fw_bold, TRUE);
811 }
812 }
813 }
814 else
815 {
816 f(FONT_OEM, cfg.fontcharset, fw_dontcare, FALSE);
817
818 SelectObject (hdc, fonts[FONT_OEM]);
819 GetTextMetrics(hdc, &tm);
820 font_height = tm.tmHeight;
821 font_width = tm.tmAveCharWidth;
822
823 f(FONT_OEMUND, cfg.fontcharset, fw_dontcare, TRUE);
824
825 if (bold_mode == BOLD_FONT) {
826 f(FONT_BOLD, cfg.fontcharset, fw_bold, FALSE);
827 f(FONT_BOLDUND, cfg.fontcharset, fw_bold, TRUE);
374330e2 828 }
374330e2 829 }
830#undef f
831
97fc891e 832 descent = tm.tmAscent + 1;
833 if (descent >= font_height)
834 descent = font_height - 1;
835 firstchar = tm.tmFirstChar;
374330e2 836
97fc891e 837 for (i=0; i<8; i++) {
838 if (fonts[i]) {
59ad2c03 839 if (SelectObject (hdc, fonts[i]) &&
840 GetTextMetrics(hdc, &tm) )
841 fsize[i] = tm.tmAveCharWidth + 256 * tm.tmHeight;
842 else fsize[i] = -i;
374330e2 843 }
59ad2c03 844 else fsize[i] = -i;
374330e2 845 }
846
847 ReleaseDC (hwnd, hdc);
848
59ad2c03 849 /* ... This is wrong in OEM only mode */
97fc891e 850 if (fsize[FONT_UNDERLINE] != fsize[FONT_NORMAL] ||
374330e2 851 (bold_mode == BOLD_FONT &&
97fc891e 852 fsize[FONT_BOLDUND] != fsize[FONT_BOLD])) {
374330e2 853 und_mode = UND_LINE;
854 DeleteObject (fonts[FONT_UNDERLINE]);
855 if (bold_mode == BOLD_FONT)
856 DeleteObject (fonts[FONT_BOLDUND]);
857 }
858
859 if (bold_mode == BOLD_FONT &&
97fc891e 860 fsize[FONT_BOLD] != fsize[FONT_NORMAL]) {
374330e2 861 bold_mode = BOLD_SHADOW;
862 DeleteObject (fonts[FONT_BOLD]);
863 if (und_mode == UND_FONT)
864 DeleteObject (fonts[FONT_BOLDUND]);
865 }
866
59ad2c03 867#ifdef CHECKOEMFONT
3cfb9f1c 868 /* With the fascist font painting it doesn't matter if the linedraw font
59ad2c03 869 * isn't exactly the right size anymore so we don't have to check this.
870 */
97fc891e 871 if (cfg.vtmode == VT_OEMANSI && fsize[FONT_OEM] != fsize[FONT_NORMAL] ) {
872 if( cfg.fontcharset == OEM_CHARSET )
873 {
874 MessageBox(NULL, "The OEM and ANSI versions of this font are\n"
374330e2 875 "different sizes. Using OEM-only mode instead",
876 "Font Size Mismatch", MB_ICONINFORMATION | MB_OK);
97fc891e 877 cfg.vtmode = VT_OEMONLY;
878 }
879 else if( firstchar < ' ' )
880 {
881 MessageBox(NULL, "The OEM and ANSI versions of this font are\n"
882 "different sizes. Using XTerm mode instead",
883 "Font Size Mismatch", MB_ICONINFORMATION | MB_OK);
884 cfg.vtmode = VT_XWINDOWS;
885 }
886 else
887 {
888 MessageBox(NULL, "The OEM and ANSI versions of this font are\n"
889 "different sizes. Using ISO8859-1 mode instead",
890 "Font Size Mismatch", MB_ICONINFORMATION | MB_OK);
891 cfg.vtmode = VT_POORMAN;
892 }
893
894 for (i=0; i<8; i++)
374330e2 895 if (fonts[i])
896 DeleteObject (fonts[i]);
97fc891e 897 goto font_messup;
374330e2 898 }
59ad2c03 899#endif
374330e2 900}
901
59ad2c03 902void request_resize (int w, int h, int refont) {
903 int width, height;
c9def1b8 904
905 /* If the window is maximized supress resizing attempts */
906 if(IsZoomed(hwnd)) return;
59ad2c03 907
908#ifdef CHECKOEMFONT
909 /* Don't do this in OEMANSI, you may get disable messages */
910 if (refont && w != cols && (cols==80 || cols==132)
911 && cfg.vtmode != VT_OEMANSI)
912#else
913 if (refont && w != cols && (cols==80 || cols==132))
914#endif
915 {
916 /* If font width too big for screen should we shrink the font more ? */
917 if (w==132)
918 font_width = ((font_width*cols+w/2)/w);
919 else
920 font_width = 0;
921 {
922 int i;
923 for (i=0; i<8; i++)
924 if (fonts[i])
925 DeleteObject(fonts[i]);
926 }
927 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
928 und_mode = UND_FONT;
929 init_fonts(font_width);
930 }
c9def1b8 931 else
932 {
933 static int first_time = 1;
934 static RECT ss;
935
936 switch(first_time)
937 {
938 case 1:
939 /* Get the size of the screen */
940 if (GetClientRect(GetDesktopWindow(),&ss))
941 /* first_time = 0 */;
942 else { first_time = 2; break; }
943 case 0:
944 /* Make sure the values are sane */
945 width = (ss.right-ss.left-extra_width ) / font_width;
946 height = (ss.bottom-ss.top-extra_height ) / font_height;
947
948 if (w>width) w=width;
949 if (h>height) h=height;
950 if (w<15) w = 15;
951 if (h<1) w = 1;
952 }
953 }
59ad2c03 954
955 width = extra_width + font_width * w;
956 height = extra_height + font_height * h;
374330e2 957
958 SetWindowPos (hwnd, NULL, 0, 0, width, height,
959 SWP_NOACTIVATE | SWP_NOCOPYBITS |
960 SWP_NOMOVE | SWP_NOZORDER);
961}
962
963static void click (Mouse_Button b, int x, int y) {
fdedf2c8 964 int thistime = GetMessageTime();
965
966 if (lastbtn == b && thistime - lasttime < dbltime) {
374330e2 967 lastact = (lastact == MA_CLICK ? MA_2CLK :
968 lastact == MA_2CLK ? MA_3CLK :
969 lastact == MA_3CLK ? MA_CLICK : MA_NOTHING);
970 } else {
971 lastbtn = b;
972 lastact = MA_CLICK;
973 }
974 if (lastact != MA_NOTHING)
975 term_mouse (b, lastact, x, y);
fdedf2c8 976 lasttime = thistime;
374330e2 977}
978
996c8c3b 979static LRESULT CALLBACK WndProc (HWND hwnd, UINT message,
980 WPARAM wParam, LPARAM lParam) {
374330e2 981 HDC hdc;
982 static int ignore_size = FALSE;
983 static int ignore_clip = FALSE;
984 static int just_reconfigged = FALSE;
ffc31afe 985 static int resizing = FALSE;
374330e2 986
987 switch (message) {
59ad2c03 988 case WM_TIMER:
989 if (pending_netevent)
990 enact_pending_netevent();
c9def1b8 991 if (inbuf_head)
59ad2c03 992 term_out();
993 term_update();
994 return 0;
374330e2 995 case WM_CREATE:
996 break;
68130d34 997 case WM_CLOSE:
d85548fe 998 if (!cfg.warn_on_close || session_closed ||
9ef49106 999 MessageBox(hwnd, "Are you sure you want to close this session?",
68130d34 1000 "PuTTY Exit Confirmation",
1001 MB_ICONWARNING | MB_OKCANCEL) == IDOK)
1002 DestroyWindow(hwnd);
1003 return 0;
374330e2 1004 case WM_DESTROY:
1005 PostQuitMessage (0);
1006 return 0;
6833a413 1007 case WM_SYSCOMMAND:
1008 switch (wParam & ~0xF) { /* low 4 bits reserved to Windows */
374330e2 1009 case IDM_SHOWLOG:
c5e9c988 1010 showeventlog(hwnd);
374330e2 1011 break;
1012 case IDM_NEWSESS:
1013 case IDM_DUPSESS:
6833a413 1014 case IDM_SAVEDSESS:
374330e2 1015 {
1016 char b[2048];
1017 char c[30], *cl;
e4e4cc7e 1018 int freecl = FALSE;
374330e2 1019 STARTUPINFO si;
1020 PROCESS_INFORMATION pi;
1021 HANDLE filemap = NULL;
1022
1023 if (wParam == IDM_DUPSESS) {
1024 /*
1025 * Allocate a file-mapping memory chunk for the
1026 * config structure.
1027 */
1028 SECURITY_ATTRIBUTES sa;
1029 Config *p;
1030
1031 sa.nLength = sizeof(sa);
1032 sa.lpSecurityDescriptor = NULL;
1033 sa.bInheritHandle = TRUE;
1034 filemap = CreateFileMapping((HANDLE)0xFFFFFFFF,
1035 &sa,
1036 PAGE_READWRITE,
1037 0,
1038 sizeof(Config),
1039 NULL);
1040 if (filemap) {
1041 p = (Config *)MapViewOfFile(filemap,
1042 FILE_MAP_WRITE,
1043 0, 0, sizeof(Config));
1044 if (p) {
1045 *p = cfg; /* structure copy */
1046 UnmapViewOfFile(p);
1047 }
1048 }
1d470ad2 1049 sprintf(c, "putty &%p", filemap);
374330e2 1050 cl = c;
0a4aa984 1051 } else if (wParam == IDM_SAVEDSESS) {
e4e4cc7e 1052 char *session = sessions[(lParam - IDM_SAVED_MIN) / 16];
1053 cl = malloc(16 + strlen(session)); /* 8, but play safe */
1054 if (!cl)
1055 cl = NULL; /* not a very important failure mode */
94e6450e 1056 else {
1057 sprintf(cl, "putty @%s", session);
1058 freecl = TRUE;
1059 }
374330e2 1060 } else
6833a413 1061 cl = NULL;
374330e2 1062
1063 GetModuleFileName (NULL, b, sizeof(b)-1);
1064 si.cb = sizeof(si);
1065 si.lpReserved = NULL;
1066 si.lpDesktop = NULL;
1067 si.lpTitle = NULL;
1068 si.dwFlags = 0;
1069 si.cbReserved2 = 0;
1070 si.lpReserved2 = NULL;
1071 CreateProcess (b, cl, NULL, NULL, TRUE,
1072 NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi);
1073
1074 if (filemap)
1075 CloseHandle(filemap);
e4e4cc7e 1076 if (freecl)
1077 free(cl);
374330e2 1078 }
1079 break;
1080 case IDM_RECONF:
1081 if (!do_reconfig(hwnd))
1082 break;
1083 just_reconfigged = TRUE;
1084 {
1085 int i;
1086 for (i=0; i<8; i++)
1087 if (fonts[i])
1088 DeleteObject(fonts[i]);
1089 }
1090 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
1091 und_mode = UND_FONT;
59ad2c03 1092 init_fonts(0);
374330e2 1093 sfree(logpal);
59ad2c03 1094 /* Telnet will change local echo -> remote if the remote asks */
1095 if (cfg.protocol != PROT_TELNET)
1096 ldisc = (cfg.ldisc_term ? &ldisc_term : &ldisc_simple);
374330e2 1097 if (pal)
1098 DeleteObject(pal);
1099 logpal = NULL;
1100 pal = NULL;
1101 cfgtopalette();
1102 init_palette();
c9def1b8 1103
1104 /* Enable or disable the scroll bar, etc */
1105 {
1106 LONG nflg, flag = GetWindowLong(hwnd, GWL_STYLE);
1107
1108 nflg = flag;
1109 if (cfg.scrollbar) nflg |= WS_VSCROLL;
1110 else nflg &= ~WS_VSCROLL;
1111 if (cfg.locksize)
1112 nflg &= ~(WS_THICKFRAME|WS_MAXIMIZEBOX);
1113 else
1114 nflg |= (WS_THICKFRAME|WS_MAXIMIZEBOX);
1115
1116 if (nflg != flag)
1117 {
1118 RECT cr, wr;
1119
1120 SetWindowLong(hwnd, GWL_STYLE, nflg);
1121 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
1122 SetWindowPos(hwnd, NULL, 0,0,0,0,
1123 SWP_NOACTIVATE|SWP_NOCOPYBITS|
1124 SWP_NOMOVE|SWP_NOSIZE| SWP_NOZORDER|
1125 SWP_FRAMECHANGED);
1126
1127 GetWindowRect (hwnd, &wr);
1128 GetClientRect (hwnd, &cr);
1129 extra_width = wr.right - wr.left - cr.right + cr.left;
1130 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
1131 }
1132 }
1133
374330e2 1134 term_size(cfg.height, cfg.width, cfg.savelines);
1135 InvalidateRect(hwnd, NULL, TRUE);
1136 SetWindowPos (hwnd, NULL, 0, 0,
1137 extra_width + font_width * cfg.width,
1138 extra_height + font_height * cfg.height,
1139 SWP_NOACTIVATE | SWP_NOCOPYBITS |
1140 SWP_NOMOVE | SWP_NOZORDER);
1141 if (IsIconic(hwnd)) {
1142 SetWindowText (hwnd,
1143 cfg.win_name_always ? window_name : icon_name);
1144 }
1145 break;
1146 case IDM_CLRSB:
1147 term_clrsb();
1148 break;
1149 case IDM_RESET:
1150 term_pwron();
1151 break;
1152 case IDM_TEL_AYT: back->special (TS_AYT); break;
1153 case IDM_TEL_BRK: back->special (TS_BRK); break;
1154 case IDM_TEL_SYNCH: back->special (TS_SYNCH); break;
1155 case IDM_TEL_EC: back->special (TS_EC); break;
1156 case IDM_TEL_EL: back->special (TS_EL); break;
1157 case IDM_TEL_GA: back->special (TS_GA); break;
1158 case IDM_TEL_NOP: back->special (TS_NOP); break;
1159 case IDM_TEL_ABORT: back->special (TS_ABORT); break;
1160 case IDM_TEL_AO: back->special (TS_AO); break;
1161 case IDM_TEL_IP: back->special (TS_IP); break;
1162 case IDM_TEL_SUSP: back->special (TS_SUSP); break;
1163 case IDM_TEL_EOR: back->special (TS_EOR); break;
1164 case IDM_TEL_EOF: back->special (TS_EOF); break;
1165 case IDM_ABOUT:
1166 showabout (hwnd);
1167 break;
0a4aa984 1168 default:
1169 if (wParam >= IDM_SAVED_MIN && wParam <= IDM_SAVED_MAX) {
1170 SendMessage(hwnd, WM_SYSCOMMAND, IDM_SAVEDSESS, wParam);
1171 }
374330e2 1172 }
1173 break;
37508af4 1174
1175#define X_POS(l) ((int)(short)LOWORD(l))
1176#define Y_POS(l) ((int)(short)HIWORD(l))
1177
fdedf2c8 1178#define TO_CHR_X(x) (((x)<0 ? (x)-font_width+1 : (x)) / font_width)
1179#define TO_CHR_Y(y) (((y)<0 ? (y)-font_height+1: (y)) / font_height)
1180
374330e2 1181 case WM_LBUTTONDOWN:
fdedf2c8 1182 click (MB_SELECT, TO_CHR_X(X_POS(lParam)),
1183 TO_CHR_Y(Y_POS(lParam)));
fef97f43 1184 SetCapture(hwnd);
374330e2 1185 return 0;
1186 case WM_LBUTTONUP:
fdedf2c8 1187 term_mouse (MB_SELECT, MA_RELEASE, TO_CHR_X(X_POS(lParam)),
1188 TO_CHR_Y(Y_POS(lParam)));
37508af4 1189 ReleaseCapture();
374330e2 1190 return 0;
1191 case WM_MBUTTONDOWN:
37508af4 1192 SetCapture(hwnd);
374330e2 1193 click (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
fdedf2c8 1194 TO_CHR_X(X_POS(lParam)),
1195 TO_CHR_Y(Y_POS(lParam)));
374330e2 1196 return 0;
1197 case WM_MBUTTONUP:
1198 term_mouse (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
fdedf2c8 1199 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
1200 TO_CHR_Y(Y_POS(lParam)));
37508af4 1201 ReleaseCapture();
a0b1cefc 1202 return 0;
374330e2 1203 case WM_RBUTTONDOWN:
37508af4 1204 SetCapture(hwnd);
374330e2 1205 click (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
fdedf2c8 1206 TO_CHR_X(X_POS(lParam)),
1207 TO_CHR_Y(Y_POS(lParam)));
374330e2 1208 return 0;
1209 case WM_RBUTTONUP:
1210 term_mouse (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
fdedf2c8 1211 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
1212 TO_CHR_Y(Y_POS(lParam)));
37508af4 1213 ReleaseCapture();
374330e2 1214 return 0;
1215 case WM_MOUSEMOVE:
1216 /*
1217 * Add the mouse position and message time to the random
1218 * number noise, if we're using ssh.
1219 */
1220 if (cfg.protocol == PROT_SSH)
1221 noise_ultralight(lParam);
1222
1223 if (wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON)) {
1224 Mouse_Button b;
1225 if (wParam & MK_LBUTTON)
1226 b = MB_SELECT;
1227 else if (wParam & MK_MBUTTON)
1228 b = cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND;
1229 else
1230 b = cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE;
fdedf2c8 1231 term_mouse (b, MA_DRAG, TO_CHR_X(X_POS(lParam)),
1232 TO_CHR_Y(Y_POS(lParam)));
374330e2 1233 }
374330e2 1234 return 0;
1235 case WM_IGNORE_CLIP:
1236 ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */
1237 break;
1238 case WM_DESTROYCLIPBOARD:
1239 if (!ignore_clip)
1240 term_deselect();
1241 ignore_clip = FALSE;
1242 return 0;
1243 case WM_PAINT:
1244 {
1245 PAINTSTRUCT p;
1246 hdc = BeginPaint (hwnd, &p);
1247 if (pal) {
1248 SelectPalette (hdc, pal, TRUE);
1249 RealizePalette (hdc);
1250 }
1251 term_paint (hdc, p.rcPaint.left, p.rcPaint.top,
1252 p.rcPaint.right, p.rcPaint.bottom);
1253 SelectObject (hdc, GetStockObject(SYSTEM_FONT));
1254 SelectObject (hdc, GetStockObject(WHITE_PEN));
1255 EndPaint (hwnd, &p);
1256 }
1257 return 0;
1258 case WM_NETEVENT:
59ad2c03 1259 /* Notice we can get multiple netevents, FD_READ, FD_WRITE etc
1260 * but the only one that's likely to try to overload us is FD_READ.
1261 * This means buffering just one is fine.
1262 */
1263 if (pending_netevent)
1264 enact_pending_netevent();
1265
1266 pending_netevent = TRUE;
1267 pend_netevent_wParam=wParam;
1268 pend_netevent_lParam=lParam;
374330e2 1269 return 0;
1270 case WM_SETFOCUS:
1271 has_focus = TRUE;
ec8679e9 1272 CreateCaret(hwnd, NULL, font_width, font_height);
374330e2 1273 term_out();
1274 term_update();
1275 break;
1276 case WM_KILLFOCUS:
1277 has_focus = FALSE;
ec8679e9 1278 DestroyCaret();
374330e2 1279 term_out();
1280 term_update();
1281 break;
1282 case WM_IGNORE_SIZE:
1283 ignore_size = TRUE; /* don't panic on next WM_SIZE msg */
1284 break;
73251d5d 1285 case WM_ENTERSIZEMOVE:
996c8c3b 1286 EnableSizeTip(1);
ffc31afe 1287 resizing = TRUE;
996c8c3b 1288 break;
73251d5d 1289 case WM_EXITSIZEMOVE:
996c8c3b 1290 EnableSizeTip(0);
ffc31afe 1291 resizing = FALSE;
1292 back->size();
996c8c3b 1293 break;
374330e2 1294 case WM_SIZING:
1295 {
1296 int width, height, w, h, ew, eh;
1297 LPRECT r = (LPRECT)lParam;
1298
1299 width = r->right - r->left - extra_width;
1300 height = r->bottom - r->top - extra_height;
1301 w = (width + font_width/2) / font_width; if (w < 1) w = 1;
1302 h = (height + font_height/2) / font_height; if (h < 1) h = 1;
996c8c3b 1303 UpdateSizeTip(hwnd, w, h);
374330e2 1304 ew = width - w * font_width;
1305 eh = height - h * font_height;
1306 if (ew != 0) {
1307 if (wParam == WMSZ_LEFT ||
1308 wParam == WMSZ_BOTTOMLEFT ||
1309 wParam == WMSZ_TOPLEFT)
1310 r->left += ew;
1311 else
1312 r->right -= ew;
1313 }
1314 if (eh != 0) {
1315 if (wParam == WMSZ_TOP ||
1316 wParam == WMSZ_TOPRIGHT ||
1317 wParam == WMSZ_TOPLEFT)
1318 r->top += eh;
1319 else
1320 r->bottom -= eh;
1321 }
1322 if (ew || eh)
1323 return 1;
1324 else
1325 return 0;
1326 }
996c8c3b 1327 /* break; (never reached) */
374330e2 1328 case WM_SIZE:
1329 if (wParam == SIZE_MINIMIZED) {
1330 SetWindowText (hwnd,
1331 cfg.win_name_always ? window_name : icon_name);
1332 break;
1333 }
1334 if (wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED)
1335 SetWindowText (hwnd, window_name);
1336 if (!ignore_size) {
1a6f78fe 1337 int width, height, w, h;
1338#if 0 /* we have fixed this using WM_SIZING now */
1339 int ew, eh;
1340#endif
374330e2 1341
1342 width = LOWORD(lParam);
1343 height = HIWORD(lParam);
1344 w = width / font_width; if (w < 1) w = 1;
1345 h = height / font_height; if (h < 1) h = 1;
1346#if 0 /* we have fixed this using WM_SIZING now */
1347 ew = width - w * font_width;
1348 eh = height - h * font_height;
1349 if (ew != 0 || eh != 0) {
1350 RECT r;
1351 GetWindowRect (hwnd, &r);
1352 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
1353 SetWindowPos (hwnd, NULL, 0, 0,
1354 r.right - r.left - ew, r.bottom - r.top - eh,
1355 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
1356 }
1357#endif
1358 if (w != cols || h != rows || just_reconfigged) {
1359 term_invalidate();
1360 term_size (h, w, cfg.savelines);
ffc31afe 1361 /*
1362 * Don't call back->size in mid-resize. (To prevent
1363 * massive numbers of resize events getting sent
1364 * down the connection during an NT opaque drag.)
1365 */
1366 if (!resizing)
1367 back->size();
374330e2 1368 just_reconfigged = FALSE;
1369 }
1370 }
1371 ignore_size = FALSE;
1372 return 0;
1373 case WM_VSCROLL:
1374 switch (LOWORD(wParam)) {
1375 case SB_BOTTOM: term_scroll(-1, 0); break;
1376 case SB_TOP: term_scroll(+1, 0); break;
1377 case SB_LINEDOWN: term_scroll (0, +1); break;
1378 case SB_LINEUP: term_scroll (0, -1); break;
1379 case SB_PAGEDOWN: term_scroll (0, +rows/2); break;
1380 case SB_PAGEUP: term_scroll (0, -rows/2); break;
1381 case SB_THUMBPOSITION: case SB_THUMBTRACK:
1382 term_scroll (1, HIWORD(wParam)); break;
1383 }
1384 break;
1385 case WM_PALETTECHANGED:
1386 if ((HWND) wParam != hwnd && pal != NULL) {
1387 HDC hdc = get_ctx();
1388 if (hdc) {
1389 if (RealizePalette (hdc) > 0)
1390 UpdateColors (hdc);
1391 free_ctx (hdc);
1392 }
1393 }
1394 break;
1395 case WM_QUERYNEWPALETTE:
1396 if (pal != NULL) {
1397 HDC hdc = get_ctx();
1398 if (hdc) {
1399 if (RealizePalette (hdc) > 0)
1400 UpdateColors (hdc);
1401 free_ctx (hdc);
1402 return TRUE;
1403 }
1404 }
1405 return FALSE;
1406 case WM_KEYDOWN:
1407 case WM_SYSKEYDOWN:
c9def1b8 1408 case WM_KEYUP:
1409 case WM_SYSKEYUP:
374330e2 1410 /*
1411 * Add the scan code and keypress timing to the random
1412 * number noise, if we're using ssh.
1413 */
1414 if (cfg.protocol == PROT_SSH)
1415 noise_ultralight(lParam);
1416
1417 /*
1418 * We don't do TranslateMessage since it disassociates the
1419 * resulting CHAR message from the KEYDOWN that sparked it,
1420 * which we occasionally don't want. Instead, we process
1421 * KEYDOWN, and call the Win32 translator functions so that
1422 * we get the translations under _our_ control.
1423 */
1424 {
1425 unsigned char buf[20];
1426 int len;
1427
c9def1b8 1428 len = TranslateKey (message, wParam, lParam, buf);
c5e9c988 1429 if (len == -1)
1430 return DefWindowProc (hwnd, message, wParam, lParam);
5bc238bb 1431 ldisc->send (buf, len);
374330e2 1432 }
1433 return 0;
1434 case WM_CHAR:
1435 case WM_SYSCHAR:
1436 /*
1437 * Nevertheless, we are prepared to deal with WM_CHAR
1438 * messages, should they crop up. So if someone wants to
1439 * post the things to us as part of a macro manoeuvre,
1440 * we're ready to cope.
1441 */
1442 {
14963b8f 1443 char c = xlat_kbd2tty((unsigned char)wParam);
5bc238bb 1444 ldisc->send (&c, 1);
374330e2 1445 }
1446 return 0;
1447 }
1448
1449 return DefWindowProc (hwnd, message, wParam, lParam);
1450}
1451
1452/*
ec8679e9 1453 * Move the system caret. (We maintain one, even though it's
1454 * invisible, for the benefit of blind people: apparently some
1455 * helper software tracks the system caret, so we should arrange to
1456 * have one.)
1457 */
1458void sys_cursor(int x, int y) {
1459 SetCaretPos(x * font_width, y * font_height);
1460}
1461
1462/*
374330e2 1463 * Draw a line of text in the window, at given character
1464 * coordinates, in given attributes.
1465 *
1466 * We are allowed to fiddle with the contents of `text'.
1467 */
1468void do_text (Context ctx, int x, int y, char *text, int len,
c9def1b8 1469 unsigned long attr, int lattr) {
374330e2 1470 COLORREF fg, bg, t;
1471 int nfg, nbg, nfont;
1472 HDC hdc = ctx;
59ad2c03 1473 RECT line_box;
1474 int force_manual_underline = 0;
c9def1b8 1475 int fnt_width = font_width*(1+(lattr!=LATTR_NORM));
09798031 1476 static int *IpDx = 0, IpDxLEN = 0;;
59ad2c03 1477
c9def1b8 1478 if (len>IpDxLEN || IpDx[0] != fnt_width) {
59ad2c03 1479 int i;
1480 if (len>IpDxLEN) {
1481 sfree(IpDx);
1482 IpDx = smalloc((len+16)*sizeof(int));
1483 IpDxLEN = (len+16);
1484 }
c9def1b8 1485 for(i=0; i<IpDxLEN; i++)
1486 IpDx[i] = fnt_width;
59ad2c03 1487 }
374330e2 1488
c9def1b8 1489 x *= fnt_width;
374330e2 1490 y *= font_height;
1491
1492 if (attr & ATTR_ACTCURS) {
c9def1b8 1493 attr &= (bold_mode == BOLD_COLOURS ? 0x300200 : 0x300300);
374330e2 1494 attr ^= ATTR_CUR_XOR;
1495 }
1496
1497 nfont = 0;
1498 if (cfg.vtmode == VT_OEMONLY)
1499 nfont |= FONT_OEM;
1500
1501 /*
1502 * Map high-half characters in order to approximate ISO using
59ad2c03 1503 * OEM character set. No characters are missing if the OEM codepage
1504 * is CP850.
374330e2 1505 */
1506 if (nfont & FONT_OEM) {
1507 int i;
1508 for (i=0; i<len; i++)
1509 if (text[i] >= '\xA0' && text[i] <= '\xFF') {
59ad2c03 1510#if 0
1511 /* This is CP850 ... perfect translation */
374330e2 1512 static const char oemhighhalf[] =
1513 "\x20\xAD\xBD\x9C\xCF\xBE\xDD\xF5" /* A0-A7 */
1514 "\xF9\xB8\xA6\xAE\xAA\xF0\xA9\xEE" /* A8-AF */
1515 "\xF8\xF1\xFD\xFC\xEF\xE6\xF4\xFA" /* B0-B7 */
1516 "\xF7\xFB\xA7\xAF\xAC\xAB\xF3\xA8" /* B8-BF */
59ad2c03 1517 "\xB7\xB5\xB6\xC7\x8E\x8F\x92\x80" /* C0-C7 */
1518 "\xD4\x90\xD2\xD3\xDE\xD6\xD7\xD8" /* C8-CF */
374330e2 1519 "\xD1\xA5\xE3\xE0\xE2\xE5\x99\x9E" /* D0-D7 */
1520 "\x9D\xEB\xE9\xEA\x9A\xED\xE8\xE1" /* D8-DF */
1521 "\x85\xA0\x83\xC6\x84\x86\x91\x87" /* E0-E7 */
1522 "\x8A\x82\x88\x89\x8D\xA1\x8C\x8B" /* E8-EF */
1523 "\xD0\xA4\x95\xA2\x93\xE4\x94\xF6" /* F0-F7 */
1524 "\x9B\x97\xA3\x96\x81\xEC\xE7\x98" /* F8-FF */
1525 ;
59ad2c03 1526#endif
1527 /* This is CP437 ... junk translation */
1528 static const unsigned char oemhighhalf[] = {
1529 0xff, 0xad, 0x9b, 0x9c, 0x6f, 0x9d, 0x7c, 0x15,
1530 0x22, 0x43, 0xa6, 0xae, 0xaa, 0x2d, 0x52, 0xc4,
1531 0xf8, 0xf1, 0xfd, 0x33, 0x27, 0xe6, 0x14, 0xfa,
1532 0x2c, 0x31, 0xa7, 0xaf, 0xac, 0xab, 0x2f, 0xa8,
1533 0x41, 0x41, 0x41, 0x41, 0x8e, 0x8f, 0x92, 0x80,
1534 0x45, 0x90, 0x45, 0x45, 0x49, 0x49, 0x49, 0x49,
1535 0x44, 0xa5, 0x4f, 0x4f, 0x4f, 0x4f, 0x99, 0x78,
1536 0xed, 0x55, 0x55, 0x55, 0x9a, 0x59, 0x50, 0xe1,
1537 0x85, 0xa0, 0x83, 0x61, 0x84, 0x86, 0x91, 0x87,
1538 0x8a, 0x82, 0x88, 0x89, 0x8d, 0xa1, 0x8c, 0x8b,
1539 0x0b, 0xa4, 0x95, 0xa2, 0x93, 0x6f, 0x94, 0xf6,
1540 0xed, 0x97, 0xa3, 0x96, 0x81, 0x79, 0x70, 0x98
1541 };
1542
374330e2 1543 text[i] = oemhighhalf[(unsigned char)text[i] - 0xA0];
1544 }
1545 }
1546
1547 if (attr & ATTR_GBCHR) {
1548 int i;
1549 /*
1550 * GB mapping: map # to pound, and everything else stays
1551 * normal.
1552 */
1553 for (i=0; i<len; i++)
1554 if (text[i] == '#')
1555 text[i] = cfg.vtmode == VT_OEMONLY ? '\x9C' : '\xA3';
1556 } else if (attr & ATTR_LINEDRW) {
1557 int i;
59ad2c03 1558 /* ISO 8859-1 */
374330e2 1559 static const char poorman[] =
1560 "*#****\xB0\xB1**+++++-----++++|****\xA3\xB7";
59ad2c03 1561
1562 /* CP437 */
1563 static const char oemmap_437[] =
ed91c385 1564 "\x04\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1565 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3\xF3\xF2\xE3*\x9C\xFA";
374330e2 1566
59ad2c03 1567 /* CP850 */
1568 static const char oemmap_850[] =
1569 "\x04\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1570 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3****\x9C\xFA";
1571
1572 /* Poor windows font ... eg: windows courier */
1573 static const char oemmap[] =
1574 "*\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1575 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3****\x9C\xFA";
1576
374330e2 1577 /*
1578 * Line drawing mapping: map ` thru ~ (0x60 thru 0x7E) to
1579 * VT100 line drawing chars; everything else stays normal.
1580 */
1581 switch (cfg.vtmode) {
1582 case VT_XWINDOWS:
1583 for (i=0; i<len; i++)
1584 if (text[i] >= '\x60' && text[i] <= '\x7E')
1585 text[i] += '\x01' - '\x60';
1586 break;
1587 case VT_OEMANSI:
59ad2c03 1588 /* Make sure we actually have an OEM font */
1589 if (fonts[nfont|FONT_OEM]) {
374330e2 1590 case VT_OEMONLY:
59ad2c03 1591 nfont |= FONT_OEM;
1592 for (i=0; i<len; i++)
1593 if (text[i] >= '\x60' && text[i] <= '\x7E')
1594 text[i] = oemmap[(unsigned char)text[i] - 0x60];
1595 break;
1596 }
374330e2 1597 case VT_POORMAN:
1598 for (i=0; i<len; i++)
1599 if (text[i] >= '\x60' && text[i] <= '\x7E')
1600 text[i] = poorman[(unsigned char)text[i] - 0x60];
1601 break;
1602 }
1603 }
1604
1605 nfg = 2 * ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
1606 nbg = 2 * ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
1607 if (bold_mode == BOLD_FONT && (attr & ATTR_BOLD))
1608 nfont |= FONT_BOLD;
1609 if (und_mode == UND_FONT && (attr & ATTR_UNDER))
1610 nfont |= FONT_UNDERLINE;
59ad2c03 1611 if (!fonts[nfont])
1612 {
1613 if (nfont&FONT_UNDERLINE)
1614 force_manual_underline = 1;
1615 /* Don't do the same for manual bold, it could be bad news. */
1616
1617 nfont &= ~(FONT_BOLD|FONT_UNDERLINE);
1618 }
09798031 1619 if (font_needs_hand_underlining && (attr & ATTR_UNDER))
1620 force_manual_underline = 1;
374330e2 1621 if (attr & ATTR_REVERSE) {
1622 t = nfg; nfg = nbg; nbg = t;
1623 }
1624 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BOLD))
1625 nfg++;
59ad2c03 1626 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BLINK))
1627 nbg++;
374330e2 1628 fg = colours[nfg];
1629 bg = colours[nbg];
1630 SelectObject (hdc, fonts[nfont]);
1631 SetTextColor (hdc, fg);
1632 SetBkColor (hdc, bg);
1633 SetBkMode (hdc, OPAQUE);
59ad2c03 1634 line_box.left = x;
1635 line_box.top = y;
c9def1b8 1636 line_box.right = x+fnt_width*len;
59ad2c03 1637 line_box.bottom = y+font_height;
1638 ExtTextOut (hdc, x, y, ETO_CLIPPED|ETO_OPAQUE, &line_box, text, len, IpDx);
374330e2 1639 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
1640 SetBkMode (hdc, TRANSPARENT);
59ad2c03 1641
1642 /* GRR: This draws the character outside it's box and can leave
1643 * 'droppings' even with the clip box! I suppose I could loop it
c9def1b8 1644 * one character at a time ... yuk.
1645 *
1646 * Or ... I could do a test print with "W", and use +1 or -1 for this
1647 * shift depending on if the leftmost column is blank...
1648 */
59ad2c03 1649 ExtTextOut (hdc, x-1, y, ETO_CLIPPED, &line_box, text, len, IpDx);
374330e2 1650 }
59ad2c03 1651 if (force_manual_underline ||
1652 (und_mode == UND_LINE && (attr & ATTR_UNDER))) {
1a6f78fe 1653 HPEN oldpen;
1654 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, fg));
374330e2 1655 MoveToEx (hdc, x, y+descent, NULL);
c9def1b8 1656 LineTo (hdc, x+len*fnt_width, y+descent);
1a6f78fe 1657 oldpen = SelectObject (hdc, oldpen);
1658 DeleteObject (oldpen);
374330e2 1659 }
1660 if (attr & ATTR_PASCURS) {
1661 POINT pts[5];
1a6f78fe 1662 HPEN oldpen;
374330e2 1663 pts[0].x = pts[1].x = pts[4].x = x;
c9def1b8 1664 pts[2].x = pts[3].x = x+fnt_width-1;
374330e2 1665 pts[0].y = pts[3].y = pts[4].y = y;
1666 pts[1].y = pts[2].y = y+font_height-1;
1a6f78fe 1667 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, colours[23]));
374330e2 1668 Polyline (hdc, pts, 5);
1a6f78fe 1669 oldpen = SelectObject (hdc, oldpen);
1670 DeleteObject (oldpen);
374330e2 1671 }
1672}
1673
c9def1b8 1674static int check_compose(int first, int second) {
1675
1676 static char * composetbl[] = {
1677