6374a1f5d15e907f3a4e42ba60277dc80da90481
[u/mdw/putty] / mac / macterm.c
1 /* $Id$ */
2 /*
3 * Copyright (c) 1999 Simon Tatham
4 * Copyright (c) 1999, 2002 Ben Harris
5 * All rights reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person
8 * obtaining a copy of this software and associated documentation
9 * files (the "Software"), to deal in the Software without
10 * restriction, including without limitation the rights to use,
11 * copy, modify, merge, publish, distribute, sublicense, and/or
12 * sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following
14 * conditions:
15 *
16 * The above copyright notice and this permission notice shall be
17 * included in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
24 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29 /*
30 * macterm.c -- Macintosh terminal front-end
31 */
32
33 #include <MacTypes.h>
34 #include <Controls.h>
35 #include <ControlDefinitions.h>
36 #include <FixMath.h>
37 #include <Fonts.h>
38 #include <Gestalt.h>
39 #include <LowMem.h>
40 #include <MacMemory.h>
41 #include <MacWindows.h>
42 #include <MixedMode.h>
43 #include <Palettes.h>
44 #include <Quickdraw.h>
45 #include <QuickdrawText.h>
46 #include <Resources.h>
47 #include <Scrap.h>
48 #include <Script.h>
49 #include <Sound.h>
50 #include <TextCommon.h>
51 #include <ToolUtils.h>
52 #include <UnicodeConverter.h>
53
54 #include <assert.h>
55 #include <limits.h>
56 #include <stdlib.h>
57 #include <stdio.h>
58 #include <string.h>
59
60 #include "macresid.h"
61 #include "putty.h"
62 #include "charset.h"
63 #include "mac.h"
64 #include "terminal.h"
65
66 #define DEFAULT_FG 256
67 #define DEFAULT_FG_BOLD 257
68 #define DEFAULT_BG 258
69 #define DEFAULT_BG_BOLD 259
70 #define CURSOR_FG 260
71 #define CURSOR_BG 261
72
73 #define PTOCC(x) ((x) < 0 ? -(-(x - s->font_width - 1) / s->font_width) : \
74 (x) / s->font_width)
75 #define PTOCR(y) ((y) < 0 ? -(-(y - s->font_height - 1) / s->font_height) : \
76 (y) / s->font_height)
77
78 static void mac_initfont(Session *);
79 static pascal OSStatus uni_to_font_fallback(UniChar *, ByteCount, ByteCount *,
80 TextPtr, ByteCount, ByteCount *,
81 LogicalAddress,
82 ConstUnicodeMappingPtr);
83 static void mac_initpalette(Session *);
84 static void mac_adjustwinbg(Session *);
85 static void mac_adjustsize(Session *, int, int);
86 static void mac_drawgrowicon(Session *s);
87 static pascal void mac_growtermdraghook(void);
88 static pascal void mac_scrolltracker(ControlHandle, short);
89 static pascal void do_text_for_device(short, short, GDHandle, long);
90 static void do_text_internal(Context, int, int, wchar_t *, int,
91 unsigned long, int);
92 static void text_click(Session *, EventRecord *);
93 static void mac_activateterm(WindowPtr, EventRecord *);
94 static void mac_adjusttermcursor(WindowPtr, Point, RgnHandle);
95 static void mac_adjusttermmenus(WindowPtr);
96 static void mac_updateterm(WindowPtr);
97 static void mac_clickterm(WindowPtr, EventRecord *);
98 static void mac_growterm(WindowPtr, EventRecord *);
99 static void mac_keyterm(WindowPtr, EventRecord *);
100 static void mac_menuterm(WindowPtr, short, short);
101 static void mac_closeterm(WindowPtr);
102
103 void pre_paint(Session *s);
104 void post_paint(Session *s);
105
106 void mac_startsession(Session *s)
107 {
108 const char *errmsg;
109 int i;
110 WinInfo *wi;
111
112 init_ucs(s);
113
114 /*
115 * Select protocol. This is farmed out into a table in a
116 * separate file to enable an ssh-free variant.
117 */
118 s->back = NULL;
119 for (i = 0; backends[i].backend != NULL; i++)
120 if (backends[i].protocol == s->cfg.protocol) {
121 s->back = backends[i].backend;
122 break;
123 }
124 if (s->back == NULL)
125 fatalbox("Unsupported protocol number found");
126
127 /* XXX: Own storage management? */
128 if (HAVE_COLOR_QD())
129 s->window = GetNewCWindow(wTerminal, NULL, (WindowPtr)-1);
130 else
131 s->window = GetNewWindow(wTerminal, NULL, (WindowPtr)-1);
132 wi = snew(WinInfo);
133 memset(wi, 0, sizeof(*wi));
134 wi->s = s;
135 wi->wtype = wTerminal;
136 wi->activate = &mac_activateterm;
137 wi->adjustcursor = &mac_adjusttermcursor;
138 wi->adjustmenus = &mac_adjusttermmenus;
139 wi->update = &mac_updateterm;
140 wi->click = &mac_clickterm;
141 wi->grow = &mac_growterm;
142 wi->key = &mac_keyterm;
143 wi->menu = &mac_menuterm;
144 wi->close = &mac_closeterm;
145 SetWRefCon(s->window, (long)wi);
146 s->scrollbar = GetNewControl(cVScroll, s->window);
147 s->term = term_init(&s->cfg, &s->ucsdata, s);
148
149 mac_initfont(s);
150 mac_initpalette(s);
151 if (HAVE_COLOR_QD()) {
152 /* Set to FALSE to not get palette updates in the background. */
153 SetPalette(s->window, s->palette, TRUE);
154 ActivatePalette(s->window);
155 }
156
157 s->logctx = log_init(s->term, &s->cfg);
158 term_provide_logctx(s->term, s->logctx);
159
160 errmsg = s->back->init(s, &s->backhandle, &s->cfg, s->cfg.host,
161 s->cfg.port, &s->realhost, s->cfg.tcp_nodelay,
162 s->cfg.tcp_keepalives);
163 if (errmsg != NULL)
164 fatalbox("%s", errmsg);
165 s->back->provide_logctx(s->backhandle, s->logctx);
166 set_title(s, s->realhost);
167
168 term_provide_resize_fn(s->term, s->back->size, s->backhandle);
169
170 mac_adjustsize(s, s->cfg.height, s->cfg.width);
171 term_size(s->term, s->cfg.height, s->cfg.width, s->cfg.savelines);
172
173 s->ldisc = ldisc_create(&s->cfg, s->term, s->back, s->backhandle, s);
174 ldisc_send(s->ldisc, NULL, 0, 0);/* cause ldisc to notice changes */
175
176 ShowWindow(s->window);
177 s->next = sesslist;
178 s->prev = &sesslist;
179 if (s->next != NULL)
180 s->next->prev = &s->next;
181 sesslist = s;
182 }
183
184 /*
185 * Try to work out a horizontal scaling factor for the current font
186 * that will give a chracter width of wantwidth. Return it in numer
187 * and denom (suitable for passing to StdText()).
188 */
189 static void mac_workoutfontscale(Session *s, int wantwidth,
190 Point *numerp, Point *denomp)
191 {
192 Point numer, denom, tmpnumer, tmpdenom;
193 int gotwidth, i;
194 const char text = 'W';
195 FontInfo fi;
196 #if TARGET_API_MAC_CARBON
197 CQDProcsPtr gp = GetPortGrafProcs(GetWindowPort(s->window));
198 #else
199 QDProcsPtr gp = s->window->grafProcs;
200 #endif
201
202 numer.v = denom.v = 1; /* always */
203 numer.h = denom.h = 1;
204 for (i = 0; i < 3; i++) {
205 tmpnumer = numer;
206 tmpdenom = denom;
207 if (gp != NULL)
208 gotwidth = InvokeQDTxMeasUPP(1, &text, &tmpnumer, &tmpdenom, &fi,
209 gp->txMeasProc);
210 else
211 gotwidth = StdTxMeas(1, &text, &tmpnumer, &tmpdenom, &fi);
212 /* The result of StdTxMeas must be scaled by the factors it returns. */
213 gotwidth = FixRound(FixMul(gotwidth << 16,
214 FixRatio(tmpnumer.h, tmpdenom.h)));
215 if (gotwidth == wantwidth)
216 break;
217 numer.h *= wantwidth;
218 denom.h *= gotwidth;
219 }
220 *numerp = numer;
221 *denomp = denom;
222 }
223
224 static UnicodeToTextFallbackUPP uni_to_font_fallback_upp;
225
226 static void mac_initfont(Session *s)
227 {
228 FontInfo fi;
229 TextEncoding enc;
230 OptionBits fbflags;
231
232 SetPort((GrafPtr)GetWindowPort(s->window));
233 GetFNum(s->cfg.font.name, &s->fontnum);
234 TextFont(s->fontnum);
235 TextFace(s->cfg.font.face);
236 TextSize(s->cfg.font.size);
237 GetFontInfo(&fi);
238 s->font_width = CharWidth('W'); /* Well, it's what NCSA uses. */
239 s->font_ascent = fi.ascent;
240 s->font_leading = fi.leading;
241 s->font_height = s->font_ascent + fi.descent + s->font_leading;
242 mac_workoutfontscale(s, s->font_width,
243 &s->font_stdnumer, &s->font_stddenom);
244 mac_workoutfontscale(s, s->font_width * 2,
245 &s->font_widenumer, &s->font_widedenom);
246 TextSize(s->cfg.font.size * 2);
247 mac_workoutfontscale(s, s->font_width * 2,
248 &s->font_bignumer, &s->font_bigdenom);
249 TextSize(s->cfg.font.size);
250 if (!s->cfg.bold_colour) {
251 TextFace(bold);
252 s->font_boldadjust = s->font_width - CharWidth('W');
253 } else
254 s->font_boldadjust = 0;
255
256 if (s->uni_to_font != NULL)
257 DisposeUnicodeToTextInfo(&s->uni_to_font);
258 if (mac_gestalts.encvvers != 0 &&
259 UpgradeScriptInfoToTextEncoding(kTextScriptDontCare,
260 kTextLanguageDontCare,
261 kTextRegionDontCare, s->cfg.font.name,
262 &enc) == noErr &&
263 CreateUnicodeToTextInfoByEncoding(enc, &s->uni_to_font) == noErr) {
264 if (uni_to_font_fallback_upp == NULL)
265 uni_to_font_fallback_upp =
266 NewUnicodeToTextFallbackUPP(&uni_to_font_fallback);
267 fbflags = kUnicodeFallbackCustomOnly;
268 if (mac_gestalts.uncvattr & kTECAddFallbackInterruptMask)
269 fbflags |= kUnicodeFallbackInterruptSafeMask;
270 if (SetFallbackUnicodeToText(s->uni_to_font,
271 uni_to_font_fallback_upp, fbflags, NULL) != noErr) {
272 DisposeUnicodeToTextInfo(&s->uni_to_font);
273 goto no_encv;
274 }
275 } else {
276 char cfontname[256];
277
278 no_encv:
279 s->uni_to_font = NULL;
280 p2cstrcpy(cfontname, s->cfg.font.name);
281 s->font_charset =
282 charset_from_macenc(FontToScript(s->fontnum),
283 GetScriptManagerVariable(smRegionCode),
284 mac_gestalts.sysvers, cfontname);
285 }
286
287 mac_adjustsize(s, s->term->rows, s->term->cols);
288 }
289
290 static pascal OSStatus uni_to_font_fallback(UniChar *ucp,
291 ByteCount ilen, ByteCount *iusedp, TextPtr obuf, ByteCount olen,
292 ByteCount *ousedp, LogicalAddress cookie, ConstUnicodeMappingPtr mapping)
293 {
294
295 if (olen < 1)
296 return kTECOutputBufferFullStatus;
297 /*
298 * What I'd _like_ to do here is to somehow generate the
299 * missing-character glyph that every font is required to have.
300 * Unfortunately (and somewhat surprisingly), I can't find any way
301 * to actually ask for it explicitly. Bah.
302 */
303 *obuf = '.';
304 *iusedp = ilen;
305 *ousedp = 1;
306 return noErr;
307 }
308
309 /*
310 * To be called whenever the window size changes.
311 * rows and cols should be desired values.
312 * It's assumed the terminal emulator will be informed, and will set rows
313 * and cols for us.
314 */
315 static void mac_adjustsize(Session *s, int newrows, int newcols) {
316 int winwidth, winheight;
317 int extraforscroll;
318
319 extraforscroll=s->cfg.scrollbar ? 15 : 0;
320 winwidth = newcols * s->font_width + extraforscroll;
321 winheight = newrows * s->font_height;
322 SizeWindow(s->window, winwidth, winheight, true);
323 if (s->cfg.scrollbar) {
324 HideControl(s->scrollbar);
325 MoveControl(s->scrollbar, winwidth - extraforscroll, -1);
326 SizeControl(s->scrollbar, extraforscroll + 1, winheight - 13);
327 ShowControl(s->scrollbar);
328 }
329 mac_drawgrowicon(s);
330 }
331
332 static void mac_initpalette(Session *s)
333 {
334
335 if (!HAVE_COLOR_QD())
336 return;
337 /*
338 * Most colours should be inhibited on 2bpp displays.
339 * Palette manager documentation suggests inhibiting all tolerant colours
340 * on greyscale displays.
341 */
342 #define PM_NORMAL ( pmTolerant | pmInhibitC2 | \
343 pmInhibitG2 | pmInhibitG4 | pmInhibitG8 )
344 #define PM_TOLERANCE 0x2000
345 s->palette = NewPalette(262, NULL, PM_NORMAL, PM_TOLERANCE);
346 if (s->palette == NULL)
347 fatalbox("Unable to create palette");
348 /* In 2bpp, these are the colours we want most. */
349 SetEntryUsage(s->palette, DEFAULT_BG,
350 PM_NORMAL &~ pmInhibitC2, PM_TOLERANCE);
351 SetEntryUsage(s->palette, DEFAULT_FG,
352 PM_NORMAL &~ pmInhibitC2, PM_TOLERANCE);
353 SetEntryUsage(s->palette, DEFAULT_FG_BOLD,
354 PM_NORMAL &~ pmInhibitC2, PM_TOLERANCE);
355 SetEntryUsage(s->palette, CURSOR_BG,
356 PM_NORMAL &~ pmInhibitC2, PM_TOLERANCE);
357 palette_reset(s);
358 }
359
360 /*
361 * Set the background colour of the window correctly. Should be
362 * called whenever the default background changes.
363 */
364 static void mac_adjustwinbg(Session *s)
365 {
366
367 if (!HAVE_COLOR_QD())
368 return;
369 #if !TARGET_CPU_68K
370 if (mac_gestalts.windattr & gestaltWindowMgrPresent)
371 SetWindowContentColor(s->window,
372 &(*s->palette)->pmInfo[DEFAULT_BG].ciRGB);
373 else
374 #endif
375 {
376 #if !TARGET_API_MAC_CARBON
377 if (s->wctab == NULL)
378 s->wctab = (WCTabHandle)NewHandle(sizeof(**s->wctab));
379 if (s->wctab == NULL)
380 return; /* do without */
381 (*s->wctab)->wCSeed = 0;
382 (*s->wctab)->wCReserved = 0;
383 (*s->wctab)->ctSize = 0;
384 (*s->wctab)->ctTable[0].value = wContentColor;
385 (*s->wctab)->ctTable[0].rgb = (*s->palette)->pmInfo[DEFAULT_BG].ciRGB;
386 SetWinColor(s->window, s->wctab);
387 #endif
388 }
389 }
390
391 /*
392 * Set the cursor shape correctly
393 */
394 static void mac_adjusttermcursor(WindowPtr window, Point mouse,
395 RgnHandle cursrgn)
396 {
397 Session *s;
398 ControlHandle control;
399 short part;
400 int x, y;
401 #if TARGET_API_MAC_CARBON
402 Cursor arrow;
403 Rect rect;
404 RgnHandle visrgn;
405 #endif
406
407 SetPort((GrafPtr)GetWindowPort(window));
408 s = mac_windowsession(window);
409 GlobalToLocal(&mouse);
410 part = FindControl(mouse, window, &control);
411 if (control == s->scrollbar) {
412 #if TARGET_API_MAC_CARBON
413 SetCursor(GetQDGlobalsArrow(&arrow));
414 RectRgn(cursrgn, GetControlBounds(s->scrollbar, &rect));
415 #else
416 SetCursor(&qd.arrow);
417 RectRgn(cursrgn, &(*s->scrollbar)->contrlRect);
418 #endif
419 } else {
420 x = mouse.h / s->font_width;
421 y = mouse.v / s->font_height;
422 if (s->raw_mouse) {
423 #if TARGET_API_MAC_CARBON
424 SetCursor(GetQDGlobalsArrow(&arrow));
425 #else
426 SetCursor(&qd.arrow);
427 #endif
428 } else
429 SetCursor(*GetCursor(iBeamCursor));
430 /* Ask for shape changes if we leave this character cell. */
431 SetRectRgn(cursrgn, x * s->font_width, y * s->font_height,
432 (x + 1) * s->font_width, (y + 1) * s->font_height);
433 }
434 #if TARGET_API_MAC_CARBON
435 visrgn = NewRgn();
436 GetPortVisibleRegion(GetWindowPort(window), visrgn);
437 SectRgn(cursrgn, visrgn, cursrgn);
438 DisposeRgn(visrgn);
439 #else
440 SectRgn(cursrgn, window->visRgn, cursrgn);
441 #endif
442 }
443
444 /*
445 * Enable/disable menu items based on the active terminal window.
446 */
447 #if TARGET_API_MAC_CARBON
448 #define DisableItem DisableMenuItem
449 #define EnableItem EnableMenuItem
450 #endif
451 static void mac_adjusttermmenus(WindowPtr window)
452 {
453 Session *s;
454 MenuHandle menu;
455 #if !TARGET_API_MAC_CARBON
456 long offset;
457 #endif
458
459 s = mac_windowsession(window);
460 menu = GetMenuHandle(mFile);
461 DisableItem(menu, iSave); /* XXX enable if modified */
462 EnableItem(menu, iSaveAs);
463 EnableItem(menu, iChange);
464 EnableItem(menu, iDuplicate);
465 menu = GetMenuHandle(mEdit);
466 EnableItem(menu, 0);
467 DisableItem(menu, iUndo);
468 DisableItem(menu, iCut);
469 if (1/*s->term->selstate == SELECTED*/)
470 EnableItem(menu, iCopy);
471 else
472 DisableItem(menu, iCopy);
473 #if TARGET_API_MAC_CARBON
474 if (1)
475 #else
476 if (GetScrap(NULL, kScrapFlavorTypeText, &offset) == noTypeErr)
477 #endif
478 DisableItem(menu, iPaste);
479 else
480 EnableItem(menu, iPaste);
481 DisableItem(menu, iClear);
482 EnableItem(menu, iSelectAll);
483 menu = GetMenuHandle(mWindow);
484 EnableItem(menu, 0);
485 EnableItem(menu, iShowEventLog);
486 }
487
488 static void mac_menuterm(WindowPtr window, short menu, short item)
489 {
490 Session *s;
491
492 s = mac_windowsession(window);
493 switch (menu) {
494 case mEdit:
495 switch (item) {
496 case iCopy:
497 /* term_copy(s); */
498 break;
499 case iPaste:
500 term_do_paste(s->term);
501 break;
502 }
503 break;
504 case mWindow:
505 switch(item) {
506 case iShowEventLog:
507 mac_showeventlog(s);
508 break;
509 }
510 break;
511 }
512 }
513
514 static void mac_clickterm(WindowPtr window, EventRecord *event)
515 {
516 Session *s;
517 Point mouse;
518 ControlHandle control;
519 int part;
520 static ControlActionUPP mac_scrolltracker_upp = NULL;
521
522 s = mac_windowsession(window);
523 SetPort((GrafPtr)GetWindowPort(window));
524 mouse = event->where;
525 GlobalToLocal(&mouse);
526 part = FindControl(mouse, window, &control);
527 if (control == s->scrollbar) {
528 switch (part) {
529 case kControlIndicatorPart:
530 if (TrackControl(control, mouse, NULL) == kControlIndicatorPart)
531 term_scroll(s->term, +1, GetControlValue(control));
532 break;
533 case kControlUpButtonPart:
534 case kControlDownButtonPart:
535 case kControlPageUpPart:
536 case kControlPageDownPart:
537 if (mac_scrolltracker_upp == NULL)
538 mac_scrolltracker_upp =
539 NewControlActionUPP(&mac_scrolltracker);
540 TrackControl(control, mouse, mac_scrolltracker_upp);
541 break;
542 }
543 } else {
544 text_click(s, event);
545 }
546 }
547
548 static void text_click(Session *s, EventRecord *event)
549 {
550 Point localwhere;
551 int row, col;
552 static UInt32 lastwhen = 0;
553 static Session *lastsess = NULL;
554 static int lastrow = -1, lastcol = -1;
555 static Mouse_Action lastact = MA_NOTHING;
556
557 SetPort((GrafPtr)GetWindowPort(s->window));
558 localwhere = event->where;
559 GlobalToLocal(&localwhere);
560
561 col = PTOCC(localwhere.h);
562 row = PTOCR(localwhere.v);
563 if (event->when - lastwhen < GetDblTime() &&
564 row == lastrow && col == lastcol && s == lastsess)
565 lastact = (lastact == MA_CLICK ? MA_2CLK :
566 lastact == MA_2CLK ? MA_3CLK :
567 lastact == MA_3CLK ? MA_CLICK : MA_NOTHING);
568 else
569 lastact = MA_CLICK;
570 term_mouse(s->term, MBT_LEFT,
571 event->modifiers & shiftKey ? MBT_EXTEND : MBT_SELECT,
572 lastact, col, row, event->modifiers & shiftKey,
573 event->modifiers & controlKey, event->modifiers & optionKey);
574 lastsess = s;
575 lastrow = row;
576 lastcol = col;
577 while (StillDown()) {
578 GetMouse(&localwhere);
579 col = PTOCC(localwhere.h);
580 row = PTOCR(localwhere.v);
581 term_mouse(s->term, MBT_LEFT,
582 event->modifiers & shiftKey ? MBT_EXTEND : MBT_SELECT,
583 MA_DRAG, col, row, event->modifiers & shiftKey,
584 event->modifiers & controlKey,
585 event->modifiers & optionKey);
586 if (row > s->term->rows - 1)
587 term_scroll(s->term, 0, row - (s->term->rows - 1));
588 else if (row < 0)
589 term_scroll(s->term, 0, row);
590 }
591 term_mouse(s->term, MBT_LEFT,
592 event->modifiers & shiftKey ? MBT_EXTEND : MBT_SELECT,
593 MA_RELEASE, col, row, event->modifiers & shiftKey,
594 event->modifiers & controlKey, event->modifiers & optionKey);
595 lastwhen = TickCount();
596 }
597
598 void write_clip(void *cookie, wchar_t *data, int len, int must_deselect)
599 {
600 #if !TARGET_API_MAC_CARBON
601 Session *s = cookie;
602 char *mactextbuf;
603 ByteCount iread, olen;
604 wchar_t *unitextptr;
605 StScrpRec *stsc;
606 size_t stsz;
607 OSErr err;
608 int i;
609
610 /*
611 * See "Programming with the Text Encoding Conversion Manager"
612 * Appendix E for Unicode scrap conventions.
613 *
614 * XXX Maybe PICT scrap too.
615 */
616 if (ZeroScrap() != noErr)
617 return;
618 PutScrap(len * sizeof(*data), kScrapFlavorTypeUnicode, data);
619
620 /* Replace LINE SEPARATORs with CR for TEXT output. */
621 for (i = 0; i < len; i++)
622 if (data[i] == 0x2028)
623 data[i] = 0x000d;
624
625 mactextbuf = snewn(len, char); /* XXX DBCS */
626 if (s->uni_to_font != NULL) {
627 err = ConvertFromUnicodeToText(s->uni_to_font, len * sizeof(UniChar),
628 (UniChar *)data,
629 kUnicodeUseFallbacksMask,
630 0, NULL, NULL, NULL,
631 len, &iread, &olen, mactextbuf);
632 if (err != noErr && err != kTECUsedFallbacksStatus)
633 return;
634 } else if (s->font_charset != CS_NONE) {
635 unitextptr = data;
636 olen = charset_from_unicode(&unitextptr, &len, mactextbuf, 1024,
637 s->font_charset, NULL, ".", 1);
638 } else
639 return;
640 PutScrap(olen, kScrapFlavorTypeText, mactextbuf);
641 sfree(mactextbuf);
642
643 stsz = offsetof(StScrpRec, scrpStyleTab) + sizeof(ScrpSTElement);
644 stsc = smalloc(stsz);
645 stsc->scrpNStyles = 1;
646 stsc->scrpStyleTab[0].scrpStartChar = 0;
647 stsc->scrpStyleTab[0].scrpHeight = s->font_height;
648 stsc->scrpStyleTab[0].scrpAscent = s->font_ascent;
649 stsc->scrpStyleTab[0].scrpFont = s->fontnum;
650 stsc->scrpStyleTab[0].scrpFace = 0;
651 stsc->scrpStyleTab[0].scrpSize = s->cfg.font.size;
652 stsc->scrpStyleTab[0].scrpColor.red = 0;
653 stsc->scrpStyleTab[0].scrpColor.green = 0;
654 stsc->scrpStyleTab[0].scrpColor.blue = 0;
655 PutScrap(stsz, kScrapFlavorTypeTextStyle, stsc);
656 sfree(stsc);
657 #endif
658 }
659
660 void get_clip(void *frontend, wchar_t **p, int *lenp)
661 {
662 #if TARGET_API_MAC_CARBON
663 *lenp = 0;
664 #else
665 Session *s = frontend;
666 static Handle h = NULL;
667 static wchar_t *data = NULL;
668 Handle texth;
669 long offset;
670 int textlen;
671 TextEncoding enc;
672 TextToUnicodeInfo scrap_to_uni;
673 ByteCount iread, olen;
674 int charset;
675 char *tptr;
676 OSErr err;
677
678 if (p == NULL) {
679 /* release memory */
680 if (h != NULL)
681 DisposeHandle(h);
682 h = NULL;
683 if (data != NULL)
684 sfree(data);
685 data = NULL;
686 } else {
687 if (GetScrap(NULL, kScrapFlavorTypeUnicode, &offset) > 0) {
688 if (h == NULL)
689 h = NewHandle(0);
690 *lenp =
691 GetScrap(h, kScrapFlavorTypeUnicode, &offset) / sizeof(**p);
692 HLock(h);
693 *p = (wchar_t *)*h;
694 } else if (GetScrap(NULL, kScrapFlavorTypeText, &offset) > 0) {
695 texth = NewHandle(0);
696 textlen = GetScrap(texth, kScrapFlavorTypeText, &offset);
697 HLock(texth);
698 data = snewn(textlen, wchar_t);
699 /* XXX should use 'styl' scrap if it's there. */
700 if (mac_gestalts.encvvers != 0 &&
701 UpgradeScriptInfoToTextEncoding(smSystemScript,
702 kTextLanguageDontCare,
703 kTextRegionDontCare, NULL,
704 &enc) == noErr &&
705 CreateTextToUnicodeInfoByEncoding(enc, &scrap_to_uni) ==
706 noErr) {
707 err = ConvertFromTextToUnicode(scrap_to_uni, textlen,
708 *texth, 0, 0, NULL, NULL, NULL,
709 textlen * 2,
710 &iread, &olen, data);
711 DisposeTextToUnicodeInfo(&scrap_to_uni);
712 if (err == noErr) {
713 *p = data;
714 *lenp = olen / sizeof(**p);
715 } else {
716 *p = NULL;
717 *lenp = 0;
718 }
719 } else {
720 charset =
721 charset_from_macenc(GetScriptManagerVariable(smSysScript),
722 GetScriptManagerVariable(smRegionCode),
723 mac_gestalts.sysvers, NULL);
724 if (charset != CS_NONE) {
725 tptr = *texth;
726 *lenp = charset_to_unicode(&tptr, &textlen, data,
727 textlen * 2, charset, NULL,
728 NULL, 0);
729 }
730 *p = data;
731 }
732 DisposeHandle(texth);
733 } else {
734 *p = NULL;
735 *lenp = 0;
736 }
737 }
738 #endif
739 }
740
741 static pascal void mac_scrolltracker(ControlHandle control, short part)
742 {
743 Session *s;
744
745 #if TARGET_API_MAC_CARBON
746 s = mac_windowsession(GetControlOwner(control));
747 #else
748 s = mac_windowsession((*control)->contrlOwner);
749 #endif
750 switch (part) {
751 case kControlUpButtonPart:
752 term_scroll(s->term, 0, -1);
753 break;
754 case kControlDownButtonPart:
755 term_scroll(s->term, 0, +1);
756 break;
757 case kControlPageUpPart:
758 term_scroll(s->term, 0, -(s->term->rows - 1));
759 break;
760 case kControlPageDownPart:
761 term_scroll(s->term, 0, +(s->term->rows - 1));
762 break;
763 }
764 }
765
766 static void mac_keyterm(WindowPtr window, EventRecord *event)
767 {
768 Session *s = mac_windowsession(window);
769 Key_Sym keysym = PK_NULL;
770 unsigned int mods = 0, flags = PKF_NUMLOCK;
771 UniChar utxt[1];
772 char txt[1];
773 size_t len = 0;
774 ScriptCode key_script;
775
776 ObscureCursor();
777
778 #if 0
779 fprintf(stderr, "Got key event %08x\n", event->message);
780 #endif
781
782 /* No meta key yet -- that'll be rather fun. */
783
784 /* Keys that we handle locally */
785 if (event->modifiers & shiftKey) {
786 switch ((event->message & keyCodeMask) >> 8) {
787 case 0x74: /* shift-pageup */
788 term_scroll(s->term, 0, -(s->term->rows - 1));
789 return;
790 case 0x79: /* shift-pagedown */
791 term_scroll(s->term, 0, +(s->term->rows - 1));
792 return;
793 }
794 }
795
796 if (event->modifiers & shiftKey)
797 mods |= PKM_SHIFT;
798 if (event->modifiers & controlKey)
799 mods |= PKM_CONTROL;
800 if (event->what == autoKey)
801 flags |= PKF_REPEAT;
802
803 /* Mac key events consist of a virtual key code and a character code. */
804
805 switch ((event->message & keyCodeMask) >> 8) {
806 case 0x24: keysym = PK_RETURN; break;
807 case 0x30: keysym = PK_TAB; break;
808 case 0x33: keysym = PK_BACKSPACE; break;
809 case 0x35: keysym = PK_ESCAPE; break;
810
811 case 0x7A: keysym = PK_F1; break;
812 case 0x78: keysym = PK_F2; break;
813 case 0x63: keysym = PK_F3; break;
814 case 0x76: keysym = PK_F4; break;
815 case 0x60: keysym = PK_F5; break;
816 case 0x61: keysym = PK_F6; break;
817 case 0x62: keysym = PK_F7; break;
818 case 0x64: keysym = PK_F8; break;
819 case 0x65: keysym = PK_F9; break;
820 case 0x6D: keysym = PK_F10; break;
821 case 0x67: keysym = PK_F11; break;
822 case 0x6F: keysym = PK_F12; break;
823 case 0x69: keysym = PK_F13; break;
824 case 0x6B: keysym = PK_F14; break;
825 case 0x71: keysym = PK_F15; break;
826
827 case 0x72: keysym = PK_INSERT; break;
828 case 0x73: keysym = PK_HOME; break;
829 case 0x74: keysym = PK_PAGEUP; break;
830 case 0x75: keysym = PK_DELETE; break;
831 case 0x77: keysym = PK_END; break;
832 case 0x79: keysym = PK_PAGEDOWN; break;
833
834 case 0x47: keysym = PK_PF1; break;
835 case 0x51: keysym = PK_PF2; break;
836 case 0x4B: keysym = PK_PF3; break;
837 case 0x43: keysym = PK_PF4; break;
838 case 0x4E: keysym = PK_KPMINUS; break;
839 case 0x45: keysym = PK_KPCOMMA; break;
840 case 0x41: keysym = PK_KPDECIMAL; break;
841 case 0x4C: keysym = PK_KPENTER; break;
842 case 0x52: keysym = PK_KP0; break;
843 case 0x53: keysym = PK_KP1; break;
844 case 0x54: keysym = PK_KP2; break;
845 case 0x55: keysym = PK_KP3; break;
846 case 0x56: keysym = PK_KP4; break;
847 case 0x57: keysym = PK_KP5; break;
848 case 0x58: keysym = PK_KP6; break;
849 case 0x59: keysym = PK_KP7; break;
850 case 0x5B: keysym = PK_KP8; break;
851 case 0x5C: keysym = PK_KP9; break;
852
853 case 0x7B: keysym = PK_LEFT; break;
854 case 0x7C: keysym = PK_RIGHT; break;
855 case 0x7D: keysym = PK_DOWN; break;
856 case 0x7E: keysym = PK_UP; break;
857 }
858
859 /* Map from key script to Unicode. */
860 txt[0] = event->message & charCodeMask;
861 key_script = GetScriptManagerVariable(smKeyScript);
862
863 if (mac_gestalts.encvvers != 0) {
864 static TextToUnicodeInfo key_to_uni = NULL;
865 static ScriptCode key_to_uni_script;
866 TextEncoding enc;
867 ByteCount iread, olen;
868 OSErr err;
869
870 if (key_to_uni != NULL && key_to_uni_script != key_script)
871 DisposeTextToUnicodeInfo(&key_to_uni);
872 if (key_to_uni == NULL || key_to_uni_script != key_script) {
873 if (UpgradeScriptInfoToTextEncoding(key_script,
874 kTextLanguageDontCare,
875 kTextRegionDontCare, NULL,
876 &enc) == noErr &&
877 CreateTextToUnicodeInfoByEncoding(enc, &key_to_uni) == noErr)
878 key_to_uni_script = key_script;
879 else
880 key_to_uni = NULL;
881 }
882 if (key_to_uni != NULL) {
883 err = ConvertFromTextToUnicode(key_to_uni, 1, txt,
884 (kUnicodeKeepInfoMask |
885 kUnicodeStringUnterminatedMask),
886 0, NULL, NULL, NULL,
887 sizeof(utxt), &iread, &olen, utxt);
888 if (err == noErr)
889 len = olen / sizeof(*utxt);
890 }
891 } else {
892 int charset;
893 char *tptr = txt;
894 int tlen = 1;
895
896 charset = charset_from_macenc(key_script,
897 GetScriptManagerVariable(smRegionCode),
898 mac_gestalts.sysvers, NULL);
899 if (charset != CS_NONE) {
900 len = charset_to_unicode(&tptr, &tlen, utxt, sizeof(utxt), charset,
901 NULL, NULL, 0);
902 }
903 }
904 term_key(s->term, keysym, utxt, len, mods, flags);
905 }
906
907 void request_paste(void *frontend)
908 {
909 Session *s = frontend;
910
911 /*
912 * In the Mac OS, pasting is synchronous: we can read the
913 * clipboard with no difficulty, so request_paste() can just go
914 * ahead and paste.
915 */
916 term_do_paste(s->term);
917 }
918
919 static struct {
920 Rect msgrect;
921 Point msgorigin;
922 Point zeromouse;
923 Session *s;
924 char oldmsg[20];
925 } growterm_state;
926
927 static void mac_growterm(WindowPtr window, EventRecord *event)
928 {
929 Rect limits;
930 long grow_result;
931 int newrows, newcols;
932 Session *s;
933 #if !TARGET_API_MAC_CARBON
934 DragGrayRgnUPP draghooksave;
935 GrafPtr portsave;
936 FontInfo fi;
937 #endif
938
939 s = mac_windowsession(window);
940
941 #if !TARGET_API_MAC_CARBON
942 draghooksave = LMGetDragHook();
943 growterm_state.oldmsg[0] = '\0';
944 growterm_state.zeromouse = event->where;
945 growterm_state.zeromouse.h -= s->term->cols * s->font_width;
946 growterm_state.zeromouse.v -= s->term->rows * s->font_height;
947 growterm_state.s = s;
948 GetPort(&portsave);
949 SetPort(s->window);
950 BackColor(whiteColor);
951 ForeColor(blackColor);
952 TextFont(systemFont);
953 TextFace(0);
954 TextSize(12);
955 GetFontInfo(&fi);
956 SetRect(&growterm_state.msgrect, 0, 0,
957 StringWidth("\p99999x99999") + 4, fi.ascent + fi.descent + 4);
958 SetPt(&growterm_state.msgorigin, 2, fi.ascent + 2);
959 LMSetDragHook(NewDragGrayRgnUPP(mac_growtermdraghook));
960 #endif
961
962 SetRect(&limits, s->font_width + 15, s->font_height, SHRT_MAX, SHRT_MAX);
963 grow_result = GrowWindow(window, event->where, &limits);
964
965 #if !TARGET_API_MAC_CARBON
966 DisposeDragGrayRgnUPP(LMGetDragHook());
967 LMSetDragHook(draghooksave);
968 InvalRect(&growterm_state.msgrect);
969
970 SetPort(portsave);
971 #endif
972
973 if (grow_result != 0) {
974 newrows = HiWord(grow_result) / s->font_height;
975 newcols = (LoWord(grow_result) - 15) / s->font_width;
976 mac_adjustsize(s, newrows, newcols);
977 term_size(s->term, newrows, newcols, s->cfg.savelines);
978 s->cfg.height=s->term->rows;
979 s->cfg.width=s->term->cols;
980 }
981 }
982
983 #if !TARGET_API_MAC_CARBON
984 static pascal void mac_growtermdraghook(void)
985 {
986 Session *s = growterm_state.s;
987 GrafPtr portsave;
988 Point mouse;
989 char buf[20];
990 unsigned char pbuf[20];
991 int newrows, newcols;
992
993 GetMouse(&mouse);
994 newrows = (mouse.v - growterm_state.zeromouse.v) / s->font_height;
995 if (newrows < 1) newrows = 1;
996 newcols = (mouse.h - growterm_state.zeromouse.h) / s->font_width;
997 if (newcols < 1) newcols = 1;
998 sprintf(buf, "%dx%d", newcols, newrows);
999 if (strcmp(buf, growterm_state.oldmsg) == 0)
1000 return;
1001 strcpy(growterm_state.oldmsg, buf);
1002 c2pstrcpy(pbuf, buf);
1003
1004 GetPort(&portsave);
1005 SetPort(growterm_state.s->window);
1006 EraseRect(&growterm_state.msgrect);
1007 MoveTo(growterm_state.msgorigin.h, growterm_state.msgorigin.v);
1008 DrawString(pbuf);
1009 SetPort(portsave);
1010 }
1011 #endif
1012
1013 void mac_closeterm(WindowPtr window)
1014 {
1015 Session *s = mac_windowsession(window);
1016
1017 /* XXX warn on close */
1018 HideWindow(s->window);
1019 *s->prev = s->next;
1020 s->next->prev = s->prev;
1021 ldisc_free(s->ldisc);
1022 s->back->free(s->backhandle);
1023 log_free(s->logctx);
1024 if (s->uni_to_font != NULL)
1025 DisposeUnicodeToTextInfo(&s->uni_to_font);
1026 term_free(s->term);
1027 mac_freeeventlog(s);
1028 sfree((WinInfo *)GetWRefCon(s->window));
1029 DisposeWindow(s->window);
1030 DisposePalette(s->palette);
1031 sfree(s);
1032 }
1033
1034 static void mac_activateterm(WindowPtr window, EventRecord *event)
1035 {
1036 Session *s;
1037 Boolean active = (event->modifiers & activeFlag) != 0;
1038
1039 s = mac_windowsession(window);
1040 term_set_focus(s->term, active);
1041 term_update(s->term);
1042 if (active && s->cfg.scrollbar)
1043 ShowControl(s->scrollbar);
1044 else {
1045 if (HAVE_COLOR_QD())
1046 PmBackColor(DEFAULT_BG);/* HideControl clears behind the control */
1047 else
1048 BackColor(blackColor);
1049 HideControl(s->scrollbar);
1050 }
1051 mac_drawgrowicon(s);
1052 }
1053
1054 static void mac_updateterm(WindowPtr window)
1055 {
1056 Session *s;
1057 Rect bbox;
1058 #if TARGET_API_MAC_CARBON
1059 RgnHandle visrgn;
1060 #endif
1061
1062 s = mac_windowsession(window);
1063 SetPort((GrafPtr)GetWindowPort(window));
1064 BeginUpdate(window);
1065 pre_paint(s);
1066 #if TARGET_API_MAC_CARBON
1067 visrgn = NewRgn();
1068 GetPortVisibleRegion(GetWindowPort(window), visrgn);
1069 GetRegionBounds(visrgn, &bbox);
1070 #else
1071 bbox = (*window->visRgn)->rgnBBox;
1072 #endif
1073 term_paint(s->term, s, PTOCC(bbox.left), PTOCR(bbox.top),
1074 PTOCC(bbox.right), PTOCR(bbox.bottom), 1);
1075 /* Restore default colours in case the Window Manager uses them */
1076 if (HAVE_COLOR_QD()) {
1077 PmForeColor(DEFAULT_FG);
1078 PmBackColor(DEFAULT_BG);
1079 } else {
1080 ForeColor(whiteColor);
1081 BackColor(blackColor);
1082 }
1083 if (FrontWindow() != window)
1084 #if TARGET_API_MAC_CARBON
1085 EraseRect(GetControlBounds(s->scrollbar, &bbox));
1086 UpdateControls(window, visrgn);
1087 DisposeRgn(visrgn);
1088 #else
1089 EraseRect(&(*s->scrollbar)->contrlRect);
1090 UpdateControls(window, window->visRgn);
1091 #endif
1092 mac_drawgrowicon(s);
1093 post_paint(s);
1094 EndUpdate(window);
1095 }
1096
1097 static void mac_drawgrowicon(Session *s)
1098 {
1099 Rect clip;
1100 RgnHandle savergn;
1101
1102 SetPort((GrafPtr)GetWindowPort(s->window));
1103 /*
1104 * Stop DrawGrowIcon giving us space for a horizontal scrollbar
1105 * See Tech Note TB575 for details.
1106 */
1107 #if TARGET_API_MAC_CARBON
1108 GetPortBounds(GetWindowPort(s->window), &clip);
1109 #else
1110 clip = s->window->portRect;
1111 #endif
1112 clip.left = clip.right - 15;
1113 savergn = NewRgn();
1114 GetClip(savergn);
1115 ClipRect(&clip);
1116 DrawGrowIcon(s->window);
1117 SetClip(savergn);
1118 DisposeRgn(savergn);
1119 }
1120
1121 struct do_text_args {
1122 Session *s;
1123 Rect textrect;
1124 char *text;
1125 int len;
1126 unsigned long attr;
1127 int lattr;
1128 Point numer, denom;
1129 };
1130
1131 /*
1132 * Call from the terminal emulator to draw a bit of text
1133 *
1134 * x and y are text row and column (zero-based)
1135 */
1136 static void do_text_internal(Context ctx, int x, int y, wchar_t *text, int len,
1137 unsigned long attr, int lattr)
1138 {
1139 Session *s = ctx;
1140 int style;
1141 struct do_text_args a;
1142 RgnHandle textrgn, saveclip;
1143 #if TARGET_API_MAC_CARBON
1144 RgnHandle visrgn;
1145 #endif
1146 char mactextbuf[1024];
1147 wchar_t *unitextptr;
1148 int fontwidth;
1149 ByteCount iread, olen;
1150 OSStatus err;
1151 static DeviceLoopDrawingUPP do_text_for_device_upp = NULL;
1152
1153 assert(len <= 1024);
1154
1155 SetPort((GrafPtr)GetWindowPort(s->window));
1156
1157 fontwidth = s->font_width;
1158 if ((lattr & LATTR_MODE) != LATTR_NORM)
1159 fontwidth *= 2;
1160
1161 /* First check this text is relevant */
1162 a.textrect.top = y * s->font_height;
1163 a.textrect.bottom = (y + 1) * s->font_height;
1164 a.textrect.left = x * fontwidth;
1165 a.textrect.right = (x + len) * fontwidth;
1166 if (a.textrect.right > s->term->cols * s->font_width)
1167 a.textrect.right = s->term->cols * s->font_width;
1168 #if TARGET_API_MAC_CARBON
1169 visrgn = NewRgn();
1170 GetPortVisibleRegion(GetWindowPort(s->window), visrgn);
1171 if (!RectInRgn(&a.textrect, visrgn)) {
1172 DisposeRgn(visrgn);
1173 return;
1174 }
1175 DisposeRgn(visrgn);
1176 #else
1177 if (!RectInRgn(&a.textrect, s->window->visRgn))
1178 return;
1179 #endif
1180
1181 if (s->uni_to_font != NULL) {
1182 err = ConvertFromUnicodeToText(s->uni_to_font, len * sizeof(UniChar),
1183 text, kUnicodeUseFallbacksMask,
1184 0, NULL, NULL, NULL,
1185 1024, &iread, &olen, mactextbuf);
1186 if (err != noErr && err != kTECUsedFallbacksStatus)
1187 olen = 0;
1188 } else if (s->font_charset != CS_NONE) {
1189 /* XXX this is bogus if wchar_t and UniChar are different sizes. */
1190 unitextptr = (wchar_t *)text;
1191 olen = charset_from_unicode(&unitextptr, &len, mactextbuf, 1024,
1192 s->font_charset, NULL, ".", 1);
1193 } else
1194 olen = 0;
1195
1196 a.s = s;
1197 a.text = mactextbuf;
1198 a.len = olen;
1199 a.attr = attr;
1200 a.lattr = lattr;
1201 switch (lattr & LATTR_MODE) {
1202 case LATTR_NORM:
1203 TextSize(s->cfg.font.size);
1204 a.numer = s->font_stdnumer;
1205 a.denom = s->font_stddenom;
1206 break;
1207 case LATTR_WIDE:
1208 TextSize(s->cfg.font.size);
1209 a.numer = s->font_widenumer;
1210 a.denom = s->font_widedenom;
1211 break;
1212 case LATTR_TOP:
1213 case LATTR_BOT:
1214 TextSize(s->cfg.font.size * 2);
1215 a.numer = s->font_bignumer;
1216 a.denom = s->font_bigdenom;
1217 break;
1218 }
1219 SetPort((GrafPtr)GetWindowPort(s->window));
1220 TextFont(s->fontnum);
1221 style = s->cfg.font.face;
1222 if ((attr & ATTR_BOLD) && !s->cfg.bold_colour)
1223 style |= bold;
1224 if (attr & ATTR_UNDER)
1225 style |= underline;
1226 TextFace(style);
1227 TextMode(srcOr);
1228 if (HAVE_COLOR_QD())
1229 if (style & bold) {
1230 SpaceExtra(s->font_boldadjust << 16);
1231 CharExtra(s->font_boldadjust << 16);
1232 } else {
1233 SpaceExtra(0);
1234 CharExtra(0);
1235 }
1236 saveclip = NewRgn();
1237 GetClip(saveclip);
1238 ClipRect(&a.textrect);
1239 textrgn = NewRgn();
1240 RectRgn(textrgn, &a.textrect);
1241 if (HAVE_COLOR_QD()) {
1242 if (do_text_for_device_upp == NULL)
1243 do_text_for_device_upp =
1244 NewDeviceLoopDrawingUPP(&do_text_for_device);
1245 DeviceLoop(textrgn, do_text_for_device_upp, (long)&a, 0);
1246 } else
1247 do_text_for_device(1, 0, NULL, (long)&a);
1248 SetClip(saveclip);
1249 DisposeRgn(saveclip);
1250 DisposeRgn(textrgn);
1251 /* Tell the window manager about it in case this isn't an update */
1252 #if TARGET_API_MAC_CARBON
1253 ValidWindowRect(s->window, &a.textrect);
1254 #else
1255 ValidRect(&a.textrect);
1256 #endif
1257 }
1258
1259 /*
1260 * Wrapper that handles combining characters.
1261 */
1262 void do_text(Context ctx, int x, int y, wchar_t *text, int len,
1263 unsigned long attr, int lattr)
1264 {
1265 if (attr & TATTR_COMBINING) {
1266 unsigned long a = 0;
1267 attr &= ~TATTR_COMBINING;
1268 while (len--) {
1269 do_text_internal(ctx, x, y, text, 1, attr | a, lattr);
1270 text++;
1271 a = TATTR_COMBINING;
1272 }
1273 } else
1274 do_text_internal(ctx, x, y, text, len, attr, lattr);
1275 }
1276
1277 static pascal void do_text_for_device(short depth, short devflags,
1278 GDHandle device, long cookie)
1279 {
1280 struct do_text_args *a = (struct do_text_args *)cookie;
1281 int bgcolour, fgcolour, bright, reverse, tmp;
1282 #if TARGET_API_MAC_CARBON
1283 CQDProcsPtr gp = GetPortGrafProcs(GetWindowPort(a->s->window));
1284 #else
1285 QDProcsPtr gp = a->s->window->grafProcs;
1286 #endif
1287
1288 bright = (a->attr & ATTR_BOLD) && a->s->cfg.bold_colour;
1289 reverse = a->attr & ATTR_REVERSE;
1290
1291 if (depth == 1 && (a->attr & TATTR_ACTCURS))
1292 reverse = !reverse;
1293
1294 if (HAVE_COLOR_QD()) {
1295 if (depth > 2) {
1296 fgcolour = ((a->attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
1297 bgcolour = ((a->attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
1298 } else {
1299 /*
1300 * NB: bold reverse in 2bpp breaks with the usual PuTTY model and
1301 * boldens the background, because that's all we can do.
1302 */
1303 fgcolour = bright ? DEFAULT_FG_BOLD : DEFAULT_FG;
1304 bgcolour = DEFAULT_BG;
1305 }
1306 if (reverse) {
1307 tmp = fgcolour;
1308 fgcolour = bgcolour;
1309 bgcolour = tmp;
1310 }
1311 if (bright && depth > 2)
1312 if (fgcolour < 16) fgcolour |=8;
1313 else if (fgcolour >= 256) fgcolour |=1;
1314 if ((a->attr & TATTR_ACTCURS) && depth > 1) {
1315 fgcolour = CURSOR_FG;
1316 bgcolour = CURSOR_BG;
1317 }
1318 PmForeColor(fgcolour);
1319 PmBackColor(bgcolour);
1320 } else { /* No Color Quickdraw */
1321 /* XXX This should be done with a _little_ more configurability */
1322 if (reverse) {
1323 ForeColor(blackColor);
1324 BackColor(whiteColor);
1325 } else {
1326 ForeColor(whiteColor);
1327 BackColor(blackColor);
1328 }
1329 }
1330
1331 if (!(a->attr & TATTR_COMBINING))
1332 EraseRect(&a->textrect);
1333 switch (a->lattr & LATTR_MODE) {
1334 case LATTR_NORM:
1335 case LATTR_WIDE:
1336 MoveTo(a->textrect.left, a->textrect.top + a->s->font_ascent);
1337 break;
1338 case LATTR_TOP:
1339 MoveTo(a->textrect.left, a->textrect.top + a->s->font_ascent * 2);
1340 break;
1341 case LATTR_BOT:
1342 MoveTo(a->textrect.left,
1343 a->textrect.top - a->s->font_height + a->s->font_ascent * 2);
1344 break;
1345 }
1346 /* FIXME: Sort out bold width adjustments on Original QuickDraw. */
1347 if (gp != NULL)
1348 InvokeQDTextUPP(a->len, a->text, a->numer, a->denom, gp->textProc);
1349 else
1350 StdText(a->len, a->text, a->numer, a->denom);
1351
1352 if (a->attr & TATTR_PASCURS) {
1353 PenNormal();
1354 switch (depth) {
1355 case 1:
1356 PenMode(patXor);
1357 break;
1358 default:
1359 PmForeColor(CURSOR_BG);
1360 break;
1361 }
1362 FrameRect(&a->textrect);
1363 }
1364 }
1365
1366 void do_cursor(Context ctx, int x, int y, wchar_t *text, int len,
1367 unsigned long attr, int lattr)
1368 {
1369
1370 do_text(ctx, x, y, text, len, attr, lattr);
1371 }
1372
1373 /*
1374 * Call from the terminal emulator to get its graphics context.
1375 * Should probably be called start_redraw or something.
1376 */
1377 void pre_paint(Session *s)
1378 {
1379 GDHandle gdh;
1380 Rect myrect, tmprect;
1381 #if TARGET_API_MAC_CARBON
1382 RgnHandle visrgn;
1383 #endif
1384
1385 if (HAVE_COLOR_QD()) {
1386 s->term->attr_mask = 0;
1387 SetPort((GrafPtr)GetWindowPort(s->window));
1388 #if TARGET_API_MAC_CARBON
1389 visrgn = NewRgn();
1390 GetPortVisibleRegion(GetWindowPort(s->window), visrgn);
1391 GetRegionBounds(visrgn, &myrect);
1392 DisposeRgn(visrgn);
1393 #else
1394 myrect = (*s->window->visRgn)->rgnBBox;
1395 #endif
1396 LocalToGlobal((Point *)&myrect.top);
1397 LocalToGlobal((Point *)&myrect.bottom);
1398 for (gdh = GetDeviceList();
1399 gdh != NULL;
1400 gdh = GetNextDevice(gdh)) {
1401 if (TestDeviceAttribute(gdh, screenDevice) &&
1402 TestDeviceAttribute(gdh, screenActive) &&
1403 SectRect(&(*gdh)->gdRect, &myrect, &tmprect)) {
1404 switch ((*(*gdh)->gdPMap)->pixelSize) {
1405 case 1:
1406 if (s->cfg.bold_colour)
1407 s->term->attr_mask |= ~(ATTR_COLOURS |
1408 (s->cfg.bold_colour ? ATTR_BOLD : 0));
1409 break;
1410 case 2:
1411 s->term->attr_mask |= ~ATTR_COLOURS;
1412 break;
1413 default:
1414 s->term->attr_mask = ~0;
1415 return; /* No point checking more screens. */
1416 }
1417 }
1418 }
1419 } else
1420 s->term->attr_mask = ~(ATTR_COLOURS |
1421 (s->cfg.bold_colour ? ATTR_BOLD : 0));
1422 }
1423
1424 Context get_ctx(void *frontend)
1425 {
1426 Session *s = frontend;
1427
1428 pre_paint(s);
1429 return s;
1430 }
1431
1432 void free_ctx(Context ctx)
1433 {
1434
1435 }
1436
1437 /*
1438 * Presumably this does something in Windows
1439 */
1440 void post_paint(Session *s)
1441 {
1442
1443 }
1444
1445 /*
1446 * Set the scroll bar position
1447 *
1448 * total is the line number of the bottom of the working screen
1449 * start is the line number of the top of the display
1450 * page is the length of the displayed page
1451 */
1452 void set_sbar(void *frontend, int total, int start, int page)
1453 {
1454 Session *s = frontend;
1455
1456 /* We don't redraw until we've set everything up, to avoid glitches */
1457 SetControlMinimum(s->scrollbar, 0);
1458 SetControlMaximum(s->scrollbar, total - page);
1459 SetControlValue(s->scrollbar, start);
1460 #if !TARGET_CPU_68K
1461 if (mac_gestalts.cntlattr & gestaltControlMgrPresent)
1462 SetControlViewSize(s->scrollbar, page);
1463 #endif
1464 }
1465
1466 void sys_cursor(void *frontend, int x, int y)
1467 {
1468 /*
1469 * I think his is meaningless under Mac OS.
1470 */
1471 }
1472
1473 /*
1474 * This is still called when mode==BELL_VISUAL, even though the
1475 * visual bell is handled entirely within terminal.c, because we
1476 * may want to perform additional actions on any kind of bell (for
1477 * example, taskbar flashing in Windows).
1478 */
1479 void beep(void *frontend, int mode)
1480 {
1481 if (mode != BELL_VISUAL)
1482 SysBeep(30);
1483 /*
1484 * XXX We should indicate the relevant window and/or use the
1485 * Notification Manager
1486 */
1487 }
1488
1489 int char_width(Context ctx, int uc)
1490 {
1491 /*
1492 * Until we support exciting character-set stuff, assume all chars are
1493 * single-width.
1494 */
1495 return 1;
1496 }
1497
1498 /*
1499 * Set icon string -- a no-op here (Windowshade?)
1500 */
1501 void set_icon(void *frontend, char *icon) {
1502 Session *s = frontend;
1503
1504 }
1505
1506 /*
1507 * Set the window title
1508 */
1509 void set_title(void *frontend, char *title)
1510 {
1511 Session *s = frontend;
1512 Str255 mactitle;
1513
1514 c2pstrcpy(mactitle, title);
1515 SetWTitle(s->window, mactitle);
1516 }
1517
1518 /*
1519 * Used by backend to indicate busy-ness
1520 */
1521 void set_busy_status(void *frontend, int status)
1522 {
1523 /* FIXME do something */
1524 }
1525
1526 /*
1527 * set or clear the "raw mouse message" mode
1528 */
1529 void set_raw_mouse_mode(void *frontend, int activate)
1530 {
1531 Session *s = frontend;
1532
1533 s->raw_mouse = activate;
1534 /* FIXME: Should call mac_updatetermcursor as appropriate. */
1535 }
1536
1537 /*
1538 * Resize the window at the emulator's request
1539 */
1540 void request_resize(void *frontend, int w, int h)
1541 {
1542 Session *s = frontend;
1543 RgnHandle grayrgn;
1544 Rect graybox;
1545 int wlim, hlim;
1546
1547 /* Arbitrarily clip to the size of the desktop. */
1548 grayrgn = GetGrayRgn();
1549 #if TARGET_API_MAC_CARBON
1550 GetRegionBounds(grayrgn, &graybox);
1551 #else
1552 graybox = (*grayrgn)->rgnBBox;
1553 #endif
1554 wlim = (graybox.right - graybox.left) / s->font_width;
1555 hlim = (graybox.bottom - graybox.top) / s->font_height;
1556 if (w > wlim) w = wlim;
1557 if (h > hlim) h = hlim;
1558 term_size(s->term, h, w, s->cfg.savelines);
1559 mac_initfont(s);
1560 }
1561
1562 /*
1563 * Iconify (actually collapse) the window at the emulator's request.
1564 */
1565 void set_iconic(void *frontend, int iconic)
1566 {
1567 Session *s = frontend;
1568 UInt32 features;
1569
1570 if (mac_gestalts.apprvers >= 0x0100 &&
1571 GetWindowFeatures(s->window, &features) == noErr &&
1572 (features & kWindowCanCollapse))
1573 CollapseWindow(s->window, iconic);
1574 }
1575
1576 /*
1577 * Move the window in response to a server-side request.
1578 */
1579 void move_window(void *frontend, int x, int y)
1580 {
1581 Session *s = frontend;
1582
1583 MoveWindow(s->window, x, y, FALSE);
1584 }
1585
1586 /*
1587 * Move the window to the top or bottom of the z-order in response
1588 * to a server-side request.
1589 */
1590 void set_zorder(void *frontend, int top)
1591 {
1592 Session *s = frontend;
1593
1594 /*
1595 * We also change the input focus to point to the topmost window,
1596 * since that's probably what the Human Interface Guidelines would
1597 * like us to do.
1598 */
1599 if (top)
1600 SelectWindow(s->window);
1601 else
1602 SendBehind(s->window, NULL);
1603 }
1604
1605 /*
1606 * Refresh the window in response to a server-side request.
1607 */
1608 void refresh_window(void *frontend)
1609 {
1610 Session *s = frontend;
1611
1612 term_invalidate(s->term);
1613 }
1614
1615 /*
1616 * Maximise or restore the window in response to a server-side
1617 * request.
1618 */
1619 void set_zoomed(void *frontend, int zoomed)
1620 {
1621 Session *s = frontend;
1622
1623 ZoomWindow(s->window, zoomed ? inZoomOut : inZoomIn, FALSE);
1624 }
1625
1626 /*
1627 * Report whether the window is iconic, for terminal reports.
1628 */
1629 int is_iconic(void *frontend)
1630 {
1631 Session *s = frontend;
1632 UInt32 features;
1633
1634 if (mac_gestalts.apprvers >= 0x0100 &&
1635 GetWindowFeatures(s->window, &features) == noErr &&
1636 (features & kWindowCanCollapse))
1637 return IsWindowCollapsed(s->window);
1638 return FALSE;
1639 }
1640
1641 /*
1642 * Report the window's position, for terminal reports.
1643 */
1644 void get_window_pos(void *frontend, int *x, int *y)
1645 {
1646 Session *s = frontend;
1647 Rect rect;
1648
1649 #if TARGET_API_MAC_CARBON
1650 GetPortBounds(GetWindowPort(s->window), &rect);
1651 #else
1652 rect = s->window->portRect;
1653 #endif
1654 *x = rect.left;
1655 *y = rect.top;
1656 }
1657
1658 /*
1659 * Report the window's pixel size, for terminal reports.
1660 */
1661 void get_window_pixels(void *frontend, int *x, int *y)
1662 {
1663 Session *s = frontend;
1664 Rect rect;
1665
1666 #if TARGET_API_MAC_CARBON
1667 GetPortBounds(GetWindowPort(s->window), &rect);
1668 #else
1669 rect = s->window->portRect;
1670 #endif
1671 *x = rect.right - rect.left;
1672 *y = rect.bottom - rect.top;
1673 }
1674
1675 /*
1676 * Return the window or icon title.
1677 */
1678 char *get_window_title(void *frontend, int icon)
1679 {
1680 Session *s = frontend;
1681 Str255 ptitle;
1682 static char title[256];
1683
1684 GetWTitle(s->window, ptitle);
1685 p2cstrcpy(title, ptitle);
1686 return title;
1687 }
1688
1689 /*
1690 * real_palette_set(): This does the actual palette-changing work on behalf
1691 * of palette_set(). Does _not_ call ActivatePalette() in case the caller
1692 * is doing a batch of updates.
1693 */
1694 static void real_palette_set(Session *s, int n, int r, int g, int b)
1695 {
1696 RGBColor col;
1697
1698 if (!HAVE_COLOR_QD())
1699 return;
1700 col.red = r * 0x0101;
1701 col.green = g * 0x0101;
1702 col.blue = b * 0x0101;
1703 SetEntryColor(s->palette, n, &col);
1704 }
1705
1706 /*
1707 * Set the logical palette. Called by the terminal emulator.
1708 */
1709 void palette_set(void *frontend, int n, int r, int g, int b)
1710 {
1711 Session *s = frontend;
1712
1713 if (!HAVE_COLOR_QD())
1714 return;
1715 real_palette_set(s, n, r, g, b);
1716 if (n == DEFAULT_BG)
1717 mac_adjustwinbg(s);
1718
1719 ActivatePalette(s->window);
1720 }
1721
1722 /*
1723 * Reset to the default palette
1724 */
1725 void palette_reset(void *frontend)
1726 {
1727 Session *s = frontend;
1728 /* This maps colour indices in cfg to those used in our palette. */
1729 static const int ww[] = {
1730 256, 257, 258, 259, 260, 261,
1731 0, 8, 1, 9, 2, 10, 3, 11,
1732 4, 12, 5, 13, 6, 14, 7, 15
1733 };
1734
1735 int i;
1736
1737 if (!HAVE_COLOR_QD())
1738 return;
1739
1740 for (i = 0; i < 22; i++) {
1741 int w = ww[i];
1742 real_palette_set(s,w,
1743 s->cfg.colours[i][0],
1744 s->cfg.colours[i][1],
1745 s->cfg.colours[i][2]);
1746 }
1747 for (i = 0; i < 240; i++) {
1748 if (i < 216) {
1749 int r = i / 36, g = (i / 6) % 6, b = i % 6;
1750 real_palette_set(s,i+16,
1751 r * 0x33,
1752 g * 0x33,
1753 b * 0x33);
1754 } else {
1755 int shade = i - 216;
1756 shade = (shade + 1) * 0xFF / (240 - 216 + 1);
1757 real_palette_set(s,i+16,shade,shade,shade);
1758 }
1759 }
1760
1761
1762 mac_adjustwinbg(s);
1763 ActivatePalette(s->window);
1764 /* Palette Manager will generate update events as required. */
1765 }
1766
1767 /*
1768 * Scroll the screen. (`lines' is +ve for scrolling forward, -ve
1769 * for backward.)
1770 */
1771 void do_scroll(Context ctx, int topline, int botline, int lines)
1772 {
1773 Session *s = ctx;
1774 Rect r;
1775 RgnHandle scrollrgn = NewRgn();
1776 RgnHandle movedupdate = NewRgn();
1777 RgnHandle update = NewRgn();
1778 Point g2l = { 0, 0 };
1779
1780 SetPort((GrafPtr)GetWindowPort(s->window));
1781
1782 /*
1783 * Work out the part of the update region that will scrolled by
1784 * this operation.
1785 */
1786 if (lines > 0)
1787 SetRectRgn(scrollrgn, 0, (topline + lines) * s->font_height,
1788 s->term->cols * s->font_width,
1789 (botline + 1) * s->font_height);
1790 else
1791 SetRectRgn(scrollrgn, 0, topline * s->font_height,
1792 s->term->cols * s->font_width,
1793 (botline - lines + 1) * s->font_height);
1794 #if TARGET_API_MAC_CARBON
1795 GetWindowRegion(s->window, kWindowUpdateRgn, movedupdate);
1796 #else
1797 GetWindowUpdateRgn(s->window, movedupdate);
1798 #endif
1799 GlobalToLocal(&g2l);
1800 OffsetRgn(movedupdate, g2l.h, g2l.v); /* Convert to local co-ords. */
1801 SectRgn(scrollrgn, movedupdate, movedupdate); /* Clip scrolled section. */
1802 #if TARGET_API_MAC_CARBON
1803 ValidWindowRgn(s->window, movedupdate);
1804 #else
1805 ValidRgn(movedupdate);
1806 #endif
1807 OffsetRgn(movedupdate, 0, -lines * s->font_height); /* Scroll it. */
1808
1809 PenNormal();
1810 if (HAVE_COLOR_QD())
1811 PmBackColor(DEFAULT_BG);
1812 else
1813 BackColor(blackColor); /* XXX make configurable */
1814 SetRect(&r, 0, topline * s->font_height,
1815 s->term->cols * s->font_width, (botline + 1) * s->font_height);
1816 ScrollRect(&r, 0, - lines * s->font_height, update);
1817
1818 #if TARGET_API_MAC_CARBON
1819 InvalWindowRgn(s->window, update);
1820 InvalWindowRgn(s->window, movedupdate);
1821 #else
1822 InvalRgn(update);
1823 InvalRgn(movedupdate);
1824 #endif
1825
1826 DisposeRgn(scrollrgn);
1827 DisposeRgn(movedupdate);
1828 DisposeRgn(update);
1829 }
1830
1831 /* Dummy routine, only required in plink. */
1832 void ldisc_update(void *frontend, int echo, int edit)
1833 {
1834 }
1835
1836 /*
1837 * Mac PuTTY doesn't support printing yet.
1838 */
1839 printer_job *printer_start_job(char *printer)
1840 {
1841
1842 return NULL;
1843 }
1844
1845 void printer_job_data(printer_job *pj, void *data, int len)
1846 {
1847 }
1848
1849 void printer_finish_job(printer_job *pj)
1850 {
1851 }
1852
1853 void frontend_keypress(void *handle)
1854 {
1855 /*
1856 * Keypress termination in non-Close-On-Exit mode is not
1857 * currently supported in PuTTY proper, because the window
1858 * always has a perfectly good Close button anyway. So we do
1859 * nothing here.
1860 */
1861 return;
1862 }
1863
1864 /*
1865 * Ask whether to wipe a session log file before writing to it.
1866 * Returns 2 for wipe, 1 for append, 0 for cancel (don't log).
1867 */
1868 int askappend(void *frontend, Filename filename)
1869 {
1870
1871 /* FIXME: not implemented yet. */
1872 return 2;
1873 }
1874
1875 int from_backend(void *frontend, int is_stderr, const char *data, int len)
1876 {
1877 Session *s = frontend;
1878
1879 return term_data(s->term, is_stderr, data, len);
1880 }
1881
1882 /*
1883 * Emacs magic:
1884 * Local Variables:
1885 * c-file-style: "simon"
1886 * End:
1887 */
1888