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