Changes from executor:
[sgt/putty] / window.c
CommitLineData
374330e2 1#include <windows.h>
2#include <commctrl.h>
3#include <winsock.h>
4#include <stdio.h>
5#include <stdlib.h>
6
7#define PUTTY_DO_GLOBALS /* actually _define_ globals */
8#include "putty.h"
9#include "win_res.h"
10
6833a413 11#define IDM_SHOWLOG 0x0010
12#define IDM_NEWSESS 0x0020
13#define IDM_DUPSESS 0x0030
14#define IDM_RECONF 0x0040
15#define IDM_CLRSB 0x0050
16#define IDM_RESET 0x0060
17#define IDM_TEL_AYT 0x0070
18#define IDM_TEL_BRK 0x0080
19#define IDM_TEL_SYNCH 0x0090
20#define IDM_TEL_EC 0x00a0
21#define IDM_TEL_EL 0x00b0
22#define IDM_TEL_GA 0x00c0
23#define IDM_TEL_NOP 0x00d0
24#define IDM_TEL_ABORT 0x00e0
25#define IDM_TEL_AO 0x00f0
26#define IDM_TEL_IP 0x0100
27#define IDM_TEL_SUSP 0x0110
28#define IDM_TEL_EOR 0x0120
29#define IDM_TEL_EOF 0x0130
30#define IDM_ABOUT 0x0140
31#define IDM_SAVEDSESS 0x0150
32
33#define IDM_SAVED_MIN 0x1000
34#define IDM_SAVED_MAX 0x2000
374330e2 35
36#define WM_IGNORE_SIZE (WM_USER + 2)
37#define WM_IGNORE_CLIP (WM_USER + 3)
38
39static int WINAPI WndProc (HWND, UINT, WPARAM, LPARAM);
40static int TranslateKey(WPARAM wParam, LPARAM lParam, unsigned char *output);
41static void cfgtopalette(void);
42static void init_palette(void);
43static void init_fonts(void);
44
45static int extra_width, extra_height;
46
47#define FONT_NORMAL 0
48#define FONT_BOLD 1
49#define FONT_UNDERLINE 2
50#define FONT_BOLDUND 3
51#define FONT_OEM 4
52#define FONT_OEMBOLD 5
53#define FONT_OEMBOLDUND 6
54#define FONT_OEMUND 7
55static HFONT fonts[8];
56static enum {
57 BOLD_COLOURS, BOLD_SHADOW, BOLD_FONT
58} bold_mode;
59static enum {
60 UND_LINE, UND_FONT
61} und_mode;
62static int descent;
63
64#define NCOLOURS 24
65static COLORREF colours[NCOLOURS];
66static HPALETTE pal;
67static LPLOGPALETTE logpal;
68static RGBTRIPLE defpal[NCOLOURS];
69
70static HWND hwnd;
71
72static int dbltime, lasttime, lastact;
73static Mouse_Button lastbtn;
74
75static char *window_name, *icon_name;
76
77int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) {
78 static char appname[] = "PuTTY";
79 WORD winsock_ver;
80 WSADATA wsadata;
81 WNDCLASS wndclass;
82 MSG msg;
83 int guess_width, guess_height;
84
73251d5d 85 putty_inst = inst;
86
374330e2 87 winsock_ver = MAKEWORD(1, 1);
88 if (WSAStartup(winsock_ver, &wsadata)) {
89 MessageBox(NULL, "Unable to initialise WinSock", "WinSock Error",
90 MB_OK | MB_ICONEXCLAMATION);
91 return 1;
92 }
93 if (LOBYTE(wsadata.wVersion) != 1 || HIBYTE(wsadata.wVersion) != 1) {
94 MessageBox(NULL, "WinSock version is incompatible with 1.1",
95 "WinSock Error", MB_OK | MB_ICONEXCLAMATION);
96 WSACleanup();
97 return 1;
98 }
99 /* WISHLIST: maybe allow config tweaking even if winsock not present? */
100
101 InitCommonControls();
102
103 /*
104 * Process the command line.
105 */
106 {
107 char *p;
108
e277c42d 109 default_protocol = DEFAULT_PROTOCOL;
110 default_port = DEFAULT_PORT;
111
374330e2 112 do_defaults(NULL);
113
114 p = cmdline;
115 while (*p && isspace(*p)) p++;
116
117 /*
e277c42d 118 * Process command line options first. Yes, this can be
119 * done better, and it will be as soon as I have the
120 * energy...
121 */
122 while (*p == '-') {
123 char *q = p + strcspn(p, " \t");
124 p++;
125 if (q == p + 3 &&
126 tolower(p[0]) == 's' &&
127 tolower(p[1]) == 's' &&
128 tolower(p[2]) == 'h') {
129 default_protocol = cfg.protocol = PROT_SSH;
130 default_port = cfg.port = 22;
131 }
132 p = q + strspn(q, " \t");
133 }
134
135 /*
374330e2 136 * An initial @ means to activate a saved session.
137 */
138 if (*p == '@') {
139 do_defaults (p+1);
140 if (!*cfg.host && !do_config()) {
141 WSACleanup();
142 return 0;
143 }
144 } else if (*p == '&') {
145 /*
146 * An initial & means we've been given a command line
147 * containing the hex value of a HANDLE for a file
148 * mapping object, which we must then extract as a
149 * config.
150 */
151 HANDLE filemap;
152 Config *cp;
153 if (sscanf(p+1, "%x", &filemap) == 1 &&
154 (cp = MapViewOfFile(filemap, FILE_MAP_READ,
155 0, 0, sizeof(Config))) != NULL) {
156 cfg = *cp;
157 UnmapViewOfFile(cp);
158 CloseHandle(filemap);
159 } else if (!do_config()) {
160 WSACleanup();
161 return 0;
162 }
163 } else if (*p) {
164 char *q = p;
165 while (*p && !isspace(*p)) p++;
166 if (*p)
167 *p++ = '\0';
168 strncpy (cfg.host, q, sizeof(cfg.host)-1);
169 cfg.host[sizeof(cfg.host)-1] = '\0';
170 while (*p && isspace(*p)) p++;
171 if (*p)
172 cfg.port = atoi(p);
173 else
174 cfg.port = -1;
175 } else {
176 if (!do_config()) {
177 WSACleanup();
178 return 0;
179 }
180 }
181 }
182
5e1a8e27 183 back = (cfg.protocol == PROT_SSH ? &ssh_backend :
184 cfg.protocol == PROT_TELNET ? &telnet_backend : &raw_backend );
374330e2 185
186 if (!prev) {
187 wndclass.style = 0;
188 wndclass.lpfnWndProc = WndProc;
189 wndclass.cbClsExtra = 0;
190 wndclass.cbWndExtra = 0;
191 wndclass.hInstance = inst;
192 wndclass.hIcon = LoadIcon (inst,
193 MAKEINTRESOURCE(IDI_MAINICON));
1bb542b2 194 wndclass.hCursor = LoadCursor (NULL, IDC_IBEAM);
374330e2 195 wndclass.hbrBackground = GetStockObject (BLACK_BRUSH);
196 wndclass.lpszMenuName = NULL;
197 wndclass.lpszClassName = appname;
198
199 RegisterClass (&wndclass);
200 }
201
202 hwnd = NULL;
203
204 savelines = cfg.savelines;
205 term_init();
206
207 cfgtopalette();
208
209 /*
210 * Guess some defaults for the window size. This all gets
211 * updated later, so we don't really care too much. However, we
212 * do want the font width/height guesses to correspond to a
213 * large font rather than a small one...
214 */
215
216 font_width = 10;
217 font_height = 20;
218 extra_width = 25;
219 extra_height = 28;
220 term_size (cfg.height, cfg.width, cfg.savelines);
221 guess_width = extra_width + font_width * cols;
222 guess_height = extra_height + font_height * rows;
223 {
224 RECT r;
225 HWND w = GetDesktopWindow();
226 GetWindowRect (w, &r);
227 if (guess_width > r.right - r.left)
228 guess_width = r.right - r.left;
229 if (guess_height > r.bottom - r.top)
230 guess_height = r.bottom - r.top;
231 }
232
233 hwnd = CreateWindow (appname, appname,
234 WS_OVERLAPPEDWINDOW | WS_VSCROLL,
235 CW_USEDEFAULT, CW_USEDEFAULT,
236 guess_width, guess_height,
237 NULL, NULL, inst, NULL);
238
239 /*
240 * Initialise the fonts, simultaneously correcting the guesses
241 * for font_{width,height}.
242 */
243 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
244 und_mode = UND_FONT;
245 init_fonts();
246
247 /*
248 * Correct the guesses for extra_{width,height}.
249 */
250 {
251 RECT cr, wr;
252 GetWindowRect (hwnd, &wr);
253 GetClientRect (hwnd, &cr);
254 extra_width = wr.right - wr.left - cr.right + cr.left;
255 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
256 }
257
258 /*
259 * Resize the window, now we know what size we _really_ want it
260 * to be.
261 */
262 guess_width = extra_width + font_width * cols;
263 guess_height = extra_height + font_height * rows;
264 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
265 SetWindowPos (hwnd, NULL, 0, 0, guess_width, guess_height,
266 SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER);
267
268 /*
269 * Initialise the scroll bar.
270 */
271 {
272 SCROLLINFO si;
273
274 si.cbSize = sizeof(si);
275 si.fMask = SIF_RANGE | SIF_PAGE | SIF_POS | SIF_DISABLENOSCROLL;
276 si.nMin = 0;
277 si.nMax = rows-1;
278 si.nPage = rows;
279 si.nPos = 0;
280 SetScrollInfo (hwnd, SB_VERT, &si, FALSE);
281 }
282
283 /*
284 * Start up the telnet connection.
285 */
286 {
287 char *error;
288 char msg[1024];
289 char *realhost;
290
291 error = back->init (hwnd, cfg.host, cfg.port, &realhost);
292 if (error) {
293 sprintf(msg, "Unable to open connection:\n%s", error);
294 MessageBox(NULL, msg, "PuTTY Error", MB_ICONERROR | MB_OK);
295 return 0;
296 }
297 window_name = icon_name = NULL;
5ac36532 298 sprintf(msg, "%s - PuTTY", realhost);
374330e2 299 set_title (msg);
300 set_icon (msg);
301 }
302
303 /*
304 * Set up the input and output buffers.
305 */
306 inbuf_reap = inbuf_head = 0;
307 outbuf_reap = outbuf_head = 0;
308
309 /*
310 * Prepare the mouse handler.
311 */
312 lastact = MA_NOTHING;
313 lastbtn = MB_NOTHING;
314 dbltime = GetDoubleClickTime();
315
316 /*
317 * Set up the session-control options on the system menu.
318 */
319 {
320 HMENU m = GetSystemMenu (hwnd, FALSE);
0a4aa984 321 HMENU p,s;
322 int i;
374330e2 323
324 AppendMenu (m, MF_SEPARATOR, 0, 0);
325 if (cfg.protocol == PROT_TELNET) {
326 p = CreateMenu();
327 AppendMenu (p, MF_ENABLED, IDM_TEL_AYT, "Are You There");
328 AppendMenu (p, MF_ENABLED, IDM_TEL_BRK, "Break");
329 AppendMenu (p, MF_ENABLED, IDM_TEL_SYNCH, "Synch");
330 AppendMenu (p, MF_SEPARATOR, 0, 0);
331 AppendMenu (p, MF_ENABLED, IDM_TEL_EC, "Erase Character");
332 AppendMenu (p, MF_ENABLED, IDM_TEL_EL, "Erase Line");
333 AppendMenu (p, MF_ENABLED, IDM_TEL_GA, "Go Ahead");
334 AppendMenu (p, MF_ENABLED, IDM_TEL_NOP, "No Operation");
335 AppendMenu (p, MF_SEPARATOR, 0, 0);
336 AppendMenu (p, MF_ENABLED, IDM_TEL_ABORT, "Abort Process");
337 AppendMenu (p, MF_ENABLED, IDM_TEL_AO, "Abort Output");
338 AppendMenu (p, MF_ENABLED, IDM_TEL_IP, "Interrupt Process");
339 AppendMenu (p, MF_ENABLED, IDM_TEL_SUSP, "Suspend Process");
340 AppendMenu (p, MF_SEPARATOR, 0, 0);
341 AppendMenu (p, MF_ENABLED, IDM_TEL_EOR, "End Of Record");
342 AppendMenu (p, MF_ENABLED, IDM_TEL_EOF, "End Of File");
343 AppendMenu (m, MF_POPUP | MF_ENABLED, (UINT) p, "Telnet Command");
374330e2 344 AppendMenu (m, MF_SEPARATOR, 0, 0);
345 }
c5e9c988 346 AppendMenu (m, MF_ENABLED, IDM_SHOWLOG, "Event Log");
347 AppendMenu (m, MF_SEPARATOR, 0, 0);
374330e2 348 AppendMenu (m, MF_ENABLED, IDM_NEWSESS, "New Session");
349 AppendMenu (m, MF_ENABLED, IDM_DUPSESS, "Duplicate Session");
0a4aa984 350 s = CreateMenu();
351 get_sesslist(TRUE);
352 for (i = 1 ; i < ((nsessions < 256) ? nsessions : 256) ; i++)
353 AppendMenu (s, MF_ENABLED, IDM_SAVED_MIN + (16 * i) , sessions[i]);
354 AppendMenu (m, MF_POPUP | MF_ENABLED, (UINT) s, "Saved Sessions");
374330e2 355 AppendMenu (m, MF_ENABLED, IDM_RECONF, "Change Settings");
356 AppendMenu (m, MF_SEPARATOR, 0, 0);
357 AppendMenu (m, MF_ENABLED, IDM_CLRSB, "Clear Scrollback");
358 AppendMenu (m, MF_ENABLED, IDM_RESET, "Reset Terminal");
359 AppendMenu (m, MF_SEPARATOR, 0, 0);
360 AppendMenu (m, MF_ENABLED, IDM_ABOUT, "About PuTTY");
361 }
362
363 /*
364 * Finally show the window!
365 */
366 ShowWindow (hwnd, show);
367
368 /*
369 * Set the palette up.
370 */
371 pal = NULL;
372 logpal = NULL;
373 init_palette();
374
375 has_focus = (GetForegroundWindow() == hwnd);
376 UpdateWindow (hwnd);
377
378 while (GetMessage (&msg, NULL, 0, 0)) {
379 DispatchMessage (&msg);
380 if (inbuf_reap != inbuf_head)
381 term_out();
382 /* In idle moments, do a full screen update */
383 if (!PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
384 term_update();
385 }
386
387 /*
388 * Clean up.
389 */
390 {
391 int i;
392 for (i=0; i<8; i++)
393 if (fonts[i])
394 DeleteObject(fonts[i]);
395 }
396 sfree(logpal);
397 if (pal)
398 DeleteObject(pal);
399 WSACleanup();
400
401 if (cfg.protocol == PROT_SSH)
402 random_save_seed();
403
404 return msg.wParam;
405}
406
407/*
408 * Copy the colour palette from the configuration data into defpal.
409 * This is non-trivial because the colour indices are different.
410 */
411static void cfgtopalette(void) {
412 int i;
413 static const int ww[] = {
414 6, 7, 8, 9, 10, 11, 12, 13,
415 14, 15, 16, 17, 18, 19, 20, 21,
416 0, 1, 2, 3, 4, 4, 5, 5
417 };
418
419 for (i=0; i<24; i++) {
420 int w = ww[i];
421 defpal[i].rgbtRed = cfg.colours[w][0];
422 defpal[i].rgbtGreen = cfg.colours[w][1];
423 defpal[i].rgbtBlue = cfg.colours[w][2];
424 }
425}
426
427/*
428 * Set up the colour palette.
429 */
430static void init_palette(void) {
431 int i;
432 HDC hdc = GetDC (hwnd);
433 if (hdc) {
434 if (cfg.try_palette &&
435 GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE) {
436 logpal = smalloc(sizeof(*logpal)
437 - sizeof(logpal->palPalEntry)
438 + NCOLOURS * sizeof(PALETTEENTRY));
439 logpal->palVersion = 0x300;
440 logpal->palNumEntries = NCOLOURS;
441 for (i = 0; i < NCOLOURS; i++) {
442 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
443 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
444 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
445 logpal->palPalEntry[i].peFlags = PC_NOCOLLAPSE;
446 }
447 pal = CreatePalette (logpal);
448 if (pal) {
449 SelectPalette (hdc, pal, FALSE);
450 RealizePalette (hdc);
451 SelectPalette (hdc, GetStockObject (DEFAULT_PALETTE),
452 FALSE);
453 }
454 }
455 ReleaseDC (hwnd, hdc);
456 }
457 if (pal)
458 for (i=0; i<NCOLOURS; i++)
459 colours[i] = PALETTERGB(defpal[i].rgbtRed,
460 defpal[i].rgbtGreen,
461 defpal[i].rgbtBlue);
462 else
463 for(i=0; i<NCOLOURS; i++)
464 colours[i] = RGB(defpal[i].rgbtRed,
465 defpal[i].rgbtGreen,
466 defpal[i].rgbtBlue);
467}
468
469/*
470 * Initialise all the fonts we will need. There may be as many as
471 * eight or as few as one. We also:
472 *
473 * - check the font width and height, correcting our guesses if
474 * necessary.
475 *
476 * - verify that the bold font is the same width as the ordinary
477 * one, and engage shadow bolding if not.
478 *
479 * - verify that the underlined font is the same width as the
480 * ordinary one (manual underlining by means of line drawing can
481 * be done in a pinch).
482 *
483 * - verify, in OEM/ANSI combined mode, that the OEM and ANSI base
484 * fonts are the same size, and shift to OEM-only mode if not.
485 */
486static void init_fonts(void) {
487 TEXTMETRIC tm;
488 int i, j;
489 int widths[5];
490 HDC hdc;
491 int fw_dontcare, fw_bold;
492
493 for (i=0; i<8; i++)
494 fonts[i] = NULL;
495
496 if (cfg.fontisbold) {
497 fw_dontcare = FW_BOLD;
498 fw_bold = FW_BLACK;
499 } else {
500 fw_dontcare = FW_DONTCARE;
501 fw_bold = FW_BOLD;
502 }
503
504#define f(i,c,w,u) \
505 fonts[i] = CreateFont (cfg.fontheight, 0, 0, 0, w, FALSE, u, FALSE, \
506 c, OUT_DEFAULT_PRECIS, \
507 CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, \
508 FIXED_PITCH | FF_DONTCARE, cfg.font)
509 if (cfg.vtmode != VT_OEMONLY) {
14963b8f 510 f(FONT_NORMAL, cfg.fontcharset, fw_dontcare, FALSE);
511 f(FONT_UNDERLINE, cfg.fontcharset, fw_dontcare, TRUE);
374330e2 512 }
513 if (cfg.vtmode == VT_OEMANSI || cfg.vtmode == VT_OEMONLY) {
514 f(FONT_OEM, OEM_CHARSET, fw_dontcare, FALSE);
515 f(FONT_OEMUND, OEM_CHARSET, fw_dontcare, TRUE);
516 }
517 if (bold_mode == BOLD_FONT) {
518 if (cfg.vtmode != VT_OEMONLY) {
14963b8f 519 f(FONT_BOLD, cfg.fontcharset, fw_bold, FALSE);
520 f(FONT_BOLDUND, cfg.fontcharset, fw_bold, TRUE);
374330e2 521 }
522 if (cfg.vtmode == VT_OEMANSI || cfg.vtmode == VT_OEMONLY) {
523 f(FONT_OEMBOLD, OEM_CHARSET, fw_bold, FALSE);
524 f(FONT_OEMBOLDUND, OEM_CHARSET, fw_bold, TRUE);
525 }
526 } else {
527 fonts[FONT_BOLD] = fonts[FONT_BOLDUND] = NULL;
528 fonts[FONT_OEMBOLD] = fonts[FONT_OEMBOLDUND] = NULL;
529 }
530#undef f
531
532 hdc = GetDC(hwnd);
533
534 if (cfg.vtmode == VT_OEMONLY)
535 j = 4;
536 else
537 j = 0;
538
539 for (i=0; i<(cfg.vtmode == VT_OEMANSI ? 5 : 4); i++) {
540 if (fonts[i+j]) {
541 SelectObject (hdc, fonts[i+j]);
542 GetTextMetrics(hdc, &tm);
543 if (i == 0 || i == 4) {
544 font_height = tm.tmHeight;
545 font_width = tm.tmAveCharWidth;
546 descent = tm.tmAscent + 1;
547 if (descent >= font_height)
548 descent = font_height - 1;
549 }
550 widths[i] = tm.tmAveCharWidth;
551 }
552 }
553
554 ReleaseDC (hwnd, hdc);
555
556 if (widths[FONT_UNDERLINE] != widths[FONT_NORMAL] ||
557 (bold_mode == BOLD_FONT &&
558 widths[FONT_BOLDUND] != widths[FONT_BOLD])) {
559 und_mode = UND_LINE;
560 DeleteObject (fonts[FONT_UNDERLINE]);
561 if (bold_mode == BOLD_FONT)
562 DeleteObject (fonts[FONT_BOLDUND]);
563 }
564
565 if (bold_mode == BOLD_FONT &&
566 widths[FONT_BOLD] != widths[FONT_NORMAL]) {
567 bold_mode = BOLD_SHADOW;
568 DeleteObject (fonts[FONT_BOLD]);
569 if (und_mode == UND_FONT)
570 DeleteObject (fonts[FONT_BOLDUND]);
571 }
572
573 if (cfg.vtmode == VT_OEMANSI && widths[FONT_OEM] != widths[FONT_NORMAL]) {
574 MessageBox(NULL, "The OEM and ANSI versions of this font are\n"
575 "different sizes. Using OEM-only mode instead",
576 "Font Size Mismatch", MB_ICONINFORMATION | MB_OK);
577 cfg.vtmode = VT_OEMONLY;
578 for (i=0; i<4; i++)
579 if (fonts[i])
580 DeleteObject (fonts[i]);
581 }
582}
583
584void request_resize (int w, int h) {
585 int width = extra_width + font_width * w;
586 int height = extra_height + font_height * h;
587
588 SetWindowPos (hwnd, NULL, 0, 0, width, height,
589 SWP_NOACTIVATE | SWP_NOCOPYBITS |
590 SWP_NOMOVE | SWP_NOZORDER);
591}
592
593static void click (Mouse_Button b, int x, int y) {
fdedf2c8 594 int thistime = GetMessageTime();
595
596 if (lastbtn == b && thistime - lasttime < dbltime) {
374330e2 597 lastact = (lastact == MA_CLICK ? MA_2CLK :
598 lastact == MA_2CLK ? MA_3CLK :
599 lastact == MA_3CLK ? MA_CLICK : MA_NOTHING);
600 } else {
601 lastbtn = b;
602 lastact = MA_CLICK;
603 }
604 if (lastact != MA_NOTHING)
605 term_mouse (b, lastact, x, y);
fdedf2c8 606 lasttime = thistime;
374330e2 607}
608
609static int WINAPI WndProc (HWND hwnd, UINT message,
610 WPARAM wParam, LPARAM lParam) {
611 HDC hdc;
612 static int ignore_size = FALSE;
613 static int ignore_clip = FALSE;
614 static int just_reconfigged = FALSE;
615
616 switch (message) {
617 case WM_CREATE:
618 break;
68130d34 619 case WM_CLOSE:
9ef49106 620 if (!cfg.warn_on_close ||
621 MessageBox(hwnd, "Are you sure you want to close this session?",
68130d34 622 "PuTTY Exit Confirmation",
623 MB_ICONWARNING | MB_OKCANCEL) == IDOK)
624 DestroyWindow(hwnd);
625 return 0;
374330e2 626 case WM_DESTROY:
627 PostQuitMessage (0);
628 return 0;
6833a413 629 case WM_SYSCOMMAND:
630 switch (wParam & ~0xF) { /* low 4 bits reserved to Windows */
374330e2 631 case IDM_SHOWLOG:
c5e9c988 632 showeventlog(hwnd);
374330e2 633 break;
634 case IDM_NEWSESS:
635 case IDM_DUPSESS:
6833a413 636 case IDM_SAVEDSESS:
374330e2 637 {
638 char b[2048];
639 char c[30], *cl;
e4e4cc7e 640 int freecl = FALSE;
374330e2 641 STARTUPINFO si;
642 PROCESS_INFORMATION pi;
643 HANDLE filemap = NULL;
644
645 if (wParam == IDM_DUPSESS) {
646 /*
647 * Allocate a file-mapping memory chunk for the
648 * config structure.
649 */
650 SECURITY_ATTRIBUTES sa;
651 Config *p;
652
653 sa.nLength = sizeof(sa);
654 sa.lpSecurityDescriptor = NULL;
655 sa.bInheritHandle = TRUE;
656 filemap = CreateFileMapping((HANDLE)0xFFFFFFFF,
657 &sa,
658 PAGE_READWRITE,
659 0,
660 sizeof(Config),
661 NULL);
662 if (filemap) {
663 p = (Config *)MapViewOfFile(filemap,
664 FILE_MAP_WRITE,
665 0, 0, sizeof(Config));
666 if (p) {
667 *p = cfg; /* structure copy */
668 UnmapViewOfFile(p);
669 }
670 }
671 sprintf(c, "putty &%08x", filemap);
672 cl = c;
0a4aa984 673 } else if (wParam == IDM_SAVEDSESS) {
e4e4cc7e 674 char *session = sessions[(lParam - IDM_SAVED_MIN) / 16];
675 cl = malloc(16 + strlen(session)); /* 8, but play safe */
676 if (!cl)
677 cl = NULL; /* not a very important failure mode */
678 sprintf(cl, "putty @%s", session);
679 freecl = TRUE;
374330e2 680 } else
6833a413 681 cl = NULL;
374330e2 682
683 GetModuleFileName (NULL, b, sizeof(b)-1);
684 si.cb = sizeof(si);
685 si.lpReserved = NULL;
686 si.lpDesktop = NULL;
687 si.lpTitle = NULL;
688 si.dwFlags = 0;
689 si.cbReserved2 = 0;
690 si.lpReserved2 = NULL;
691 CreateProcess (b, cl, NULL, NULL, TRUE,
692 NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi);
693
694 if (filemap)
695 CloseHandle(filemap);
e4e4cc7e 696 if (freecl)
697 free(cl);
374330e2 698 }
699 break;
700 case IDM_RECONF:
701 if (!do_reconfig(hwnd))
702 break;
703 just_reconfigged = TRUE;
704 {
705 int i;
706 for (i=0; i<8; i++)
707 if (fonts[i])
708 DeleteObject(fonts[i]);
709 }
710 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
711 und_mode = UND_FONT;
712 init_fonts();
713 sfree(logpal);
714 if (pal)
715 DeleteObject(pal);
716 logpal = NULL;
717 pal = NULL;
718 cfgtopalette();
719 init_palette();
720 term_size(cfg.height, cfg.width, cfg.savelines);
721 InvalidateRect(hwnd, NULL, TRUE);
722 SetWindowPos (hwnd, NULL, 0, 0,
723 extra_width + font_width * cfg.width,
724 extra_height + font_height * cfg.height,
725 SWP_NOACTIVATE | SWP_NOCOPYBITS |
726 SWP_NOMOVE | SWP_NOZORDER);
727 if (IsIconic(hwnd)) {
728 SetWindowText (hwnd,
729 cfg.win_name_always ? window_name : icon_name);
730 }
731 break;
732 case IDM_CLRSB:
733 term_clrsb();
734 break;
735 case IDM_RESET:
736 term_pwron();
737 break;
738 case IDM_TEL_AYT: back->special (TS_AYT); break;
739 case IDM_TEL_BRK: back->special (TS_BRK); break;
740 case IDM_TEL_SYNCH: back->special (TS_SYNCH); break;
741 case IDM_TEL_EC: back->special (TS_EC); break;
742 case IDM_TEL_EL: back->special (TS_EL); break;
743 case IDM_TEL_GA: back->special (TS_GA); break;
744 case IDM_TEL_NOP: back->special (TS_NOP); break;
745 case IDM_TEL_ABORT: back->special (TS_ABORT); break;
746 case IDM_TEL_AO: back->special (TS_AO); break;
747 case IDM_TEL_IP: back->special (TS_IP); break;
748 case IDM_TEL_SUSP: back->special (TS_SUSP); break;
749 case IDM_TEL_EOR: back->special (TS_EOR); break;
750 case IDM_TEL_EOF: back->special (TS_EOF); break;
751 case IDM_ABOUT:
752 showabout (hwnd);
753 break;
0a4aa984 754 default:
755 if (wParam >= IDM_SAVED_MIN && wParam <= IDM_SAVED_MAX) {
756 SendMessage(hwnd, WM_SYSCOMMAND, IDM_SAVEDSESS, wParam);
757 }
374330e2 758 }
759 break;
37508af4 760
761#define X_POS(l) ((int)(short)LOWORD(l))
762#define Y_POS(l) ((int)(short)HIWORD(l))
763
fdedf2c8 764#define TO_CHR_X(x) (((x)<0 ? (x)-font_width+1 : (x)) / font_width)
765#define TO_CHR_Y(y) (((y)<0 ? (y)-font_height+1: (y)) / font_height)
766
374330e2 767 case WM_LBUTTONDOWN:
fdedf2c8 768 click (MB_SELECT, TO_CHR_X(X_POS(lParam)),
769 TO_CHR_Y(Y_POS(lParam)));
fef97f43 770 SetCapture(hwnd);
374330e2 771 return 0;
772 case WM_LBUTTONUP:
fdedf2c8 773 term_mouse (MB_SELECT, MA_RELEASE, TO_CHR_X(X_POS(lParam)),
774 TO_CHR_Y(Y_POS(lParam)));
37508af4 775 ReleaseCapture();
374330e2 776 return 0;
777 case WM_MBUTTONDOWN:
37508af4 778 SetCapture(hwnd);
374330e2 779 click (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
fdedf2c8 780 TO_CHR_X(X_POS(lParam)),
781 TO_CHR_Y(Y_POS(lParam)));
374330e2 782 return 0;
783 case WM_MBUTTONUP:
784 term_mouse (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
fdedf2c8 785 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
786 TO_CHR_Y(Y_POS(lParam)));
37508af4 787 ReleaseCapture();
a0b1cefc 788 return 0;
374330e2 789 case WM_RBUTTONDOWN:
37508af4 790 SetCapture(hwnd);
374330e2 791 click (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
fdedf2c8 792 TO_CHR_X(X_POS(lParam)),
793 TO_CHR_Y(Y_POS(lParam)));
374330e2 794 return 0;
795 case WM_RBUTTONUP:
796 term_mouse (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
fdedf2c8 797 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
798 TO_CHR_Y(Y_POS(lParam)));
37508af4 799 ReleaseCapture();
374330e2 800 return 0;
801 case WM_MOUSEMOVE:
802 /*
803 * Add the mouse position and message time to the random
804 * number noise, if we're using ssh.
805 */
806 if (cfg.protocol == PROT_SSH)
807 noise_ultralight(lParam);
808
809 if (wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON)) {
810 Mouse_Button b;
811 if (wParam & MK_LBUTTON)
812 b = MB_SELECT;
813 else if (wParam & MK_MBUTTON)
814 b = cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND;
815 else
816 b = cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE;
fdedf2c8 817 term_mouse (b, MA_DRAG, TO_CHR_X(X_POS(lParam)),
818 TO_CHR_Y(Y_POS(lParam)));
374330e2 819 }
374330e2 820 return 0;
821 case WM_IGNORE_CLIP:
822 ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */
823 break;
824 case WM_DESTROYCLIPBOARD:
825 if (!ignore_clip)
826 term_deselect();
827 ignore_clip = FALSE;
828 return 0;
829 case WM_PAINT:
830 {
831 PAINTSTRUCT p;
832 hdc = BeginPaint (hwnd, &p);
833 if (pal) {
834 SelectPalette (hdc, pal, TRUE);
835 RealizePalette (hdc);
836 }
837 term_paint (hdc, p.rcPaint.left, p.rcPaint.top,
838 p.rcPaint.right, p.rcPaint.bottom);
839 SelectObject (hdc, GetStockObject(SYSTEM_FONT));
840 SelectObject (hdc, GetStockObject(WHITE_PEN));
841 EndPaint (hwnd, &p);
842 }
843 return 0;
844 case WM_NETEVENT:
845 {
846 int i = back->msg (wParam, lParam);
847 if (i < 0) {
848 char buf[1024];
849 switch (WSABASEERR + (-i) % 10000) {
850 case WSAECONNRESET:
851 sprintf(buf, "Connection reset by peer");
852 break;
853 default:
854 sprintf(buf, "Unexpected network error %d", -i);
855 break;
856 }
857 MessageBox(hwnd, buf, "PuTTY Fatal Error",
858 MB_ICONERROR | MB_OK);
859 PostQuitMessage(1);
860 } else if (i == 0) {
861 if (cfg.close_on_exit)
862 PostQuitMessage(0);
863 else {
864 MessageBox(hwnd, "Connection closed by remote host",
865 "PuTTY", MB_OK | MB_ICONINFORMATION);
866 SetWindowText (hwnd, "PuTTY (inactive)");
867 }
868 }
869 }
870 return 0;
871 case WM_SETFOCUS:
872 has_focus = TRUE;
873 term_out();
874 term_update();
875 break;
876 case WM_KILLFOCUS:
877 has_focus = FALSE;
878 term_out();
879 term_update();
880 break;
881 case WM_IGNORE_SIZE:
882 ignore_size = TRUE; /* don't panic on next WM_SIZE msg */
883 break;
73251d5d 884 case WM_ENTERSIZEMOVE:
885 EnableSizeTip(1);
886 break;
887 case WM_EXITSIZEMOVE:
888 EnableSizeTip(0);
889 break;
374330e2 890 case WM_SIZING:
891 {
892 int width, height, w, h, ew, eh;
893 LPRECT r = (LPRECT)lParam;
894
895 width = r->right - r->left - extra_width;
896 height = r->bottom - r->top - extra_height;
897 w = (width + font_width/2) / font_width; if (w < 1) w = 1;
898 h = (height + font_height/2) / font_height; if (h < 1) h = 1;
73251d5d 899 UpdateSizeTip(hwnd, w, h);
374330e2 900 ew = width - w * font_width;
901 eh = height - h * font_height;
902 if (ew != 0) {
903 if (wParam == WMSZ_LEFT ||
904 wParam == WMSZ_BOTTOMLEFT ||
905 wParam == WMSZ_TOPLEFT)
906 r->left += ew;
907 else
908 r->right -= ew;
909 }
910 if (eh != 0) {
911 if (wParam == WMSZ_TOP ||
912 wParam == WMSZ_TOPRIGHT ||
913 wParam == WMSZ_TOPLEFT)
914 r->top += eh;
915 else
916 r->bottom -= eh;
917 }
918 if (ew || eh)
919 return 1;
920 else
921 return 0;
922 }
923 break;
924 case WM_SIZE:
925 if (wParam == SIZE_MINIMIZED) {
926 SetWindowText (hwnd,
927 cfg.win_name_always ? window_name : icon_name);
928 break;
929 }
930 if (wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED)
931 SetWindowText (hwnd, window_name);
932 if (!ignore_size) {
1a6f78fe 933 int width, height, w, h;
934#if 0 /* we have fixed this using WM_SIZING now */
935 int ew, eh;
936#endif
374330e2 937
938 width = LOWORD(lParam);
939 height = HIWORD(lParam);
940 w = width / font_width; if (w < 1) w = 1;
941 h = height / font_height; if (h < 1) h = 1;
942#if 0 /* we have fixed this using WM_SIZING now */
943 ew = width - w * font_width;
944 eh = height - h * font_height;
945 if (ew != 0 || eh != 0) {
946 RECT r;
947 GetWindowRect (hwnd, &r);
948 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
949 SetWindowPos (hwnd, NULL, 0, 0,
950 r.right - r.left - ew, r.bottom - r.top - eh,
951 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
952 }
953#endif
954 if (w != cols || h != rows || just_reconfigged) {
955 term_invalidate();
956 term_size (h, w, cfg.savelines);
957 back->size();
958 just_reconfigged = FALSE;
959 }
960 }
961 ignore_size = FALSE;
962 return 0;
963 case WM_VSCROLL:
964 switch (LOWORD(wParam)) {
965 case SB_BOTTOM: term_scroll(-1, 0); break;
966 case SB_TOP: term_scroll(+1, 0); break;
967 case SB_LINEDOWN: term_scroll (0, +1); break;
968 case SB_LINEUP: term_scroll (0, -1); break;
969 case SB_PAGEDOWN: term_scroll (0, +rows/2); break;
970 case SB_PAGEUP: term_scroll (0, -rows/2); break;
971 case SB_THUMBPOSITION: case SB_THUMBTRACK:
972 term_scroll (1, HIWORD(wParam)); break;
973 }
974 break;
975 case WM_PALETTECHANGED:
976 if ((HWND) wParam != hwnd && pal != NULL) {
977 HDC hdc = get_ctx();
978 if (hdc) {
979 if (RealizePalette (hdc) > 0)
980 UpdateColors (hdc);
981 free_ctx (hdc);
982 }
983 }
984 break;
985 case WM_QUERYNEWPALETTE:
986 if (pal != NULL) {
987 HDC hdc = get_ctx();
988 if (hdc) {
989 if (RealizePalette (hdc) > 0)
990 UpdateColors (hdc);
991 free_ctx (hdc);
992 return TRUE;
993 }
994 }
995 return FALSE;
996 case WM_KEYDOWN:
997 case WM_SYSKEYDOWN:
998 /*
999 * Add the scan code and keypress timing to the random
1000 * number noise, if we're using ssh.
1001 */
1002 if (cfg.protocol == PROT_SSH)
1003 noise_ultralight(lParam);
1004
1005 /*
1006 * We don't do TranslateMessage since it disassociates the
1007 * resulting CHAR message from the KEYDOWN that sparked it,
1008 * which we occasionally don't want. Instead, we process
1009 * KEYDOWN, and call the Win32 translator functions so that
1010 * we get the translations under _our_ control.
1011 */
1012 {
1013 unsigned char buf[20];
1014 int len;
1015
1016 len = TranslateKey (wParam, lParam, buf);
c5e9c988 1017 if (len == -1)
1018 return DefWindowProc (hwnd, message, wParam, lParam);
374330e2 1019 back->send (buf, len);
1020 }
1021 return 0;
67c339f7 1022 case WM_KEYUP:
1023 case WM_SYSKEYUP:
1024 /*
1025 * We handle KEYUP ourselves in order to distinghish left
1026 * and right Alt or Control keys, which Windows won't do
1027 * right if left to itself. See also the special processing
1028 * at the top of TranslateKey.
1029 */
1030 {
1031 BYTE keystate[256];
1032 int ret = GetKeyboardState(keystate);
1033 if (ret && wParam == VK_MENU) {
1034 if (lParam & 0x1000000) keystate[VK_RMENU] = 0;
1035 else keystate[VK_LMENU] = 0;
1036 SetKeyboardState (keystate);
1037 }
1038 if (ret && wParam == VK_CONTROL) {
1039 if (lParam & 0x1000000) keystate[VK_RCONTROL] = 0;
1040 else keystate[VK_LCONTROL] = 0;
1041 SetKeyboardState (keystate);
1042 }
1043 }
1044 /*
1045 * We don't return here, in order to allow Windows to do
1046 * its own KEYUP processing as well.
1047 */
1048 break;
374330e2 1049 case WM_CHAR:
1050 case WM_SYSCHAR:
1051 /*
1052 * Nevertheless, we are prepared to deal with WM_CHAR
1053 * messages, should they crop up. So if someone wants to
1054 * post the things to us as part of a macro manoeuvre,
1055 * we're ready to cope.
1056 */
1057 {
14963b8f 1058 char c = xlat_kbd2tty((unsigned char)wParam);
374330e2 1059 back->send (&c, 1);
1060 }
1061 return 0;
1062 }
1063
1064 return DefWindowProc (hwnd, message, wParam, lParam);
1065}
1066
1067/*
1068 * Draw a line of text in the window, at given character
1069 * coordinates, in given attributes.
1070 *
1071 * We are allowed to fiddle with the contents of `text'.
1072 */
1073void do_text (Context ctx, int x, int y, char *text, int len,
1074 unsigned long attr) {
1075 COLORREF fg, bg, t;
1076 int nfg, nbg, nfont;
1077 HDC hdc = ctx;
1078
1079 x *= font_width;
1080 y *= font_height;
1081
1082 if (attr & ATTR_ACTCURS) {
1083 attr &= (bold_mode == BOLD_COLOURS ? 0x200 : 0x300);
1084 attr ^= ATTR_CUR_XOR;
1085 }
1086
1087 nfont = 0;
1088 if (cfg.vtmode == VT_OEMONLY)
1089 nfont |= FONT_OEM;
1090
1091 /*
1092 * Map high-half characters in order to approximate ISO using
1093 * OEM character set. Characters missing are 0xC3 (Atilde) and
1094 * 0xCC (Igrave).
1095 */
1096 if (nfont & FONT_OEM) {
1097 int i;
1098 for (i=0; i<len; i++)
1099 if (text[i] >= '\xA0' && text[i] <= '\xFF') {
1100 static const char oemhighhalf[] =
1101 "\x20\xAD\xBD\x9C\xCF\xBE\xDD\xF5" /* A0-A7 */
1102 "\xF9\xB8\xA6\xAE\xAA\xF0\xA9\xEE" /* A8-AF */
1103 "\xF8\xF1\xFD\xFC\xEF\xE6\xF4\xFA" /* B0-B7 */
1104 "\xF7\xFB\xA7\xAF\xAC\xAB\xF3\xA8" /* B8-BF */
1105 "\xB7\xB5\xB6\x41\x8E\x8F\x92\x80" /* C0-C7 */
1106 "\xD4\x90\xD2\xD3\x49\xD6\xD7\xD8" /* C8-CF */
1107 "\xD1\xA5\xE3\xE0\xE2\xE5\x99\x9E" /* D0-D7 */
1108 "\x9D\xEB\xE9\xEA\x9A\xED\xE8\xE1" /* D8-DF */
1109 "\x85\xA0\x83\xC6\x84\x86\x91\x87" /* E0-E7 */
1110 "\x8A\x82\x88\x89\x8D\xA1\x8C\x8B" /* E8-EF */
1111 "\xD0\xA4\x95\xA2\x93\xE4\x94\xF6" /* F0-F7 */
1112 "\x9B\x97\xA3\x96\x81\xEC\xE7\x98" /* F8-FF */
1113 ;
1114 text[i] = oemhighhalf[(unsigned char)text[i] - 0xA0];
1115 }
1116 }
1117
1118 if (attr & ATTR_GBCHR) {
1119 int i;
1120 /*
1121 * GB mapping: map # to pound, and everything else stays
1122 * normal.
1123 */
1124 for (i=0; i<len; i++)
1125 if (text[i] == '#')
1126 text[i] = cfg.vtmode == VT_OEMONLY ? '\x9C' : '\xA3';
1127 } else if (attr & ATTR_LINEDRW) {
1128 int i;
1129 static const char poorman[] =
1130 "*#****\xB0\xB1**+++++-----++++|****\xA3\xB7";
1131 static const char oemmap[] =
1132 "*\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1133 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3****\x9C\xFA";
1134
1135 /*
1136 * Line drawing mapping: map ` thru ~ (0x60 thru 0x7E) to
1137 * VT100 line drawing chars; everything else stays normal.
1138 */
1139 switch (cfg.vtmode) {
1140 case VT_XWINDOWS:
1141 for (i=0; i<len; i++)
1142 if (text[i] >= '\x60' && text[i] <= '\x7E')
1143 text[i] += '\x01' - '\x60';
1144 break;
1145 case VT_OEMANSI:
1146 case VT_OEMONLY:
1147 nfont |= FONT_OEM;
1148 for (i=0; i<len; i++)
1149 if (text[i] >= '\x60' && text[i] <= '\x7E')
1150 text[i] = oemmap[(unsigned char)text[i] - 0x60];
1151 break;
1152 case VT_POORMAN:
1153 for (i=0; i<len; i++)
1154 if (text[i] >= '\x60' && text[i] <= '\x7E')
1155 text[i] = poorman[(unsigned char)text[i] - 0x60];
1156 break;
1157 }
1158 }
1159
1160 nfg = 2 * ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
1161 nbg = 2 * ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
1162 if (bold_mode == BOLD_FONT && (attr & ATTR_BOLD))
1163 nfont |= FONT_BOLD;
1164 if (und_mode == UND_FONT && (attr & ATTR_UNDER))
1165 nfont |= FONT_UNDERLINE;
1166 if (attr & ATTR_REVERSE) {
1167 t = nfg; nfg = nbg; nbg = t;
1168 }
1169 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BOLD))
1170 nfg++;
1171 fg = colours[nfg];
1172 bg = colours[nbg];
1173 SelectObject (hdc, fonts[nfont]);
1174 SetTextColor (hdc, fg);
1175 SetBkColor (hdc, bg);
1176 SetBkMode (hdc, OPAQUE);
1177 TextOut (hdc, x, y, text, len);
1178 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
1179 SetBkMode (hdc, TRANSPARENT);
1180 TextOut (hdc, x-1, y, text, len);
1181 }
1182 if (und_mode == UND_LINE && (attr & ATTR_UNDER)) {
1a6f78fe 1183 HPEN oldpen;
1184 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, fg));
374330e2 1185 MoveToEx (hdc, x, y+descent, NULL);
1186 LineTo (hdc, x+len*font_width, y+descent);
1a6f78fe 1187 oldpen = SelectObject (hdc, oldpen);
1188 DeleteObject (oldpen);
374330e2 1189 }
1190 if (attr & ATTR_PASCURS) {
1191 POINT pts[5];
1a6f78fe 1192 HPEN oldpen;
374330e2 1193 pts[0].x = pts[1].x = pts[4].x = x;
1194 pts[2].x = pts[3].x = x+font_width-1;
1195 pts[0].y = pts[3].y = pts[4].y = y;
1196 pts[1].y = pts[2].y = y+font_height-1;
1a6f78fe 1197 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, colours[23]));
374330e2 1198 Polyline (hdc, pts, 5);
1a6f78fe 1199 oldpen = SelectObject (hdc, oldpen);
1200 DeleteObject (oldpen);
374330e2 1201 }
1202}
1203
1204/*
1205 * Translate a WM_(SYS)?KEYDOWN message into a string of ASCII
1206 * codes. Returns number of bytes used.
1207 */
1208static int TranslateKey(WPARAM wParam, LPARAM lParam, unsigned char *output) {
1209 unsigned char *p = output;
1210 BYTE keystate[256];
1211 int ret, code;
67c339f7 1212 int cancel_alt = FALSE;
374330e2 1213
1214 /*
1215 * Get hold of the keyboard state, because we'll need it a few
1216 * times shortly.
1217 */
1218 ret = GetKeyboardState(keystate);
1219
67c339f7 1220 /*
1221 * Windows does not always want to distinguish left and right
1222 * Alt or Control keys. Thus we keep track of them ourselves.
1223 * See also the WM_KEYUP handler.
1224 */
1225 if (wParam == VK_MENU) {
1226 if (lParam & 0x1000000) keystate[VK_RMENU] = 0x80;
1227 else keystate[VK_LMENU] = 0x80;
1228 SetKeyboardState (keystate);
1229 return 0;
1230 }
1231 if (wParam == VK_CONTROL) {
1232 if (lParam & 0x1000000) keystate[VK_RCONTROL] = 0x80;
1233 else keystate[VK_LCONTROL] = 0x80;
1234 SetKeyboardState (keystate);
1235 return 0;
1236 }
1237
1238 /*
1239 * Prepend ESC, and cancel ALT, if ALT was pressed at the time
1240 * and it wasn't AltGr.
1241 */
1242 if (lParam & 0x20000000 && (keystate[VK_LMENU] & 0x80)) {
1243 *p++ = 0x1B;
1244 cancel_alt = TRUE;
1245 }
1246
374330e2 1247 /*
1248 * Shift-PgUp, Shift-PgDn, and Alt-F4 all produce window
1249 * events: we'll deal with those now.
1250 */
1251 if (ret && (keystate[VK_SHIFT] & 0x80) && wParam == VK_PRIOR) {
1252 SendMessage (hwnd, WM_VSCROLL, SB_PAGEUP, 0);
1253 return 0;
1254 }
1255 if (ret && (keystate[VK_SHIFT] & 0x80) && wParam == VK_NEXT) {
1256 SendMessage (hwnd, WM_VSCROLL, SB_PAGEDOWN, 0);
1257 return 0;
1258 }
c5e9c988 1259 if ((lParam & 0x20000000) && wParam == VK_F4 && cfg.alt_f4) {
1260 return -1;
1261 }
1262 if ((lParam & 0x20000000) && wParam == VK_SPACE && cfg.alt_space) {
1263 SendMessage (hwnd, WM_SYSCOMMAND, SC_KEYMENU, 0);
1264 return -1;
374330e2 1265 }
1266
1267 /*
1268 * In general, the strategy is to see what the Windows keymap
1269 * translation has to say for itself, and then process function
1270 * keys and suchlike ourselves if that fails. But first we must
1271 * deal with the small number of special cases which the
1272 * Windows keymap translator thinks it can do but gets wrong.
1273 *
1274 * First special case: we might want the Backspace key to send
1275 * 0x7F not 0x08.
1276 */
1277 if (wParam == VK_BACK) {
1278 *p++ = (cfg.bksp_is_delete ? 0x7F : 0x08);
1279 return p - output;
1280 }
1281
1282 /*
1283 * Control-Space should send ^@ (0x00), not Space.
1284 */
1285 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == VK_SPACE) {
1286 *p++ = 0x00;
1287 return p - output;
1288 }
1289
c5e9c988 1290 if (cfg.nethack_keypad) {
1291 int shift = keystate[VK_SHIFT] & 0x80;
1292 /*
1293 * NB the shifted versions only work with numlock off.
1294 */
1295 switch ( (lParam >> 16) & 0x1FF ) {
1296 case 0x047: *p++ = shift ? 'Y' : 'y'; return p - output;
1297 case 0x048: *p++ = shift ? 'K' : 'k'; return p - output;
1298 case 0x049: *p++ = shift ? 'U' : 'u'; return p - output;
1299 case 0x04B: *p++ = shift ? 'H' : 'h'; return p - output;
1300 case 0x04C: *p++ = '.'; return p - output;
1301 case 0x04D: *p++ = shift ? 'L' : 'l'; return p - output;
1302 case 0x04F: *p++ = shift ? 'B' : 'b'; return p - output;
1303 case 0x050: *p++ = shift ? 'J' : 'j'; return p - output;
1304 case 0x051: *p++ = shift ? 'N' : 'n'; return p - output;
1305 case 0x053: *p++ = '.'; return p - output;
1306 }
1307 } else if (app_keypad_keys) {
1308 /*
1309 * If we're in applications keypad mode, we have to process it
1310 * before char-map translation, because it will pre-empt lots
1311 * of stuff, even if NumLock is off.
1312 */
374330e2 1313 if (ret) {
1314 /*
1315 * Hack to ensure NumLock doesn't interfere with
1316 * perception of Shift for Keypad Plus. I don't pretend
1317 * to understand this, but it seems to work as is.
1318 * Leave it alone, or die.
1319 */
1320 keystate[VK_NUMLOCK] = 0;
1321 SetKeyboardState (keystate);
1322 GetKeyboardState (keystate);
1323 }
1324 switch ( (lParam >> 16) & 0x1FF ) {
1325 case 0x145: p += sprintf((char *)p, "\x1BOP"); return p - output;
1326 case 0x135: p += sprintf((char *)p, "\x1BOQ"); return p - output;
1327 case 0x037: p += sprintf((char *)p, "\x1BOR"); return p - output;
1328 case 0x047: p += sprintf((char *)p, "\x1BOw"); return p - output;
1329 case 0x048: p += sprintf((char *)p, "\x1BOx"); return p - output;
1330 case 0x049: p += sprintf((char *)p, "\x1BOy"); return p - output;
1331 case 0x04A: p += sprintf((char *)p, "\x1BOS"); return p - output;
1332 case 0x04B: p += sprintf((char *)p, "\x1BOt"); return p - output;
1333 case 0x04C: p += sprintf((char *)p, "\x1BOu"); return p - output;
1334 case 0x04D: p += sprintf((char *)p, "\x1BOv"); return p - output;
1335 case 0x04E: /* keypad + is ^[Ol, but ^[Om with Shift */
1336 p += sprintf((char *)p,
1337 (ret && (keystate[VK_SHIFT] & 0x80)) ?
1338 "\x1BOm" : "\x1BOl");
1339 return p - output;
1340 case 0x04F: p += sprintf((char *)p, "\x1BOq"); return p - output;
1341 case 0x050: p += sprintf((char *)p, "\x1BOr"); return p - output;
1342 case 0x051: p += sprintf((char *)p, "\x1BOs"); return p - output;
1343 case 0x052: p += sprintf((char *)p, "\x1BOp"); return p - output;
1344 case 0x053: p += sprintf((char *)p, "\x1BOn"); return p - output;
1345 case 0x11C: p += sprintf((char *)p, "\x1BOM"); return p - output;
1346 }
1347 }
1348
1349 /*
67c339f7 1350 * Before doing Windows charmap translation, remove LeftALT
1351 * from the keymap, since its sole effect should be to prepend
1352 * ESC, which we've already done. Note that removal of LeftALT
1353 * has to happen _after_ the above call to SetKeyboardState, or
1354 * dire things will befall.
374330e2 1355 */
67c339f7 1356 if (cancel_alt) {
1357 keystate[VK_MENU] = keystate[VK_RMENU];
1358 keystate[VK_LMENU] = 0;
1359 }
374330e2 1360
1361 /*
1362 * Attempt the Windows char-map translation.
1363 */
1364 if (ret) {
1365 WORD chr;
14963b8f 1366 int r;
1367 BOOL capsOn=keystate[VK_CAPITAL] !=0;
1368
1369 /* helg: clear CAPS LOCK state if caps lock switches to cyrillic */
1370 if(cfg.xlat_capslockcyr)
1371 keystate[VK_CAPITAL] = 0;
1372
1373 r = ToAscii (wParam, (lParam >> 16) & 0xFF,
1374 keystate, &chr, 0);
1375
1376 if(capsOn)
1377 chr = xlat_latkbd2win((unsigned char)(chr & 0xFF));
374330e2 1378 if (r == 1) {
14963b8f 1379 *p++ = xlat_kbd2tty((unsigned char)(chr & 0xFF));
374330e2 1380 return p - output;
1381 }
1382 }
1383
1384 /*
1385 * OK, we haven't had a key code from the keymap translation.
1386 * We'll try our various special cases and function keys, and
1387 * then give up. (There's nothing wrong with giving up:
1388 * Scrollock, Pause/Break, and of course the various buckybit
1389 * keys all produce KEYDOWN events that we really _do_ want to
1390 * ignore.)
1391 */
1392
1393 /*
1394 * Control-2 should return ^@ (0x00), Control-6 should return
1395 * ^^ (0x1E), and Control-Minus should return ^_ (0x1F). Since
1396 * the DOS keyboard handling did it, and we have nothing better
1397 * to do with the key combo in question, we'll also map
1398 * Control-Backquote to ^\ (0x1C).
1399 */
1400 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == '2') {
1401 *p++ = 0x00;
1402 return p - output;
1403 }
1404 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == '6') {
1405 *p++ = 0x1E;
1406 return p - output;
1407 }
1408 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == 0xBD) {
1409 *p++ = 0x1F;
1410 return p - output;
1411 }
1412 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == 0xDF) {
1413 *p++ = 0x1C;
1414 return p - output;
1415 }
1416
1417 /*
1418 * First, all the keys that do tilde codes. (ESC '[' nn '~',
1419 * for integer decimal nn.)
1420 *
1421 * We also deal with the weird ones here. Linux VCs replace F1
1422 * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
1423 * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
1424 * respectively.
1425 */
1426 code = 0;
1427 switch (wParam) {
1428 case VK_F1: code = (keystate[VK_SHIFT] & 0x80 ? 23 : 11); break;
1429 case VK_F2: code = (keystate[VK_SHIFT] & 0x80 ? 24 : 12); break;
1430 case VK_F3: code = (keystate[VK_SHIFT] & 0x80 ? 25 : 13); break;
1431 case VK_F4: code = (keystate[VK_SHIFT] & 0x80 ? 26 : 14); break;
1432 case VK_F5: code = (keystate[VK_SHIFT] & 0x80 ? 28 : 15); break;
1433 case VK_F6: code = (keystate[VK_SHIFT] & 0x80 ? 29 : 17); break;
1434 case VK_F7: code = (keystate[VK_SHIFT] & 0x80 ? 31 : 18); break;
1435 case VK_F8: code = (keystate[VK_SHIFT] & 0x80 ? 32 : 19); break;
1436 case VK_F9: code = (keystate[VK_SHIFT] & 0x80 ? 33 : 20); break;
1437 case VK_F10: code = (keystate[VK_SHIFT] & 0x80 ? 34 : 21); break;
1438 case VK_F11: code = 23; break;
1439 case VK_F12: code = 24; break;
1440 case VK_HOME: code = 1; break;
1441 case VK_INSERT: code = 2; break;
1442 case VK_DELETE: code = 3; break;
1443 case VK_END: code = 4; break;
1444 case VK_PRIOR: code = 5; break;
1445 case VK_NEXT: code = 6; break;
1446 }
1447 if (cfg.linux_funkeys && code >= 11 && code <= 15) {
1448 p += sprintf((char *)p, "\x1B[[%c", code + 'A' - 11);
1449 return p - output;
1450 }
1451 if (cfg.rxvt_homeend && (code == 1 || code == 4)) {
1452 p += sprintf((char *)p, code == 1 ? "\x1B[H" : "\x1BOw");
1453 return p - output;
1454 }
1455 if (code) {
1456 p += sprintf((char *)p, "\x1B[%d~", code);
1457 return p - output;
1458 }
1459
1460 /*
1461 * Now the remaining keys (arrows and Keypad 5. Keypad 5 for
1462 * some reason seems to send VK_CLEAR to Windows...).
1463 */
1464 switch (wParam) {
1465 case VK_UP:
1466 p += sprintf((char *)p, app_cursor_keys ? "\x1BOA" : "\x1B[A");
1467 return p - output;
1468 case VK_DOWN:
1469 p += sprintf((char *)p, app_cursor_keys ? "\x1BOB" : "\x1B[B");
1470 return p - output;
1471 case VK_RIGHT:
1472 p += sprintf((char *)p, app_cursor_keys ? "\x1BOC" : "\x1B[C");
1473 return p - output;
1474 case VK_LEFT:
1475 p += sprintf((char *)p, app_cursor_keys ? "\x1BOD" : "\x1B[D");
1476 return p - output;
1477 case VK_CLEAR: p += sprintf((char *)p, "\x1B[G"); return p - output;
1478 }
1479
1480 return 0;
1481}
1482
1483void set_title (char *title) {
1484 sfree (window_name);
1485 window_name = smalloc(1+strlen(title));
1486 strcpy (window_name, title);
37508af4 1487 if (cfg.win_name_always || !IsIconic(hwnd))
374330e2 1488 SetWindowText (hwnd, title);
1489}
1490
1491void set_icon (char *title) {
1492 sfree (icon_name);
1493 icon_name = smalloc(1+strlen(title));
1494 strcpy (icon_name, title);
37508af4 1495 if (!cfg.win_name_always && IsIconic(hwnd))
374330e2 1496 SetWindowText (hwnd, title);
1497}
1498
1499void set_sbar (int total, int start, int page) {
1500 SCROLLINFO si;
1501 si.cbSize = sizeof(si);
1502 si.fMask = SIF_RANGE | SIF_PAGE | SIF_POS | SIF_DISABLENOSCROLL;
1503 si.nMin = 0;
1504 si.nMax = total - 1;
1505 si.nPage = page;
1506 si.nPos = start;
c1f5f956 1507 if (hwnd)
1508 SetScrollInfo (hwnd, SB_VERT, &si, TRUE);
374330e2 1509}
1510
f67b4e85 1511Context get_ctx(void) {
374330e2 1512 HDC hdc;
1513 if (hwnd) {
1514 hdc = GetDC (hwnd);
1515 if (hdc && pal)
1516 SelectPalette (hdc, pal, FALSE);
1517 return hdc;
1518 } else
1519 return NULL;
1520}
1521
1522void free_ctx (Context ctx) {
1523 SelectPalette (ctx, GetStockObject (DEFAULT_PALETTE), FALSE);
1524 ReleaseDC (hwnd, ctx);
1525}
1526
1527static void real_palette_set (int n, int r, int g, int b) {
1528 if (pal) {
1529 logpal->palPalEntry[n].peRed = r;
1530 logpal->palPalEntry[n].peGreen = g;
1531 logpal->palPalEntry[n].peBlue = b;
1532 logpal->palPalEntry[n].peFlags = PC_NOCOLLAPSE;
1533 colours[n] = PALETTERGB(r, g, b);
1534 SetPaletteEntries (pal, 0, NCOLOURS, logpal->palPalEntry);
1535 } else
1536 colours[n] = RGB(r, g, b);
1537}
1538
1539void palette_set (int n, int r, int g, int b) {
1540 static const int first[21] = {
1541 0, 2, 4, 6, 8, 10, 12, 14,
1542 1, 3, 5, 7, 9, 11, 13, 15,
1543 16, 17, 18, 20, 22
1544 };
1545 real_palette_set (first[n], r, g, b);
1546 if (first[n] >= 18)
1547 real_palette_set (first[n]+1, r, g, b);
1548 if (pal) {
1549 HDC hdc = get_ctx();
1550 UnrealizeObject (pal);
1551 RealizePalette (hdc);
1552 free_ctx (hdc);
1553 }
1554}
1555
1556void palette_reset (void) {
1557 int i;
1558
1559 for (i = 0; i < NCOLOURS; i++) {
1560 if (pal) {
1561 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
1562 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
1563 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
1564 logpal->palPalEntry[i].peFlags = 0;
1565 colours[i] = PALETTERGB(defpal[i].rgbtRed,
1566 defpal[i].rgbtGreen,
1567 defpal[i].rgbtBlue);
1568 } else
1569 colours[i] = RGB(defpal[i].rgbtRed,
1570 defpal[i].rgbtGreen,
1571 defpal[i].rgbtBlue);
1572 }
1573
1574 if (pal) {
1575 HDC hdc;
1576 SetPaletteEntries (pal, 0, NCOLOURS, logpal->palPalEntry);
1577 hdc = get_ctx();
1578 RealizePalette (hdc);
1579 free_ctx (hdc);
1580 }
1581}
1582
1583void write_clip (void *data, int len) {
1584 HGLOBAL clipdata;
1585 void *lock;
1586
1587 clipdata = GlobalAlloc (GMEM_DDESHARE | GMEM_MOVEABLE, len + 1);
1588 if (!clipdata)
1589 return;
1590 lock = GlobalLock (clipdata);
1591 if (!lock)
1592 return;
1593 memcpy (lock, data, len);
1594 ((unsigned char *) lock) [len] = 0;
1595 GlobalUnlock (clipdata);
1596
1597 SendMessage (hwnd, WM_IGNORE_CLIP, TRUE, 0);
1598 if (OpenClipboard (hwnd)) {
1599 EmptyClipboard();
1600 SetClipboardData (CF_TEXT, clipdata);
1601 CloseClipboard();
1602 } else
1603 GlobalFree (clipdata);
1604 SendMessage (hwnd, WM_IGNORE_CLIP, FALSE, 0);
1605}
1606
1607void get_clip (void **p, int *len) {
1608 static HGLOBAL clipdata = NULL;
1609
1610 if (!p) {
1611 if (clipdata)
1612 GlobalUnlock (clipdata);
1613 clipdata = NULL;
1614 return;
1615 } else {
1616 if (OpenClipboard (NULL)) {
1617 clipdata = GetClipboardData (CF_TEXT);
1618 CloseClipboard();
1619 if (clipdata) {
1620 *p = GlobalLock (clipdata);
1621 if (*p) {
1622 *len = strlen(*p);
1623 return;
1624 }
1625 }
1626 }
1627 }
1628
1629 *p = NULL;
1630 *len = 0;
1631}
1632
1633/*
1634 * Move `lines' lines from position `from' to position `to' in the
1635 * window.
1636 */
1637void optimised_move (int to, int from, int lines) {
1638 RECT r;
f67b4e85 1639 int min, max;
374330e2 1640
1641 min = (to < from ? to : from);
1642 max = to + from - min;
374330e2 1643
1644 r.left = 0; r.right = cols * font_width;
1645 r.top = min * font_height; r.bottom = (max+lines) * font_height;
1646 ScrollWindow (hwnd, 0, (to - from) * font_height, &r, &r);
1647}
1648
1649/*
1650 * Print a message box and perform a fatal exit.
1651 */
1652void fatalbox(char *fmt, ...) {
1653 va_list ap;
1654 char stuff[200];
1655
1656 va_start(ap, fmt);
1657 vsprintf(stuff, fmt, ap);
1658 va_end(ap);
1659 MessageBox(hwnd, stuff, "PuTTY Fatal Error", MB_ICONERROR | MB_OK);
1660 exit(1);
1661}
1662
1663/*
1664 * Beep.
1665 */
1666void beep(void) {
1667 MessageBeep(MB_OK);
1668}