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