`Change Settings' now behaves sensibly w.r.t. window size.
[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 1817.
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 int need_setwpos = FALSE;
1173 cfg.width = cols;
1174 cfg.height = rows;
1175 if (!do_reconfig(hwnd))
1176 break;
1177 just_reconfigged = TRUE;
1178 {
1179 int i;
1180 for (i=0; i<8; i++)
1181 if (fonts[i])
1182 DeleteObject(fonts[i]);
1183 }
1184 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
1185 und_mode = UND_FONT;
1186 init_fonts(0);
1187 sfree(logpal);
1188 /*
1189 * Telnet will change local echo -> remote if the
1190 * remote asks.
1191 */
1192 if (cfg.protocol != PROT_TELNET)
1193 ldisc = (cfg.ldisc_term ? &ldisc_term : &ldisc_simple);
1194 if (pal)
1195 DeleteObject(pal);
1196 logpal = NULL;
1197 pal = NULL;
1198 cfgtopalette();
1199 init_palette();
1200
1201 /* Enable or disable the scroll bar, etc */
1202 {
1203 LONG nflg, flag = GetWindowLong(hwnd, GWL_STYLE);
1204 LONG nexflag, exflag = GetWindowLong(hwnd, GWL_EXSTYLE);
1205
1206 nexflag = exflag;
1207 if (cfg.alwaysontop != prev_alwaysontop) {
1208 if (cfg.alwaysontop) {
1209 nexflag = WS_EX_TOPMOST;
1210 SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0,
1211 SWP_NOMOVE | SWP_NOSIZE);
1212 } else {
1213 nexflag = 0;
1214 SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, 0, 0,
1215 SWP_NOMOVE | SWP_NOSIZE);
1216 }
1217 }
1218
1219 nflg = flag;
1220 if (cfg.scrollbar) nflg |= WS_VSCROLL;
1221 else nflg &= ~WS_VSCROLL;
1222 if (cfg.locksize)
1223 nflg &= ~(WS_THICKFRAME|WS_MAXIMIZEBOX);
1224 else
1225 nflg |= (WS_THICKFRAME|WS_MAXIMIZEBOX);
1226
1227 if (nflg != flag || nexflag != exflag)
1228 {
1229 RECT cr, wr;
1230
1231 if (nflg != flag)
1232 SetWindowLong(hwnd, GWL_STYLE, nflg);
1233 if (nexflag != exflag)
1234 SetWindowLong(hwnd, GWL_EXSTYLE, nexflag);
1235
1236 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
1237
1238 SetWindowPos(hwnd, NULL, 0,0,0,0,
1239 SWP_NOACTIVATE|SWP_NOCOPYBITS|
1240 SWP_NOMOVE|SWP_NOSIZE|SWP_NOZORDER|
1241 SWP_FRAMECHANGED);
1242
1243 GetWindowRect (hwnd, &wr);
1244 GetClientRect (hwnd, &cr);
1245 extra_width = wr.right - wr.left - cr.right + cr.left;
1246 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
1247 }
1248 }
1249
1250 if (cfg.height != rows ||
1251 cfg.width != cols ||
1252 cfg.savelines != savelines)
1253 need_setwpos = TRUE;
1254 term_size(cfg.height, cfg.width, cfg.savelines);
1255 InvalidateRect(hwnd, NULL, TRUE);
1256 if (need_setwpos) {
1257 force_normal(hwnd);
1258 SetWindowPos (hwnd, NULL, 0, 0,
1259 extra_width + font_width * cfg.width,
1260 extra_height + font_height * cfg.height,
1261 SWP_NOACTIVATE | SWP_NOCOPYBITS |
1262 SWP_NOMOVE | SWP_NOZORDER);
1263 }
1264 if (IsIconic(hwnd)) {
1265 SetWindowText (hwnd,
1266 cfg.win_name_always ? window_name : icon_name);
1267 }
1268 }
1269 break;
1270 case IDM_COPYALL:
1271 term_copyall();
1272 break;
1273 case IDM_CLRSB:
1274 term_clrsb();
1275 break;
1276 case IDM_RESET:
1277 term_pwron();
1278 break;
1279 case IDM_TEL_AYT: back->special (TS_AYT); break;
1280 case IDM_TEL_BRK: back->special (TS_BRK); break;
1281 case IDM_TEL_SYNCH: back->special (TS_SYNCH); break;
1282 case IDM_TEL_EC: back->special (TS_EC); break;
1283 case IDM_TEL_EL: back->special (TS_EL); break;
1284 case IDM_TEL_GA: back->special (TS_GA); break;
1285 case IDM_TEL_NOP: back->special (TS_NOP); break;
1286 case IDM_TEL_ABORT: back->special (TS_ABORT); break;
1287 case IDM_TEL_AO: back->special (TS_AO); break;
1288 case IDM_TEL_IP: back->special (TS_IP); break;
1289 case IDM_TEL_SUSP: back->special (TS_SUSP); break;
1290 case IDM_TEL_EOR: back->special (TS_EOR); break;
1291 case IDM_TEL_EOF: back->special (TS_EOF); break;
1292 case IDM_ABOUT:
1293 showabout (hwnd);
1294 break;
1295 default:
1296 if (wParam >= IDM_SAVED_MIN && wParam <= IDM_SAVED_MAX) {
1297 SendMessage(hwnd, WM_SYSCOMMAND, IDM_SAVEDSESS, wParam);
1298 }
1299 }
1300 break;
1301
1302#define X_POS(l) ((int)(short)LOWORD(l))
1303#define Y_POS(l) ((int)(short)HIWORD(l))
1304
1305#define TO_CHR_X(x) (((x)<0 ? (x)-font_width+1 : (x)) / font_width)
1306#define TO_CHR_Y(y) (((y)<0 ? (y)-font_height+1: (y)) / font_height)
1307
1308 case WM_LBUTTONDOWN:
1309 click (MB_SELECT, TO_CHR_X(X_POS(lParam)),
1310 TO_CHR_Y(Y_POS(lParam)));
1311 SetCapture(hwnd);
1312 return 0;
1313 case WM_LBUTTONUP:
1314 term_mouse (MB_SELECT, MA_RELEASE, TO_CHR_X(X_POS(lParam)),
1315 TO_CHR_Y(Y_POS(lParam)));
1316 ReleaseCapture();
1317 return 0;
1318 case WM_MBUTTONDOWN:
1319 SetCapture(hwnd);
1320 click (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
1321 TO_CHR_X(X_POS(lParam)),
1322 TO_CHR_Y(Y_POS(lParam)));
1323 return 0;
1324 case WM_MBUTTONUP:
1325 term_mouse (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
1326 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
1327 TO_CHR_Y(Y_POS(lParam)));
1328 ReleaseCapture();
1329 return 0;
1330 case WM_RBUTTONDOWN:
1331 SetCapture(hwnd);
1332 click (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
1333 TO_CHR_X(X_POS(lParam)),
1334 TO_CHR_Y(Y_POS(lParam)));
1335 return 0;
1336 case WM_RBUTTONUP:
1337 term_mouse (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
1338 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
1339 TO_CHR_Y(Y_POS(lParam)));
1340 ReleaseCapture();
1341 return 0;
1342 case WM_MOUSEMOVE:
1343 /*
1344 * Add the mouse position and message time to the random
1345 * number noise.
1346 */
1347 noise_ultralight(lParam);
1348
1349 if (wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON)) {
1350 Mouse_Button b;
1351 if (wParam & MK_LBUTTON)
1352 b = MB_SELECT;
1353 else if (wParam & MK_MBUTTON)
1354 b = cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND;
1355 else
1356 b = cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE;
1357 term_mouse (b, MA_DRAG, TO_CHR_X(X_POS(lParam)),
1358 TO_CHR_Y(Y_POS(lParam)));
1359 }
1360 return 0;
1361 case WM_IGNORE_CLIP:
1362 ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */
1363 break;
1364 case WM_DESTROYCLIPBOARD:
1365 if (!ignore_clip)
1366 term_deselect();
1367 ignore_clip = FALSE;
1368 return 0;
1369 case WM_PAINT:
1370 {
1371 PAINTSTRUCT p;
1372 HideCaret(hwnd);
1373 hdc = BeginPaint (hwnd, &p);
1374 if (pal) {
1375 SelectPalette (hdc, pal, TRUE);
1376 RealizePalette (hdc);
1377 }
1378 term_paint (hdc, p.rcPaint.left, p.rcPaint.top,
1379 p.rcPaint.right, p.rcPaint.bottom);
1380 SelectObject (hdc, GetStockObject(SYSTEM_FONT));
1381 SelectObject (hdc, GetStockObject(WHITE_PEN));
1382 EndPaint (hwnd, &p);
1383 ShowCaret(hwnd);
1384 }
1385 return 0;
1386 case WM_NETEVENT:
1387 /* Notice we can get multiple netevents, FD_READ, FD_WRITE etc
1388 * but the only one that's likely to try to overload us is FD_READ.
1389 * This means buffering just one is fine.
1390 */
1391 if (pending_netevent)
1392 enact_pending_netevent();
1393
1394 pending_netevent = TRUE;
1395 pend_netevent_wParam=wParam;
1396 pend_netevent_lParam=lParam;
1397 time(&last_movement);
1398 return 0;
1399 case WM_SETFOCUS:
1400 has_focus = TRUE;
1401 CreateCaret(hwnd, caretbm, 0, 0);
1402 ShowCaret(hwnd);
1403 compose_state = 0;
1404 term_out();
1405 term_update();
1406 break;
1407 case WM_KILLFOCUS:
1408 has_focus = FALSE;
1409 DestroyCaret();
1410 term_out();
1411 term_update();
1412 break;
1413 case WM_IGNORE_SIZE:
1414 ignore_size = TRUE; /* don't panic on next WM_SIZE msg */
1415 break;
1416 case WM_ENTERSIZEMOVE:
1417 EnableSizeTip(1);
1418 resizing = TRUE;
1419 break;
1420 case WM_EXITSIZEMOVE:
1421 EnableSizeTip(0);
1422 resizing = FALSE;
1423 back->size();
1424 break;
1425 case WM_SIZING:
1426 {
1427 int width, height, w, h, ew, eh;
1428 LPRECT r = (LPRECT)lParam;
1429
1430 width = r->right - r->left - extra_width;
1431 height = r->bottom - r->top - extra_height;
1432 w = (width + font_width/2) / font_width; if (w < 1) w = 1;
1433 h = (height + font_height/2) / font_height; if (h < 1) h = 1;
1434 UpdateSizeTip(hwnd, w, h);
1435 ew = width - w * font_width;
1436 eh = height - h * font_height;
1437 if (ew != 0) {
1438 if (wParam == WMSZ_LEFT ||
1439 wParam == WMSZ_BOTTOMLEFT ||
1440 wParam == WMSZ_TOPLEFT)
1441 r->left += ew;
1442 else
1443 r->right -= ew;
1444 }
1445 if (eh != 0) {
1446 if (wParam == WMSZ_TOP ||
1447 wParam == WMSZ_TOPRIGHT ||
1448 wParam == WMSZ_TOPLEFT)
1449 r->top += eh;
1450 else
1451 r->bottom -= eh;
1452 }
1453 if (ew || eh)
1454 return 1;
1455 else
1456 return 0;
1457 }
1458 /* break; (never reached) */
1459 case WM_SIZE:
1460 if (wParam == SIZE_MINIMIZED) {
1461 SetWindowText (hwnd,
1462 cfg.win_name_always ? window_name : icon_name);
1463 break;
1464 }
1465 if (wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED)
1466 SetWindowText (hwnd, window_name);
1467 if (!ignore_size) {
1468 int width, height, w, h;
1469#if 0 /* we have fixed this using WM_SIZING now */
1470 int ew, eh;
1471#endif
1472
1473 width = LOWORD(lParam);
1474 height = HIWORD(lParam);
1475 w = width / font_width; if (w < 1) w = 1;
1476 h = height / font_height; if (h < 1) h = 1;
1477#if 0 /* we have fixed this using WM_SIZING now */
1478 ew = width - w * font_width;
1479 eh = height - h * font_height;
1480 if (ew != 0 || eh != 0) {
1481 RECT r;
1482 GetWindowRect (hwnd, &r);
1483 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
1484 SetWindowPos (hwnd, NULL, 0, 0,
1485 r.right - r.left - ew, r.bottom - r.top - eh,
1486 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
1487 }
1488#endif
1489 if (w != cols || h != rows || just_reconfigged) {
1490 term_invalidate();
1491 term_size (h, w, cfg.savelines);
1492 /*
1493 * Don't call back->size in mid-resize. (To prevent
1494 * massive numbers of resize events getting sent
1495 * down the connection during an NT opaque drag.)
1496 */
1497 if (!resizing)
1498 back->size();
1499 just_reconfigged = FALSE;
1500 }
1501 }
1502 ignore_size = FALSE;
1503 return 0;
1504 case WM_VSCROLL:
1505 switch (LOWORD(wParam)) {
1506 case SB_BOTTOM: term_scroll(-1, 0); break;
1507 case SB_TOP: term_scroll(+1, 0); break;
1508 case SB_LINEDOWN: term_scroll (0, +1); break;
1509 case SB_LINEUP: term_scroll (0, -1); break;
1510 case SB_PAGEDOWN: term_scroll (0, +rows/2); break;
1511 case SB_PAGEUP: term_scroll (0, -rows/2); break;
1512 case SB_THUMBPOSITION: case SB_THUMBTRACK:
1513 term_scroll (1, HIWORD(wParam)); break;
1514 }
1515 break;
1516 case WM_PALETTECHANGED:
1517 if ((HWND) wParam != hwnd && pal != NULL) {
1518 HDC hdc = get_ctx();
1519 if (hdc) {
1520 if (RealizePalette (hdc) > 0)
1521 UpdateColors (hdc);
1522 free_ctx (hdc);
1523 }
1524 }
1525 break;
1526 case WM_QUERYNEWPALETTE:
1527 if (pal != NULL) {
1528 HDC hdc = get_ctx();
1529 if (hdc) {
1530 if (RealizePalette (hdc) > 0)
1531 UpdateColors (hdc);
1532 free_ctx (hdc);
1533 return TRUE;
1534 }
1535 }
1536 return FALSE;
1537 case WM_KEYDOWN:
1538 case WM_SYSKEYDOWN:
1539 case WM_KEYUP:
1540 case WM_SYSKEYUP:
1541 /*
1542 * Add the scan code and keypress timing to the random
1543 * number noise.
1544 */
1545 noise_ultralight(lParam);
1546
1547 /*
1548 * We don't do TranslateMessage since it disassociates the
1549 * resulting CHAR message from the KEYDOWN that sparked it,
1550 * which we occasionally don't want. Instead, we process
1551 * KEYDOWN, and call the Win32 translator functions so that
1552 * we get the translations under _our_ control.
1553 */
1554 {
1555 unsigned char buf[20];
1556 int len;
1557
1558 if (wParam==VK_PROCESSKEY) {
1559 MSG m;
1560 m.hwnd = hwnd;
1561 m.message = WM_KEYDOWN;
1562 m.wParam = wParam;
1563 m.lParam = lParam & 0xdfff;
1564 TranslateMessage(&m);
1565 } else {
1566 len = TranslateKey (message, wParam, lParam, buf);
1567 if (len == -1)
1568 return DefWindowProc (hwnd, message, wParam, lParam);
1569 ldisc->send (buf, len);
1570 }
1571 }
1572 return 0;
1573 case WM_IME_CHAR:
1574 {
1575 unsigned char buf[2];
1576
1577 buf[1] = wParam;
1578 buf[0] = wParam >> 8;
1579 ldisc->send (buf, 2);
1580 }
1581 case WM_CHAR:
1582 case WM_SYSCHAR:
1583 /*
1584 * Nevertheless, we are prepared to deal with WM_CHAR
1585 * messages, should they crop up. So if someone wants to
1586 * post the things to us as part of a macro manoeuvre,
1587 * we're ready to cope.
1588 */
1589 {
1590 char c = xlat_kbd2tty((unsigned char)wParam);
1591 ldisc->send (&c, 1);
1592 }
1593 return 0;
1594 }
1595
1596 return DefWindowProc (hwnd, message, wParam, lParam);
1597}
1598
1599/*
1600 * Move the system caret. (We maintain one, even though it's
1601 * invisible, for the benefit of blind people: apparently some
1602 * helper software tracks the system caret, so we should arrange to
1603 * have one.)
1604 */
1605void sys_cursor(int x, int y) {
1606 SetCaretPos(x * font_width, y * font_height);
1607}
1608
1609/*
1610 * Draw a line of text in the window, at given character
1611 * coordinates, in given attributes.
1612 *
1613 * We are allowed to fiddle with the contents of `text'.
1614 */
1615void do_text (Context ctx, int x, int y, char *text, int len,
1616 unsigned long attr, int lattr) {
1617 COLORREF fg, bg, t;
1618 int nfg, nbg, nfont;
1619 HDC hdc = ctx;
1620 RECT line_box;
1621 int force_manual_underline = 0;
1622 int fnt_width = font_width*(1+(lattr!=LATTR_NORM));
1623 static int *IpDx = 0, IpDxLEN = 0;;
1624
1625 if (len>IpDxLEN || IpDx[0] != fnt_width) {
1626 int i;
1627 if (len>IpDxLEN) {
1628 sfree(IpDx);
1629 IpDx = smalloc((len+16)*sizeof(int));
1630 IpDxLEN = (len+16);
1631 }
1632 for(i=0; i<IpDxLEN; i++)
1633 IpDx[i] = fnt_width;
1634 }
1635
1636 x *= fnt_width;
1637 y *= font_height;
1638
1639 if (attr & ATTR_ACTCURS) {
1640 attr &= (bold_mode == BOLD_COLOURS ? 0x300200 : 0x300300);
1641 attr ^= ATTR_CUR_XOR;
1642 }
1643
1644 nfont = 0;
1645 if (cfg.vtmode == VT_OEMONLY)
1646 nfont |= FONT_OEM;
1647
1648 /*
1649 * Map high-half characters in order to approximate ISO using
1650 * OEM character set. No characters are missing if the OEM codepage
1651 * is CP850.
1652 */
1653 if (nfont & FONT_OEM) {
1654 int i;
1655 for (i=0; i<len; i++)
1656 if (text[i] >= '\xA0' && text[i] <= '\xFF') {
1657#if 0
1658 /* This is CP850 ... perfect translation */
1659 static const char oemhighhalf[] =
1660 "\x20\xAD\xBD\x9C\xCF\xBE\xDD\xF5" /* A0-A7 */
1661 "\xF9\xB8\xA6\xAE\xAA\xF0\xA9\xEE" /* A8-AF */
1662 "\xF8\xF1\xFD\xFC\xEF\xE6\xF4\xFA" /* B0-B7 */
1663 "\xF7\xFB\xA7\xAF\xAC\xAB\xF3\xA8" /* B8-BF */
1664 "\xB7\xB5\xB6\xC7\x8E\x8F\x92\x80" /* C0-C7 */
1665 "\xD4\x90\xD2\xD3\xDE\xD6\xD7\xD8" /* C8-CF */
1666 "\xD1\xA5\xE3\xE0\xE2\xE5\x99\x9E" /* D0-D7 */
1667 "\x9D\xEB\xE9\xEA\x9A\xED\xE8\xE1" /* D8-DF */
1668 "\x85\xA0\x83\xC6\x84\x86\x91\x87" /* E0-E7 */
1669 "\x8A\x82\x88\x89\x8D\xA1\x8C\x8B" /* E8-EF */
1670 "\xD0\xA4\x95\xA2\x93\xE4\x94\xF6" /* F0-F7 */
1671 "\x9B\x97\xA3\x96\x81\xEC\xE7\x98" /* F8-FF */
1672 ;
1673#endif
1674 /* This is CP437 ... junk translation */
1675 static const unsigned char oemhighhalf[] = {
1676 0xff, 0xad, 0x9b, 0x9c, 0x6f, 0x9d, 0x7c, 0x15,
1677 0x22, 0x43, 0xa6, 0xae, 0xaa, 0x2d, 0x52, 0xc4,
1678 0xf8, 0xf1, 0xfd, 0x33, 0x27, 0xe6, 0x14, 0xfa,
1679 0x2c, 0x31, 0xa7, 0xaf, 0xac, 0xab, 0x2f, 0xa8,
1680 0x41, 0x41, 0x41, 0x41, 0x8e, 0x8f, 0x92, 0x80,
1681 0x45, 0x90, 0x45, 0x45, 0x49, 0x49, 0x49, 0x49,
1682 0x44, 0xa5, 0x4f, 0x4f, 0x4f, 0x4f, 0x99, 0x78,
1683 0xed, 0x55, 0x55, 0x55, 0x9a, 0x59, 0x50, 0xe1,
1684 0x85, 0xa0, 0x83, 0x61, 0x84, 0x86, 0x91, 0x87,
1685 0x8a, 0x82, 0x88, 0x89, 0x8d, 0xa1, 0x8c, 0x8b,
1686 0x0b, 0xa4, 0x95, 0xa2, 0x93, 0x6f, 0x94, 0xf6,
1687 0xed, 0x97, 0xa3, 0x96, 0x81, 0x79, 0x70, 0x98
1688 };
1689
1690 text[i] = oemhighhalf[(unsigned char)text[i] - 0xA0];
1691 }
1692 }
1693
1694 if (attr & ATTR_LINEDRW) {
1695 int i;
1696 /* ISO 8859-1 */
1697 static const char poorman[] =
1698 "*#****\xB0\xB1**+++++-----++++|****\xA3\xB7";
1699
1700 /* CP437 */
1701 static const char oemmap_437[] =
1702 "\x04\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1703 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3\xF3\xF2\xE3*\x9C\xFA";
1704
1705 /* CP850 */
1706 static const char oemmap_850[] =
1707 "\x04\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1708 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3****\x9C\xFA";
1709
1710 /* Poor windows font ... eg: windows courier */
1711 static const char oemmap[] =
1712 "*\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1713 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3****\x9C\xFA";
1714
1715 /*
1716 * Line drawing mapping: map ` thru ~ (0x60 thru 0x7E) to
1717 * VT100 line drawing chars; everything else stays normal.
1718 *
1719 * Actually '_' maps to space too, but that's done before.
1720 */
1721 switch (cfg.vtmode) {
1722 case VT_XWINDOWS:
1723 for (i=0; i<len; i++)
1724 if (text[i] >= '\x60' && text[i] <= '\x7E')
1725 text[i] += '\x01' - '\x60';
1726 break;
1727 case VT_OEMANSI:
1728 /* Make sure we actually have an OEM font */
1729 if (fonts[nfont|FONT_OEM]) {
1730 case VT_OEMONLY:
1731 nfont |= FONT_OEM;
1732 for (i=0; i<len; i++)
1733 if (text[i] >= '\x60' && text[i] <= '\x7E')
1734 text[i] = oemmap[(unsigned char)text[i] - 0x60];
1735 break;
1736 }
1737 case VT_POORMAN:
1738 for (i=0; i<len; i++)
1739 if (text[i] >= '\x60' && text[i] <= '\x7E')
1740 text[i] = poorman[(unsigned char)text[i] - 0x60];
1741 break;
1742 }
1743 }
1744
1745 nfg = 2 * ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
1746 nbg = 2 * ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
1747 if (bold_mode == BOLD_FONT && (attr & ATTR_BOLD))
1748 nfont |= FONT_BOLD;
1749 if (und_mode == UND_FONT && (attr & ATTR_UNDER))
1750 nfont |= FONT_UNDERLINE;
1751 if (!fonts[nfont])
1752 {
1753 if (nfont&FONT_UNDERLINE)
1754 force_manual_underline = 1;
1755 /* Don't do the same for manual bold, it could be bad news. */
1756
1757 nfont &= ~(FONT_BOLD|FONT_UNDERLINE);
1758 }
1759 if (font_needs_hand_underlining && (attr & ATTR_UNDER))
1760 force_manual_underline = 1;
1761 if (attr & ATTR_REVERSE) {
1762 t = nfg; nfg = nbg; nbg = t;
1763 }
1764 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BOLD))
1765 nfg++;
1766 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BLINK))
1767 nbg++;
1768 fg = colours[nfg];
1769 bg = colours[nbg];
1770 SelectObject (hdc, fonts[nfont]);
1771 SetTextColor (hdc, fg);
1772 SetBkColor (hdc, bg);
1773 SetBkMode (hdc, OPAQUE);
1774 line_box.left = x;
1775 line_box.top = y;
1776 line_box.right = x+fnt_width*len;
1777 line_box.bottom = y+font_height;
1778 ExtTextOut (hdc, x, y, ETO_CLIPPED|ETO_OPAQUE, &line_box, text, len, IpDx);
1779 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
1780 SetBkMode (hdc, TRANSPARENT);
1781
1782 /* GRR: This draws the character outside it's box and can leave
1783 * 'droppings' even with the clip box! I suppose I could loop it
1784 * one character at a time ... yuk.
1785 *
1786 * Or ... I could do a test print with "W", and use +1 or -1 for this
1787 * shift depending on if the leftmost column is blank...
1788 */
1789 ExtTextOut (hdc, x-1, y, ETO_CLIPPED, &line_box, text, len, IpDx);
1790 }
1791 if (force_manual_underline ||
1792 (und_mode == UND_LINE && (attr & ATTR_UNDER))) {
1793 HPEN oldpen;
1794 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, fg));
1795 MoveToEx (hdc, x, y+descent, NULL);
1796 LineTo (hdc, x+len*fnt_width, y+descent);
1797 oldpen = SelectObject (hdc, oldpen);
1798 DeleteObject (oldpen);
1799 }
1800 if (attr & ATTR_PASCURS) {
1801 POINT pts[5];
1802 HPEN oldpen;
1803 pts[0].x = pts[1].x = pts[4].x = x;
1804 pts[2].x = pts[3].x = x+fnt_width-1;
1805 pts[0].y = pts[3].y = pts[4].y = y;
1806 pts[1].y = pts[2].y = y+font_height-1;
1807 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, colours[23]));
1808 Polyline (hdc, pts, 5);
1809 oldpen = SelectObject (hdc, oldpen);
1810 DeleteObject (oldpen);
1811 }
1812}
1813
1814static int check_compose(int first, int second) {
1815
1816 static char * composetbl[] = {
1817