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