Turn a rogue malloc to smalloc
[u/mdw/putty] / window.c
... / ...
Content-type: text/html git.distorted.org.uk Git - u/mdw/putty/blame_incremental - window.c


500 - Internal Server Error

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