(ns-display-name): Remove declaration.
[bpt/emacs.git] / src / nsterm.m
CommitLineData
edfda783 1/* NeXT/Open/GNUstep / MacOSX communication module.
32d235f8
GM
2 Copyright (C) 1989, 1993, 1994, 2005, 2006, 2008
3 Free Software Foundation, Inc.
edfda783
AR
4
5This file is part of GNU Emacs.
6
32d235f8 7GNU Emacs is free software: you can redistribute it and/or modify
edfda783 8it under the terms of the GNU General Public License as published by
32d235f8
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
edfda783
AR
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
32d235f8 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
edfda783 19
32d235f8 20/*
edfda783
AR
21Originally by Carl Edman
22Updated by Christian Limpach (chris@nice.ch)
23OpenStep/Rhapsody port by Scott Bender (sbender@harmony-ds.com)
24MacOSX/Aqua port by Christophe de Dinechin (descubes@earthlink.net)
25GNUstep port and post-20 update by Adrian Robert (arobert@cogsci.ucsd.edu)
26*/
27
28#include <math.h>
29#include <sys/types.h>
30#include <time.h>
31#include <unistd.h>
32
33#include "config.h"
34#include "lisp.h"
35#include "blockinput.h"
36#include "sysselect.h"
37#include "nsterm.h"
38#include "systime.h"
39#include "character.h"
40#include "fontset.h"
41#include "composite.h"
42#include "ccl.h"
43
44#include "termhooks.h"
45#include "termopts.h"
46#include "termchar.h"
47
48#include "window.h"
49#include "keyboard.h"
50
51#include "font.h"
52
53/* call tracing */
54#if 0
55int term_trace_num = 0;
56#define NSTRACE(x) fprintf (stderr, "%s:%d: [%d] " #x "\n", \
57 __FILE__, __LINE__, ++term_trace_num)
58#else
59#define NSTRACE(x)
60#endif
61
62
63/* ==========================================================================
64
65 Local declarations
66
67 ========================================================================== */
68
69/* Special keycodes that we pass down the event chain */
70#define KEY_NS_POWER_OFF ((1<<28)|(0<<16)|1)
71#define KEY_NS_OPEN_FILE ((1<<28)|(0<<16)|2)
72#define KEY_NS_OPEN_TEMP_FILE ((1<<28)|(0<<16)|3)
73#define KEY_NS_DRAG_FILE ((1<<28)|(0<<16)|4)
74#define KEY_NS_DRAG_COLOR ((1<<28)|(0<<16)|5)
75#define KEY_NS_DRAG_TEXT ((1<<28)|(0<<16)|6)
76#define KEY_NS_CHANGE_FONT ((1<<28)|(0<<16)|7)
77#define KEY_NS_OPEN_FILE_LINE ((1<<28)|(0<<16)|8)
78#define KEY_NS_INSERT_WORKING_TEXT ((1<<28)|(0<<16)|9)
79#define KEY_NS_DELETE_WORKING_TEXT ((1<<28)|(0<<16)|10)
80#define KEY_NS_SPI_SERVICE_CALL ((1<<28)|(0<<16)|11)
81
82/* Convert a symbol indexed with an NSxxx value to a value as defined
83 in keyboard.c (lispy_function_key). I hope this is a correct way
84 of doing things... */
85static unsigned convert_ns_to_X_keysym[] =
86{
87 NSHomeFunctionKey, 0x50,
88 NSLeftArrowFunctionKey, 0x51,
89 NSUpArrowFunctionKey, 0x52,
90 NSRightArrowFunctionKey, 0x53,
91 NSDownArrowFunctionKey, 0x54,
92 NSPageUpFunctionKey, 0x55,
93 NSPageDownFunctionKey, 0x56,
94 NSEndFunctionKey, 0x57,
95 NSBeginFunctionKey, 0x58,
96 NSSelectFunctionKey, 0x60,
97 NSPrintFunctionKey, 0x61,
98 NSExecuteFunctionKey, 0x62,
99 NSInsertFunctionKey, 0x63,
100 NSUndoFunctionKey, 0x65,
101 NSRedoFunctionKey, 0x66,
102 NSMenuFunctionKey, 0x67,
103 NSFindFunctionKey, 0x68,
104 NSHelpFunctionKey, 0x6A,
105 NSBreakFunctionKey, 0x6B,
106
107 NSF1FunctionKey, 0xBE,
108 NSF2FunctionKey, 0xBF,
109 NSF3FunctionKey, 0xC0,
110 NSF4FunctionKey, 0xC1,
111 NSF5FunctionKey, 0xC2,
112 NSF6FunctionKey, 0xC3,
113 NSF7FunctionKey, 0xC4,
114 NSF8FunctionKey, 0xC5,
115 NSF9FunctionKey, 0xC6,
116 NSF10FunctionKey, 0xC7,
117 NSF11FunctionKey, 0xC8,
118 NSF12FunctionKey, 0xC9,
119 NSF13FunctionKey, 0xCA,
120 NSF14FunctionKey, 0xCB,
121 NSF15FunctionKey, 0xCC,
122
123 NSBackspaceCharacter, 0x08, /* 8: Not on some KBs. */
124 NSDeleteCharacter, 0xFF, /* 127: Big 'delete' key upper right. */
125 NSDeleteFunctionKey, 0x9F, /* 63272: Del forw key off main array. */
126
127 NSTabCharacter, 0x09,
128 0x19, 0x09, /* left tab->regular since pass shift */
129 NSCarriageReturnCharacter, 0x0D,
130 NSNewlineCharacter, 0x0D,
131 NSEnterCharacter, 0x8D,
132
133 0x1B, 0x1B /* escape */
134};
135
136
137/* Lisp communications */
138Lisp_Object ns_input_file, ns_input_font, ns_input_fontsize, ns_input_line;
139Lisp_Object ns_input_color, ns_input_text, ns_working_text;
140Lisp_Object ns_input_spi_name, ns_input_spi_arg;
141Lisp_Object Vx_toolkit_scroll_bars;
142static Lisp_Object Qmodifier_value;
143/*PENDING: unsure why these defined in term files, anyway we need in keymap.c */
144Lisp_Object Qalt, Qcontrol, Qhyper, Qmeta, Qsuper;
145extern Lisp_Object Qcursor_color, Qcursor_type, Qns;
edfda783
AR
146
147
148EmacsPrefsController *prefsController;
149
150/* Defaults managed through the OpenStep defaults system. These pertain to
151 the NS interface specifically. Although a customization group could be
152 created, it's more natural to manage them via defaults. */
153
154/* Specifies which emacs modifier should be generated when NS receives
155 the Alternate modifer. May be Qnone or any of the modifier lisp symbols. */
156Lisp_Object ns_alternate_modifier;
157
158/* Specifies which emacs modifier should be generated when NS receives
159 the Command modifer. May be any of the modifier lisp symbols. */
160Lisp_Object ns_command_modifier;
161
162/* Specifies which emacs modifier should be generated when NS receives
163 the Control modifer. May be any of the modifier lisp symbols. */
164Lisp_Object ns_control_modifier;
165
166/* Specifies which emacs modifier should be generated when NS receives
167 the Function modifer (laptops). May be any of the modifier lisp symbols. */
168Lisp_Object ns_function_modifier;
169
170/* A floating point value specifying the rate at which to blink the cursor.
171 YES indicates 0.5, NO indicates no blinking. */
172Lisp_Object ns_cursor_blink_rate;
173
174/* Used for liason with core emacs cursor-blink-mode. */
175Lisp_Object ns_cursor_blink_mode;
176
177/* A floating point value specifying vertical stretch (positive) or shrink
178 (negative) of text line spacing. Zero means default spacing.
179 YES indicates 0.5, NO indicates 0.0. */
180Lisp_Object ns_expand_space;
181
182/* Control via default 'GSFontAntiAlias' on OS X and GNUstep. */
5c976973 183Lisp_Object ns_antialias_text;
edfda783
AR
184
185/* On OS X picks up the default NSGlobalDomain AppleAntiAliasingThreshold,
186 the maximum font size to NOT antialias. On GNUstep there is currently
187 no way to control this behavior. */
188float ns_antialias_threshold;
189
190/* Controls use of an undocumented CG function to do Quickdraw-style font
191 smoothing (less heavy) instead of regular Quartz smoothing. */
5c976973 192Lisp_Object ns_use_qd_smoothing;
edfda783
AR
193
194/* Used to pick up AppleHighlightColor on OS X */
5c976973 195Lisp_Object ns_use_system_highlight_color;
edfda783
AR
196NSString *ns_selection_color;
197
198
199NSArray *ns_send_types =0, *ns_return_types =0, *ns_drag_types =0;
200
201/* Display variables */
202struct ns_display_info *ns_display_list; /* Chain of existing displays */
203Lisp_Object ns_display_name_list;
204long context_menu_value = 0;
205
206/* display update */
207NSPoint last_mouse_motion_position;
208static NSRect last_mouse_glyph;
209static unsigned long last_mouse_movement_time = 0;
210static Lisp_Object last_mouse_motion_frame;
211static EmacsScroller *last_mouse_scroll_bar = nil;
212static struct frame *ns_updating_frame;
213static NSView *focus_view = NULL;
214static int ns_window_num =0;
215static NSRect uRect;
216static BOOL gsaved = NO;
217BOOL ns_in_resize = NO;
218int ns_tmp_flags; /*PENDING */
219struct nsfont_info *ns_tmp_font; /*PENDING */
220/*static int debug_lock = 0; */
221
222#ifdef NS_IMPL_COCOA
223/* This undocumented Quartz function controls how fonts are anti-aliased.
224 (Found from code in Mac wxWindows impl, discovered by running `nm' on
225 the "QD" framework.)
226 Mode 0 is normal anti-aliasing, mode 1 is no anti-aliasing, and mode 2 is
227 4-bit pixel-aligned anti-aliasing (the old QuickDraw standard). */
228extern void CGContextSetFontRenderingMode (CGContextRef cg, int v);
229#endif
230
231
232/* event loop */
233static BOOL send_appdefined = YES;
234static NSEvent *last_appdefined_event = 0;
235static NSTimer *timed_entry = 0;
236static NSTimer *fd_entry = nil;
237static NSTimer *cursor_blink_entry = nil;
238static NSTimer *scroll_repeat_entry = nil;
239static fd_set select_readfds, t_readfds;
240static struct timeval select_timeout;
241static int select_nfds;
242static NSAutoreleasePool *outerpool;
243static BOOL ns_shutdown_properly = NO;
244static struct input_event *emacs_event = NULL;
245static struct input_event *q_event_ptr = NULL;
246static int n_emacs_events_pending = 0;
247static NSMutableArray *ns_pending_files, *ns_pending_service_names,
248 *ns_pending_service_args;
249static BOOL inNsSelect = 0;
250
251/* Convert modifiers in a NeXTSTEP event to emacs style modifiers. */
252#define NS_FUNCTION_KEY_MASK 0x800000
253#define EV_MODIFIERS(e) \
254 ((([e modifierFlags] & NSHelpKeyMask) ? \
255 hyper_modifier : 0) \
256 | (([e modifierFlags] & NSAlternateKeyMask) ? \
6882361b 257 parse_solitary_modifier (ns_alternate_modifier) : 0) \
edfda783
AR
258 | (([e modifierFlags] & NSShiftKeyMask) ? \
259 shift_modifier : 0) \
260 | (([e modifierFlags] & NSControlKeyMask) ? \
6882361b 261 parse_solitary_modifier (ns_control_modifier) : 0) \
edfda783 262 | (([e modifierFlags] & NS_FUNCTION_KEY_MASK) ? \
6882361b 263 parse_solitary_modifier (ns_function_modifier) : 0) \
edfda783 264 | (([e modifierFlags] & NSCommandKeyMask) ? \
6882361b 265 parse_solitary_modifier (ns_command_modifier):0))
edfda783
AR
266
267#define EV_UDMODIFIERS(e) \
268 ((([e type] == NSLeftMouseDown) ? down_modifier : 0) \
269 | (([e type] == NSRightMouseDown) ? down_modifier : 0) \
270 | (([e type] == NSLeftMouseDragged) ? down_modifier : 0) \
271 | (([e type] == NSRightMouseDragged) ? down_modifier : 0) \
272 | (([e type] == NSLeftMouseUp) ? up_modifier : 0) \
273 | (([e type] == NSRightMouseUp) ? up_modifier : 0))
274
275#define EV_BUTTON(e) \
276 ((([e type] == NSLeftMouseDown) || ([e type] == NSLeftMouseUp)) ? 0 : \
277 (([e type] == NSRightMouseDown) || ([e type] == NSRightMouseUp)) ? 2 : 1)
278
279/* Convert the time field to a timestamp in milliseconds. */
280#ifdef NS_IMPL_GNUSTEP
281/* Apple says timestamp is in seconds, but GNUstep seems to be returning msec */
282#define EV_TIMESTAMP(e) ([e timestamp])
283#else
284#define EV_TIMESTAMP(e) ([e timestamp] * 1000)
285#endif /* not gnustep */
286
287/* This is a piece of code which is common to all the event handling
288 methods. Maybe it should even be a function. */
289#define EV_TRAILER(e) \
290 { \
291 XSETFRAME (emacs_event->frame_or_window, [NSApp isActive] ? \
292 emacsframe : SELECTED_FRAME ()); \
293 if (e) emacs_event->timestamp = EV_TIMESTAMP (e); \
294 n_emacs_events_pending++; \
295 kbd_buffer_store_event_hold (emacs_event, q_event_ptr); \
296 EVENT_INIT (*emacs_event); \
297 ns_send_appdefined (-1); \
298 }
299
300/*PENDING: get rid of need for these forward declarations */
301static void ns_condemn_scroll_bars (struct frame *f),
302 ns_judge_scroll_bars (struct frame *f);
303
304/* unused variables needed for compatibility reasons */
305int x_use_underline_position_properties, x_underline_at_descent_line;
306/* PENDING: figure out what to do with underline_minimum_offset. */
307
308
309/* ==========================================================================
310
311 Utilities
312
313 ========================================================================== */
314
315
316static Lisp_Object
317append2 (Lisp_Object list, Lisp_Object item)
318/* --------------------------------------------------------------------------
319 Utility to append to a list
320 -------------------------------------------------------------------------- */
321{
322 Lisp_Object array[2];
323 array[0] = list;
324 array[1] = Fcons (item, Qnil);
325 return Fnconc (2, &array[0]);
326}
327
328
329void
330ns_init_paths ()
331/* --------------------------------------------------------------------------
332 Used to allow emacs to find its resources under Emacs.app
333 Called from emacs.c at startup.
334 -------------------------------------------------------------------------- */
335{
336 NSBundle *bundle = [NSBundle mainBundle];
337 NSString *binDir = [bundle bundlePath], *resourceDir = [bundle resourcePath];
338 NSString *resourcePath, *resourcePaths;
339 NSRange range;
340 BOOL onWindows = NO; /* how do I determine this? */
341 NSString *pathSeparator = onWindows ? @";" : @":";
342 NSFileManager *fileManager = [NSFileManager defaultManager];
343 BOOL isDir;
344/*NSLog (@"ns_init_paths: '%@'\n%@\n", [[NSBundle mainBundle] bundlePath], [[NSBundle mainBundle] resourcePath]); */
345
346 /* get bindir from base */
347 range = [resourceDir rangeOfString: @"Contents"];
348 if (range.location != NSNotFound)
349 {
350 binDir = [binDir stringByAppendingPathComponent: @"Contents"];
351#ifdef NS_IMPL_COCOA
352 binDir = [binDir stringByAppendingPathComponent: @"MacOS"];
353#endif
354 }
355
356 /* the following based on Andrew Choi's init_mac_osx_environment () */
357 if (!getenv ("EMACSLOADPATH"))
358 {
359 NSArray *paths = [resourceDir stringsByAppendingPaths:
360 [NSArray arrayWithObjects:
361 @"site-lisp", @"lisp", @"leim", nil]];
362 NSEnumerator *pathEnum = [paths objectEnumerator];
363 resourcePaths = @"";
364 while (resourcePath = [pathEnum nextObject])
365 {
366 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
367 if (isDir)
368 {
369 if ([resourcePaths length] > 0)
facfbbbd
SM
370 resourcePaths
371 = [resourcePaths stringByAppendingString: pathSeparator];
372 resourcePaths
373 = [resourcePaths stringByAppendingString: resourcePath];
edfda783
AR
374 }
375 }
376 if ([resourcePaths length] > 0)
377 setenv ("EMACSLOADPATH", [resourcePaths UTF8String], 1);
378/*NSLog (@"loadPath: '%s'\n", resourcePaths); */
379 }
380
381 if (!getenv ("EMACSPATH"))
382 {
383 NSArray *paths = [binDir stringsByAppendingPaths:
384 [NSArray arrayWithObjects: @"bin",
385 @"lib-exec", nil]];
386 NSEnumerator *pathEnum = [paths objectEnumerator];
387 resourcePaths = @"";
388 while (resourcePath = [pathEnum nextObject])
389 {
390 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
391 if (isDir)
392 {
393 if ([resourcePaths length] > 0)
facfbbbd
SM
394 resourcePaths
395 = [resourcePaths stringByAppendingString: pathSeparator];
396 resourcePaths
397 = [resourcePaths stringByAppendingString: resourcePath];
edfda783
AR
398 }
399 }
400 if ([resourcePaths length] > 0)
401 setenv ("EMACSPATH", [resourcePaths UTF8String], 1);
402 }
403
404 resourcePath = [resourceDir stringByAppendingPathComponent: @"etc"];
405 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
406 {
407 if (isDir)
408 {
409 if (!getenv ("EMACSDATA"))
410 setenv ("EMACSDATA", [resourcePath UTF8String], 1);
411 if (!getenv ("EMACSDOC"))
412 setenv ("EMACSDOC", [resourcePath UTF8String], 1);
413 }
414 }
415
416 /*PENDING: append to INFOPATH... */
417 if (!getenv ("INFOPATH"))
418 {
419 resourcePath = [resourceDir stringByAppendingPathComponent: @"info"];
420 if ([fileManager fileExistsAtPath: resourcePath isDirectory: &isDir])
421 if (isDir)
422 setenv ("INFOPATH", [resourcePath UTF8String], 1);
423 }
424}
425
426
427static int
428timeval_subtract (struct timeval *result, struct timeval x, struct timeval y)
429/* --------------------------------------------------------------------------
430 Subtract the `struct timeval' values X and Y, storing the result in RESULT.
431 Return 1 if the difference is negative, otherwise 0.
432 -------------------------------------------------------------------------- */
433{
434 /* Perform the carry for the later subtraction by updating y.
435 This is safer because on some systems
436 the tv_sec member is unsigned. */
437 if (x.tv_usec < y.tv_usec)
438 {
439 int nsec = (y.tv_usec - x.tv_usec) / 1000000 + 1;
440 y.tv_usec -= 1000000 * nsec;
441 y.tv_sec += nsec;
442 }
443 if (x.tv_usec - y.tv_usec > 1000000)
444 {
445 int nsec = (y.tv_usec - x.tv_usec) / 1000000;
446 y.tv_usec += 1000000 * nsec;
447 y.tv_sec -= nsec;
448 }
449
450 /* Compute the time remaining to wait. tv_usec is certainly positive. */
451 result->tv_sec = x.tv_sec - y.tv_sec;
452 result->tv_usec = x.tv_usec - y.tv_usec;
453
454 /* Return indication of whether the result should be considered negative. */
455 return x.tv_sec < y.tv_sec;
456}
457
458static void
459ns_timeout (int usecs)
460/* --------------------------------------------------------------------------
461 Blocking timer utility used by ns_ring_bell
462 -------------------------------------------------------------------------- */
463{
464 struct timeval wakeup;
465
466 EMACS_GET_TIME (wakeup);
467
468 /* Compute time to wait until, propagating carry from usecs. */
469 wakeup.tv_usec += usecs;
470 wakeup.tv_sec += (wakeup.tv_usec / 1000000);
471 wakeup.tv_usec %= 1000000;
472
473 /* Keep waiting until past the time wakeup. */
474 while (1)
475 {
476 struct timeval timeout;
477
478 EMACS_GET_TIME (timeout);
479
480 /* In effect, timeout = wakeup - timeout.
481 Break if result would be negative. */
482 if (timeval_subtract (&timeout, wakeup, timeout))
483 break;
484
485 /* Try to wait that long--but we might wake up sooner. */
486 select (0, NULL, NULL, NULL, &timeout);
487 }
488}
489
490
491void
492ns_release_object (void *obj)
493/* --------------------------------------------------------------------------
494 Release an object (callable from C)
495 -------------------------------------------------------------------------- */
496{
497 [(id)obj release];
498}
499
500
501void
502ns_retain_object (void *obj)
503/* --------------------------------------------------------------------------
504 Retain an object (callable from C)
505 -------------------------------------------------------------------------- */
506{
507 [(id)obj retain];
508}
509
510
511void *
512ns_alloc_autorelease_pool ()
513/* --------------------------------------------------------------------------
514 Allocate a pool for temporary objects (callable from C)
515 -------------------------------------------------------------------------- */
516{
517 return [[NSAutoreleasePool alloc] init];
518}
519
520
521void
522ns_release_autorelease_pool (void *pool)
523/* --------------------------------------------------------------------------
524 Free a pool and temporary objects it refers to (callable from C)
525 -------------------------------------------------------------------------- */
526{
527 ns_release_object (pool);
528}
529
530
531
532/* ==========================================================================
533
534 Focus (clipping) and screen update
535
536 ========================================================================== */
537
538static NSRect
539ns_resize_handle_rect (NSWindow *window)
540{
541 NSRect r = [window frame];
542 r.origin.x = r.size.width - RESIZE_HANDLE_SIZE;
543 r.origin.y = 0;
544 r.size.width = r.size.height = RESIZE_HANDLE_SIZE;
545 return r;
546}
547
548
549static void
550ns_update_begin (struct frame *f)
551/* --------------------------------------------------------------------------
552 Prepare for a grouped sequence of drawing calls
553 23: external (RIF) call; now split w/ and called before update_window_begin
554 -------------------------------------------------------------------------- */
555{
556 NSView *view = FRAME_NS_VIEW (f);
557 NSTRACE (ns_update_begin);
558/*fprintf (stderr, "\\%p\n", f); */
559
560 ns_updating_frame = f;
561 [view lockFocus];
562
563#ifdef NS_IMPL_GNUSTEP
564 uRect = NSMakeRect (0, 0, 0, 0);
565#endif
566}
567
568
569static void
570ns_update_window_begin (struct window *w)
571/* --------------------------------------------------------------------------
572 Prepare for a grouped sequence of drawing calls
573 23: external (RIF) call; now split with and called after update_begin
574 -------------------------------------------------------------------------- */
575{
576 struct frame *f = XFRAME (WINDOW_FRAME (w));
577 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
578 NSTRACE (ns_update_window_begin);
579
580 updated_window = w;
581 set_output_cursor (&w->cursor);
582
583 BLOCK_INPUT;
584
585 if (f == dpyinfo->mouse_face_mouse_frame)
586 {
587 /* Don't do highlighting for mouse motion during the update. */
588 dpyinfo->mouse_face_defer = 1;
589
590 /* If the frame needs to be redrawn,
591 simply forget about any prior mouse highlighting. */
592 if (FRAME_GARBAGED_P (f))
593 dpyinfo->mouse_face_window = Qnil;
594
595 /* (further code for mouse faces ifdef'd out in other terms elided) */
596 }
597
598 UNBLOCK_INPUT;
599}
600
601
602static void
603ns_update_window_end (struct window *w, int cursor_on_p,
604 int mouse_face_overwritten_p)
605/* --------------------------------------------------------------------------
606 Finished a grouped sequence of drawing calls
607 23: external (RIF) call; now split with and called before update_window_end
608 -------------------------------------------------------------------------- */
609{
610 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (XFRAME (w->frame));
611
612 /* note: this fn is nearly identical in all terms */
613 if (!w->pseudo_window_p)
614 {
615 BLOCK_INPUT;
616
617 if (cursor_on_p)
618 display_and_set_cursor (w, 1,
619 output_cursor.hpos, output_cursor.vpos,
620 output_cursor.x, output_cursor.y);
621
622 if (draw_window_fringes (w, 1))
623 x_draw_vertical_border (w);
624
625 UNBLOCK_INPUT;
626 }
627
628 /* If a row with mouse-face was overwritten, arrange for
629 frame_up_to_date to redisplay the mouse highlight. */
630 if (mouse_face_overwritten_p)
631 {
632 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
633 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
634 dpyinfo->mouse_face_window = Qnil;
635 }
636
637 updated_window = NULL;
638 NSTRACE (update_window_end);
639}
640
641
642static void
643ns_update_end (struct frame *f)
644/* --------------------------------------------------------------------------
645 Finished a grouped sequence of drawing calls
646 23: external (RIF) call; now split with and called after update_window_end
647 -------------------------------------------------------------------------- */
648{
649 NSView *view = FRAME_NS_VIEW (f);
650
651/* if (f == FRAME_NS_DISPLAY_INFO (f)->mouse_face_mouse_frame) */
652 FRAME_NS_DISPLAY_INFO (f)->mouse_face_defer = 0;
653
654 BLOCK_INPUT;
655
656#ifdef NS_IMPL_GNUSTEP
657 /* trigger flush only in the rectangle we tracked as being drawn */
658 [view unlockFocusNeedsFlush: NO];
659/*fprintf (stderr, " (%.0f, %.0f : %.0f x %.0f)", uRect.origin.x, uRect.origin.y, uRect.size.width, uRect.size.height); */
660 [view lockFocusInRect: uRect];
661#endif
662
663 [view unlockFocus];
664 [[view window] flushWindow];
665
666 UNBLOCK_INPUT;
667 ns_updating_frame = NULL;
668 NSTRACE (ns_update_end);
669}
670
671
672static void
673ns_flush (struct frame *f)
674/* --------------------------------------------------------------------------
675 23: external (RIF) call
676 NS impl is no-op since currently we flush in ns_update_end and elsewhere
677 -------------------------------------------------------------------------- */
678{
679 NSTRACE (ns_flush);
680}
681
682
683static void
684ns_focus (struct frame *f, NSRect *r, int n)
685/* --------------------------------------------------------------------------
686 Internal: Focus on given frame. During small local updates this is used to
687 draw, however during large updates, ns_update_begin and ns_update_end are
688 called to wrap the whole thing, in which case these calls are stubbed out.
689 Except, on GNUstep, we accumulate the rectangle being drawn into, because
690 the back end won't do this automatically, and will just end up flushing
691 the entire window.
692 -------------------------------------------------------------------------- */
693{
694 NSTRACE (ns_focus);
695#ifdef NS_IMPL_GNUSTEP
696 NSRect u;
697 if (n == 2)
698 u = NSUnionRect (r[0], r[1]);
699 else if (r)
700 u = *r;
701#endif
702/* static int c =0;
703 fprintf (stderr, "focus: %d", c++);
704 if (r) fprintf (stderr, " (%.0f, %.0f : %.0f x %.0f)", r->origin.x, r->origin.y, r->size.width, r->size.height);
705 fprintf (stderr, "\n"); */
706
707 if (f != ns_updating_frame)
708 {
709 NSView *view = FRAME_NS_VIEW (f);
710 if (view != focus_view)
711 {
712 if (focus_view != NULL)
713 {
714 [focus_view unlockFocus];
715 [[focus_view window] flushWindow];
716/*debug_lock--; */
717 }
718
719 if (view)
720#ifdef NS_IMPL_GNUSTEP
721 r ? [view lockFocusInRect: u] : [view lockFocus];
722#else
723 [view lockFocus];
724#endif
725 focus_view = view;
726/*if (view) debug_lock++; */
727 }
728#ifdef NS_IMPL_GNUSTEP
729 else
730 {
731 /* more than one rect being drawn into */
732 if (view && r)
733 {
734 [view unlockFocus]; /* add prev rect to redraw list */
735 [view lockFocusInRect: u]; /* focus for draw in new rect */
736 }
737 }
738#endif
739 }
740#ifdef NS_IMPL_GNUSTEP
741 else
742 {
743 /* in batch mode, but in GNUstep must still track rectangles explicitly */
744 uRect = (r ? NSUnionRect (uRect, u) : [FRAME_NS_VIEW (f) visibleRect]);
745 }
746#endif
747
748 /*23: clipping */
749 if (r)
750 {
751 [[NSGraphicsContext currentContext] saveGraphicsState];
752 if (n == 2)
753 NSRectClipList (r, 2);
754 else
755 NSRectClip (*r);
756 gsaved = YES;
757 }
758}
759
760
761static void
762ns_unfocus (struct frame *f)
763/* --------------------------------------------------------------------------
764 Internal: Remove focus on given frame
765 -------------------------------------------------------------------------- */
766{
767 NSTRACE (ns_unfocus);
768
769 if (gsaved)
770 {
771 [[NSGraphicsContext currentContext] restoreGraphicsState];
772 gsaved = NO;
773 }
774
775 if (f != ns_updating_frame)
776 {
777 if (focus_view != NULL)
778 {
779 [focus_view unlockFocus];
780 [[focus_view window] flushWindow];
781 focus_view = NULL;
782/*debug_lock--; */
783 }
784 }
785}
786
787
788static void
789ns_clip_to_row (struct window *w, struct glyph_row *row, int area, GC gc)
790/* --------------------------------------------------------------------------
791 23: Internal (but parallels other terms): Focus drawing on given row
792 -------------------------------------------------------------------------- */
793{
794 struct frame *f = XFRAME (WINDOW_FRAME (w));
795 NSRect clip_rect;
796 int window_x, window_y, window_width;
797
798 window_box (w, area, &window_x, &window_y, &window_width, 0);
799
800 clip_rect.origin.x = window_x - FRAME_INTERNAL_BORDER_WIDTH (f);
801 clip_rect.origin.y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, row->y));
802 clip_rect.origin.y = max (clip_rect.origin.y, window_y);
803 clip_rect.size.width = window_width + 2 * FRAME_INTERNAL_BORDER_WIDTH (f);
804 clip_rect.size.height = row->visible_height;
805
806 /* allow a full-height row at the top when requested
807 (used to draw fringe all the way through internal border area) */
808 if (gc && clip_rect.origin.y < 5)
809 {
810 clip_rect.origin.y -= FRAME_INTERNAL_BORDER_WIDTH (f);
811 clip_rect.size.height += FRAME_INTERNAL_BORDER_WIDTH (f);
812 }
813
814 /* likewise at bottom */
815 if (gc &&
816 FRAME_PIXEL_HEIGHT (f) - (clip_rect.origin.y + clip_rect.size.height) < 5)
817 clip_rect.size.height += FRAME_INTERNAL_BORDER_WIDTH (f);
818
819 ns_focus (f, &clip_rect, 1);
820}
821
822
823static void
824ns_ring_bell ()
825/* --------------------------------------------------------------------------
826 "Beep" routine
827 -------------------------------------------------------------------------- */
828{
829 NSTRACE (ns_ring_bell);
830 if (visible_bell)
831 {
832 NSAutoreleasePool *pool;
833 struct frame *frame = SELECTED_FRAME ();
834 NSView *view;
835
836 BLOCK_INPUT;
837 pool = [[NSAutoreleasePool alloc] init];
838
839 view = FRAME_NS_VIEW (frame);
840 if (view != nil)
841 {
842 NSRect r, surr;
843 NSPoint dim = NSMakePoint (128, 128);
844
845 r = [view bounds];
846 r.origin.x += (r.size.width - dim.x) / 2;
847 r.origin.y += (r.size.height - dim.y) / 2;
848 r.size.width = dim.x;
849 r.size.height = dim.y;
850 /* PENDING: cacheImageInRect under GNUSTEP does not account for
851 offset in x_set_window_size, so overestimate (4 fine on Cocoa) */
852 surr = NSInsetRect (r, -10, -10);
853 ns_focus (frame, &surr, 1);
854 [[view window] cacheImageInRect: surr];
855 [ns_lookup_indexed_color (NS_FACE_FOREGROUND
856 (FRAME_DEFAULT_FACE (frame)), frame) set];
857 NSRectFill (r);
858 [[view window] flushWindow];
859 ns_timeout (150000);
860 [[view window] restoreCachedImage];
861 [[view window] flushWindow];
862 ns_unfocus (frame);
863 }
864 [pool release];
865 UNBLOCK_INPUT;
866 }
867 else
868 {
869 NSBeep ();
870 }
871}
872
873
874static void
875ns_reset_terminal_modes (struct terminal *terminal)
876/* Externally called as hook */
877{
878 NSTRACE (ns_reset_terminal_modes);
879}
880
881static void
882ns_set_terminal_modes (struct terminal *terminal)
883/* Externally called as hook */
884{
885 NSTRACE (ns_set_terminal_modes);
886}
887
888
889
890/* ==========================================================================
891
892 Frame / window manager related functions
893
894 ========================================================================== */
895
896
897static void
898ns_raise_frame (struct frame *f)
899/* --------------------------------------------------------------------------
900 Bring window to foreground and make it active
901 -------------------------------------------------------------------------- */
902{
903 NSView *view = FRAME_NS_VIEW (f);
904 check_ns ();
905 BLOCK_INPUT;
906 [[view window] makeKeyAndOrderFront: NSApp];
907 UNBLOCK_INPUT;
908}
909
910
911static void
912ns_lower_frame (struct frame *f)
913/* --------------------------------------------------------------------------
914 Send window to back
915 -------------------------------------------------------------------------- */
916{
917 NSView *view = FRAME_NS_VIEW (f);
918 check_ns ();
919 BLOCK_INPUT;
920 [[view window] orderBack: NSApp];
921 UNBLOCK_INPUT;
922}
923
924
925static void
926ns_frame_raise_lower (struct frame *f, int raise)
927/* --------------------------------------------------------------------------
928 External (hook)
929 -------------------------------------------------------------------------- */
930{
931 NSTRACE (ns_frame_raise_lower);
932
933 if (raise)
934 ns_raise_frame (f);
935 else
936 ns_lower_frame (f);
937}
938
939
940static void
941ns_frame_rehighlight (struct frame *frame)
942/* --------------------------------------------------------------------------
943 External (hook): called on things like window switching within frame
944 -------------------------------------------------------------------------- */
945{
946 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (frame);
947 struct frame *old_highlight = dpyinfo->ns_highlight_frame;
948
949 NSTRACE (ns_frame_rehighlight);
950 if (dpyinfo->ns_focus_frame)
951 {
facfbbbd
SM
952 dpyinfo->ns_highlight_frame
953 = (FRAMEP (FRAME_FOCUS_FRAME (dpyinfo->ns_focus_frame))
edfda783
AR
954 ? XFRAME (FRAME_FOCUS_FRAME (dpyinfo->ns_focus_frame))
955 : dpyinfo->ns_focus_frame);
956 if (!FRAME_LIVE_P (dpyinfo->ns_highlight_frame))
957 {
958 FRAME_FOCUS_FRAME (dpyinfo->ns_focus_frame) = Qnil;
959 dpyinfo->ns_highlight_frame = dpyinfo->ns_focus_frame;
960 }
961 }
962 else
963 dpyinfo->ns_highlight_frame = 0;
964
965 if (dpyinfo->ns_highlight_frame &&
966 dpyinfo->ns_highlight_frame != old_highlight)
967 {
968 /* as of 20080602 the lower and raise are superfluous */
969 if (old_highlight)
970 {
971 /*ns_lower_frame (old_highlight); */
972 x_update_cursor (old_highlight, 1);
973 }
974 if (dpyinfo->ns_highlight_frame)
975 {
976 /*ns_raise_frame (dpyinfo->ns_highlight_frame); */
977 x_update_cursor (dpyinfo->ns_highlight_frame, 1);
978 }
979 }
980}
981
982
983void
984x_make_frame_visible (struct frame *f)
985/* --------------------------------------------------------------------------
986 External: Show the window (X11 semantics)
987 -------------------------------------------------------------------------- */
988{
989 NSTRACE (x_make_frame_visible);
990 /* PENDING: at some points in past this was not needed, as the only place that
991 called this (frame.c:Fraise_frame ()) also called raise_lower;
992 if this ends up the case again, comment this out again. */
993 if (!FRAME_VISIBLE_P (f))
994 ns_raise_frame (f);
995}
996
997
998void
999x_make_frame_invisible (struct frame *f)
1000/* --------------------------------------------------------------------------
1001 External: Hide the window (X11 semantics)
1002 -------------------------------------------------------------------------- */
1003{
1004 NSView * view = FRAME_NS_VIEW (f);
1005 NSTRACE (x_make_frame_invisible);
1006 check_ns ();
1007 [[view window] orderOut: NSApp];
1008}
1009
1010
1011void
1012x_iconify_frame (struct frame *f)
1013/* --------------------------------------------------------------------------
1014 External: Iconify window
1015 -------------------------------------------------------------------------- */
1016{
1017 NSView * view = FRAME_NS_VIEW (f);
1018 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
1019 NSTRACE (x_iconify_frame);
1020 check_ns ();
1021
1022 if (dpyinfo->ns_highlight_frame == f)
1023 dpyinfo->ns_highlight_frame = 0;
1024
1025 if ([[view window] windowNumber] <= 0)
1026 {
1027 /* the window is still deferred. Make it very small, bring it
1028 on screen and order it out. */
1029 NSRect s = { { 100, 100}, {0, 0} };
1030 NSRect t;
1031 t = [[view window] frame];
1032 [[view window] setFrame: s display: NO];
1033 [[view window] orderBack: NSApp];
1034 [[view window] orderOut: NSApp];
1035 [[view window] setFrame: t display: NO];
1036 }
1037 [[view window] miniaturize: NSApp];
1038}
1039
1040
1041void
1042x_destroy_window (struct frame *f)
1043/* --------------------------------------------------------------------------
1044 External: Delete the window
1045 -------------------------------------------------------------------------- */
1046{
1047 NSView *view = FRAME_NS_VIEW (f);
1048 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
1049 NSTRACE (x_destroy_window);
1050 check_ns ();
1051
1052 [(EmacsView *)view setWindowClosing: YES]; /* may not have been informed */
1053
1054 BLOCK_INPUT;
1055
1056 free_frame_menubar (f);
1057
1058 if (FRAME_FACE_CACHE (f))
1059 free_frame_faces (f);
1060
1061 if (f == dpyinfo->ns_focus_frame)
1062 dpyinfo->ns_focus_frame = 0;
1063 if (f == dpyinfo->ns_highlight_frame)
1064 dpyinfo->ns_highlight_frame = 0;
1065 if (f == dpyinfo->mouse_face_mouse_frame)
1066 {
1067 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
1068 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
1069 dpyinfo->mouse_face_window = Qnil;
1070 dpyinfo->mouse_face_deferred_gc = 0;
1071 dpyinfo->mouse_face_mouse_frame = 0;
1072 }
1073
1074 xfree (f->output_data.ns);
1075
1076 [[view window] close];
1077 [view release];
1078
1079 ns_window_num--;
1080 UNBLOCK_INPUT;
1081}
1082
1083
1084void
1085x_set_offset (struct frame *f, int xoff, int yoff, int change_grav)
1086/* --------------------------------------------------------------------------
1087 External: Position the window
1088 -------------------------------------------------------------------------- */
1089{
1090 NSScreen *screen;
1091 NSView *view = FRAME_NS_VIEW (f);
1092
1093 NSTRACE (x_set_offset);
1094
1095 BLOCK_INPUT;
1096
1097 f->left_pos = xoff;
1098 f->top_pos = yoff;
1099#ifdef NS_IMPL_GNUSTEP
1100 if (xoff < 100)
1101 f->left_pos = 100; /* don't overlap menu */
1102#endif
1103 if (view != nil && (screen = [[view window] screen]))
1104 [[view window] setFrameTopLeftPoint:
1105 NSMakePoint (SCREENMAXBOUND (f->left_pos),
1106 SCREENMAXBOUND ([screen frame].size.height
1107 - NS_TOP_POS (f)))];
1108 UNBLOCK_INPUT;
1109}
1110
1111
1112void
1113x_set_window_size (struct frame *f, int change_grav, int cols, int rows)
1114/* --------------------------------------------------------------------------
1115 Adjust window pixel size based on given character grid size
1116 Impl is a bit more complex than other terms, need to do some
1117 internal clipping and also pay attention to screen constraints.
1118 -------------------------------------------------------------------------- */
1119{
1120 EmacsView *view = FRAME_NS_VIEW (f);
1121 EmacsToolbar *toolbar = [view toolbar];
1122 NSWindow *window = [view window];
1123 NSScreen *screen = [window screen];
1124 NSRect wr = [window frame];
1125 int tb = FRAME_EXTERNAL_TOOL_BAR (f);
1126 int pixelwidth, pixelheight;
1127 static int oldRows, oldCols, oldFontWidth, oldFontHeight;
1128 static int oldTB;
1129 static struct frame *oldF;
1130
1131 NSTRACE (x_set_window_size);
1132
1133 if (view == nil ||
1134 (f == oldF
1135 && rows == oldRows && cols == oldCols
1136 && oldFontWidth == FRAME_COLUMN_WIDTH (f)
1137 && oldFontHeight == FRAME_LINE_HEIGHT (f)
1138 && oldTB == tb))
1139 return;
1140
1141/*fprintf (stderr, "\tsetWindowSize: %d x %d, font size %d x %d\n", cols, rows, FRAME_COLUMN_WIDTH (f), FRAME_LINE_HEIGHT (f)); */
1142
1143 BLOCK_INPUT;
1144
1145 check_frame_size (f, &rows, &cols);
1146 oldF = f;
1147 oldRows = rows;
1148 oldCols = cols;
1149 oldFontWidth = FRAME_COLUMN_WIDTH (f);
1150 oldFontHeight = FRAME_LINE_HEIGHT (f);
1151 oldTB = tb;
1152
1153 f->scroll_bar_actual_width = NS_SCROLL_BAR_WIDTH (f);
1154 compute_fringe_widths (f, 0);
1155
1156 pixelwidth = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, cols);
1157 pixelheight = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, rows);
1158
1159 /* If we have a change in toolbar display, calculate height */
1160 if (tb)
1161 /* PENDING: GNUstep has not yet implemented the first method below, added
1162 in Panther, however the second is incorrect under Cocoa. */
1163#ifdef NS_IMPL_GNUSTEP
facfbbbd
SM
1164 FRAME_NS_TOOLBAR_HEIGHT (f)
1165 = NSHeight ([NSWindow frameRectForContentRect: NSMakeRect (0, 0, 0, 0)
1166 styleMask: [window styleMask]])
1167 - FRAME_NS_TITLEBAR_HEIGHT (f);
edfda783
AR
1168#else
1169 FRAME_NS_TOOLBAR_HEIGHT (f) = 32;
1170 /* actually get wrong result here if toolbar not yet displayed
1171 NSHeight ([window frameRectForContentRect: NSMakeRect (0, 0, 0, 0)])
1172 - FRAME_NS_TITLEBAR_HEIGHT (f); */
1173#endif
1174 else
1175 FRAME_NS_TOOLBAR_HEIGHT (f) = 0;
1176
1177 wr.size.width = pixelwidth + f->border_width;
1178 wr.size.height = pixelheight + FRAME_NS_TITLEBAR_HEIGHT (f)
1179 + FRAME_NS_TOOLBAR_HEIGHT (f);
1180
1181 /* constrain to screen if we can */
1182 if (screen)
1183 {
1184 NSSize sz = [screen visibleFrame].size;
1185 NSSize ez = { wr.size.width - sz.width, wr.size.height - sz.height };
1186 if (ez.width > 0)
1187 {
1188 int cr = ez.width / FRAME_COLUMN_WIDTH (f) + 1;
1189 cols -= cr;
1190 oldCols = cols;
1191 wr.size.width -= cr * FRAME_COLUMN_WIDTH (f);
1192 pixelwidth -= cr * FRAME_COLUMN_WIDTH (f);
1193 }
1194 if (ez.height > 0)
1195 {
1196 int rr = ez.height / FRAME_LINE_HEIGHT (f) + 1;
1197 rows -= rr;
1198 oldRows = rows;
1199 wr.size.height -= rr * FRAME_LINE_HEIGHT (f);
1200 pixelheight -= rr * FRAME_LINE_HEIGHT (f);
1201 }
1202 wr.origin.x = f->left_pos;
1203 wr.origin.y = [screen frame].size.height - NS_TOP_POS (f)
1204 - wr.size.height;
1205 }
1206
1207 [view setRows: rows andColumns: cols];
1208 [window setFrame: wr display: YES];
1209
1210/*fprintf (stderr, "\tx_set_window_size %d, %d\t%d, %d\n", cols, rows, pixelwidth, pixelheight); */
1211
1212 /* This is a trick to compensate for Emacs' managing the scrollbar area
1213 as a fixed number of standard character columns. Instead of leaving
1214 blank space for the extra, we chopped it off above. Now for
1215 left-hand scrollbars, we shift all rendering to the left by the
1216 difference between the real width and Emacs' imagined one. For
1217 right-hand bars, don't worry about it since the extra is never used.
1218 (Obviously doesn't work for vertically split windows tho..) */
1219 NSPoint origin = FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)
1220 ? NSMakePoint (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f)
1221 - NS_SCROLL_BAR_WIDTH (f), 0)
1222 : NSMakePoint (0, 0);
1223 [view setFrame: NSMakeRect (0, 0, pixelwidth, pixelheight)];
1224 [view setBoundsOrigin: origin];
1225
1226 change_frame_size (f, rows, cols, 0, 1, 0); /* pretend, delay, safe */
1227 FRAME_PIXEL_WIDTH (f) = pixelwidth;
1228 FRAME_PIXEL_HEIGHT (f) = pixelheight;
1229/* SET_FRAME_GARBAGED (f); // this short-circuits expose call in drawRect */
1230
1231 mark_window_cursors_off (XWINDOW (f->root_window));
1232 cancel_mouse_face (f);
1233
1234 UNBLOCK_INPUT;
1235}
1236
1237
1238/* ==========================================================================
1239
1240 Color management
1241
1242 ========================================================================== */
1243
1244NSColor *
1245ns_lookup_indexed_color (unsigned long idx, struct frame *f)
1246{
1247 struct ns_color_table *color_table = FRAME_NS_DISPLAY_INFO (f)->color_table;
1248 return color_table->colors[idx];
1249}
1250
1251
1252unsigned long
1253ns_index_color (NSColor *color, struct frame *f)
1254{
1255 struct ns_color_table *color_table = FRAME_NS_DISPLAY_INFO (f)->color_table;
1256 int idx;
1257 NSNumber *index;
1258
1259 if (!color_table->colors)
1260 {
1261 color_table->size = NS_COLOR_CAPACITY;
1262 color_table->avail = 1; /* skip idx=0 as marker */
facfbbbd
SM
1263 color_table->colors
1264 = (NSColor **)xmalloc (color_table->size * sizeof (NSColor *));
edfda783
AR
1265 color_table->empty_indices = [[NSMutableSet alloc] init];
1266 }
1267
1268 /* do we already have this color ? */
1269 {
1270 int i;
1271 for (i = 1; i < color_table->avail; i++)
1272 {
1273 if (color_table->colors[i] && [color_table->colors[i] isEqual: color])
1274 {
1275 [color_table->colors[i] retain];
1276 return i;
1277 }
1278 }
1279 }
1280
1281 if ([color_table->empty_indices count] > 0)
1282 {
1283 index = [color_table->empty_indices anyObject];
1284 [color_table->empty_indices removeObject: index];
1285 idx = [index unsignedIntValue];
1286 }
1287 else
1288 {
1289 if (color_table->avail == color_table->size)
1290 {
1291 color_table->size += NS_COLOR_CAPACITY;
facfbbbd
SM
1292 color_table->colors
1293 = (NSColor **)xrealloc (color_table->colors,
1294 color_table->size * sizeof (NSColor *));
edfda783
AR
1295 }
1296 idx = color_table->avail++;
1297 index = [NSNumber numberWithUnsignedInt: idx];
1298 }
1299
1300 color_table->colors[idx] = color;
1301 [color retain];
1302/*fprintf(stderr, "color_table: allocated %d\n",idx);*/
1303 return idx;
1304}
1305
1306
1307void
1308ns_free_indexed_color (unsigned long idx, struct frame *f)
1309{
1310 struct ns_color_table *color_table = FRAME_NS_DISPLAY_INFO (f)->color_table;
1311 NSColor *color;
1312 if (!idx)
1313 return;
1314 color = color_table->colors[idx];
1315 [color release];
1316 color_table->colors[idx] = nil;
1317 [color_table->empty_indices addObject: [NSNumber numberWithUnsignedInt: idx]];
1318/*fprintf(stderr, "color_table: FREED %d\n",idx);*/
1319}
1320
1321
1322static int
1323ns_get_color (const char *name, NSColor **col)
1324/* --------------------------------------------------------------------------
1325 Parse a color name
1326/* --------------------------------------------------------------------------
1327/* On *Step, we recognize several color formats, in addition to a catalog
1328 of colors found in the file Emacs.clr. Color formats include:
1329 - #rrggbb or RGBrrggbb where rr, gg, bb specify red, green and blue in hex
1330 - ARGBaarrggbb is similar, with aa being the alpha channel (FF = opaque)
704a3a2d
AR
1331 - HSVhhssvv and AHSVaahhssvv (or HSB/AHSB) are similar for hue, saturation,
1332 value;
edfda783
AR
1333 - CMYKccmmyykk is similar for cyan, magenta, yellow, black. */
1334{
1335 NSColor * new = nil;
1336 const char *hex = NULL;
1337 enum { rgb, argb, hsv, ahsv, cmyk, gray } color_space;
1338 NSString *nsname = [NSString stringWithUTF8String: name];
1339
1340/*fprintf (stderr, "ns_get_color: '%s'\n", name); */
1341 BLOCK_INPUT;
1342
1343 if ([nsname isEqualToString: @"ns_selection_color"])
1344 {
1345 nsname = ns_selection_color;
1346 name = [ns_selection_color UTF8String];
1347 }
1348
1349 if (name[0] == '0' || name[0] == '1' || name[0] == '.')
1350 {
1351 /* RGB decimal */
1352 NSScanner *scanner = [NSScanner scannerWithString: nsname];
1353 float r, g, b;
1354 [scanner scanFloat: &r];
1355 [scanner scanFloat: &g];
1356 [scanner scanFloat: &b];
1357 *col = [NSColor colorWithCalibratedRed: r green: g blue: b alpha: 1.0];
1358 UNBLOCK_INPUT;
1359 return 0;
1360 }
1361
1362 /* 23: PENDING: emacs seems to downcase everything before passing it here,
1363 which we can work around, except for GRAY, since gray##, where ## is
1364 decimal between 0 and 99, is also an X11 colorname. */
1365 if (name[0] == '#') /* X11 format */
1366 {
1367 hex = name + 1;
1368 color_space = rgb;
1369 }
1370 else if (!memcmp (name, "RGB", 3) || !memcmp (name, "rgb", 3))
1371 {
1372 hex = name + 3;
1373 color_space = rgb;
1374 }
1375 else if (!memcmp (name, "ARGB", 4) || !memcmp (name, "argb", 4))
1376 {
1377 hex = name + 4;
1378 color_space = argb;
1379 }
704a3a2d
AR
1380 else if (!memcmp (name, "HSV", 3) || !memcmp (name, "hsv", 3) ||
1381 !memcmp (name, "HSB", 3) || !memcmp (name, "hsb", 3))
edfda783
AR
1382 {
1383 hex = name + 3;
1384 color_space = hsv;
1385 }
704a3a2d
AR
1386 else if (!memcmp (name, "AHSV", 4) || !memcmp (name, "ahsv", 4) ||
1387 !memcmp (name, "AHSB", 4) || !memcmp (name, "ahsb", 4))
edfda783
AR
1388 {
1389 hex = name + 4;
1390 color_space = ahsv;
1391 }
1392 else if (!memcmp (name, "CMYK", 4) || !memcmp (name, "cmyk", 4))
1393 {
1394 hex = name + 4;
1395 color_space = cmyk;
1396 }
1397 else if (!memcmp (name, "GRAY", 4) /*|| !memcmp (name, "gray", 4)*/)
1398 {
1399 hex = name + 4;
1400 color_space = gray;
1401 }
1402
1403 /* Direct colors (hex values) */
1404 if (hex)
1405 {
1406 unsigned int color = 0;
1407 if (sscanf (hex, "%x", &color))
1408 {
1409 float f1 = ((color >> 24) & 0xff) / 255.0;
1410 float f2 = ((color >> 16) & 0xff) / 255.0;
1411 float f3 = ((color >> 8) & 0xff) / 255.0;
1412 float f4 = ((color ) & 0xff) / 255.0;
1413
1414 switch (color_space)
1415 {
1416 case rgb:
1417 *col = [NSColor colorWithCalibratedRed: f2
1418 green: f3
1419 blue: f4
1420 alpha: 1.0];
1421 break;
1422 case argb:
1423 *col = [NSColor colorWithCalibratedRed: f2
1424 green: f3
1425 blue: f4
1426 alpha: f1];
1427 break;
1428 case hsv:
1429 *col = [NSColor colorWithCalibratedHue: f2
1430 saturation: f3
1431 brightness: f4
1432 alpha: 1.0];
1433 break;
1434 case ahsv:
1435 *col = [NSColor colorWithCalibratedHue: f2
1436 saturation: f3
1437 brightness: f4
1438 alpha: f1];
1439 break;
1440 case gray:
1441 *col = [NSColor colorWithCalibratedWhite: f3 alpha: f4];
1442 break;
1443 case cmyk:
1444 *col = [NSColor colorWithDeviceCyan: f1
1445 magenta: f2
1446 yellow: f3
1447 black: f4
1448 alpha: 1.0];
1449 break;
1450 }
1451 *col = [*col colorUsingColorSpaceName: NSCalibratedRGBColorSpace];
1452 UNBLOCK_INPUT;
1453 return 0;
1454 }
1455 }
1456
1457 /* Otherwise, color is expected to be from a list */
1458 {
1459 NSEnumerator *lenum, *cenum;
1460 NSString *name;
1461 NSColorList *clist;
1462#ifdef NS_IMPL_GNUSTEP
1463 /* PENDING: who is wrong, the requestor or the implementation? */
1464 if ([nsname compare: @"Highlight" options: NSCaseInsensitiveSearch]
1465 == NSOrderedSame)
1466 nsname = @"highlightColor";
1467#endif
1468 if ([nsname compare: @"dark blue" options: NSCaseInsensitiveSearch]
1469 == NSOrderedSame
1470 || [nsname compare: @"darkblue" options: NSCaseInsensitiveSearch]
1471 == NSOrderedSame)
1472 nsname = @"navy blue";
1473
1474 lenum = [[NSColorList availableColorLists] objectEnumerator];
1475 while ( (clist = [lenum nextObject]) && new == nil)
1476 {
1477 cenum = [[clist allKeys] objectEnumerator];
1478 while ( (name = [cenum nextObject]) && new == nil )
1479 {
1480 if ([name compare: nsname
1481 options: NSCaseInsensitiveSearch] == NSOrderedSame )
1482 new = [clist colorWithKey: name];
1483 }
1484 }
1485 }
1486
1487 if ( new )
1488 *col = [new colorUsingColorSpaceName: NSCalibratedRGBColorSpace];
1489/* else
1490 NSLog (@"Failed to find color '%@'", nsname); */
1491 UNBLOCK_INPUT;
1492 return new ? 0 : 1;
1493}
1494
1495
1496static NSColor *
1497ns_get_color_default (const char *name, NSColor *dflt)
1498/* --------------------------------------------------------------------------
1499 Parse a color or use a default value
1500 -------------------------------------------------------------------------- */
1501{
1502 NSColor * col;
1503
1504 if (ns_get_color (name, &col))
1505 return dflt;
1506 else
1507 return col;
1508}
1509
1510
1511int
1512ns_lisp_to_color (Lisp_Object color, NSColor **col)
1513/* --------------------------------------------------------------------------
1514 Convert a Lisp string object to a NS color
1515 -------------------------------------------------------------------------- */
1516{
1517 NSTRACE (ns_lisp_to_color);
6882361b
SM
1518 if (STRINGP (color))
1519 return ns_get_color (SDATA (color), col);
1520 else if (SYMBOLP (color))
1521 return ns_get_color (SDATA (SYMBOL_NAME (color)), col);
edfda783
AR
1522 return 1;
1523}
1524
1525
1526Lisp_Object
1527ns_color_to_lisp (NSColor *col)
1528/* --------------------------------------------------------------------------
1529 Convert a color to a lisp string with the RGB equivalent
1530 -------------------------------------------------------------------------- */
1531{
1532 float red, green, blue, alpha, gray;
1533 char buf[1024];
1534 const char *str;
1535 NSTRACE (ns_color_to_lisp);
1536
1537 BLOCK_INPUT;
1538 if ([[col colorSpaceName] isEqualToString: NSNamedColorSpace])
1539
1540 if ((str =[[col colorNameComponent] UTF8String]))
1541 {
1542 UNBLOCK_INPUT;
1543 return build_string ((char *)str);
1544 }
1545
1546 [[col colorUsingColorSpaceName: NSCalibratedRGBColorSpace]
1547 getRed: &red green: &green blue: &blue alpha: &alpha];
1548 if (red ==green && red ==blue)
1549 {
1550 [[col colorUsingColorSpaceName: NSCalibratedWhiteColorSpace]
1551 getWhite: &gray alpha: &alpha];
1552 snprintf (buf, sizeof (buf), "GRAY%02.2lx%02.2lx",
1553 lrint (gray * 0xff), lrint (alpha * 0xff));
1554 UNBLOCK_INPUT;
1555 return build_string (buf);
1556 }
1557
1558 snprintf (buf, sizeof (buf), "ARGB%02.2lx%02.2lx%02.2lx%02.2lx",
1559 lrint (alpha*0xff),
1560 lrint (red*0xff), lrint (green*0xff), lrint (blue*0xff));
1561
1562 UNBLOCK_INPUT;
1563 return build_string (buf);
1564}
1565
1566
1567int
1568ns_defined_color (struct frame *f, char *name, XColor *color_def, int alloc,
1569 char makeIndex)
1570/* --------------------------------------------------------------------------
1571 23: Return 1 if named color found, and set color_def rgb accordingly.
1572 If makeIndex and alloc are nonzero put the color in the color_table,
1573 and set color_def pixel to the resulting index.
1574 If makeIndex is zero, set color_def pixel to ARGB.
1575 Return 0 if not found
1576 -------------------------------------------------------------------------- */
1577{
1578 NSColor *temp;
1579 float r, g, b, a;
1580 int notFound = ns_get_color (name, &temp);
1581
1582 NSTRACE (ns_defined_color);
1583
1584 if (notFound)
1585 return 0;
1586
1587 if (makeIndex && alloc)
1588 color_def->pixel = ns_index_color(temp, f);//[temp retain];
1589
1590 [temp getRed: &r green: &g blue: &b alpha: &a];
1591 color_def->red = r * 256;
1592 color_def->green = g * 256;
1593 color_def->blue = b * 256;
1594
1595 if (!makeIndex)
facfbbbd
SM
1596 color_def->pixel
1597 = ARGB_TO_ULONG((int)(a*256),
1598 color_def->red, color_def->green, color_def->blue);
edfda783
AR
1599
1600 return 1;
1601}
1602
1603
1604unsigned long
1605ns_get_rgb_color (struct frame *f, float r, float g, float b, float a)
1606/* --------------------------------------------------------------------------
1607 return an autoreleased RGB color
1608 -------------------------------------------------------------------------- */
1609{
1610/*static int c = 1; fprintf (stderr, "color request %d\n", c++); */
1611 if (r < 0.0) r = 0.0;
1612 else if (r > 1.0) r = 1.0;
1613 if (g < 0.0) g = 0.0;
1614 else if (g > 1.0) g = 1.0;
1615 if (b < 0.0) b = 0.0;
1616 else if (b > 1.0) b = 1.0;
1617 if (a < 0.0) a = 0.0;
1618 else if (a > 1.0) a = 1.0;
1619 return (unsigned long) ns_index_color(
1620 [NSColor colorWithCalibratedRed: r green: g blue: b alpha: a], f);
1621}
1622
1623
1624
1625/* ==========================================================================
1626
1627 Mouse handling
1628
1629 ========================================================================== */
1630
1631
1632void
1633x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y)
1634/* --------------------------------------------------------------------------
1635 Programmatically reposition mouse pointer in pixel coordinates
1636 -------------------------------------------------------------------------- */
1637{
1638 NSTRACE (x_set_mouse_pixel_position);
1639 ns_raise_frame (f);
1640#if 0
1641 /*PENDING: this does not work, and what about GNUstep? */
1642#ifdef NS_IMPL_COCOA
1643 [FRAME_NS_VIEW (f) lockFocus];
1644 PSsetmouse ((float)pix_x, (float)pix_y);
1645 [FRAME_NS_VIEW (f) unlockFocus];
1646#endif
1647#endif
1648}
1649
1650
1651void
1652x_set_mouse_position (struct frame *f, int h, int v)
1653/* --------------------------------------------------------------------------
1654 Programmatically reposition mouse pointer in character coordinates
1655 -------------------------------------------------------------------------- */
1656{
1657 int pix_x, pix_y;
1658
1659 pix_x = FRAME_COL_TO_PIXEL_X (f, h) + FRAME_COLUMN_WIDTH (f) / 2;
1660 pix_y = FRAME_LINE_TO_PIXEL_Y (f, v) + FRAME_LINE_HEIGHT (f) / 2;
1661
1662 if (pix_x < 0) pix_x = 0;
1663 if (pix_x > FRAME_PIXEL_WIDTH (f)) pix_x = FRAME_PIXEL_WIDTH (f);
1664
1665 if (pix_y < 0) pix_y = 0;
1666 if (pix_y > FRAME_PIXEL_HEIGHT (f)) pix_y = FRAME_PIXEL_HEIGHT (f);
1667
1668 x_set_mouse_pixel_position (f, pix_x, pix_y);
1669}
1670
1671
1672static int
1673note_mouse_movement (struct frame *frame, float x, float y)
1674/* ------------------------------------------------------------------------
1675 Called by EmacsView on mouseMovement events. Passes on
1676 to emacs mainstream code if we moved off of a rect of interest
1677 known as last_mouse_glyph.
1678 ------------------------------------------------------------------------ */
1679{
1680 NSTRACE (note_mouse_movement);
1681
1682 XSETFRAME (last_mouse_motion_frame, frame);
1683
1684 /* Note, this doesn't get called for enter/leave, since we don't have a
1685 position. Those are taken care of in the corresponding NSView methods. */
1686
1687 /* has movement gone beyond last rect we were tracking? */
1688 if (x < last_mouse_glyph.origin.x ||
1689 x >= (last_mouse_glyph.origin.x + last_mouse_glyph.size.width) ||
1690 y < last_mouse_glyph.origin.y ||
1691 y >= (last_mouse_glyph.origin.y + last_mouse_glyph.size.height))
1692 {
1693 frame->mouse_moved = 1;
1694 note_mouse_highlight (frame, x, y);
1695 remember_mouse_glyph (frame, x, y, &last_mouse_glyph);
1696 return 1;
1697 }
1698
1699 return 0;
1700}
1701
1702
1703static void
1704ns_mouse_position (struct frame **fp, int insist, Lisp_Object *bar_window,
1705 enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
1706 unsigned long *time)
1707/* --------------------------------------------------------------------------
1708 External (hook): inform emacs about mouse position and hit parts.
1709 If a scrollbar is being dragged, set bar_window, part, x, y, time.
1710 x & y should be position in the scrollbar (the whole bar, not the handle)
1711 and length of scrollbar respectively
1712 -------------------------------------------------------------------------- */
1713{
1714 id view;
1715 NSPoint position;
1716 int xchar, ychar;
1717 Lisp_Object frame, tail;
1718 struct frame *f;
1719 struct ns_display_info *dpyinfo;
1720
1721 NSTRACE (ns_mouse_position);
1722
1723 if (*fp == NULL)
1724 {
1725 fprintf (stderr, "Warning: ns_mouse_position () called with null *fp.\n");
1726 return;
1727 }
1728
1729 dpyinfo = FRAME_NS_DISPLAY_INFO (*fp);
1730
1731 BLOCK_INPUT;
1732
1733 if (last_mouse_scroll_bar != nil && insist == 0)
1734 {
1735 /* PENDING: we do not use this path at the moment because drag events will
1736 go directly to the EmacsScroller. Leaving code in for now. */
1737 [last_mouse_scroll_bar getMouseMotionPart: (int *)part window: bar_window
1738 x: x y: y];
1739 if (time) *time = last_mouse_movement_time;
1740 last_mouse_scroll_bar = nil;
1741 }
1742 else
1743 {
1744 /* Clear the mouse-moved flag for every frame on this display. */
1745 FOR_EACH_FRAME (tail, frame)
1746 if (FRAME_NS_P (XFRAME (frame))
1747 && FRAME_NS_DISPLAY (XFRAME (frame)) == FRAME_NS_DISPLAY (*fp))
1748 XFRAME (frame)->mouse_moved = 0;
1749
1750 last_mouse_scroll_bar = nil;
1751 if (last_mouse_frame && FRAME_LIVE_P (last_mouse_frame))
1752 f = last_mouse_frame;
1753 else
1754 f = dpyinfo->ns_focus_frame ? dpyinfo->ns_focus_frame
1755 : SELECTED_FRAME ();
1756
1757 if (f && f->output_data.ns) /*PENDING: 2nd check no longer needed? */
1758 {
1759 view = FRAME_NS_VIEW (*fp);
1760
1761 position = [[view window] mouseLocationOutsideOfEventStream];
1762 position = [view convertPoint: position fromView: nil];
1763 remember_mouse_glyph (f, position.x, position.y, &last_mouse_glyph);
1764/*fprintf (stderr, "ns_mouse_position: %.0f, %.0f\n", position.x, position.y); */
1765
1766 if (bar_window) *bar_window = Qnil;
1767 if (part) *part = 0; /*scroll_bar_handle; */
1768
1769 if (x) XSETINT (*x, lrint (position.x));
1770 if (y) XSETINT (*y, lrint (position.y));
1771 if (time) *time = last_mouse_movement_time;
1772 *fp = f;
1773 }
1774 }
1775
1776 UNBLOCK_INPUT;
1777}
1778
1779
1780static void
1781ns_frame_up_to_date (struct frame *f)
1782/* --------------------------------------------------------------------------
1783 External (hook): Fix up mouse highlighting right after a full update.
1784 Some highlighting was deferred if GC was happening during
1785 note_mouse_highlight (), while other highlighting was deferred for update.
1786 -------------------------------------------------------------------------- */
1787{
1788 NSTRACE (ns_frame_up_to_date);
1789
1790 if (FRAME_NS_P (f))
1791 {
1792 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (f);
1793 if ((dpyinfo->mouse_face_deferred_gc||f ==dpyinfo->mouse_face_mouse_frame)
1794 /*&& dpyinfo->mouse_face_mouse_frame*/)
1795 {
1796 BLOCK_INPUT;
1797 if (dpyinfo->mouse_face_mouse_frame)
1798 note_mouse_highlight (dpyinfo->mouse_face_mouse_frame,
1799 dpyinfo->mouse_face_mouse_x,
1800 dpyinfo->mouse_face_mouse_y);
1801 dpyinfo->mouse_face_deferred_gc = 0;
1802 UNBLOCK_INPUT;
1803 }
1804 }
1805}
1806
1807
1808void
1809ns_define_frame_cursor (struct frame *f, Cursor cursor)
1810/* --------------------------------------------------------------------------
1811 External (RIF): set frame mouse pointer type.
1812 -------------------------------------------------------------------------- */
1813{
1814 NSTRACE (ns_define_frame_cursor);
1815 if (FRAME_POINTER_TYPE (f) != cursor)
1816 {
1817 EmacsView *view = FRAME_NS_VIEW (f);
1818 FRAME_POINTER_TYPE (f) = cursor;
1819 [[view window] invalidateCursorRectsForView: view];
1820 }
1821}
1822
1823
1824
1825/* ==========================================================================
1826
1827 Keyboard handling
1828
1829 ========================================================================== */
1830
1831
1832static unsigned
1833ns_convert_key (unsigned code)
1834/* --------------------------------------------------------------------------
1835 Internal call used by NSView-keyDown.
1836 -------------------------------------------------------------------------- */
1837{
1838 const unsigned last_keysym = (sizeof (convert_ns_to_X_keysym)
1839 / sizeof (convert_ns_to_X_keysym[0]));
1840 unsigned keysym;
1841 /* An array would be faster, but less easy to read. */
1842 for (keysym = 0; keysym < last_keysym; keysym += 2)
1843 if (code == convert_ns_to_X_keysym[keysym])
1844 return 0xFF00 | convert_ns_to_X_keysym[keysym+1];
1845 return 0;
1846/* if decide to use keyCode and Carbon table, use this line:
1847 return code > 0xff ? 0 : 0xFF00 | ns_keycode_to_xkeysym_table[code]; */
1848}
1849
1850
1851char *
1852x_get_keysym_name (int keysym)
1853/* --------------------------------------------------------------------------
1854 Called by keyboard.c. Not sure if the return val is important, except
1855 that it be unique.
1856 -------------------------------------------------------------------------- */
1857{
1858 static char value[16];
1859 NSTRACE (x_get_keysym_name);
1860 sprintf (value, "%d", keysym);
1861 return value;
1862}
1863
1864
1865
1866/* ==========================================================================
1867
1868 Block drawing operations
1869
1870 ========================================================================== */
1871
1872
1873static void
1874ns_redraw_scroll_bars (struct frame *f)
1875{
1876 int i;
1877 id view;
1878 NSArray *subviews = [[FRAME_NS_VIEW (f) superview] subviews];
1879 NSTRACE (ns_judge_scroll_bars);
1880 for (i =[subviews count]-1; i >= 0; i--)
1881 {
1882 view = [subviews objectAtIndex: i];
1883 if (![view isKindOfClass: [EmacsScroller class]]) continue;
1884 [view display];
1885 }
1886}
1887
1888
1889void
1890ns_clear_frame (struct frame *f)
1891/* --------------------------------------------------------------------------
1892 External (hook): Erase the entire frame
1893 -------------------------------------------------------------------------- */
1894{
1895 NSView *view = FRAME_NS_VIEW (f);
1896 NSRect r;
1897
1898 NSTRACE (ns_clear_frame);
1899 if (ns_in_resize)
1900 return;
1901
1902 /* comes on initial frame because we have
1903 after-make-frame-functions = select-frame */
1904 if (!FRAME_DEFAULT_FACE (f))
1905 return;
1906
1907 mark_window_cursors_off (XWINDOW (FRAME_ROOT_WINDOW (f)));
1908
1909 output_cursor.hpos = output_cursor.vpos = 0;
1910 output_cursor.x = -1;
1911
1912 r = [view bounds];
1913
1914 BLOCK_INPUT;
1915 ns_focus (f, &r, 1);
1916 [ns_lookup_indexed_color (NS_FACE_BACKGROUND (FRAME_DEFAULT_FACE (f)), f) set];
1917 NSRectFill (r);
1918 ns_unfocus (f);
1919
1920#ifdef NS_IMPL_COCOA
1921 [[view window] display]; /* redraw resize handle */
1922#endif
1923
1924 /* as of 2006/11 or so this is now needed */
1925 ns_redraw_scroll_bars (f);
1926 UNBLOCK_INPUT;
1927}
1928
1929
1930void
1931ns_clear_frame_area (struct frame *f, int x, int y, int width, int height)
1932/* --------------------------------------------------------------------------
1933 23: External (RIF): Clear section of frame
1934 -------------------------------------------------------------------------- */
1935{
1936 NSRect r = NSMakeRect (x, y, width, height);
1937 NSView *view = FRAME_NS_VIEW (f);
1938 struct face *face = FRAME_DEFAULT_FACE (f);
1939
1940 if (!view || !face)
1941 return;
1942
1943 r = NSIntersectionRect (r, [view frame]);
1944 ns_focus (f, &r, 1);
1945 [ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), f) set];
1946
1947#ifdef NS_IMPL_COCOA
1948 {
1949 /* clip out the resize handle */
1950 NSWindow *window = [FRAME_NS_VIEW (f) window];
facfbbbd
SM
1951 NSRect ir
1952 = [view convertRect: ns_resize_handle_rect (window) fromView: nil];
edfda783
AR
1953
1954 ir = NSIntersectionRect (r, ir);
1955 if (NSIsEmptyRect (ir))
1956 {
1957#endif
1958
1959 NSRectFill (r);
1960
1961#ifdef NS_IMPL_COCOA
1962 }
1963 else
1964 {
1965 NSRect r1 = r, r2 = r; /* upper and lower non-intersecting */
1966 r1.size.height -= ir.size.height;
1967 r2.origin.y += r1.size.height;
1968 r2.size.width -= ir.size.width;
1969 r2.size.height = ir.size.height;
1970 NSRectFill (r1);
1971 NSRectFill (r2);
1972 }
1973 }
1974#endif
1975
1976 ns_unfocus (f);
1977 return;
1978}
1979
1980
1981static void
1982ns_scroll_run (struct window *w, struct run *run)
1983/* --------------------------------------------------------------------------
1984 23: External (RIF): Insert or delete n lines at line vpos
1985 -------------------------------------------------------------------------- */
1986{
1987 struct frame *f = XFRAME (w->frame);
1988 int x, y, width, height, from_y, to_y, bottom_y;
1989
1990 NSTRACE (ns_scroll_run);
1991
1992 /* begin copy from other terms */
1993 /* Get frame-relative bounding box of the text display area of W,
1994 without mode lines. Include in this box the left and right
1995 fringe of W. */
1996 window_box (w, -1, &x, &y, &width, &height);
1997
1998 from_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->current_y);
1999 to_y = WINDOW_TO_FRAME_PIXEL_Y (w, run->desired_y);
2000 bottom_y = y + height;
2001
2002 if (to_y < from_y)
2003 {
2004 /* Scrolling up. Make sure we don't copy part of the mode
2005 line at the bottom. */
2006 if (from_y + run->height > bottom_y)
2007 height = bottom_y - from_y;
2008 else
2009 height = run->height;
2010 }
2011 else
2012 {
2013 /* Scolling down. Make sure we don't copy over the mode line.
2014 at the bottom. */
2015 if (to_y + run->height > bottom_y)
2016 height = bottom_y - to_y;
2017 else
2018 height = run->height;
2019 }
2020 /* end copy from other terms */
2021
2022 if (height == 0)
2023 return;
2024
2025 BLOCK_INPUT;
2026
2027 updated_window = w;
2028 x_clear_cursor (w);
2029
2030 {
2031 NSRect srcRect = NSMakeRect (x, from_y, width, height);
2032 NSRect dstRect = NSMakeRect (x, to_y, width, height);
2033 NSPoint dstOrigin = NSMakePoint (x, to_y);
2034
2035 ns_focus (f, &dstRect, 1);
2036 NSCopyBits (0, srcRect , dstOrigin);
2037 ns_unfocus (f);
2038 }
2039
2040 UNBLOCK_INPUT;
2041}
2042
2043
2044static void
2045ns_after_update_window_line (struct glyph_row *desired_row)
2046/* --------------------------------------------------------------------------
2047 23: External (RIF): preparatory to fringe update after text was updated
2048 -------------------------------------------------------------------------- */
2049{
2050 struct window *w = updated_window;
2051 struct frame *f;
2052 int width, height;
2053
2054 NSTRACE (ns_after_update_window_line);
2055
2056 /* begin copy from other terms */
2057 xassert (w);
2058
2059 if (!desired_row->mode_line_p && !w->pseudo_window_p)
2060 desired_row->redraw_fringe_bitmaps_p = 1;
2061
2062 /* When a window has disappeared, make sure that no rest of
2063 full-width rows stays visible in the internal border.
2064 Under NS this is drawn inside the fringes. */
2065 if (windows_or_buffers_changed
2066 && (f = XFRAME (w->frame),
2067 width = FRAME_INTERNAL_BORDER_WIDTH (f),
2068 width != 0)
2069 && (height = desired_row->visible_height,
2070 height > 0))
2071 {
2072 int y = WINDOW_TO_FRAME_PIXEL_Y (w, max (0, desired_row->y));
2073
2074 /* Internal border is drawn below the tool bar. */
2075 if (WINDOWP (f->tool_bar_window)
2076 && w == XWINDOW (f->tool_bar_window))
2077 y -= width;
2078 /* end copy from other terms */
2079
2080 BLOCK_INPUT;
2081 if (!desired_row->full_width_p)
2082 {
2083 int x1 = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w)
2084 + WINDOW_LEFT_FRINGE_WIDTH (w);
2085 int x2 = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w)
2086 + FRAME_PIXEL_WIDTH (f) - NS_SCROLL_BAR_WIDTH (f)
2087 - WINDOW_RIGHT_FRINGE_WIDTH (w)
2088 - FRAME_INTERNAL_BORDER_WIDTH (f);
2089 ns_clear_frame_area (f, x1, y, width, height);
2090 ns_clear_frame_area (f, x2, y, width, height);
2091 }
2092 UNBLOCK_INPUT;
2093 }
2094}
2095
2096
2097static void
2098ns_shift_glyphs_for_insert (struct frame *f,
2099 int x, int y, int width, int height,
2100 int shift_by)
2101/* --------------------------------------------------------------------------
2102 23: External (RIF): copy an area horizontally, don't worry about clearing src
2103 -------------------------------------------------------------------------- */
2104{
2105 NSRect srcRect = NSMakeRect (x, y, width, height);
2106 NSRect dstRect = NSMakeRect (x+shift_by, y, width, height);
2107 NSPoint dstOrigin = dstRect.origin;
2108
2109 NSTRACE (ns_shift_glyphs_for_insert);
2110
2111 ns_focus (f, &dstRect, 1);
2112 NSCopyBits (0, srcRect, dstOrigin);
2113 ns_unfocus (f);
2114}
2115
2116
2117
2118/* ==========================================================================
2119
2120 Character encoding and metrics
2121
2122 ========================================================================== */
2123
2124
2125static inline void
2126ns_compute_glyph_string_overhangs (struct glyph_string *s)
2127/* --------------------------------------------------------------------------
2128 23: External (RIF); compute left/right overhang of whole string and set in s
2129 -------------------------------------------------------------------------- */
2130{
2131 struct face *face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
2132 struct font *font = s->font; /*face->font; */
2133
2134 if (s->char2b)
2135 {
2136 struct font_metrics metrics;
2137 unsigned int codes[2];
2138 codes[0] = *(s->char2b);
2139 codes[1] = *(s->char2b + s->nchars - 1);
2140
2141 font->driver->text_extents (font, codes, 2, &metrics);
2142 s->left_overhang = -metrics.lbearing;
facfbbbd
SM
2143 s->right_overhang
2144 = metrics.rbearing > metrics.width
2145 ? metrics.rbearing - metrics.width : 0;
edfda783
AR
2146 }
2147 else
2148 {
2149 s->left_overhang = 0;
2150 s->right_overhang = ((struct nsfont_info *)font)->ital ?
2151 FONT_HEIGHT (font) * 0.2 : 0;
2152 }
2153}
2154
2155
2156
2157/* ==========================================================================
2158
2159 Fringe and cursor drawing
2160
2161 ========================================================================== */
2162
2163
2164extern int max_used_fringe_bitmap;
2165static void
2166ns_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
2167 struct draw_fringe_bitmap_params *p)
2168/* --------------------------------------------------------------------------
2169 23: External (RIF); fringe-related
2170 -------------------------------------------------------------------------- */
2171{
2172 struct frame *f = XFRAME (WINDOW_FRAME (w));
2173 struct face *face = p->face;
2174 int rowY;
2175 static EmacsImage **bimgs = NULL;
2176 static int nBimgs = 0;
2177 /* NS-specific: move internal border inside fringe */
2178 int x = p->bx < 0 ? p->x : p->bx;
2179 int wd = p->bx < 0 ? p->wd : p->nx;
facfbbbd
SM
2180 BOOL fringeOnVeryLeft
2181 = x - WINDOW_LEFT_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w)
edfda783 2182 - FRAME_INTERNAL_BORDER_WIDTH (f) < 10;
facfbbbd
SM
2183 BOOL fringeOnVeryRight
2184 = FRAME_PIXEL_WIDTH (f) - x - wd - FRAME_INTERNAL_BORDER_WIDTH (f)
edfda783
AR
2185 - WINDOW_RIGHT_SCROLL_BAR_COLS (w) * WINDOW_FRAME_COLUMN_WIDTH (w) < 10;
2186 int xAdjust = FRAME_INTERNAL_BORDER_WIDTH (f) *
2187 (fringeOnVeryLeft ? -1 : (fringeOnVeryRight ? 1 : 0));
2188
2189 /* grow bimgs if needed */
2190 if (nBimgs < max_used_fringe_bitmap)
2191 {
facfbbbd
SM
2192 EmacsImage **newBimgs
2193 = xmalloc (max_used_fringe_bitmap * sizeof (EmacsImage *));
edfda783
AR
2194 bzero (newBimgs, max_used_fringe_bitmap * sizeof (EmacsImage *));
2195
2196 if (nBimgs)
2197 {
2198 bcopy (bimgs, newBimgs, nBimgs * sizeof (EmacsImage *));
2199 xfree (bimgs);
2200 }
2201
2202 bimgs = newBimgs;
2203 nBimgs = max_used_fringe_bitmap;
2204 }
2205
2206 /* Must clip because of partially visible lines. */
2207 rowY = WINDOW_TO_FRAME_PIXEL_Y (w, row->y);
2208 if (p->y < rowY)
2209 {
2210 /* Adjust position of "bottom aligned" bitmap on partially
2211 visible last row. */
2212 int oldY = row->y;
2213 int oldVH = row->visible_height;
2214 row->visible_height = p->h;
2215 row->y -= rowY - p->y;
2216 ns_clip_to_row (w, row, -1, NULL);
2217 row->y = oldY;
2218 row->visible_height = oldVH;
2219 }
2220 else
2221 ns_clip_to_row (w, row, -1, YES);
2222
2223 if (p->bx >= 0 && !p->overlay_p)
2224 {
2225 int yAdjust = rowY - FRAME_INTERNAL_BORDER_WIDTH (f) < 5 ?
2226 -FRAME_INTERNAL_BORDER_WIDTH (f) : 0;
2227 int yIncr = FRAME_PIXEL_HEIGHT (f) - (p->by+yAdjust + p->ny) < 5 ?
2228 FRAME_INTERNAL_BORDER_WIDTH (f) : 0;
2229 if (yAdjust)
2230 yIncr += FRAME_INTERNAL_BORDER_WIDTH (f);
2231 NSRect r = NSMakeRect (p->bx+xAdjust, p->by+yAdjust, p->nx, p->ny+yIncr);
2232 NSRectClip (r);
2233 [ns_lookup_indexed_color(face->background, f) set];
2234 NSRectFill (r);
2235 }
2236
2237 if (p->which)
2238 {
2239 NSRect r = NSMakeRect (p->x+xAdjust, p->y, p->wd, p->h);
2240 NSPoint pt = r.origin;
2241 EmacsImage *img = bimgs[p->which - 1];
2242
2243 if (!img)
2244 {
2245 unsigned short *bits = p->bits + p->dh;
2246 int len = 8 * p->h/8;
2247 int i;
2248 unsigned char *cbits = xmalloc (len);
2249
2250 for (i =0; i<len; i++)
2251 cbits[i] = ~(bits[i] & 0xff);
2252 img = [[EmacsImage alloc] initFromXBM: cbits width: 8 height: p->h
2253 flip: NO];
2254 bimgs[p->which - 1] = img;
2255 xfree (cbits);
2256 }
2257
2258 NSRectClip (r);
2259 /* Since we composite the bitmap instead of just blitting it, we need
2260 to erase the whole background. */
2261 [ns_lookup_indexed_color(face->background, f) set];
2262 NSRectFill (r);
2263 pt.y += p->h;
2264 [img setXBMColor: ns_lookup_indexed_color(face->foreground, f)];
2265 [img compositeToPoint: pt operation: NSCompositeSourceOver];
2266 }
2267 ns_unfocus (f);
2268}
2269
2270
2271void
2272ns_draw_window_cursor (struct window *w, struct glyph_row *glyph_row,
2273 int x, int y, int cursor_type, int cursor_width,
2274 int on_p, int active_p)
2275/* --------------------------------------------------------------------------
2276 External call (RIF): draw cursor
2277 -------------------------------------------------------------------------- */
2278{
2279 NSRect r, s;
2280 int fx, fy, h;
2281 struct frame *f = WINDOW_XFRAME (w);
2282 struct glyph *phys_cursor_glyph;
2283 int overspill;
2284 unsigned char drawGlyph = 0, cursorType, oldCursorType;
2285
2286 NSTRACE (dumpcursor);
2287
2288 if (!on_p)
2289 return;
2290
2291 w->phys_cursor_type = cursor_type;
2292 w->phys_cursor_on_p = 1;
2293
2294 if (cursor_type == NO_CURSOR)
2295 {
2296 w->phys_cursor_width = 0;
2297 return;
2298 }
2299
2300 if ((phys_cursor_glyph = get_phys_cursor_glyph (w)) == NULL)
2301 {
2302 if (glyph_row->exact_window_width_line_p
2303 && w->phys_cursor.hpos >= glyph_row->used[TEXT_AREA])
2304 {
2305 glyph_row->cursor_in_fringe_p = 1;
2306 draw_fringe_bitmap (w, glyph_row, 0);
2307 }
2308 return;
2309 }
2310
2311 get_phys_cursor_geometry (w, glyph_row, phys_cursor_glyph, &fx, &fy, &h);
2312
2313 r.origin.x = fx, r.origin.y = fy;
2314 r.size.height = h;
2315 r.size.width = w->phys_cursor_width;
2316
2317 /* PENDING: if we overwrite the internal border area, it does not get erased;
2318 fix by truncating cursor, but better would be to erase properly */
2319 overspill = r.origin.x + r.size.width -
2320 WINDOW_TEXT_TO_FRAME_PIXEL_X (w, WINDOW_BOX_RIGHT_EDGE_X (w)
2321 - WINDOW_TOTAL_FRINGE_WIDTH (w) - FRAME_INTERNAL_BORDER_WIDTH (f));
2322 if (overspill > 0)
2323 r.size.width -= overspill;
2324
2325 /* PENDING: 23: use emacs stored f->cursor_type instead of ns-specific */
2326 oldCursorType = FRAME_CURSOR (f);
2327 cursorType = FRAME_CURSOR (f) = FRAME_NEW_CURSOR (f);
facfbbbd
SM
2328 f->output_data.ns->current_cursor_color
2329 = f->output_data.ns->desired_cursor_color;
edfda783
AR
2330
2331 /* PENDING: only needed in rare cases with last-resort font in HELLO..
2332 should we do this more efficiently? */
2333 ns_clip_to_row (w, glyph_row, -1, NULL);
2334/* ns_focus (f, &r, 1); */
2335
2336 if (FRAME_LAST_INACTIVE (f))
2337 {
2338 /* previously hollow box; clear entire area */
2339 [FRAME_BACKGROUND_COLOR (f) set];
2340 NSRectFill (r);
2341 drawGlyph = 1;
2342 FRAME_LAST_INACTIVE (f) = NO;
2343 }
2344
2345 /* prepare to draw */
2346 if (cursorType == no_highlight || cursor_type == NO_CURSOR)
2347 {
2348 /* clearing for blink: erase the cursor itself */
2349 [FRAME_BACKGROUND_COLOR (f) set];
2350 cursorType = oldCursorType; /* just clear what we had before */
2351 }
2352 else
2353 [FRAME_CURSOR_COLOR (f) set];
2354
2355 if (!active_p)
2356 {
2357 /* inactive window: ignore what we just set and use a hollow box */
2358 cursorType = hollow_box;
2359 [FRAME_CURSOR_COLOR (f) set];
2360 }
2361
2362 switch (cursorType)
2363 {
2364 case no_highlight:
2365 break;
2366 case filled_box:
2367 NSRectFill (r);
2368 drawGlyph = 1;
2369 break;
2370 case hollow_box:
2371 NSRectFill (r);
2372 [FRAME_BACKGROUND_COLOR (f) set];
2373 NSRectFill (NSInsetRect (r, 1, 1));
2374 [FRAME_CURSOR_COLOR (f) set];
2375 drawGlyph = 1;
2376 break;
2377 case underscore:
2378 s = r;
2379 s.origin.y += lrint (0.75 * s.size.height);
2380 s.size.height = lrint (s.size.height * 0.25);
2381 NSRectFill (s);
2382 break;
2383 case bar:
2384 s = r;
2385 s.size.width = 1;
2386 NSRectFill (s);
2387 break;
2388 }
2389 ns_unfocus (f);
2390
2391 /* if needed, draw the character under the cursor */
2392 if (drawGlyph)
2393 draw_phys_cursor_glyph (w, glyph_row, DRAW_CURSOR);
2394}
2395
2396
2397static void
2398ns_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
2399/* --------------------------------------------------------------------------
2400 External (RIF): Draw a vertical line.
2401 -------------------------------------------------------------------------- */
2402{
2403 struct frame *f = XFRAME (WINDOW_FRAME (w));
2404 struct face *face;
2405 NSRect r = NSMakeRect (x, y0, 2, y1-y0);
2406
2407 face = FACE_FROM_ID (f, VERTICAL_BORDER_FACE_ID);
2408 if (face)
2409 [ns_lookup_indexed_color(face->foreground, f) set];
2410
2411 ns_focus (f, &r, 1);
2412 NSDrawGroove (r, r);
2413 ns_unfocus (f);
2414}
2415
2416
2417void
2418show_hourglass (struct atimer *timer)
2419{
2420 if (hourglass_shown_p)
2421 return;
2422
2423 BLOCK_INPUT;
2424
2425 /*PENDING: add NSProgressIndicator to selected frame (see macfns.c) */
2426
2427 hourglass_shown_p = 1;
2428 UNBLOCK_INPUT;
2429}
2430
2431
2432void
2433hide_hourglass ()
2434{
2435 if (!hourglass_shown_p)
2436 return;
2437
2438 /*PENDING: remove NSProgressIndicator from all frames */
2439
2440 hourglass_shown_p = 0;
2441 UNBLOCK_INPUT;
2442}
2443
2444
2445
2446/* ==========================================================================
2447
2448 Glyph drawing operations
2449
2450 ========================================================================== */
2451
2452
2453static inline NSRect
2454/* --------------------------------------------------------------------------
2455 Under NS we draw internal borders inside fringes, and want full-width
2456 rendering to go all the way to edge. This function makes that correction.
2457 -------------------------------------------------------------------------- */
2458ns_fix_rect_ibw (NSRect r, int fibw, int frame_pixel_width)
2459{
2460 if (r.origin.y <= fibw+1)
2461 {
2462 r.size.height += r.origin.y;
2463 r.origin.y = 0;
2464 }
2465 if (r.origin.x <= fibw+1)
2466 {
2467 r.size.width += r.origin.x;
2468 r.origin.x = 0;
2469 }
2470 if (frame_pixel_width - (r.origin.x+r.size.width) <= fibw+1)
2471 r.size.width += fibw;
2472
2473 return r;
2474}
2475
2476
2477static int
2478ns_get_glyph_string_clip_rect (struct glyph_string *s, NativeRectangle *nr)
2479/* --------------------------------------------------------------------------
2480 Wrapper utility to account for internal border width on full-width lines,
2481 and allow top full-width rows to hit the frame top. nr should be pointer
2482 to two successive NSRects. Number of rects actually used is returned.
2483 -------------------------------------------------------------------------- */
2484{
2485 int n = get_glyph_string_clip_rects (s, nr, 2);
2486 if (s->row->full_width_p)
2487 {
2488 *nr = ns_fix_rect_ibw (*nr, FRAME_INTERNAL_BORDER_WIDTH (s->f),
2489 FRAME_PIXEL_WIDTH (s->f));
2490 if (n == 2)
2491 *nr = ns_fix_rect_ibw (*(nr+1), FRAME_INTERNAL_BORDER_WIDTH (s->f),
2492 FRAME_PIXEL_WIDTH (s->f));
2493 }
2494 return n;
2495}
2496
2497
2498static void
2499ns_draw_box (NSRect r, float thickness, NSColor *col, char left_p, char right_p)
2500/* --------------------------------------------------------------------------
2501 Draw an unfilled rect inside r, optionally leaving left and/or right open.
2502 Note we can't just use an NSDrawRect command, because of the possibility
2503 of some sides not being drawn, and because the rect will be filled.
2504 -------------------------------------------------------------------------- */
2505{
2506 NSRect s = r;
2507 [col set];
2508
2509 /* top, bottom */
2510 s.size.height = thickness;
2511 NSRectFill (s);
2512 s.origin.y += r.size.height - thickness;
2513 NSRectFill (s);
2514
2515 s.size.height = r.size.height;
2516 s.origin.y = r.origin.y;
2517
2518 /* left, right (optional) */
2519 s.size.width = thickness;
2520 if (left_p)
2521 NSRectFill (s);
2522 if (right_p)
2523 {
2524 s.origin.x += r.size.width - thickness;
2525 NSRectFill (s);
2526 }
2527}
2528
2529
2530static void
2531ns_draw_relief (NSRect r, int thickness, char raised_p,
2532 char top_p, char bottom_p, char left_p, char right_p,
2533 struct glyph_string *s)
2534/* --------------------------------------------------------------------------
2535 Draw a relief rect inside r, optionally leaving some sides open.
2536 Note we can't just use an NSDrawBezel command, because of the possibility
2537 of some sides not being drawn, and because the rect will be filled.
2538 -------------------------------------------------------------------------- */
2539{
2540 static NSColor *baseCol = nil, *lightCol = nil, *darkCol = nil;
2541 NSColor *newBaseCol = nil;
2542 NSRect sr = r;
2543
2544 NSTRACE (ns_draw_relief);
2545
2546 /* set up colors */
2547
2548 if (s->face->use_box_color_for_shadows_p)
2549 {
2550 newBaseCol = ns_lookup_indexed_color (s->face->box_color, s->f);
2551 }
2552/* else if (s->first_glyph->type == IMAGE_GLYPH
2553 && s->img->pixmap
2554 && !IMAGE_BACKGROUND_TRANSPARENT (s->img, s->f, 0))
2555 {
2556 newBaseCol = IMAGE_BACKGROUND (s->img, s->f, 0);
2557 } */
2558 else
2559 {
2560 newBaseCol = ns_lookup_indexed_color (s->face->background, s->f);
2561 }
2562
2563 if (newBaseCol == nil)
2564 newBaseCol = [NSColor grayColor];
2565
2566 if (newBaseCol != baseCol) /* PENDING: better check */
2567 {
2568 [baseCol release];
2569 baseCol = [newBaseCol retain];
2570 [lightCol release];
2571 lightCol = [[baseCol highlightWithLevel: 0.2] retain];
2572 [darkCol release];
2573 darkCol = [[baseCol shadowWithLevel: 0.3] retain];
2574 }
2575
2576 [(raised_p ? lightCol : darkCol) set];
2577
2578 /* TODO: mitering. Using NSBezierPath doesn't work because of color switch. */
2579
2580 /* top */
2581 sr.size.height = thickness;
2582 if (top_p) NSRectFill (sr);
2583
2584 /* left */
2585 sr.size.height = r.size.height;
2586 sr.size.width = thickness;
2587 if (left_p) NSRectFill (sr);
2588
2589 [(raised_p ? darkCol : lightCol) set];
2590
2591 /* bottom */
2592 sr.size.width = r.size.width;
2593 sr.size.height = thickness;
2594 sr.origin.y += r.size.height - thickness;
2595 if (bottom_p) NSRectFill (sr);
2596
2597 /* right */
2598 sr.size.height = r.size.height;
2599 sr.origin.y = r.origin.y;
2600 sr.size.width = thickness;
2601 sr.origin.x += r.size.width - thickness;
2602 if (right_p) NSRectFill (sr);
2603}
2604
2605
2606static void
2607ns_dumpglyphs_box_or_relief (struct glyph_string *s)
2608/* --------------------------------------------------------------------------
2609 Function modeled after x_draw_glyph_string_box ().
2610 Sets up parameters for drawing.
2611 -------------------------------------------------------------------------- */
2612{
2613 int right_x, last_x;
2614 char left_p, right_p;
2615 struct glyph *last_glyph;
2616 NSRect r;
2617 int thickness;
2618 struct face *face;
2619
2620 if (s->hl == DRAW_MOUSE_FACE)
2621 {
2622 face = FACE_FROM_ID
2623 (s->f, FRAME_NS_DISPLAY_INFO (s->f)->mouse_face_face_id);
2624 if (!face)
2625 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
2626 }
2627 else
2628 face = s->face;
2629
2630 thickness = face->box_line_width;
2631
2632 NSTRACE (ns_dumpglyphs_box_or_relief);
2633
2634 last_x = ((s->row->full_width_p && !s->w->pseudo_window_p)
2635 ? WINDOW_RIGHT_EDGE_X (s->w)
2636 : window_box_right (s->w, s->area));
2637 last_glyph = (s->cmp || s->img
2638 ? s->first_glyph : s->first_glyph + s->nchars-1);
2639
2640 right_x = ((s->row->full_width_p && s->extends_to_end_of_line_p
2641 ? last_x - 1 : min (last_x, s->x + s->background_width) - 1));
2642
2643 left_p = (s->first_glyph->left_box_line_p
2644 || (s->hl == DRAW_MOUSE_FACE
2645 && (s->prev == NULL || s->prev->hl != s->hl)));
2646 right_p = (last_glyph->right_box_line_p
2647 || (s->hl == DRAW_MOUSE_FACE
2648 && (s->next == NULL || s->next->hl != s->hl)));
2649
2650 r = NSMakeRect (s->x, s->y, right_x - s->x + 1, s->height);
2651
2652 /* expand full-width row over internal borders */
2653 if (s->row->full_width_p)
2654 r = ns_fix_rect_ibw (r, FRAME_INTERNAL_BORDER_WIDTH (s->f),
2655 FRAME_PIXEL_WIDTH (s->f));
2656
2657 if (s->face->box == FACE_SIMPLE_BOX)
2658 {
2659 xassert (s->face->box_color != nil);
2660 ns_draw_box (r, abs (thickness),
2661 ns_lookup_indexed_color (face->box_color, s->f),
2662 left_p, right_p);
2663 }
2664 else
2665 {
2666 ns_draw_relief (r, abs (thickness), s->face->box == FACE_RAISED_BOX,
2667 1, 1, left_p, right_p, s);
2668 }
2669}
2670
2671
2672static void
2673ns_maybe_dumpglyphs_background (struct glyph_string *s, char force_p)
2674/* --------------------------------------------------------------------------
2675 Modeled after x_draw_glyph_string_background, which draws BG in
2676 certain cases. Others are left to the text rendering routine.
2677 -------------------------------------------------------------------------- */
2678{
2679 NSTRACE (ns_maybe_dumpglyphs_background);
2680
2681 if (!s->background_filled_p/* || s->hl == DRAW_MOUSE_FACE*/)
2682 {
2683 int box_line_width = max (s->face->box_line_width, 0);
2684 if (FONT_HEIGHT (s->font) < s->height - 2 * box_line_width
2685 || s->font_not_found_p || s->extends_to_end_of_line_p || force_p)
2686 {
2687 struct face *face;
2688 if (s->hl == DRAW_MOUSE_FACE)
2689 {
2690 face = FACE_FROM_ID
2691 (s->f, FRAME_NS_DISPLAY_INFO (s->f)->mouse_face_face_id);
2692 if (!face)
2693 face = FACE_FROM_ID (s->f, MOUSE_FACE_ID);
2694 }
2695 else
2696 face = FACE_FROM_ID (s->f, s->first_glyph->face_id);
2697 if (!face->stipple)
45d325c4 2698 [(NS_FACE_BACKGROUND (face) != 0
edfda783
AR
2699 ? ns_lookup_indexed_color (NS_FACE_BACKGROUND (face), s->f)
2700 : FRAME_BACKGROUND_COLOR (s->f)) set];
2701 else
2702 {
2703 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (s->f);
2704 [[dpyinfo->bitmaps[face->stipple-1].img stippleMask] set];
2705 }
2706
2707 if (s->hl != DRAW_CURSOR)
2708 {
2709 NSRect r = NSMakeRect (s->x, s->y + box_line_width,
2710 s->background_width,
2711 s->height-2*box_line_width);
2712
2713 /* expand full-width row over internal borders */
2714 if (s->row->full_width_p)
2715 {
2716 int fibw = FRAME_INTERNAL_BORDER_WIDTH (s->f);
2717 if (r.origin.y <= fibw+1 + box_line_width)
2718 {
2719 r.size.height += r.origin.y;
2720 r.origin.y = 0;
2721 }
2722 if (r.origin.x <= fibw+1)
2723 {
2724 r.size.width += 2*r.origin.x;
2725 r.origin.x = 0;
2726 }
2727 if (FRAME_PIXEL_WIDTH (s->f) - (r.origin.x + r.size.width)
2728 <= fibw+1)
2729 r.size.width += fibw;
2730 }
2731
2732 NSRectFill (r);
2733 }
2734
2735 s->background_filled_p = 1;
2736 }
2737 }
2738}
2739
2740
2741static void
2742ns_dumpglyphs_image (struct glyph_string *s, NSRect r)
2743/* --------------------------------------------------------------------------
2744 Renders an image and associated borders.
2745 -------------------------------------------------------------------------- */
2746{
2747 EmacsImage *img = s->img->pixmap;
2748 int box_line_vwidth = max (s->face->box_line_width, 0);
2749 int x = s->x, y = s->ybase - image_ascent (s->img, s->face, &s->slice);
2750 int bg_x, bg_y, bg_height;
2751 int th;
2752 char raised_p;
2753 NSRect br;
2754
2755 NSTRACE (ns_dumpglyphs_image);
2756
2757 if (s->face->box != FACE_NO_BOX
2758 && s->first_glyph->left_box_line_p && s->slice.x == 0)
2759 x += abs (s->face->box_line_width);
2760
2761 bg_x = x;
2762 bg_y = s->slice.y == 0 ? s->y : s->y + box_line_vwidth;
2763 bg_height = s->height;
2764 /* other terms have this, but was causing problems w/tabbar mode */
2765 /* - 2 * box_line_vwidth; */
2766
2767 if (s->slice.x == 0) x += s->img->hmargin;
2768 if (s->slice.y == 0) y += s->img->vmargin;
2769
2770 /* Draw BG: if we need larger area than image itself cleared, do that,
2771 otherwise, since we composite the image under NS (instead of mucking
2772 with its background color), we must clear just the image area. */
2773 [ns_lookup_indexed_color (NS_FACE_BACKGROUND
2774 (FACE_FROM_ID (s->f, s->first_glyph->face_id)), s->f) set];
2775
2776 if (bg_height > s->slice.height || s->img->hmargin || s->img->vmargin
2777 || s->img->mask || s->img->pixmap == 0 || s->width != s->background_width)
2778 {
2779 br = NSMakeRect (bg_x, bg_y, s->background_width, bg_height);
2780 s->background_filled_p = 1;
2781 }
2782 else
2783 {
2784 br = NSMakeRect (x, y, s->slice.width, s->slice.height);
2785 }
2786
2787 /* expand full-width row over internal borders */
2788 if (s->row->full_width_p)
2789 {
2790 int fibw = FRAME_INTERNAL_BORDER_WIDTH (s->f);
2791 if (br.origin.y <= fibw+1 + box_line_vwidth)
2792 {
2793 br.size.height += br.origin.y;
2794 br.origin.y = 0;
2795 }
2796 if (br.origin.x <= fibw+1 + box_line_vwidth)
2797 {
2798 br.size.width += br.origin.x;
2799 br.origin.x = 0;
2800 }
2801 if (FRAME_PIXEL_WIDTH (s->f) - (br.origin.x + br.size.width) <= fibw+1)
2802 br.size.width += fibw;
2803 }
2804
2805 NSRectFill (br);
2806
2807 /* Draw the image.. do we need to draw placeholder if img ==nil? */
2808 if (img != nil)
2809 [img compositeToPoint: NSMakePoint (x, y + s->slice.height)
2810 operation: NSCompositeSourceOver];
2811
2812 /* Draw relief, if requested */
2813 if (s->img->relief || s->hl ==DRAW_IMAGE_RAISED || s->hl ==DRAW_IMAGE_SUNKEN)
2814 {
2815 if (s->hl == DRAW_IMAGE_SUNKEN || s->hl == DRAW_IMAGE_RAISED)
2816 {
2817 th = tool_bar_button_relief >= 0 ?
2818 tool_bar_button_relief : DEFAULT_TOOL_BAR_BUTTON_RELIEF;
2819 raised_p = (s->hl == DRAW_IMAGE_RAISED);
2820 }
2821 else
2822 {
2823 th = abs (s->img->relief);
2824 raised_p = (s->img->relief > 0);
2825 }
2826
2827 r.origin.x = x - th;
2828 r.origin.y = y - th;
2829 r.size.width = s->slice.width + 2*th-1;
2830 r.size.height = s->slice.height + 2*th-1;
2831 ns_draw_relief (r, th, raised_p,
2832 s->slice.y == 0,
2833 s->slice.y + s->slice.height == s->img->height,
2834 s->slice.x == 0,
2835 s->slice.x + s->slice.width == s->img->width, s);
2836 }
2837}
2838
2839
2840static void
2841ns_draw_glyph_string (struct glyph_string *s)
2842/* --------------------------------------------------------------------------
2843 External (RIF): Main draw-text call.
2844 -------------------------------------------------------------------------- */
2845{
2846 /*PENDING (optimize): focus for box and contents draw */
2847 NSRect r[2];
2848 int n;
2849 char box_drawn_p = 0;
2850
2851 NSTRACE (ns_draw_glyph_string);
2852
2853 if (s->next && s->right_overhang && !s->for_overlaps && s->hl != DRAW_CURSOR)
2854 {
2855 xassert (s->next->img == NULL);
2856 n = ns_get_glyph_string_clip_rect (s->next, r);
2857 ns_focus (s->f, r, n);
2858 ns_maybe_dumpglyphs_background (s->next, 1);
2859 ns_unfocus (s->f);
2860 }
2861
2862 if (!s->for_overlaps && s->face->box != FACE_NO_BOX
2863 && (s->first_glyph->type == CHAR_GLYPH
2864 || s->first_glyph->type == COMPOSITE_GLYPH))
2865 {
2866 n = ns_get_glyph_string_clip_rect (s, r);
2867 ns_focus (s->f, r, n);
2868 ns_maybe_dumpglyphs_background (s, 1);
2869 ns_dumpglyphs_box_or_relief (s);
2870 ns_unfocus (s->f);
2871 box_drawn_p = 1;
2872 }
2873
2874 switch (s->first_glyph->type)
2875 {
2876
2877 case IMAGE_GLYPH:
2878 n = ns_get_glyph_string_clip_rect (s, r);
2879 ns_focus (s->f, r, n);
2880 ns_dumpglyphs_image (s, r[0]);
2881 ns_unfocus (s->f);
2882 break;
2883
2884 case STRETCH_GLYPH:
2885 if (!s->background_filled_p)
2886 {
2887 *r = NSMakeRect (s->x, s->y, s->background_width, s->height);
2888
2889 if (!s->row->full_width_p)
2890 {
2891 /* truncate to avoid overwriting fringe and/or scrollbar */
2892 int overrun = max (0, (s->x + s->background_width)
2893 - (WINDOW_BOX_RIGHT_EDGE_X (s->w)
2894 - WINDOW_RIGHT_FRINGE_WIDTH (s->w)));
2895 r[0].size.width -= overrun;
2896
2897 /* PENDING: Try to work between problem where a stretch glyph on
2898 a partially-visible bottom row will clear part of the
2899 modeline, and another where list-buffers headers and similar
2900 rows erroneously have visible_height set to 0. Not sure
2901 where this is coming from as other terms seem not to show. */
2902 r[0].size.height = min (s->height, s->row->visible_height);
2903 }
2904
2905 /* expand full-width rows over internal borders */
2906 else
2907 {
2908 r[0] = ns_fix_rect_ibw (r[0], FRAME_INTERNAL_BORDER_WIDTH (s->f),
2909 FRAME_PIXEL_WIDTH (s->f));
2910 }
2911
2912 /* NOTE: under NS this is NOT used to draw cursors, but we must avoid
2913 overwriting cursor (usually when cursor on a tab) */
2914 if (s->hl == DRAW_CURSOR)
2915 {
2916 r[0].origin.x += s->width;
2917 r[0].size.width -= s->width;
2918 }
2919
2920 ns_focus (s->f, r, 1);
2921 [ns_lookup_indexed_color (NS_FACE_BACKGROUND
2922 (FACE_FROM_ID (s->f, s->first_glyph->face_id)), s->f) set];
2923 NSRectFill (r[0]);
2924 ns_unfocus (s->f);
2925 s->background_filled_p = 1;
2926 }
2927 break;
2928
2929 case CHAR_GLYPH:
2930 case COMPOSITE_GLYPH:
2931 n = ns_get_glyph_string_clip_rect (s, r);
2932 ns_focus (s->f, r, n);
2933
2934 if (s->for_overlaps || s->gidx > 0)
2935 s->background_filled_p = 1;
2936 else /* 1 */
2937 ns_maybe_dumpglyphs_background
2938 (s, s->first_glyph->type == COMPOSITE_GLYPH);
2939
2940 ns_tmp_flags = s->hl == DRAW_CURSOR ? NS_DUMPGLYPH_CURSOR :
2941 (s->hl == DRAW_MOUSE_FACE ? NS_DUMPGLYPH_MOUSEFACE :
2942 (s->for_overlaps ? NS_DUMPGLYPH_FOREGROUND :
2943 NS_DUMPGLYPH_NORMAL));
2944 ns_tmp_font = (struct nsfont_info *)s->face->font;
2945 if (ns_tmp_font == ~0 || ns_tmp_font == NULL)
2946 ns_tmp_font = FRAME_FONT (s->f);
2947
2948 ns_tmp_font->font.driver->draw
2949 (s, 0, s->nchars, s->x, s->y,
2950 (ns_tmp_flags == NS_DUMPGLYPH_NORMAL && !s->background_filled_p)
2951 || ns_tmp_flags == NS_DUMPGLYPH_MOUSEFACE);
2952
2953 ns_unfocus (s->f);
2954 break;
2955
2956 default:
2957 abort ();
2958 }
2959
2960 /* Draw box if not done already. */
2961 if (!s->for_overlaps && !box_drawn_p && s->face->box != FACE_NO_BOX)
2962 {
2963 n = ns_get_glyph_string_clip_rect (s, r);
2964 ns_focus (s->f, r, n);
2965 ns_dumpglyphs_box_or_relief (s);
2966 ns_unfocus (s->f);
2967 }
2968
2969}
2970
2971
2972
2973/* ==========================================================================
2974
2975 Event loop
2976
2977 ========================================================================== */
2978
2979
2980static void
2981ns_send_appdefined (int value)
2982/* --------------------------------------------------------------------------
2983 Internal: post an appdefined event which EmacsApp-sendEvent will
2984 recognize and take as a command to halt the event loop.
2985 -------------------------------------------------------------------------- */
2986{
2987 /*NSTRACE (ns_send_appdefined); */
2988
2989 /* Only post this event if we haven't already posted one. This will end
2990 the [NXApp run] main loop after having processed all events queued at
2991 this moment. */
2992 if (send_appdefined)
2993 {
2994 NSEvent *nxev;
2995
2996 /* We only need one NX_APPDEFINED event to stop NXApp from running. */
2997 send_appdefined = NO;
2998
2999 /* Don't need wakeup timer any more */
3000 if (timed_entry)
3001 {
3002 [timed_entry invalidate];
3003 [timed_entry release];
3004 timed_entry = nil;
3005 }
3006
3007 /* Ditto for file descriptor poller */
3008 if (fd_entry)
3009 {
3010 [fd_entry invalidate];
3011 [fd_entry release];
3012 fd_entry = nil;
3013 }
3014
3015 nxev = [NSEvent otherEventWithType: NSApplicationDefined
3016 location: NSMakePoint (0, 0)
3017 modifierFlags: 0
3018 timestamp: 0
3019 windowNumber: [[NSApp mainWindow] windowNumber]
3020 context: [NSApp context]
3021 subtype: 0
3022 data1: value
3023 data2: 0];
3024
3025 /* Post an application defined event on the event queue. When this is
3026 received the [NXApp run] will return, thus having processed all
3027 events which are currently queued. */
3028 [NSApp postEvent: nxev atStart: NO];
3029 }
3030}
3031
3032
3033static int
3034ns_read_socket (struct terminal *terminal, int expected,
3035 struct input_event *hold_quit)
3036/* --------------------------------------------------------------------------
3037 External (hook): Post an event to ourself and keep reading events until
3038 we read it back again. In effect process all events which were waiting.
3039 23: Now we have to manage the event buffer ourselves.
3040 -------------------------------------------------------------------------- */
3041{
3042 struct input_event ev;
3043 int nevents;
3044 static NSDate *lastCheck = nil;
3045/* NSTRACE (ns_read_socket); */
3046
3047 if (interrupt_input_blocked)
3048 {
3049 interrupt_input_pending = 1;
3050 return -1;
3051 }
3052
3053 interrupt_input_pending = 0;
3054 BLOCK_INPUT;
3055
3056#ifdef COCOA_EXPERIMENTAL_CTRL_G
3057 /* causes Feval to abort; unclear on why this isn't in calling code */
3058 ++handling_signal;
3059#endif
3060
3061 n_emacs_events_pending = 0;
3062 EVENT_INIT (ev);
3063 emacs_event = &ev;
3064 q_event_ptr = hold_quit;
3065
3066 /* we manage autorelease pools by allocate/reallocate each time around
3067 the loop; strict nesting is occasionally violated but seems not to
3068 matter.. earlier methods using full nesting caused major memory leaks */
3069 [outerpool release];
3070 outerpool = [[NSAutoreleasePool alloc] init];
3071
3072 /* If have pending open-file requests, attend to the next one of those. */
3073 if (ns_pending_files && [ns_pending_files count] != 0
3074 && [NSApp openFile: [ns_pending_files objectAtIndex: 0]])
3075 {
3076 [ns_pending_files removeObjectAtIndex: 0];
3077 }
3078 /* Deal with pending service requests. */
3079 else if (ns_pending_service_names && [ns_pending_service_names count] != 0
3080 && [NSApp fulfillService: [ns_pending_service_names objectAtIndex: 0]
3081 withArg: [ns_pending_service_args objectAtIndex: 0]])
3082 {
3083 [ns_pending_service_names removeObjectAtIndex: 0];
3084 [ns_pending_service_args removeObjectAtIndex: 0];
3085 }
3086 else
3087 {
3088 /* Run and wait for events. We must always send one NX_APPDEFINED event
3089 to ourself, otherwise [NXApp run] will never exit. */
3090 send_appdefined = YES;
3091
3092 /*PENDING: from termhooks.h: */
3093 /* XXX Please note that a non-zero value of EXPECTED only means that
3094 there is available input on at least one of the currently opened
3095 terminal devices -- but not necessarily on this device.
3096 Therefore, in most cases EXPECTED should be simply ignored. */
3097 /* However, if in ns_select, this is called from gobble_input, which
3098 appears to set it correctly for our purposes, and always assuming
3099 !expected causes 100% CPU usage. */
3100 if (!inNsSelect || !expected)
3101 {
3102 /* Post an application defined event on the event queue. When this is
3103 received the [NXApp run] will return, thus having processed all
3104 events which are currently queued, if any. */
3105 ns_send_appdefined (-1);
3106 }
3107
3108 [NSApp run];
3109 }
3110
3111 nevents = n_emacs_events_pending;
3112 n_emacs_events_pending = 0;
3113 emacs_event = q_event_ptr = NULL;
3114
3115#ifdef COCOA_EXPERIMENTAL_CTRL_G
3116 --handling_signal;
3117#endif
3118 UNBLOCK_INPUT;
3119 return nevents;
3120}
3121
3122
3123int
3124ns_select (int nfds, fd_set *readfds, fd_set *writefds,
3125 fd_set *exceptfds, struct timeval *timeout)
3126/* --------------------------------------------------------------------------
3127 Replacement for select, checking for events
3128 -------------------------------------------------------------------------- */
3129{
3130 int result;
3131 double time;
3132 NSEvent *ev;
3133/* NSTRACE (ns_select); */
3134
3135 if (NSApp == nil /* || ([NSApp isActive] == NO &&
3136 [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:nil
3137 inMode:NSDefaultRunLoopMode dequeue:NO] == nil) */)
3138 return select (nfds, readfds, writefds, exceptfds, timeout);
3139
3140 /* Save file descriptor set, which gets overwritten in calls to select ()
3141 Note, this is called from process.c, and only readfds is ever set */
3142 if (readfds)
3143 {
3144 memcpy (&select_readfds, readfds, sizeof (fd_set));
3145 select_nfds = nfds;
3146 }
3147 else
3148 select_nfds = 0;
3149
3150 /* Try an initial select for pending data on input files */
3151 select_timeout.tv_sec = select_timeout.tv_usec = 0;
3152 result = select (nfds, readfds, writefds, exceptfds, &select_timeout);
3153 if (result)
3154 return result;
3155
3156 /* if (!timeout || timed_entry || fd_entry)
3157 fprintf (stderr, "assertion failed: timeout null or timed_entry/fd_entry non-null in ns_select\n"); */
3158
3159 /* set a timeout and run the main AppKit event loop while continuing
3160 to monitor the files */
3161 time = ((double) timeout->tv_sec) + ((double) timeout->tv_usec)/1000000.0;
3162 timed_entry = [[NSTimer scheduledTimerWithTimeInterval: time
3163 target: NSApp
3164 selector: @selector (timeout_handler:)
3165 userInfo: 0
3166 repeats: YES] /* for safe removal */
3167 retain];
3168
3169 /* set a periodic task to try the select () again */
3170 fd_entry = [[NSTimer scheduledTimerWithTimeInterval: 0.1
3171 target: NSApp
3172 selector: @selector (fd_handler:)
3173 userInfo: 0
3174 repeats: YES]
3175 retain];
3176
3177 if (!NILP (ns_cursor_blink_mode) && !cursor_blink_entry)
3178 {
3179 if (!NUMBERP (ns_cursor_blink_rate))
3180 ns_cursor_blink_rate = make_float (0.5);
3181 cursor_blink_entry = [[NSTimer
3182 scheduledTimerWithTimeInterval: XFLOATINT (ns_cursor_blink_rate)
3183 target: NSApp
3184 selector: @selector (cursor_blink_handler:)
3185 userInfo: 0
3186 repeats: YES]
3187 retain];
3188 }
3189 else if (NILP (ns_cursor_blink_mode) && cursor_blink_entry)
3190 {
3191 if (NUMBERP (ns_cursor_blink_rate))
3192 ns_cursor_blink_rate = Qnil;
3193 struct ns_display_info *dpyinfo = ns_display_list; /* HACK */
3194 [cursor_blink_entry invalidate];
3195 [cursor_blink_entry release];
3196 cursor_blink_entry = 0;
3197 if (dpyinfo->ns_highlight_frame)
3198 {
facfbbbd
SM
3199 Lisp_Object tem
3200 = get_frame_param (dpyinfo->ns_highlight_frame, Qcursor_type);
3201 dpyinfo->ns_highlight_frame->output_data.ns->desired_cursor
3202 = ns_lisp_to_cursor_type (tem);
edfda783
AR
3203 }
3204 }
3205
3206 /* Let Application dispatch events until it receives an event of the type
3207 NX_APPDEFINED, which should only be sent by timeout_handler. */
3208 inNsSelect = 1;
3209 gobble_input (timeout ? 1 : 0);
3210 ev = last_appdefined_event;
3211 inNsSelect = 0;
3212
3213 if (ev)
3214 {
3215 int t;
3216 if ([ev type] != NSApplicationDefined)
3217 abort ();
3218
3219 t = [ev data1];
3220 last_appdefined_event = 0;
3221
3222 if (t == -2)
3223 {
3224 /* The NX_APPDEFINED event we received was a timeout. */
3225 return 0;
3226 }
3227 else if (t == -1)
3228 {
3229 /* The NX_APPDEFINED event we received was the result of
3230 at least one real input event arriving. */
3231 errno = EINTR;
3232 return -1;
3233 }
3234 else
3235 {
3236 /* Received back from select () in fd_handler; copy the results */
3237 if (readfds)
3238 memcpy (readfds, &select_readfds, sizeof (fd_set));
3239 return t;
3240 }
3241 }
3242 /* never reached, shut compiler up */
3243 return 0;
3244}
3245
3246
3247
3248/* ==========================================================================
3249
3250 Scrollbar handling
3251
3252 ========================================================================== */
3253
3254
3255static void
3256ns_set_vertical_scroll_bar (struct window *window,
3257 int portion, int whole, int position)
3258/* --------------------------------------------------------------------------
3259 External (hook): Update or add scrollbar
3260 -------------------------------------------------------------------------- */
3261{
3262 Lisp_Object win;
3263 NSRect r, v;
3264 struct frame *f = XFRAME (WINDOW_FRAME (window));
3265 EmacsView *view = FRAME_NS_VIEW (f);
3266 int window_y, window_height;
3267 BOOL barOnVeryLeft, barOnVeryRight;
3268 int top, left, height, width, sb_width, sb_left;
3269 EmacsScroller *bar;
3270static int count = 0;
3271
3272 /* optimization; display engine sends WAY too many of these.. */
3273 if (!NILP (window->vertical_scroll_bar))
3274 {
3275 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3276 if ([bar checkSamePosition: position portion: portion whole: whole])
3277 {
3278 if (view->scrollbarsNeedingUpdate == 0)
3279 {
3280 if (!windows_or_buffers_changed)
3281 return;
3282 }
3283 else
3284 view->scrollbarsNeedingUpdate--;
3285 }
3286 }
3287
3288 NSTRACE (ns_set_vertical_scroll_bar);
3289
3290 /* Get dimensions. */
3291 window_box (window, -1, 0, &window_y, 0, &window_height);
3292 top = window_y;
3293 height = window_height;
3294 width = WINDOW_CONFIG_SCROLL_BAR_COLS (window) * FRAME_COLUMN_WIDTH (f);
3295 left = WINDOW_SCROLL_BAR_AREA_X (window);
3296
3297 if (top < 5) /* top scrollbar adjustment */
3298 {
3299 top -= FRAME_INTERNAL_BORDER_WIDTH (f);
3300 height += FRAME_INTERNAL_BORDER_WIDTH (f);
3301 }
3302
3303 /* allow for displaying a skinnier scrollbar than char area allotted */
3304 sb_width = (WINDOW_CONFIG_SCROLL_BAR_WIDTH (window) > 0) ?
3305 WINDOW_CONFIG_SCROLL_BAR_WIDTH (window) : width;
3306
3307 barOnVeryLeft = left < 5;
3308 barOnVeryRight = FRAME_PIXEL_WIDTH (f) - left - width < 5;
3309 sb_left = left + FRAME_INTERNAL_BORDER_WIDTH (f)
3310 * (barOnVeryLeft ? -1 : (barOnVeryRight ? 1 : 0));
3311
3312 r = NSMakeRect (sb_left, top, sb_width, height);
3313 /* the parent view is flipped, so we need to flip y value */
3314 v = [view frame];
3315 r.origin.y = (v.size.height - r.size.height - r.origin.y);
3316
3317 XSETWINDOW (win, window);
3318 BLOCK_INPUT;
3319
3320 /* we want at least 5 lines to display a scrollbar */
3321 if (WINDOW_TOTAL_LINES (window) < 5)
3322 {
3323 if (!NILP (window->vertical_scroll_bar))
3324 {
3325 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3326 [bar removeFromSuperview];
3327 window->vertical_scroll_bar = Qnil;
3328 }
3329 ns_clear_frame_area (f, sb_left, top, width, height);
3330 UNBLOCK_INPUT;
3331 return;
3332 }
3333
3334 if (NILP (window->vertical_scroll_bar))
3335 {
3336 ns_clear_frame_area (f, sb_left, top, width, height);
3337 bar = [[EmacsScroller alloc] initFrame: r window: win];
3338 window->vertical_scroll_bar = make_save_value (bar, 0);
3339 }
3340 else
3341 {
3342 NSRect oldRect;
3343 bar = XNS_SCROLL_BAR (window->vertical_scroll_bar);
3344 oldRect = [bar frame];
3345 r.size.width = oldRect.size.width;
3346 if (FRAME_LIVE_P (f) && !NSEqualRects (oldRect, r))
3347 {
3348 if (oldRect.origin.x != r.origin.x)
3349 ns_clear_frame_area (f, sb_left, top, width, height);
3350 [bar setFrame: r];
3351 }
3352 }
3353
3354 [bar setPosition: position portion: portion whole: whole];
3355 UNBLOCK_INPUT;
3356}
3357
3358
3359static void
3360ns_condemn_scroll_bars (struct frame *f)
3361/* --------------------------------------------------------------------------
3362 External (hook): arrange for all frame's scrollbars to be removed
3363 at next call to judge_scroll_bars, except for those redeemed.
3364 -------------------------------------------------------------------------- */
3365{
3366 int i;
3367 id view;
3368 NSArray *subviews = [[FRAME_NS_VIEW (f) superview] subviews];
3369
3370 NSTRACE (ns_condemn_scroll_bars);
3371
3372 for (i =[subviews count]-1; i >= 0; i--)
3373 {
3374 view = [subviews objectAtIndex: i];
3375 if ([view isKindOfClass: [EmacsScroller class]])
3376 [view condemn];
3377 }
3378}
3379
3380
3381static void
3382ns_redeem_scroll_bar (struct window *window)
3383/* --------------------------------------------------------------------------
3384 External (hook): arrange to spare this window's scrollbar
3385 at next call to judge_scroll_bars.
3386 -------------------------------------------------------------------------- */
3387{
3388 id bar;
3389 NSTRACE (ns_redeem_scroll_bar);
3390 if (!NILP (window->vertical_scroll_bar))
3391 {
3392 bar =XNS_SCROLL_BAR (window->vertical_scroll_bar);
3393 [bar reprieve];
3394 }
3395}
3396
3397
3398static void
3399ns_judge_scroll_bars (struct frame *f)
3400/* --------------------------------------------------------------------------
3401 External (hook): destroy all scrollbars on frame that weren't
3402 redeemed after call to condemn_scroll_bars.
3403 -------------------------------------------------------------------------- */
3404{
3405 int i;
3406 id view;
3407 NSArray *subviews = [[FRAME_NS_VIEW (f) superview] subviews];
3408 NSTRACE (ns_judge_scroll_bars);
3409 for (i =[subviews count]-1; i >= 0; i--)
3410 {
3411 view = [subviews objectAtIndex: i];
3412 if (![view isKindOfClass: [EmacsScroller class]]) continue;
3413 [view judge];
3414 }
3415}
3416
3417
3418
3419/* ==========================================================================
3420
3421 Miscellaneous, mainly stubbed-out functions added in 23
3422
3423 ========================================================================== */
3424
3425
3426void
3427x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y)
3428{
3429}
3430
3431
3432
3433/* ==========================================================================
3434
3435 Initialization
3436
3437 ========================================================================== */
3438
3439static Lisp_Object ns_string_to_lispmod (char *s)
3440/* --------------------------------------------------------------------------
3441 Convert modifier name to lisp symbol
3442 -------------------------------------------------------------------------- */
3443{
3444 if (!strncmp (SDATA (SYMBOL_NAME (Qmeta)), s, 10))
3445 return Qmeta;
3446 else if (!strncmp (SDATA (SYMBOL_NAME (Qsuper)), s, 10))
3447 return Qsuper;
3448 else if (!strncmp (SDATA (SYMBOL_NAME (Qcontrol)), s, 10))
3449 return Qcontrol;
3450 else if (!strncmp (SDATA (SYMBOL_NAME (Qalt)), s, 10))
3451 return Qalt;
3452 else if (!strncmp (SDATA (SYMBOL_NAME (Qhyper)), s, 10))
3453 return Qhyper;
3454 else if (!strncmp (SDATA (SYMBOL_NAME (Qnone)), s, 10))
3455 return Qnone;
3456 else
3457 return Qnil;
3458}
3459
3460
3461static Lisp_Object ns_mod_to_lisp (int m)
3462/* --------------------------------------------------------------------------
3463 Convert modifier code (see lisp.h) to lisp symbol
3464 -------------------------------------------------------------------------- */
3465{
3466 if (m == CHAR_META)
3467 return Qmeta;
3468 else if (m == CHAR_SUPER)
3469 return Qsuper;
3470 else if (m == CHAR_CTL)
3471 return Qcontrol;
3472 else if (m == CHAR_ALT)
3473 return Qalt;
3474 else if (m == CHAR_HYPER)
3475 return Qhyper;
3476 else /* if (m == 0) */
3477 return Qnone;
3478}
3479
3480
3481static void
3482ns_set_default_prefs ()
3483/* --------------------------------------------------------------------------
3484 Initialize preference variables to defaults
3485 -------------------------------------------------------------------------- */
3486{
3487 ns_alternate_modifier = Qmeta;
3488 ns_command_modifier = Qsuper;
3489 ns_control_modifier = Qcontrol;
3490 ns_function_modifier = Qnone;
3491 ns_cursor_blink_rate = Qnil;
3492 ns_cursor_blink_mode = Qnil;
3493 ns_expand_space = make_float (0.0);
5c976973
AR
3494 ns_antialias_text = Qt;
3495 ns_antialias_threshold = 10.0; /* not exposed to lisp side */
3496 ns_use_qd_smoothing = Qnil;
3497 ns_use_system_highlight_color = Qt;
edfda783
AR
3498}
3499
3500
3501static void
3502ns_default (const char *parameter, Lisp_Object *result,
3503 Lisp_Object yesval, Lisp_Object noval,
3504 BOOL is_float, BOOL is_modstring)
3505/* --------------------------------------------------------------------------
3506 Check a parameter value in user's preferences
3507 -------------------------------------------------------------------------- */
3508{
3509 const char *value;
3510
3511 if ( (value =[[[NSUserDefaults standardUserDefaults]
3512 stringForKey: [NSString stringWithUTF8String: parameter]]
3513 UTF8String]) )
3514 {
3515 double f;
3516 char *pos;
3517 if (strcasecmp (value, "YES") == 0)
3518 *result = yesval;
3519 else if (strcasecmp (value, "NO") == 0)
3520 *result = noval;
3521 else if (is_float && (f = strtod (value, &pos), pos != value))
3522 *result = make_float (f);
3523 else if (is_modstring && value)
3524 *result = ns_string_to_lispmod (value);
3525 else fprintf (stderr,
3526 "Bad value for default \"%s\": \"%s\"\n", parameter, value);
3527 }
3528}
3529
3530
3531void
3532ns_initialize_display_info (struct ns_display_info *dpyinfo)
3533/* --------------------------------------------------------------------------
3534 Initialize global info and storage for display.
3535 -------------------------------------------------------------------------- */
3536{
3537 NSScreen *screen = [NSScreen mainScreen];
3538 NSWindowDepth depth = [screen depth];
3539
3540 dpyinfo->width = [screen frame].size.width;
3541 dpyinfo->height = [screen frame].size.height;
3542 dpyinfo->resx = 72.27; /* used 75.0, but this makes pt == pixel, expected */
3543 dpyinfo->resy = 72.27;
3544 dpyinfo->color_p = ![NSDeviceWhiteColorSpace isEqualToString:
3545 NSColorSpaceFromDepth (depth)]
3546 && ![NSCalibratedWhiteColorSpace isEqualToString:
3547 NSColorSpaceFromDepth (depth)];
3548 dpyinfo->n_planes = NSBitsPerPixelFromDepth (depth);
3549 dpyinfo->image_cache = make_image_cache ();
facfbbbd
SM
3550 dpyinfo->color_table
3551 = (struct ns_color_table *)xmalloc (sizeof (struct ns_color_table));
edfda783
AR
3552 dpyinfo->color_table->colors = NULL;
3553 dpyinfo->root_window = 42; /* a placeholder.. */
3554
3555 dpyinfo->mouse_face_mouse_frame = NULL;
3556 dpyinfo->mouse_face_deferred_gc = 0;
3557 dpyinfo->mouse_face_beg_row = dpyinfo->mouse_face_beg_col = -1;
3558 dpyinfo->mouse_face_end_row = dpyinfo->mouse_face_end_col = -1;
3559 dpyinfo->mouse_face_face_id = DEFAULT_FACE_ID;
3560 dpyinfo->mouse_face_window = dpyinfo->mouse_face_overlay = Qnil;
3561 dpyinfo->mouse_face_hidden = 0;
3562
3563 dpyinfo->mouse_face_mouse_x = dpyinfo->mouse_face_mouse_y = 0;
3564 dpyinfo->mouse_face_defer = 0;
3565
3566 dpyinfo->ns_highlight_frame = dpyinfo->ns_focus_frame = NULL;
3567
3568 dpyinfo->n_fonts = 0;
3569 dpyinfo->smallest_font_height = 1;
3570 dpyinfo->smallest_char_width = 1;
3571}
3572
3573
3574/* 23: Needed as new part of display engine; this and next define public
3575 functions in this file (well, many of them, anyway). */
3576/* x_... are generic versions in xdisp.c that we, and other terms, get away
3577 with using despite presence in the "system dependent" redisplay
3578 interface. In addition, many of the ns_ methods have code that is
3579 shared with all terms, indicating need for further refactoring. */
3580extern frame_parm_handler ns_frame_parm_handlers[];
3581static struct redisplay_interface ns_redisplay_interface =
3582{
3583 ns_frame_parm_handlers,
3584 x_produce_glyphs, /*generic OK */
3585 x_write_glyphs, /*generic OK */
3586 x_insert_glyphs, /*generic OK */
3587 x_clear_end_of_line, /*generic OK */
3588 ns_scroll_run, /*23 */
3589 ns_after_update_window_line, /*23: added */
3590 ns_update_window_begin, /*23: split from update_begin */
3591 ns_update_window_end, /*23: split from update_end */
3592 x_cursor_to, /*generic OK */
3593 ns_flush,
3594 0, /* flush_display_optional */
3595 x_clear_window_mouse_face, /*generic OK */
3596 x_get_glyph_overhangs, /*23: generic OK */
3597 x_fix_overlapping_area, /*generic OK */
3598 ns_draw_fringe_bitmap, /*23 */
3599 0, /* define_fringe_bitmap */ /*PENDING: simplify ns_draw_fringe_bitmap? */
3600 0, /* destroy_fringe_bitmap */
3601 ns_compute_glyph_string_overhangs, /*23 */
3602 ns_draw_glyph_string, /*23: interface to nsfont.m */
3603 ns_define_frame_cursor, /*23 */
3604 ns_clear_frame_area, /*23 */
3605 ns_draw_window_cursor, /*23: revamped ns_dumpcursor */
3606 ns_draw_vertical_window_border,
3607 ns_shift_glyphs_for_insert
3608};
3609
3610
3611static void
3612ns_delete_display (struct ns_display_info *dpyinfo)
3613{
3614 /*PENDING... */
3615}
3616
3617
3618/* This function is called when the last frame on a display is deleted. */
3619static void
3620ns_delete_terminal (struct terminal *terminal)
3621{
3622 struct ns_display_info *dpyinfo = terminal->display_info.ns;
3623 int i;
3624
3625 /* Protect against recursive calls. Fdelete_frame in
3626 delete_terminal calls us back when it deletes our last frame. */
3627 if (!terminal->name)
3628 return;
3629
3630 BLOCK_INPUT;
3631
3632 x_destroy_all_bitmaps (dpyinfo);
3633 ns_delete_display (dpyinfo);
3634 UNBLOCK_INPUT;
3635}
3636
3637
3638static struct terminal *
3639ns_create_terminal (struct ns_display_info *dpyinfo)
3640/* --------------------------------------------------------------------------
3641 Set up use of NS before we make the first connection.
3642 -------------------------------------------------------------------------- */
3643{
3644 struct terminal *terminal;
3645
3646 NSTRACE (ns_create_terminal);
3647
3648 terminal = create_terminal ();
3649
3650 terminal->type = output_ns;
3651 terminal->display_info.ns = dpyinfo;
3652 dpyinfo->terminal = terminal;
3653
3654 terminal->rif = &ns_redisplay_interface;
3655
3656 terminal->clear_frame_hook = ns_clear_frame;
3657 terminal->ins_del_lines_hook = 0; /* 23: vestigial? */
3658 terminal->delete_glyphs_hook = 0; /* 23: vestigial? */
3659 terminal->ring_bell_hook = ns_ring_bell;
3660 terminal->reset_terminal_modes_hook = ns_reset_terminal_modes;
3661 terminal->set_terminal_modes_hook = ns_set_terminal_modes;
3662 terminal->update_begin_hook = ns_update_begin;
3663 terminal->update_end_hook = ns_update_end;
3664 terminal->set_terminal_window_hook = NULL; /* 23: vestigial? */
3665 terminal->read_socket_hook = ns_read_socket;
3666 terminal->frame_up_to_date_hook = ns_frame_up_to_date;
3667 terminal->mouse_position_hook = ns_mouse_position;
3668 terminal->frame_rehighlight_hook = ns_frame_rehighlight;
3669 terminal->frame_raise_lower_hook = ns_frame_raise_lower;
3670
3671 terminal->fullscreen_hook = 0; /*XTfullscreen_hook;//23.50 */
3672
3673 terminal->set_vertical_scroll_bar_hook = ns_set_vertical_scroll_bar;
3674 terminal->condemn_scroll_bars_hook = ns_condemn_scroll_bars;
3675 terminal->redeem_scroll_bar_hook = ns_redeem_scroll_bar;
3676 terminal->judge_scroll_bars_hook = ns_judge_scroll_bars;
3677
3678 terminal->delete_frame_hook = x_destroy_window;
3679 terminal->delete_terminal_hook = ns_delete_terminal;
3680
3681 terminal->scroll_region_ok = 1;
3682 terminal->char_ins_del_ok = 1;
3683 terminal->line_ins_del_ok = 1;
3684 terminal->fast_clear_end_of_line = 1;
3685 terminal->memory_below_frame = 0;
3686
3687 return terminal;
3688}
3689
3690
3691void
3692ns_initialize ()
3693/* --------------------------------------------------------------------------
3694 Mainly vestigial under NS now that ns_create_terminal () does most things.
3695 -------------------------------------------------------------------------- */
3696{
3697 baud_rate = 38400;
3698 Fset_input_interrupt_mode (Qt);
3699}
3700
3701
3702struct ns_display_info *
3703ns_term_init (Lisp_Object display_name)
3704/* --------------------------------------------------------------------------
3705 Start the Application and get things rolling.
3706 -------------------------------------------------------------------------- */
3707{
3708 extern Lisp_Object Fset_input_mode (Lisp_Object, Lisp_Object,
3709 Lisp_Object, Lisp_Object);
3710 struct terminal *terminal;
3711 struct ns_display_info *dpyinfo;
3712 static int ns_initialized = 0;
3713 Lisp_Object tmp;
3714
3715 NSTRACE (ns_term_init);
3716
3717 /* count object allocs (About, click icon); on OS X use ObjectAlloc tool */
3718 /*GSDebugAllocationActive (YES); */
3719 BLOCK_INPUT;
3720handling_signal = 0;
3721
3722 if (!ns_initialized)
3723 {
3724 ns_initialize ();
3725 ns_initialized = 1;
3726 }
3727
3728 ns_pending_files = [[NSMutableArray alloc] init];
3729 ns_pending_service_names = [[NSMutableArray alloc] init];
3730 ns_pending_service_args = [[NSMutableArray alloc] init];
3731
3732 /* Start app and create the main menu, window, view.
3733 Needs to be here because ns_initialize_display_info () uses AppKit classes.
3734 The view will then ask the NSApp to stop and return to Emacs. */
3735 [EmacsApp sharedApplication];
3736 if (NSApp == nil)
3737 return NULL;
3738 [NSApp setDelegate: NSApp];
3739
3740 /* debugging: log all notifications */
3741 /* [[NSNotificationCenter defaultCenter] addObserver: NSApp
3742 selector: @selector (logNotification:)
3743 name: nil object: nil]; */
3744
3745 dpyinfo = (struct ns_display_info *)xmalloc (sizeof (struct ns_display_info));
3746 bzero (dpyinfo, sizeof (struct ns_display_info));
3747
3748 ns_initialize_display_info (dpyinfo);
3749 terminal = ns_create_terminal (dpyinfo);
3750
3751 terminal->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
3752 init_kboard (terminal->kboard);
3753 terminal->kboard->Vwindow_system = Qns;
3754 terminal->kboard->next_kboard = all_kboards;
3755 all_kboards = terminal->kboard;
3756 /* Don't let the initial kboard remain current longer than necessary.
3757 That would cause problems if a file loaded on startup tries to
3758 prompt in the mini-buffer. */
3759 if (current_kboard == initial_kboard)
3760 current_kboard = terminal->kboard;
3761 terminal->kboard->reference_count++;
3762
3763 dpyinfo->next = ns_display_list;
3764 ns_display_list = dpyinfo;
3765
3766 /* Put it on ns_display_name_list */
3767 ns_display_name_list = Fcons (Fcons (display_name, Qnil),
3768 ns_display_name_list);
3769/* ns_display_name_list = Fcons (Fcons (display_name,
3770 Fcons (Qnil, dpyinfo->xrdb)),
3771 ns_display_name_list); */
3772 dpyinfo->name_list_element = XCAR (ns_display_name_list);
3773
3774 /* Set the name of the terminal. */
3775 terminal->name = (char *) xmalloc (SBYTES (display_name) + 1);
3776 strncpy (terminal->name, SDATA (display_name), SBYTES (display_name));
3777 terminal->name[SBYTES (display_name)] = 0;
3778
3779 UNBLOCK_INPUT;
3780
3781 /* Read various user defaults. */
3782 ns_set_default_prefs ();
3783 ns_default ("AlternateModifier", &ns_alternate_modifier,
3784 Qnil, Qnil, NO, YES);
3785 if (NILP (ns_alternate_modifier))
3786 ns_alternate_modifier = Qmeta;
3787 ns_default ("CommandModifier", &ns_command_modifier,
3788 Qnil, Qnil, NO, YES);
3789 if (NILP (ns_command_modifier))
3790 ns_command_modifier = Qsuper;
3791 ns_default ("ControlModifier", &ns_control_modifier,
3792 Qnil, Qnil, NO, YES);
3793 if (NILP (ns_control_modifier))
3794 ns_control_modifier = Qcontrol;
3795 ns_default ("FunctionModifier", &ns_function_modifier,
3796 Qnil, Qnil, NO, YES);
3797 if (NILP (ns_function_modifier))
3798 ns_function_modifier = Qnone;
3799 ns_default ("CursorBlinkRate", &ns_cursor_blink_rate,
3800 make_float (0.5), Qnil, YES, NO);
3801 if (NUMBERP (ns_cursor_blink_rate))
3802 ns_cursor_blink_mode = Qt;
3803 ns_default ("ExpandSpace", &ns_expand_space,
3804 make_float (0.5), make_float (0.0), YES, NO);
3805 ns_default ("GSFontAntiAlias", &ns_antialias_text,
facfbbbd 3806 Qt, Qnil, NO, NO);
edfda783
AR
3807 tmp = Qnil;
3808 ns_default ("AppleAntiAliasingThreshold", &tmp,
3809 make_float (10.0), make_float (6.0), YES, NO);
3810 ns_antialias_threshold = NILP (tmp) ? 10.0 : XFLOATINT (tmp);
3811 ns_default ("UseQuickdrawSmoothing", &ns_use_qd_smoothing,
facfbbbd 3812 Qt, Qnil, NO, NO);
5c976973 3813fprintf(stderr, "qd smoothing: %d (%d, %d)\n", ns_use_qd_smoothing, EQ(ns_use_qd_smoothing, Qt), NILP(ns_use_qd_smoothing));
edfda783 3814 ns_default ("UseSystemHighlightColor", &ns_use_system_highlight_color,
facfbbbd 3815 Qt, Qnil, NO, NO);
5c976973 3816 if (EQ (ns_use_system_highlight_color, Qt))
edfda783
AR
3817 {
3818 ns_selection_color = [[NSUserDefaults standardUserDefaults]
3819 stringForKey: @"AppleHighlightColor"];
3820 if (ns_selection_color == nil)
3821 ns_selection_color = NS_SELECTION_COLOR_DEFAULT;
3822 }
3823 else
3824 ns_selection_color = NS_SELECTION_COLOR_DEFAULT;
3825
3826 {
3827 id cl;
3828 Lisp_Object tem, tem1;
3829 extern Lisp_Object Vsource_directory;
3830
3831 cl = [NSColorList colorListNamed: @"Emacs"];
3832
3833 if ( cl == nil )
3834 {
3835 /* first try data_dir, then invocation-dir
3836 and finally source-directory/etc */
facfbbbd
SM
3837 tem1 = tem
3838 = Fexpand_file_name (build_string ("Emacs.clr"), Vdata_directory);
edfda783
AR
3839 if (NILP (Ffile_exists_p (tem)))
3840 {
3841 tem = Fexpand_file_name (build_string ("Emacs.clr"),
3842 Vinvocation_directory);
3843 if (NILP (Ffile_exists_p (tem)))
3844 {
facfbbbd
SM
3845 Lisp_Object newdir
3846 = Fexpand_file_name (build_string ("etc/"),
3847 Vsource_directory);
edfda783
AR
3848 tem = Fexpand_file_name (build_string ("Emacs.clr"),
3849 newdir);
3850 }
3851 }
3852
3853 cl = [[NSColorList alloc]
3854 initWithName: @"Emacs"
6882361b 3855 fromFile: [NSString stringWithCString: SDATA (tem)]];
edfda783 3856 if (cl ==nil)
6882361b 3857 fatal ("Could not find %s.\n", SDATA (tem1));
edfda783
AR
3858 [cl writeToFile: nil];
3859 }
3860 }
3861
3862 {
3863 char c[128];
3864#ifdef NS_IMPL_GNUSTEP
3865 strncpy (c, gnustep_base_version, sizeof (c));
3866#else
3867 /*PSnextrelease (128, c); */
3868 snprintf (c, sizeof (c), "%g", NSAppKitVersionNumber);
3869#endif
3870 Vwindow_system_version = build_string (c);
3871 }
3872
3873 delete_keyboard_wait_descriptor (0);
3874
3875/* Set up OS X app menu */
3876#ifdef NS_IMPL_COCOA
3877 {
3878 NSMenu *appMenu;
3879 id<NSMenuItem> item;
3880 /* set up the application menu */
3881 svcsMenu = [[EmacsMenu alloc] initWithTitle: @"Services"];
3882 [svcsMenu setAutoenablesItems: NO];
3883 appMenu = [[EmacsMenu alloc] initWithTitle: @"Emacs"];
3884 [appMenu setAutoenablesItems: NO];
3885 mainMenu = [[EmacsMenu alloc] initWithTitle: @""];
3886
3887 [appMenu insertItemWithTitle: @"About Emacs"
3888 action: @selector (orderFrontStandardAboutPanel:)
3889 keyEquivalent: @""
3890 atIndex: 0];
3891 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 1];
3892 [appMenu insertItemWithTitle: @"Preferences..."
3893 action: @selector (showPreferencesWindow:)
3894 keyEquivalent: @","
3895 atIndex: 2];
3896 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 3];
3897 item = [appMenu insertItemWithTitle: @"Services"
3898 action: @selector (menuDown:)
3899 keyEquivalent: @""
3900 atIndex: 4];
3901 [appMenu setSubmenu: svcsMenu forItem: item];
3902/* [svcsMenu setSupercell: item]; */
3903 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 5];
3904 [appMenu insertItemWithTitle: @"Hide Emacs"
3905 action: @selector (hide:)
3906 keyEquivalent: @"h"
3907 atIndex: 6];
3908 item = [appMenu insertItemWithTitle: @"Hide Others"
3909 action: @selector (hideOtherApplications:)
3910 keyEquivalent: @"h"
3911 atIndex: 7];
3912 [item setKeyEquivalentModifierMask: NSCommandKeyMask | NSAlternateKeyMask];
3913 [appMenu insertItem: [NSMenuItem separatorItem] atIndex: 8];
3914 [appMenu insertItemWithTitle: @"Quit Emacs"
3915 action: @selector (terminate:)
3916 keyEquivalent: @"q"
3917 atIndex: 9];
3918
3919 item = [mainMenu insertItemWithTitle: @"Emacs"
3920 action: @selector (menuDown:)
3921 keyEquivalent: @""
3922 atIndex: 0];
3923 [mainMenu setSubmenu: appMenu forItem: item];
3924
3925 [NSApp setMainMenu: mainMenu];
3926 [NSApp setAppleMenu: appMenu];
3927 [NSApp setServicesMenu: svcsMenu];
3928 /* Needed at least on Cocoa, to get dock menu to show windows */
3929 [NSApp setWindowsMenu: [[NSMenu alloc] init]];
3930 }
3931#endif /* MAC OS X menu setup */
3932
3933 [NSApp run];
3934
3935 return dpyinfo;
3936}
3937
3938
3939extern Lisp_Object Vauto_save_list_file_name;
3940void
3941ns_term_shutdown (int sig)
3942{
3943 /* code not reached in emacs.c after this is called by shut_down_emacs: */
3944 if (STRINGP (Vauto_save_list_file_name))
6882361b 3945 unlink (SDATA (Vauto_save_list_file_name));
edfda783
AR
3946
3947 ns_shutdown_properly = YES;
3948 [NSApp terminate: NSApp];
3949}
3950
3951
3952void
3953syms_of_nsterm ()
3954{
3955 NSTRACE (syms_of_nsterm);
3956 DEFVAR_LISP ("ns-input-file", &ns_input_file,
3957 "The file specified in the last NS event.");
3958 ns_input_file =Qnil;
3959
3960 DEFVAR_LISP ("ns-input-text", &ns_input_text,
3961 "The data received in the last NS text drag event.");
3962 ns_input_text =Qnil;
3963
3964 DEFVAR_LISP ("ns-working-text", &ns_working_text,
3965 "String for visualizing working composition sequence.");
3966 ns_working_text =Qnil;
3967
3968 DEFVAR_LISP ("ns-input-font", &ns_input_font,
3969 "The font specified in the last NS event.");
3970 ns_input_font =Qnil;
3971
3972 DEFVAR_LISP ("ns-input-fontsize", &ns_input_fontsize,
3973 "The fontsize specified in the last NS event.");
3974 ns_input_fontsize =Qnil;
3975
3976 DEFVAR_LISP ("ns-input-line", &ns_input_line,
3977 "The line specified in the last NS event.");
3978 ns_input_line =Qnil;
3979
3980 DEFVAR_LISP ("ns-input-color", &ns_input_color,
3981 "The color specified in the last NS event.");
3982 ns_input_color =Qnil;
3983
3984 DEFVAR_LISP ("ns-input-spi-name", &ns_input_spi_name,
3985 "The service name specified in the last NS event.");
3986 ns_input_spi_name =Qnil;
3987
3988 DEFVAR_LISP ("ns-input-spi-arg", &ns_input_spi_arg,
3989 "The service argument specified in the last NS event.");
3990 ns_input_spi_arg =Qnil;
3991
3992 DEFVAR_LISP ("ns-alternate-modifier", &ns_alternate_modifier,
3993 "This variable describes the behavior of the alternate or option key.\n\
3994Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
3995Set to none means that the alternate / option key is not interpreted by Emacs\n\
3996at all, allowing it to be used at a lower level for accented character entry.");
3997
3998 DEFVAR_LISP ("ns-command-modifier", &ns_command_modifier,
3999 "This variable describes the behavior of the command key.\n\
4000Set to control, meta, alt, super, or hyper means it is taken to be that key.");
4001
4002 DEFVAR_LISP ("ns-control-modifier", &ns_control_modifier,
4003 "This variable describes the behavior of the control key.\n\
4004Set to control, meta, alt, super, or hyper means it is taken to be that key.");
4005
4006 DEFVAR_LISP ("ns-function-modifier", &ns_function_modifier,
4007 "This variable describes the behavior of the function key (on laptops).\n\
4008Set to control, meta, alt, super, or hyper means it is taken to be that key.\n\
4009Set to none means that the function key is not interpreted by Emacs at all,\n\
4010allowing it to be used at a lower level for accented character entry.");
4011
4012 DEFVAR_LISP ("ns-cursor-blink-rate", &ns_cursor_blink_rate,
4013 "Rate at which the Emacs cursor blinks (in seconds).\n\
4014Set to nil to disable blinking.");
4015
4016 DEFVAR_LISP ("ns-cursor-blink-mode", &ns_cursor_blink_mode,
4017 "Internal variable -- use M-x blink-cursor-mode or preferences\n\
4018panel to control this setting.");
4019
4020 DEFVAR_LISP ("ns-expand-space", &ns_expand_space,
4021 "Amount by which spacing between lines is expanded (positive)\n\
4022or shrunk (negative). Zero (the default) means standard line height.\n\
4023(This variable should only be read, never set.)");
4024
5c976973 4025 DEFVAR_LISP ("ns-antialias-text", &ns_antialias_text,
edfda783
AR
4026 "Non-nil (the default) means to render text antialiased. Only has an effect on OS X Panther and above.");
4027
5c976973 4028 DEFVAR_LISP ("ns-use-qd-smoothing", &ns_use_qd_smoothing,
edfda783
AR
4029 "Whether to render text using QuickDraw (less heavy) antialiasing. Only has an effect on OS X Panther and above. Default is nil (use Quartz smoothing).");
4030
5c976973 4031 DEFVAR_LISP ("ns-use-system-highlight-color",
edfda783
AR
4032 &ns_use_system_highlight_color,
4033 "Whether to use the system default (on OS X only) for the highlight color. Nil means to use standard emacs (prior to version 21) 'grey'.");
4034
4035 staticpro (&ns_display_name_list);
4036 ns_display_name_list = Qnil;
4037
4038 staticpro (&last_mouse_motion_frame);
4039 last_mouse_motion_frame = Qnil;
4040
4041/*23: now apparently we need to tell emacs what modifiers there are.. */
4042 Qmodifier_value = intern ("modifier-value");
4043 Qalt = intern ("alt");
4044 Fput (Qalt, Qmodifier_value, make_number (alt_modifier));
4045 Qhyper = intern ("hyper");
4046 Fput (Qhyper, Qmodifier_value, make_number (hyper_modifier));
4047 Qmeta = intern ("meta");
4048 Fput (Qmeta, Qmodifier_value, make_number (meta_modifier));
4049 Qsuper = intern ("super");
4050 Fput (Qsuper, Qmodifier_value, make_number (super_modifier));
4051 Qcontrol = intern ("control");
4052 Fput (Qcontrol, Qmodifier_value, make_number (ctrl_modifier));
4053
4054 /*PENDING: move to common code */
4055 DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars,
4056 doc: /* If not nil, Emacs uses toolkit scroll bars. */);
4057#ifdef USE_TOOLKIT_SCROLL_BARS
4058 Vx_toolkit_scroll_bars = Qt;
4059#else
4060 Vx_toolkit_scroll_bars = Qnil;
4061#endif
4062
4063 /* these are unsupported but we need the declarations to avoid whining
4064 messages from cus-start.el */
4065 DEFVAR_BOOL ("x-use-underline-position-properties",
4066 &x_use_underline_position_properties,
4067 doc: /* NOT SUPPORTED UNDER NS.
4068*Non-nil means make use of UNDERLINE_POSITION font properties.
4069A value of nil means ignore them. If you encounter fonts with bogus
4070UNDERLINE_POSITION font properties, for example 7x13 on XFree prior
4071to 4.1, set this to nil.
4072
4073NOTE: Not supported on Mac yet. */);
4074 x_use_underline_position_properties = 0;
4075
4076 DEFVAR_BOOL ("x-underline-at-descent-line",
4077 &x_underline_at_descent_line,
4078 doc: /* NOT SUPPORTED UNDER NS.
4079*Non-nil means to draw the underline at the same place as the descent line.
4080A value of nil means to draw the underline according to the value of the
4081variable `x-use-underline-position-properties', which is usually at the
4082baseline level. The default value is nil. */);
4083 x_underline_at_descent_line = 0;
4084
4085 /* Tell emacs about this window system. */
4086 Fprovide (intern ("ns-windowing"), Qnil);
4087 /* PENDING: try to move this back into lisp (ns-win.el loaded too late
4088 right now */
4089 {
4090 Lisp_Object args[3] = { intern ("ns-version-string"), build_string ("9.0"),
4091 build_string ("NS Window system port version number.") };
4092 Fdefconst (Flist (3, args));
4093 }
4094}
4095
4096
4097
4098/* ==========================================================================
4099
4100 EmacsApp implementation
4101
4102 ========================================================================== */
4103
4104
4105@implementation EmacsApp
4106
4107- (void)logNotification: (NSNotification *)notification
4108{
4109 const char *name = [[notification name] UTF8String];
4110 if (!strstr (name, "Update") && !strstr (name, "NSMenu")
4111 && !strstr (name, "WindowNumber"))
4112 NSLog (@"notification: '%@'", [notification name]);
4113}
4114
4115
4116- (void)sendEvent: (NSEvent *)theEvent
4117/* --------------------------------------------------------------------------
4118 Events posted by ns_send_appdefined interrupt the run loop here
4119 -------------------------------------------------------------------------- */
4120{
4121 int type = [theEvent type];
4122 NSWindow *window = [theEvent window];
4123/* NSTRACE (sendEvent); */
4124/*fprintf (stderr, "received event of type %d\n", [theEvent type]); */
4125
4126 if (type == NSCursorUpdate && window == nil)
4127 {
4128 fprintf (stderr, "Dropping external cursor update event.\n");
4129 return;
4130 }
4131
4132#ifdef NS_IMPL_COCOA
4133 /* pass mouse down in resize handle and subsequent drags directly to
4134 EmacsWindow so we can generate continuous redisplays */
4135 if (ns_in_resize)
4136 {
4137 if (type == NSLeftMouseDragged)
4138 {
4139 [window mouseDragged: theEvent];
4140 return;
4141 }
4142 else if (type == NSLeftMouseUp)
4143 {
4144 [window mouseUp: theEvent];
4145 return;
4146 }
4147 }
4148 else if (type == NSLeftMouseDown)
4149 {
4150 NSRect r = ns_resize_handle_rect (window);
4151 if (NSPointInRect ([theEvent locationInWindow], r))
4152 {
4153 ns_in_resize = YES;
4154 [window mouseDown: theEvent];
4155 return;
4156 }
4157 }
4158#endif
4159
4160 if (type == NSApplicationDefined)
4161 {
4162 last_appdefined_event = theEvent;
4163 [self stop: self];
4164 }
4165
4166 [super sendEvent: theEvent];
4167}
4168
4169
4170- (void)showPreferencesWindow: (id)sender
4171{
4172 if (prefsController == nil)
4173 prefsController = [[EmacsPrefsController alloc] init];
4174 [prefsController showForFrame: SELECTED_FRAME ()];
4175}
4176
4177
4178/* **************************************************************************
4179
4180 EmacsApp delegate implementation
4181
4182 ************************************************************************** */
4183
4184- (void)applicationDidFinishLaunching: (NSNotification *)notification
4185/* --------------------------------------------------------------------------
4186 When application is loaded, terminate event loop in ns_term_init
4187 -------------------------------------------------------------------------- */
4188{
4189 NSTRACE (applicationDidFinishLaunching);
4190 [NSApp setServicesProvider: NSApp];
4191 ns_send_appdefined (-2);
4192}
4193
4194
4195- (void) terminate: (id)sender
4196{
4197 BLOCK_INPUT;
4198 if (ns_shutdown_properly)
4199 [super terminate: sender];
4200 else
4201 {
4202/* Fkill_emacs (Qnil); */
4203 ns_shutdown_properly = YES;
4204 Feval (Fcons (intern ("save-buffers-kill-emacs"), Qnil));
4205 }
4206 UNBLOCK_INPUT;
4207}
4208
4209
4210- (NSApplicationTerminateReply)applicationShouldTerminate: (id)sender
4211{
4212 if (ns_shutdown_properly)
4213 return NSTerminateNow;
4214
4215 Lisp_Object contents = list3 (build_string ("Exit requested. Would you like to Save Buffers and Exit, or Cancel the request?"),
4216 Fcons (build_string ("Cancel"), Qnil),
4217 Fcons (build_string ("Save and Exit"), Qt));
4218 Lisp_Object res = ns_popup_dialog (Qt, contents, Qnil);
facfbbbd
SM
4219fprintf (stderr, "res = %d\n", EQ (res, Qt)); // FIXME
4220 if (EQ (res, Qt))
edfda783
AR
4221 {
4222 Feval (Fcons (intern ("save-buffers-kill-emacs"), Qnil));
4223 return NSTerminateNow;
4224 }
4225 return NSTerminateCancel;
4226}
4227
4228
4229/* Open a file (used by below, after going into queue read by ns_read_socket) */
4230-(BOOL) openFile: (NSString *)fileName
4231{
4232 struct frame *emacsframe = SELECTED_FRAME ();
4233 NSEvent *theEvent = [NSApp currentEvent];
4234
4235 if (!emacs_event)
4236 return NO;
4237
4238 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4239 emacs_event->code = KEY_NS_OPEN_FILE_LINE;
4240 ns_input_file = append2 (ns_input_file, build_string ([fileName UTF8String]));
4241 ns_input_line = Qnil; /* can be start or cons start,end */
4242 emacs_event->modifiers =0;
4243 EV_TRAILER (theEvent);
4244
4245 return YES;
4246}
4247
4248
4249/* Notification from the Workspace to open a file */
4250- (BOOL)application: sender openFile: (NSString *)file
4251{
4252 [ns_pending_files addObject: file];
4253 return YES;
4254}
4255
4256
4257/* Open a file as a temporary file */
4258- (BOOL)application: sender openTempFile: (NSString *)file
4259{
4260 [ns_pending_files addObject: file];
4261 return YES;
4262}
4263
4264
4265/* Notification from the Workspace to open a file noninteractively (?) */
4266- (BOOL)application: sender openFileWithoutUI: (NSString *)file
4267{
4268 [ns_pending_files addObject: file];
4269 return YES;
4270}
4271
4272
4273/* Notification from the Workspace to open multiple files */
4274- (void)application: sender openFiles: (NSArray *)fileList
4275{
4276 NSEnumerator *files = [fileList objectEnumerator];
4277 NSString *file;
4278 while ((file = [files nextObject]) != nil)
4279 [ns_pending_files addObject: file];
4280 return YES;
4281}
4282
4283/*PENDING: these may help w/IO switching btwn terminal and NSApp */
4284- (void)applicationDidBecomeActive: (NSNotification *)notification
4285{
4286}
4287- (void)applicationDidResignActive: (NSNotification *)notification
4288{
4289 ns_send_appdefined (-1);
4290}
4291
4292
4293
4294/* ==========================================================================
4295
4296 EmacsApp aux handlers for managing event loop
4297
4298 ========================================================================== */
4299
4300
4301- (void)timeout_handler: (NSTimer *)timedEntry
4302/* --------------------------------------------------------------------------
4303 The timeout specified to ns_select has passed.
4304 -------------------------------------------------------------------------- */
4305{
4306 /*NSTRACE (timeout_handler); */
4307 ns_send_appdefined (-2);
4308}
4309
4310extern void update_window_cursor (struct window *w, int on);
4311
4312- (void)cursor_blink_handler: (NSTimer *)cursorEntry
4313/* --------------------------------------------------------------------------
4314 Flash the cursor
4315 -------------------------------------------------------------------------- */
4316{
4317 struct ns_display_info *dpyinfo = ns_display_list; /*HACK, but OK for now */
4318 struct frame *f = dpyinfo->ns_highlight_frame;
4319 NSTRACE (cursor_blink_handler);
4320
4321 if (!f)
4322 return;
4323 if (f->output_data.ns->current_cursor == no_highlight)
4324 {
4325 Lisp_Object tem = get_frame_param (f, Qcursor_type);
4326 f->output_data.ns->desired_cursor = ns_lisp_to_cursor_type (tem);
4327 }
4328 else
4329 {
4330 f->output_data.ns->desired_cursor = no_highlight;
4331 }
4332 update_window_cursor (XWINDOW (FRAME_SELECTED_WINDOW (f)), 1);
4333 /*x_update_cursor (f, 1); */
4334}
4335
4336
4337- (void)fd_handler: (NSTimer *) fdEntry
4338/* --------------------------------------------------------------------------
4339 Check data waiting on file descriptors and terminate if so
4340 -------------------------------------------------------------------------- */
4341{
4342 int result;
4343 /* NSTRACE (fd_handler); */
4344
4345 if (select_nfds == 0)
4346 return;
4347
4348 memcpy (&t_readfds, &select_readfds, sizeof (fd_set));
4349
4350 select_timeout.tv_sec = select_timeout.tv_usec = 0;
4351 result = select (select_nfds, &t_readfds, (SELECT_TYPE *)0, (SELECT_TYPE *)0,
4352 &select_timeout);
4353 if (result)
4354 {
4355 memcpy (&select_readfds, &t_readfds, sizeof (fd_set));
4356 ns_send_appdefined (result);
4357 }
4358}
4359
4360
4361
4362/* ==========================================================================
4363
4364 Service provision
4365
4366 ========================================================================== */
4367
4368/* called from system: queue for next pass through event loop */
4369- (void)requestService: (NSPasteboard *)pboard
4370 userData: (NSString *)userData
4371 error: (NSString **)error
4372{
4373 [ns_pending_service_names addObject: userData];
4374 [ns_pending_service_args addObject: [NSString stringWithUTF8String:
4375 SDATA (ns_string_from_pasteboard (pboard))]];
4376}
4377
4378
4379/* called from ns_read_socket to clear queue */
4380- (BOOL)fulfillService: (NSString *)name withArg: (NSString *)arg
4381{
4382 struct frame *emacsframe = SELECTED_FRAME ();
4383 NSEvent *theEvent = [NSApp currentEvent];
4384
4385 if (!emacs_event)
4386 return NO;
4387
4388 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4389 emacs_event->code = KEY_NS_SPI_SERVICE_CALL;
4390 ns_input_spi_name = build_string ([name UTF8String]);
4391 ns_input_spi_arg = build_string ([arg UTF8String]);
4392 emacs_event->modifiers = EV_MODIFIERS (theEvent);
4393 EV_TRAILER (theEvent);
4394
4395 return YES;
4396}
4397
4398
4399@end /* EmacsApp */
4400
4401
4402
4403/* ==========================================================================
4404
4405 EmacsView implementation
4406
4407 ========================================================================== */
4408
4409
4410@implementation EmacsView
4411
4412/* needed to inform when window closed from LISP */
4413- (void) setWindowClosing: (BOOL)closing
4414{
4415 windowClosing = closing;
4416}
4417
4418
4419- (void)dealloc
4420{
4421 NSTRACE (EmacsView_dealloc);
4422 [toolbar release];
4423 [super dealloc];
4424}
4425
4426
4427/* called on font panel selection */
4428- (void)changeFont: (id)sender
4429{
4430 NSEvent *e =[[self window] currentEvent];
4431 struct face *face =FRAME_DEFAULT_FACE (emacsframe);
4432 id newFont;
4433 float size;
4434
4435 NSTRACE (changeFont);
4436 if (!emacs_event)
4437 return;
4438
4439 if (newFont = [sender convertFont:
4440 ((struct nsfont_info *)face->font)->nsfont])
4441 {
4442 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4443 emacs_event->modifiers = 0;
4444 emacs_event->code = KEY_NS_CHANGE_FONT;
4445
4446 size = [newFont pointSize];
ed96cde8 4447 ns_input_fontsize = make_number (lrint (size));
edfda783
AR
4448 ns_input_font = build_string ([[newFont familyName] UTF8String]);
4449 EV_TRAILER (e);
4450 }
4451}
4452
4453
4454- (BOOL)acceptsFirstResponder
4455{
4456 NSTRACE (acceptsFirstResponder);
4457 return YES;
4458}
4459
4460
4461- (void)resetCursorRects
4462{
4463 NSRect visible = [self visibleRect];
4464 NSCursor *currentCursor = FRAME_POINTER_TYPE (emacsframe);
4465 NSTRACE (resetCursorRects);
4466
4467 if (currentCursor == nil)
4468 currentCursor = [NSCursor arrowCursor];
4469
4470 if (!NSIsEmptyRect (visible))
4471 [self addCursorRect: visible cursor: currentCursor];
4472 [currentCursor setOnMouseEntered: YES];
4473}
4474
4475
4476/*****************************************************************************/
4477/* Keyboard handling. */
4478#define NS_KEYLOG 0
4479
4480- (void)keyDown: (NSEvent *)theEvent
4481{
4482 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
4483 int code;
4484 unsigned fnKeysym = 0;
4485 int flags;
4486 static NSMutableArray *nsEvArray;
4487 static BOOL firstTime = YES;
4488
4489 NSTRACE (keyDown);
4490
4491 /* Rhapsody and OS X give up and down events for the arrow keys */
4492 if ([theEvent type] != NSKeyDown)
4493 return;
4494
4495 if (!emacs_event)
4496 return;
4497
4498/*#if defined (COCOA_EXPERIMENTAL_CTRL_G) */
4499 if (![[self window] isKeyWindow])
4500 {
4501 /* PENDING: Using NO_SOCK_SIGIO like Carbon causes a condition in which,
4502 when Emacs display updates a different frame from the current one,
4503 and temporarily selects it, then processes some interrupt-driven
4504 input (dispnew.c:3878), OS will send the event to the correct NSWindow,
4505 but for some reason that window has its first responder set to the
4506 NSView most recently updated (I guess), which is not the correct one.
4507 UPDATE: After multi-TTY merge this happens even w/o NO_SOCK_SIGIO */
4508 if ([[theEvent window] isKindOfClass: [EmacsWindow class]])
4509 [[(EmacsView *)[theEvent window] delegate] keyDown: theEvent];
4510 return;
4511 }
4512/*#endif */
4513
4514 if (nsEvArray == nil)
4515 nsEvArray = [[NSMutableArray alloc] initWithCapacity: 1];
4516
4517 [NSCursor setHiddenUntilMouseMoves: YES];
4518
4519 if (dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))
4520 {
4521 clear_mouse_face (dpyinfo);
4522 dpyinfo->mouse_face_hidden = 1;
4523 }
4524
4525 if (!processingCompose)
4526 {
4527 code = ([[theEvent charactersIgnoringModifiers] length] == 0) ?
4528 0 : [[theEvent charactersIgnoringModifiers] characterAtIndex: 0];
4529 /* (Carbon way: [theEvent keyCode]) */
4530
4531 /* is it a "function key"? */
4532 fnKeysym = ns_convert_key (code);
4533 if (fnKeysym)
4534 {
4535 /* COUNTERHACK: map 'Delete' on upper-right main KB to 'Backspace',
4536 because Emacs treats Delete and KP-Delete same (in simple.el). */
4537 if (fnKeysym == 0xFFFF && [theEvent keyCode] == 0x33)
4538 code = 0xFF08; /* backspace */
4539 else
4540 code = fnKeysym;
4541 }
4542
4543 /* are there modifiers? */
4544 emacs_event->modifiers = 0;
4545 flags = [theEvent modifierFlags];
4546
4547 if (flags & NSHelpKeyMask)
4548 emacs_event->modifiers |= hyper_modifier;
4549
4550 if (flags & NSShiftKeyMask)
4551 emacs_event->modifiers |= shift_modifier;
4552
4553 if (flags & NSCommandKeyMask)
4554 {
6882361b 4555 emacs_event->modifiers |= parse_solitary_modifier (ns_command_modifier);
edfda783
AR
4556 /* if super (default), take input manager's word so things like
4557 dvorak / qwerty layout work */
4558 if (EQ (ns_command_modifier, Qsuper)
4559 && !fnKeysym
4560 && [[theEvent characters] length] != 0)
4561 {
4562 /* PENDING: the code we get will be unshifted, so if we have
4563 a shift modifier, must convert ourselves */
4564 if (!(flags & NSShiftKeyMask))
4565 code = [[theEvent characters] characterAtIndex: 0];
4566#if 0
4567 /* this is ugly and also requires linking w/Carbon framework
4568 (for LMGetKbdType) so for now leave this rare (?) case
4569 undealt with.. in future look into CGEvent methods */
4570 else
4571 {
4572 long smv = GetScriptManagerVariable (smKeyScript);
4573 Handle uchrHandle = GetResource
4574 ('uchr', GetScriptVariable (smv, smScriptKeys));
4575 UInt32 dummy = 0;
4576 UCKeyTranslate ((UCKeyboardLayout*)*uchrHandle,
4577 [[theEvent characters] characterAtIndex: 0],
4578 kUCKeyActionDisplay,
4579 (flags & ~NSCommandKeyMask) >> 8,
4580 LMGetKbdType (), kUCKeyTranslateNoDeadKeysMask,
4581 &dummy, 1, &dummy, &code);
4582 code &= 0xFF;
4583 }
4584#endif
4585 }
4586 }
4587
4588 if (flags & NSControlKeyMask)
6882361b 4589 emacs_event->modifiers |= parse_solitary_modifier (ns_control_modifier);
edfda783
AR
4590
4591 if (flags & NS_FUNCTION_KEY_MASK && !fnKeysym)
6882361b 4592 emacs_event->modifiers |= parse_solitary_modifier (ns_function_modifier);
edfda783
AR
4593
4594 if (flags & NSAlternateKeyMask) /* default = meta */
4595 {
4596 if (EQ (ns_alternate_modifier, Qnone) && !fnKeysym)
4597 { /* accept pre-interp alt comb */
4598 if ([[theEvent characters] length] > 0)
4599 code = [[theEvent characters] characterAtIndex: 0];
4600 /*HACK: clear lone shift modifier to stop next if from firing */
4601 if (emacs_event->modifiers == shift_modifier)
4602 emacs_event->modifiers = 0;
4603 }
4604 else
6882361b 4605 emacs_event->modifiers |= parse_solitary_modifier (ns_alternate_modifier);
edfda783
AR
4606 }
4607
4608/*fprintf (stderr,"code =%x\tfnKey =%x\tflags = %x\tmods = %x\n",code,fnKeysym,flags,emacs_event->modifiers); */
4609
4610 /* if it was a function key or had modifiers, pass it directly to emacs */
4611 if (fnKeysym || (emacs_event->modifiers
4612 && [[theEvent charactersIgnoringModifiers] length] > 0))
4613/*[[theEvent characters] length] */
4614 {
4615 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4616 if (code < 0x20)
4617 code |= (1<<28)|(3<<16);
4618 else if (code == 0x7f)
4619 code |= (1<<28)|(3<<16);
4620 else if (!fnKeysym)
4621 emacs_event->kind = code > 0xFF
4622 ? MULTIBYTE_CHAR_KEYSTROKE_EVENT : ASCII_KEYSTROKE_EVENT;
4623
4624 emacs_event->code = code;
4625 EV_TRAILER (theEvent);
4626 return;
4627 }
4628 }
4629
4630 /* if we get here we should send the key for input manager processing */
4631 if (firstTime && [[NSInputManager currentInputManager]
4632 wantsToDelayTextChangeNotifications] == NO)
4633 fprintf (stderr,
4634 "Emacs: WARNING: TextInput mgr wants marked text to be permanent!\n");
4635 firstTime = NO;
4636
4637 if (NS_KEYLOG && !processingCompose)
4638 fprintf (stderr, "Begin compose sequence.\n");
4639
4640 processingCompose = YES;
4641 [nsEvArray addObject: theEvent];
4642 [self interpretKeyEvents: nsEvArray];
4643 [nsEvArray removeObject: theEvent];
4644}
4645
4646
4647/* <NSTextInput> implementation (called through super interpretKeyEvents:]). */
4648
4649
4650/* <NSTextInput>: called through when done composing */
4651- (void)insertText: (id)aString
4652{
4653 int code;
4654 int len = [(NSString *)aString length];
4655 int i;
4656
4657if (NS_KEYLOG) NSLog (@"insertText '%@'\tlen = %d", aString, len);
4658 processingCompose = NO;
4659
4660 if (!emacs_event)
4661 return;
4662
4663 /* first, clear any working text */
4664 if (workingText != nil)
4665 [self deleteWorkingText];
4666
4667 /* now insert the string as keystrokes */
4668 for (i =0; i<len; i++)
4669 {
4670 code = [aString characterAtIndex: i];
4671 /* PENDING: still need this? */
4672 if (code == 0x2DC)
4673 code = '~'; /* 0x7E */
4674 emacs_event->modifiers = 0;
facfbbbd
SM
4675 emacs_event->kind
4676 = code > 0xFF ? MULTIBYTE_CHAR_KEYSTROKE_EVENT : ASCII_KEYSTROKE_EVENT;
edfda783
AR
4677 emacs_event->code = code;
4678 EV_TRAILER ((id)nil);
4679 }
4680}
4681
4682
4683/* <NSTextInput>: inserts display of composing characters */
4684- (void)setMarkedText: (id)aString selectedRange: (NSRange)selRange
4685{
4686 NSString *str = [aString respondsToSelector: @selector (string)] ?
4687 [aString string] : aString;
4688 if (NS_KEYLOG)
4689 NSLog (@"setMarkedText '%@' len =%d range %d from %d", str, [str length],
4690 selRange.length, selRange.location);
4691
4692 if (workingText != nil)
4693 [self deleteWorkingText];
4694 if ([str length] == 0)
4695 return;
4696
4697 if (!emacs_event)
4698 return;
4699
4700 processingCompose = YES;
4701 workingText = [str copy];
4702 ns_working_text = build_string ([workingText UTF8String]);
4703
4704 /* if in "echo area", not true minibuffer, can't show chars in interactive
4705 mode, so call using eval; otherwise we send a key event, which was the
4706 original way this was done */
4707 if (!EQ (Feval (Fcons (intern ("ns-in-echo-area"), Qnil)), Qnil))
4708 {
4709 Feval (Fcons (intern ("ns-echo-working-text"), Qnil));
4710 ns_send_appdefined (-1);
4711 }
4712 else
4713 {
4714 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4715 emacs_event->code = KEY_NS_INSERT_WORKING_TEXT;
4716 EV_TRAILER ((id)nil);
4717 }
4718}
4719
4720
4721/* delete display of composing characters [not in <NSTextInput>] */
4722- (void)deleteWorkingText
4723{
4724 if (workingText == nil)
4725 return;
4726 if (NS_KEYLOG)
4727 fprintf (stderr, "deleteWorkingText len =%d\n", [workingText length]);
4728 [workingText release];
4729 workingText = nil;
4730 processingCompose = NO;
4731
4732 if (!emacs_event)
4733 return;
4734
4735 if (!EQ (Feval (Fcons (intern ("ns-in-echo-area"), Qnil)), Qnil))
4736 {
4737 Feval (Fcons (intern ("ns-unecho-working-text"), Qnil));
4738 ns_send_appdefined (-1);
4739 }
4740 else
4741 {
4742 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4743 emacs_event->code = KEY_NS_DELETE_WORKING_TEXT;
4744 EV_TRAILER ((id)nil);
4745 }
4746 }
4747
4748
4749- (BOOL)hasMarkedText
4750{
4751 return workingText != nil;
4752}
4753
4754- (NSRange)markedRange
4755{
4756 NSRange rng = workingText != nil
4757 ? NSMakeRange (0, [workingText length]) : NSMakeRange (NSNotFound, 0);
4758if (NS_KEYLOG) NSLog (@"markedRange request");
4759 return rng;
4760}
4761
4762- (void)unmarkText
4763{
4764if (NS_KEYLOG) NSLog (@"unmark (accept) text");
4765 [self deleteWorkingText];
4766 processingCompose = NO;
4767}
4768
4769/* used to position char selection windows, etc. */
4770- (NSRect)firstRectForCharacterRange: (NSRange)theRange
4771{
4772 NSRect rect;
4773 NSPoint pt;
4774 struct window *win = XWINDOW (FRAME_SELECTED_WINDOW (emacsframe));
4775if (NS_KEYLOG) NSLog (@"firstRectForCharRange request");
4776
4777 rect.size.width = theRange.length * FRAME_COLUMN_WIDTH (emacsframe);
4778 rect.size.height = FRAME_LINE_HEIGHT (emacsframe);
4779 pt.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (win, win->phys_cursor.x);
4780 pt.y = WINDOW_TO_FRAME_PIXEL_Y (win, win->phys_cursor.y
4781 +FRAME_LINE_HEIGHT (emacsframe));
4782
4783 pt = [self convertPoint: pt toView: nil];
4784 pt = [[self window] convertBaseToScreen: pt];
4785 rect.origin = pt;
4786 return rect;
4787}
4788
4789- (long)conversationIdentifier
4790{
4791 return (long)self;
4792}
4793
4794/*PENDING: below here not yet implemented correctly, but may not be needed */
4795
4796- (void)doCommandBySelector: (SEL)aSelector
4797{
4798 if (NS_KEYLOG) NSLog (@"Do command by selector: %@",
4799 NSStringFromSelector (aSelector));
4800
4801 if (aSelector == @selector (deleteBackward:))
4802 {
4803 /* happens when user backspaces over an ongoing composition:
4804 throw a 'delete' into the event queue */
4805 if (!emacs_event)
4806 return;
4807 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
4808 emacs_event->code = 0xFF08;
4809 EV_TRAILER ((id)nil);
4810 }
4811}
4812
4813- (NSArray *)validAttributesForMarkedText
4814{
4815 static NSArray *arr = nil;
4816 if (arr == nil) arr = [NSArray new];
4817 /* [[NSArray arrayWithObject: NSUnderlineStyleAttributeName] retain]; */
4818 return arr;
4819}
4820
4821- (NSRange)selectedRange
4822{
4823if (NS_KEYLOG) NSLog (@"selectedRange request");
4824 return NSMakeRange (NSNotFound, 0);
4825}
4826
4827- (unsigned int)characterIndexForPoint: (NSPoint)thePoint
4828{
4829if (NS_KEYLOG) NSLog (@"characterIndexForPoint request");
4830 return 0;
4831}
4832
4833- (NSAttributedString *)attributedSubstringFromRange: (NSRange)theRange
4834{
4835 static NSAttributedString *str = nil;
4836 if (str == nil) str = [NSAttributedString new];
4837if (NS_KEYLOG) NSLog (@"attributedSubstringFromRange request");
4838 return str;
4839}
4840
4841/* End <NSTextInput> impl. */
4842/*****************************************************************************/
4843
4844
4845/* This is what happens when the user presses a mouse button. */
4846- (void)mouseDown: (NSEvent *)theEvent
4847{
4848 NSPoint p = [self convertPoint: [theEvent locationInWindow] fromView: nil];
4849 Lisp_Object window;
4850
4851 NSTRACE (mouseDown);
4852
4853 [self deleteWorkingText];
4854
4855 if (!emacs_event)
4856 return;
4857
4858 last_mouse_frame = emacsframe;
4859 /* appears to be needed to prevent spurious movement events generated on
4860 button clicks */
4861 last_mouse_frame->mouse_moved = 0;
4862
4863 if ([theEvent type] == NSScrollWheel)
4864 {
4865 float delta = [theEvent deltaY];
4866 /* Mac notebooks send wheel events w/delta =0 when trackpad scrolling */
4867 if (delta == 0)
4868 return;
4869 emacs_event->kind = WHEEL_EVENT;
4870 emacs_event->code = 0;
4871 emacs_event->modifiers = EV_MODIFIERS (theEvent) |
4872 ((delta > 0) ? up_modifier : down_modifier);
4873 }
4874 else
4875 {
4876 emacs_event->kind = MOUSE_CLICK_EVENT;
4877 emacs_event->code = EV_BUTTON (theEvent);
4878 emacs_event->modifiers = EV_MODIFIERS (theEvent)
4879 | EV_UDMODIFIERS (theEvent);
4880 }
4881 XSETINT (emacs_event->x, lrint (p.x));
4882 XSETINT (emacs_event->y, lrint (p.y));
4883 EV_TRAILER (theEvent);
4884}
4885
4886
4887- (void)mouseUp: (NSEvent *)theEvent
4888{
4889 NSTRACE (mouseUp);
4890 [self mouseDown: theEvent];
4891}
4892
4893
4894- (void)rightMouseDown: (NSEvent *)theEvent
4895{
4896 NSTRACE (rightMouseDown);
4897 [self mouseDown: theEvent];
4898}
4899
4900
4901- (void)rightMouseUp: (NSEvent *)theEvent
4902{
4903 NSTRACE (rightMouseUp);
4904 [self mouseDown: theEvent];
4905}
4906
4907
4908- (void) scrollWheel: (NSEvent *)theEvent
4909{
4910 NSTRACE (scrollWheel);
4911 [self mouseDown: theEvent];
4912}
4913
4914
4915/* Tell emacs the mouse has moved. */
4916- (void)mouseMoved: (NSEvent *)e
4917{
4918 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
4919 Lisp_Object frame;
4920
4921 NSTRACE (mouseMoved);
4922
4923 last_mouse_movement_time = EV_TIMESTAMP (e);
facfbbbd
SM
4924 last_mouse_motion_position
4925 = [self convertPoint: [e locationInWindow] fromView: nil];
edfda783
AR
4926
4927 /* update any mouse face */
4928 if (dpyinfo->mouse_face_hidden)
4929 {
4930 dpyinfo->mouse_face_hidden = 0;
4931 clear_mouse_face (dpyinfo);
4932 }
4933
4934 /* tooltip handling */
4935 previous_help_echo_string = help_echo_string;
4936 help_echo_string = Qnil;
4937
4938 if (!note_mouse_movement (emacsframe, last_mouse_motion_position.x,
4939 last_mouse_motion_position.y))
4940 help_echo_string = previous_help_echo_string;
4941
4942 XSETFRAME (frame, emacsframe);
4943 if (!NILP (help_echo_string) || !NILP (previous_help_echo_string))
4944 {
4945 /* NOTE: help_echo_{window,pos,object} are set in xdisp.c
4946 (note_mouse_highlight), which is called through the
4947 note_mouse_movement () call above */
4948 gen_help_event (help_echo_string, frame, help_echo_window,
4949 help_echo_object, help_echo_pos);
4950 }
4951 else
4952 {
4953 help_echo_string = Qnil;
4954 gen_help_event (Qnil, frame, Qnil, Qnil, 0);
4955 }
4956
4957 if (emacsframe->mouse_moved && send_appdefined)
4958 ns_send_appdefined (-1);
4959}
4960
4961
4962- (void)mouseDragged: (NSEvent *)e
4963{
4964 NSTRACE (mouseDragged);
4965 [self mouseMoved: e];
4966}
4967
4968
4969- (void)rightMouseDragged: (NSEvent *)e
4970{
4971 NSTRACE (rightMouseDragged);
4972 [self mouseMoved: e];
4973}
4974
4975
4976- (BOOL)windowShouldClose: (id)sender
4977{
4978 NSEvent *e =[[self window] currentEvent];
4979
4980 NSTRACE (windowShouldClose);
4981 windowClosing = YES;
4982 if (ns_window_num <= 1)
4983 return NO;
4984 if (!emacs_event)
4985 return NO;
4986 emacs_event->kind = DELETE_WINDOW_EVENT;
4987 emacs_event->modifiers = 0;
4988 emacs_event->code = 0;
4989 EV_TRAILER (e);
4990 /* Don't close this window, let this be done from lisp code. */
4991 return NO;
4992}
4993
4994
4995- (NSSize)windowWillResize: (NSWindow *)sender toSize: (NSSize)frameSize
4996/* normalize frame to gridded text size */
4997{
4998 NSTRACE (windowWillResize);
4999/*fprintf (stderr,"Window will resize: %.0f x %.0f\n",frameSize.width,frameSize.height); */
5000
5001 cols = FRAME_PIXEL_WIDTH_TO_TEXT_COLS (emacsframe,
5002#ifdef NS_IMPL_GNUSTEP
5003 frameSize.width + 3);
5004#else
5005 frameSize.width);
5006#endif
5007 if (cols < MINWIDTH)
5008 cols = MINWIDTH;
5009 frameSize.width = FRAME_TEXT_COLS_TO_PIXEL_WIDTH (emacsframe, cols);
5010
5011 rows = FRAME_PIXEL_HEIGHT_TO_TEXT_LINES (emacsframe, frameSize.height
5012#ifdef NS_IMPL_GNUSTEP
5013 - FRAME_NS_TITLEBAR_HEIGHT (emacsframe) + 3
5014 - FRAME_NS_TOOLBAR_HEIGHT (emacsframe));
5015#else
5016 - FRAME_NS_TITLEBAR_HEIGHT (emacsframe)
5017 - FRAME_NS_TOOLBAR_HEIGHT (emacsframe));
5018#endif
5019 if (rows < MINHEIGHT)
5020 rows = MINHEIGHT;
5021 frameSize.height = FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (emacsframe, rows)
5022 + FRAME_NS_TITLEBAR_HEIGHT (emacsframe)
5023 + FRAME_NS_TOOLBAR_HEIGHT (emacsframe);
5024#ifdef NS_IMPL_COCOA
5025 {
5026 /* this sets window title to have size in it; the wm does this under GS */
5027 NSRect r = [[self window] frame];
5028 if (r.size.height == frameSize.height && r.size.width == frameSize.width)
5029 {
5030 if (old_title != 0)
5031 {
5032 xfree (old_title);
5033 old_title = 0;
5034 }
5035 }
5036 else
5037 {
5038 char *size_title;
5039 NSWindow *window = [self window];
5040 if (old_title == 0)
5041 {
5042 const char *t = [[[self window] title] UTF8String];
5043 char *pos = strstr (t, " — ");
5044 if (pos)
5045 *pos = '\0';
5046 old_title = (char *) xmalloc (strlen (t) + 1);
5047 strcpy (old_title, t);
5048 }
5049 size_title = xmalloc (strlen (old_title) + 40);
5050 sprintf (size_title, "%s — (%d x %d)", old_title, cols, rows);
5051 [window setTitle: [NSString stringWithUTF8String: size_title]];
5052 [window display];
5053 xfree (size_title);
5054 }
5055 }
5056#endif /* NS_IMPL_COCOA */
5057/*fprintf (stderr," ...size became %.0f x %.0f (%d x %d)\n",frameSize.width,frameSize.height,cols,rows); */
5058
5059 return frameSize;
5060}
5061
5062
5063- (void)windowDidResize: (NSNotification *)notification
5064{
5065 NSWindow *theWindow = [notification object];
5066
5067#ifdef NS_IMPL_GNUSTEP
5068 /* in GNUstep, at least currently, it's possible to get a didResize
5069 without getting a willResize.. therefore we need to act as if we got
5070 the willResize now */
5071 NSSize sz = [theWindow frame].size;
5072 sz = [self windowWillResize: theWindow toSize: sz];
5073#endif /* NS_IMPL_GNUSTEP */
5074
5075 NSTRACE (windowDidResize);
5076/*fprintf (stderr,"windowDidResize: %.0f\n",[theWindow frame].size.height); */
5077
5078#ifdef NS_IMPL_COCOA
5079 if (old_title != 0)
5080 {
5081 xfree (old_title);
5082 old_title = 0;
5083 }
5084#endif /* NS_IMPL_COCOA */
5085
5086 if (cols > 0 && rows > 0)
5087 x_set_window_size (emacsframe, 0, cols, rows);
5088
5089 ns_send_appdefined (-1);
5090 [NSApp stopModal];
5091}
5092
5093
5094- (void)windowDidBecomeKey: (NSNotification *)notification
5095{
5096 int val = ns_lisp_to_cursor_type (get_frame_param (emacsframe, Qcursor_type));
5097 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
5098 struct frame *old_focus = dpyinfo->ns_focus_frame;
5099
5100 NSTRACE (windowDidBecomeKey);
5101
5102 if (emacsframe != old_focus)
5103 dpyinfo->ns_focus_frame = emacsframe;
5104 /*/last_mouse_frame = emacsframe;? */
5105
5106 if (val >= 0)
5107 {
5108 FRAME_NEW_CURSOR (emacsframe) = val;
5109/* x_update_cursor (emacsframe, 1); // will happen in ns_frame_rehighlight */
5110 }
5111
5112 ns_frame_rehighlight (emacsframe);
5113
5114 if (emacs_event)
5115 {
5116 emacs_event->kind = FOCUS_IN_EVENT;
5117 EV_TRAILER ((id)nil);
5118 }
5119}
5120
5121
5122- (void)windowDidResignKey: (NSNotification *)notification
5123{
5124 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
5125 NSTRACE (windowDidResignKey);
5126
5127 if (!windowClosing && [[self window] isVisible] == YES)
5128 {
5129 FRAME_NEW_CURSOR (emacsframe) = hollow_box;
5130 x_update_cursor (emacsframe, 1);
5131 FRAME_LAST_INACTIVE (emacsframe) = YES;
5132 }
5133
5134 if (dpyinfo->ns_highlight_frame == emacsframe)
5135 dpyinfo->ns_highlight_frame = 0;
5136 if (dpyinfo->ns_focus_frame == emacsframe)
5137 dpyinfo->ns_focus_frame = 0;
5138
5139 if (dpyinfo->mouse_face_mouse_frame == emacsframe)
5140 {
5141 clear_mouse_face (dpyinfo);
5142 dpyinfo->mouse_face_mouse_frame = 0;
5143 }
5144
5145 if (emacs_event)
5146 {
5147 [self deleteWorkingText];
5148 emacs_event->kind = FOCUS_IN_EVENT;
5149 EV_TRAILER ((id)nil);
5150 }
5151}
5152
5153
5154- (void)windowWillMiniaturize: sender
5155{
5156 NSTRACE (windowWillMiniaturize);
5157}
5158
5159
5160- (BOOL)isFlipped
5161{
5162 return YES;
5163}
5164
5165
5166- (BOOL)isOpaque
5167{
5168 return NO;
5169}
5170
5171
5172- initFrameFromEmacs: (struct frame *)f
5173{
5174 NSRect r, wr;
5175 Lisp_Object tem;
5176 NSWindow *win;
5177 NSButton *toggleButton;
5178 int vbextra = NS_SCROLL_BAR_WIDTH (f);
5179 NSSize sz;
5180 NSColor *col;
5181 NSString *name;
5182
5183 NSTRACE (initFrameFromEmacs);
5184
5185 windowClosing = NO;
5186 processingCompose = NO;
5187 scrollbarsNeedingUpdate = 0;
5188
5189/*fprintf (stderr,"init with %d, %d\n",f->text_cols, f->text_lines); */
5190
5191 r = NSMakeRect (0, 0, FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, f->text_cols),
5192 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, f->text_lines));
5193 [self initWithFrame: r];
5194
5195 FRAME_NS_VIEW (f) = self;
5196 emacsframe = f;
5197 old_title = 0;
5198
5199 win = [[EmacsWindow alloc]
5200 initWithContentRect: r
5201 styleMask: (NSResizableWindowMask |
5202 NSMiniaturizableWindowMask |
5203 NSClosableWindowMask)
5204 backing: NSBackingStoreBuffered
5205 defer: YES];
5206
5207 wr = [win frame];
5208 f->border_width = wr.size.width - r.size.width;
5209 FRAME_NS_TITLEBAR_HEIGHT (f) = wr.size.height - r.size.height;
5210
5211 [win setAcceptsMouseMovedEvents: YES];
5212 [win setDelegate: self];
5213 [win useOptimizedDrawing: YES];
5214
5215 sz.width = FRAME_COLUMN_WIDTH (f);
5216 sz.height = FRAME_LINE_HEIGHT (f);
5217 [win setResizeIncrements: sz];
5218
5219 [[win contentView] addSubview: self];
5220
5221 if (ns_drag_types)
5222 [self registerForDraggedTypes: ns_drag_types];
5223
5224 tem = f->name;
5225 name = [NSString stringWithUTF8String:
6882361b 5226 NILP (tem) ? (unsigned char *)"Emacs" : SDATA (tem)];
edfda783
AR
5227 [win setTitle: name];
5228
5229 /* toolbar support */
5230 toolbar = [[EmacsToolbar alloc] initForView: self withIdentifier:
5231 [NSString stringWithFormat: @"Emacs Frame %d",
5232 ns_window_num]];
5233 [win setToolbar: toolbar];
5234 [toolbar setVisible: NO];
5235#ifdef NS_IMPL_COCOA
5236 toggleButton = [win standardWindowButton: NSWindowToolbarButton];
5237 [toggleButton setTarget: self];
5238 [toggleButton setAction: @selector (toggleToolbar: )];
5239#endif
5240 FRAME_NS_TOOLBAR_HEIGHT (f) = 0;
5241
5242 tem = f->icon_name;
5243 if (!NILP (tem))
5244 [win setMiniwindowTitle:
6882361b 5245 [NSString stringWithUTF8String: SDATA (tem)]];
edfda783
AR
5246
5247 {
5248 NSScreen *screen = [win screen];
5249
5250 if (screen != 0)
5251 [win setFrameTopLeftPoint: NSMakePoint
5252 (IN_BOUND (-SCREENMAX, f->left_pos, SCREENMAX),
5253 IN_BOUND (-SCREENMAX,
5254 [screen frame].size.height - NS_TOP_POS (f), SCREENMAX))];
5255 }
5256
5257 [win makeFirstResponder: self];
5258
5259 col = ns_lookup_indexed_color (NS_FACE_BACKGROUND
5260 (FRAME_DEFAULT_FACE (emacsframe)), emacsframe);
5261 [win setBackgroundColor: col];
5262 if ([col alphaComponent] != 1.0)
5263 [win setOpaque: NO];
5264
5265 [self allocateGState];
5266
5267 ns_window_num++;
5268 return self;
5269}
5270
5271
5272- (void)windowDidMove: sender
5273{
5274 NSWindow *win = [self window];
5275 NSRect r = [win frame];
5276 NSScreen *screen = [win screen];
5277 NSRect sr = [screen frame];
5278
5279 NSTRACE (windowDidMove);
5280
5281 if (!emacsframe->output_data.ns)
5282 return;
5283 if (screen != nil)
5284 {
5285 emacsframe->left_pos = r.origin.x; /* - sr.origin.x; */
5286 emacsframe->top_pos = sr.size.height -
5287 (r.origin.y + r.size.height); /* + sr.origin.y; */
5288 }
5289}
5290
5291#ifdef NS_IMPL_COCOA
5292/* if we don't do this manually, the window will resize but not move */
5293- (BOOL)windowShouldZoom: (NSWindow *)sender toFrame: (NSRect)newFrame
5294{
5295 [[self window] setFrame: newFrame display: NO];
5296 return YES;
5297}
5298#endif
5299
5300/* Implement this to control size of frame on zoom.
5301- (NSRect)windowWillUseStandardFrame:(NSWindow *)sender
5302 defaultFrame:(NSRect)defaultFrame; */
5303
5304
5305- (void)windowDidDeminiaturize: sender
5306{
5307 NSTRACE (windowDidDeminiaturize);
5308 if (!emacsframe->output_data.ns)
5309 return;
5310 emacsframe->async_visible = 1;
5311 emacsframe->async_iconified = 0;
5312 windows_or_buffers_changed++;
5313
5314 if (emacs_event)
5315 {
5316 emacs_event->kind = ICONIFY_EVENT;
5317 EV_TRAILER ((id)nil);
5318 }
5319}
5320
5321
5322- (void)windowDidExpose: sender
5323{
5324 NSTRACE (windowDidExpose);
5325 if (!emacsframe->output_data.ns)
5326 return;
5327 emacsframe->async_visible = 1;
5328 SET_FRAME_GARBAGED (emacsframe);
5329
5330 if (send_appdefined)
5331 ns_send_appdefined (-1);
5332}
5333
5334
5335- (void)windowDidMiniaturize: sender
5336{
5337 NSTRACE (windowDidMiniaturize);
5338 if (!emacsframe->output_data.ns)
5339 return;
5340
5341 emacsframe->async_iconified = 1;
5342
5343 if (emacs_event)
5344 {
5345 emacs_event->kind = ICONIFY_EVENT;
5346 EV_TRAILER ((id)nil);
5347 }
5348}
5349
5350
5351- (void)mouseEntered: (NSEvent *)theEvent
5352{
5353 NSPoint p = [self convertPoint: [theEvent locationInWindow] fromView: nil];
5354 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (emacsframe);
5355 NSTRACE (mouseEntered);
5356
5357 last_mouse_movement_time = EV_TIMESTAMP (theEvent);
5358}
5359
5360
5361- (void)mouseExited: (NSEvent *)theEvent
5362{
5363 NSPoint p = [self convertPoint: [theEvent locationInWindow] fromView: nil];
5364 NSRect r;
facfbbbd
SM
5365 struct ns_display_info *dpyinfo
5366 = emacsframe ? FRAME_NS_DISPLAY_INFO (emacsframe) : NULL;
edfda783
AR
5367
5368 NSTRACE (mouseExited);
5369
5370 if (dpyinfo || !emacsframe)
5371 return;
5372
5373 last_mouse_movement_time = EV_TIMESTAMP (theEvent);
5374
5375 if (emacsframe == dpyinfo->mouse_face_mouse_frame)
5376 {
5377 clear_mouse_face (dpyinfo);
5378 dpyinfo->mouse_face_mouse_frame = 0;
5379 }
5380}
5381
5382
5383- menuDown: sender
5384{
5385 NSTRACE (menuDown);
5386 if (context_menu_value == -1)
5387 context_menu_value = [sender tag];
5388 else
5389 find_and_call_menu_selection (emacsframe, emacsframe->menu_bar_items_used,
5390 emacsframe->menu_bar_vector, [sender tag]);
5391 ns_send_appdefined (-1);
5392 return self;
5393}
5394
5395
5396- (EmacsToolbar *)toolbar
5397{
5398 return toolbar;
5399}
5400
5401
5402/* this gets called on toolbar button click */
5403- toolbarClicked: (id)item
5404{
5405 NSEvent *theEvent;
5406 int idx = [item tag] * TOOL_BAR_ITEM_NSLOTS;
5407
5408 NSTRACE (toolbarClicked);
5409
5410 if (!emacs_event)
5411 return self;
5412
5413 /* send first event (for some reason two needed) */
5414 theEvent =[[self window] currentEvent];
5415 emacs_event->kind = TOOL_BAR_EVENT;
5416 XSETFRAME (emacs_event->arg, emacsframe);
5417 EV_TRAILER (theEvent);
5418
5419 emacs_event->kind = TOOL_BAR_EVENT;
5420/* XSETINT (emacs_event->code, 0); */
5421 emacs_event->arg = AREF (emacsframe->tool_bar_items,
5422 idx + TOOL_BAR_ITEM_KEY);
5423 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5424 EV_TRAILER (theEvent);
5425 return self;
5426}
5427
5428
5429- toggleToolbar: (id)sender
5430{
5431 Lisp_Object lispFrame;
5432 XSETFRAME (lispFrame, emacsframe);
5433 Feval (Fcons (intern ("ns-toggle-toolbar"), Fcons (lispFrame, Qnil)));
5434 SET_FRAME_GARBAGED (emacsframe);
5435 ns_send_appdefined (-1);
5436}
5437
5438
5439- (void)drawRect: (NSRect)rect
5440{
5441 int x = NSMinX (rect), y = NSMinY (rect);
5442 int width = NSWidth (rect), height = NSHeight (rect);
5443
5444 NSTRACE (drawRect);
5445
5446 if (!emacsframe || !emacsframe->output_data.ns)
5447 return;
5448
5449 if (!ns_in_resize)
5450 ns_clear_frame_area (emacsframe, x, y, width, height);
5451 expose_frame (emacsframe, x, y, width, height);
5452
5453 emacsframe->async_visible = 1;
5454 emacsframe->async_iconified = 0;
5455
5456/* SET_FRAME_GARBAGED (emacsframe);
5457 ns_send_appdefined (-1); */
5458}
5459
5460
5461/* NSDraggingDestination protocol methods. Actually this is not really a
5462 protocol, but a category of Object. O well... */
5463
5464-(unsigned int) draggingEntered: (id <NSDraggingInfo>) sender
5465{
5466 NSTRACE (draggingEntered);
5467 return NSDragOperationGeneric;
5468}
5469
5470
5471-(BOOL)prepareForDragOperation: (id <NSDraggingInfo>) sender
5472{
5473 return YES;
5474}
5475
5476
5477-(BOOL)performDragOperation: (id <NSDraggingInfo>) sender
5478{
5479 id pb;
5480 int x, y;
5481 NSString *type;
5482 NSEvent *theEvent = [[self window] currentEvent];
5483 NSPoint position;
5484
5485 NSTRACE (performDragOperation);
5486
5487 if (!emacs_event)
5488 return;
5489
5490 position = [self convertPoint: [sender draggingLocation] fromView: nil];
5491 x = lrint (position.x); y = lrint (position.y);
5492
5493 pb = [sender draggingPasteboard];
5494 type = [pb availableTypeFromArray: ns_drag_types];
5495 if (type == 0)
5496 {
5497 return NO;
5498 }
5499 else if ([type isEqualToString: NSFilenamesPboardType])
5500 {
5501 NSArray *files;
5502 NSEnumerator *fenum;
5503 NSString *file;
5504
5505 if (!(files = [pb propertyListForType: type]))
5506 return NO;
5507
5508 fenum = [files objectEnumerator];
5509 while ( (file = [fenum nextObject]) )
5510 {
5511 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5512 emacs_event->code = KEY_NS_DRAG_FILE;
5513 XSETINT (emacs_event->x, x);
5514 XSETINT (emacs_event->y, y);
5515 ns_input_file = append2 (ns_input_file,
5516 build_string ([file UTF8String]));
5517 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5518 EV_TRAILER (theEvent);
5519 }
5520 return YES;
5521 }
5522 else if ([type isEqualToString: NSURLPboardType])
5523 {
5524 NSString *file;
5525 NSURL *fileURL;
5526
5527 if (!(fileURL = [NSURL URLFromPasteboard: pb]) ||
5528 [fileURL isFileURL] == NO)
5529 return NO;
5530
5531 file = [fileURL path];
5532 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5533 emacs_event->code = KEY_NS_DRAG_FILE;
5534 XSETINT (emacs_event->x, x);
5535 XSETINT (emacs_event->y, y);
5536 ns_input_file = append2 (ns_input_file, build_string ([file UTF8String]));
5537 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5538 EV_TRAILER (theEvent);
5539 return YES;
5540 }
5541 else if ([type isEqualToString: NSStringPboardType]
5542 || [type isEqualToString: NSTabularTextPboardType])
5543 {
5544 NSString *data;
5545
5546 if (! (data = [pb stringForType: type]))
5547 return NO;
5548
5549 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5550 emacs_event->code = KEY_NS_DRAG_TEXT;
5551 XSETINT (emacs_event->x, x);
5552 XSETINT (emacs_event->y, y);
5553 ns_input_text = build_string ([data UTF8String]);
5554 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5555 EV_TRAILER (theEvent);
5556 return YES;
5557 }
5558 else if ([type isEqualToString: NSColorPboardType])
5559 {
5560 NSColor *c = [NSColor colorFromPasteboard: pb];
5561 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5562 emacs_event->code = KEY_NS_DRAG_COLOR;
5563 XSETINT (emacs_event->x, x);
5564 XSETINT (emacs_event->y, y);
5565 ns_input_color = ns_color_to_lisp (c);
5566 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5567 EV_TRAILER (theEvent);
5568 return YES;
5569 }
5570 else if ([type isEqualToString: NSFontPboardType])
5571 {
5572 /* impl based on GNUstep NSTextView.m */
5573 NSData *data = [pb dataForType: NSFontPboardType];
5574 NSDictionary *dict = [NSUnarchiver unarchiveObjectWithData: data];
5575 NSFont *font = [dict objectForKey: NSFontAttributeName];
5576 char fontSize[10];
5577
5578 if (font == nil)
5579 return NO;
5580
5581 emacs_event->kind = NON_ASCII_KEYSTROKE_EVENT;
5582 emacs_event->code = KEY_NS_CHANGE_FONT;
5583 XSETINT (emacs_event->x, x);
5584 XSETINT (emacs_event->y, y);
5585 ns_input_font = build_string ([[font fontName] UTF8String]);
5586 snprintf (fontSize, 10, "%f", [font pointSize]);
5587 ns_input_fontsize = build_string (fontSize);
5588 emacs_event->modifiers = EV_MODIFIERS (theEvent);
5589 EV_TRAILER (theEvent);
5590 return YES;
5591 }
5592 else
5593 {
5594 error ("Invalid data type in dragging pasteboard.");
5595 return NO;
5596 }
5597}
5598
5599
5600- validRequestorForSendType: (NSString *)typeSent
5601 returnType: (NSString *)typeReturned
5602{
5603 NSTRACE (validRequestorForSendType);
5604 if ([ns_send_types indexOfObjectIdenticalTo: typeSent] != NSNotFound &&
5605 [ns_return_types indexOfObjectIdenticalTo: typeSent] != NSNotFound)
5606 return self;
5607
5608 return [super validRequestorForSendType: typeSent
5609 returnType: typeReturned];
5610}
5611
5612
5613/* setMini =YES means set from internal (gives a finder icon), NO means set nil
5614 (gives a miniaturized version of the window); currently we use the latter for
5615 frames whose active buffer doesn't correspond to any file
5616 (e.g., '*scratch*') */
5617- setMiniwindowImage: (BOOL) setMini
5618{
5619 id image = [[self window] miniwindowImage];
5620 NSTRACE (setMiniwindowImage);
5621
5622 /* NOTE: under Cocoa miniwindowImage always returns nil, documentation
5623 about "AppleDockIconEnabled" notwithstanding, however the set message
5624 below has its effect nonetheless. */
5625 if (image != emacsframe->output_data.ns->miniimage)
5626 {
5627 if (image && [image isKindOfClass: [EmacsImage class]])
5628 [image release];
5629 [[self window] setMiniwindowImage:
5630 setMini ? emacsframe->output_data.ns->miniimage : nil];
5631 }
5632
5633 return self;
5634}
5635
5636
5637- (void) setRows: (int) r andColumns: (int) c
5638{
5639 rows = r;
5640 cols = c;
5641}
5642
5643@end /* EmacsView */
5644
5645
5646
5647/* ==========================================================================
5648
5649 EmacsWindow implementation
5650
5651 ========================================================================== */
5652
5653@implementation EmacsWindow
5654
5655/* called only on resize clicks by special case in EmacsApp-sendEvent */
5656- (void)mouseDown: (NSEvent *)theEvent
5657{
5658 if (ns_in_resize)
5659 {
5660 NSSize size = [[theEvent window] frame].size;
5661 grabOffset = [theEvent locationInWindow];
5662 grabOffset.x = size.width - grabOffset.x;
5663 }
5664 else
5665 [super mouseDown: theEvent];
5666}
5667
5668
5669/* stop resizing */
5670- (void)mouseUp: (NSEvent *)theEvent
5671{
5672 if (ns_in_resize)
5673 {
5674 struct frame *f = ((EmacsView *)[self delegate])->emacsframe;
5675 ns_in_resize = NO;
5676 ns_set_name_as_filename (f);
5677 [self display];
5678 ns_send_appdefined (-1);
5679 }
5680 else
5681 [super mouseUp: theEvent];
5682}
5683
5684
5685/* send resize events */
5686- (void)mouseDragged: (NSEvent *)theEvent
5687{
5688 if (ns_in_resize)
5689 {
5690 NSPoint p = [theEvent locationInWindow];
5691 NSSize size, vettedSize, origSize = [self frame].size;
5692
5693 size.width = p.x + grabOffset.x;
5694 size.height = origSize.height - p.y + grabOffset.y;
5695
5696 if (size.width == origSize.width && size.height == origSize.height)
5697 return;
5698
5699 vettedSize = [[self delegate] windowWillResize: self toSize: size];
5700 if (vettedSize.width != size.width || vettedSize.height != size.height)
5701 {
5702 [[NSNotificationCenter defaultCenter]
5703 postNotificationName: NSWindowDidResizeNotification
5704 object: self];
5705 }
5706 }
5707 else
5708 [super mouseDragged: theEvent];
5709}
5710
5711@end /* EmacsWindow */
5712
5713
5714/* ==========================================================================
5715
5716 EmacsScroller implementation
5717
5718 ========================================================================== */
5719
5720
5721@implementation EmacsScroller
5722
5723/* for repeat button push */
5724#define SCROLL_BAR_FIRST_DELAY 0.5
5725#define SCROLL_BAR_CONTINUOUS_DELAY (1.0 / 15)
5726
5727+ (float) scrollerWidth
5728{
5729 /* PENDING: if we want to allow variable widths, this is the place to do it,
5730 however neither GNUstep nor Cocoa support it very well */
5731 return [NSScroller scrollerWidth];
5732}
5733
5734
5735- initFrame: (NSRect )r window: (Lisp_Object)nwin
5736{
5737 NSTRACE (EmacsScroller_initFrame);
5738
5739 r.size.width = [EmacsScroller scrollerWidth];
5740 [super initWithFrame: r/*NSMakeRect (0, 0, 0, 0)*/];
5741 [self setContinuous: YES];
5742 [self setEnabled: YES];
5743
5744 /* Ensure auto resizing of scrollbars occurs within the emacs frame's view
5745 locked against the right, top and bottom edges. */
5746 [self setAutoresizingMask: NSViewMinXMargin | NSViewHeightSizable];
5747
5748 win = nwin;
5749 condemned = NO;
5750 pixel_height = NSHeight (r);
5751 min_portion = 20 / pixel_height;
5752
5753 frame = XFRAME (XWINDOW (win)->frame);
5754 if (FRAME_LIVE_P (frame))
5755 {
5756 int i;
5757 EmacsView *view = FRAME_NS_VIEW (frame);
5758 NSView *sview = [[view window] contentView];
5759 NSArray *subs = [sview subviews];
5760
5761 /* disable optimization stopping redraw of other scrollbars */
5762 view->scrollbarsNeedingUpdate = 0;
5763 for (i =[subs count]-1; i >= 0; i--)
5764 if ([[subs objectAtIndex: i] isKindOfClass: [EmacsScroller class]])
5765 view->scrollbarsNeedingUpdate++;
5766 [sview addSubview: self];
5767 }
5768
5769/* [self setFrame: r]; */
5770
5771 return self;
5772}
5773
5774
5775- (void)setFrame: (NSRect)newRect
5776{
5777 NSTRACE (EmacsScroller_setFrame);
5778/* BLOCK_INPUT; */
5779 pixel_height = NSHeight (newRect);
5780 min_portion = 20 / pixel_height;
5781 [super setFrame: newRect];
5782 [self display];
5783/* UNBLOCK_INPUT; */
5784}
5785
5786
5787- (void)dealloc
5788{
5789 NSTRACE (EmacsScroller_dealloc);
5790 if (!NILP (win))
5791 XWINDOW (win)->vertical_scroll_bar = Qnil;
5792 [super dealloc];
5793}
5794
5795
5796- condemn
5797{
5798 NSTRACE (condemn);
5799 condemned =YES;
5800 return self;
5801}
5802
5803
5804- reprieve
5805{
5806 NSTRACE (reprieve);
5807 condemned =NO;
5808 return self;
5809}
5810
5811
5812- judge
5813{
5814 NSTRACE (judge);
5815 if (condemned)
5816 {
5817 BLOCK_INPUT;
5818 /* ensure other scrollbar updates after deletion */
5819 EmacsView *view = (EmacsView *)FRAME_NS_VIEW (frame);
5820 if (view != nil)
5821 view->scrollbarsNeedingUpdate++;
5822 [self removeFromSuperview];
5823 [self release];
5824 UNBLOCK_INPUT;
5825 }
5826 return self;
5827}
5828
5829
5830- (void)resetCursorRects
5831{
5832 NSRect visible = [self visibleRect];
5833 NSTRACE (resetCursorRects);
5834
5835 if (!NSIsEmptyRect (visible))
5836 [self addCursorRect: visible cursor: [NSCursor arrowCursor]];
5837 [[NSCursor arrowCursor] setOnMouseEntered: YES];
5838}
5839
5840
5841- (int) checkSamePosition: (int) position portion: (int) portion
5842 whole: (int) whole
5843{
5844 return em_position ==position && em_portion ==portion && em_whole ==whole
5845 && portion != whole; /* needed for resize empty buf */
5846}
5847
5848
5849- setPosition: (int)position portion: (int)portion whole: (int)whole
5850{
5851 NSTRACE (setPosition);
5852
5853 em_position = position;
5854 em_portion = portion;
5855 em_whole = whole;
5856
5857 if (portion >= whole)
5858 [self setFloatValue: 0.0 knobProportion: 1.0];
5859 else
5860 {
5861 float pos, por;
5862 portion = max ((float)whole*min_portion/pixel_height, portion);
5863 pos = (float)position / (whole - portion);
5864 por = (float)portion/whole;
5865 [self setFloatValue: pos knobProportion: por];
5866 }
5867#ifdef NS_IMPL_GNUSTEP
5868 [self display];
5869#endif
5870 return self;
5871}
5872
5873/* PENDING: unused at moment (see ns_mouse_position) at the moment because
5874 drag events will go directly to the EmacsScroller. Leaving in for now. */
5875-(void)getMouseMotionPart: (int *)part window: (Lisp_Object *)window
5876 x: (Lisp_Object *)x y: ( Lisp_Object *)y
5877{
5878 *part = last_hit_part;
5879 *window = win;
5880 XSETINT (*y, pixel_height);
5881 if ([self floatValue] > 0.999)
5882 XSETINT (*x, pixel_height);
5883 else
5884 XSETINT (*x, pixel_height * [self floatValue]);
5885}
5886
5887
5888/* set up emacs_event */
5889- (void) sendScrollEventAtLoc: (float)loc fromEvent: (NSEvent *)e
5890{
5891 if (!emacs_event)
5892 return;
5893
5894 emacs_event->part = last_hit_part;
5895 emacs_event->code = 0;
5896 emacs_event->modifiers = EV_MODIFIERS (e) | down_modifier;
5897 emacs_event->frame_or_window = win;
5898 emacs_event->timestamp = EV_TIMESTAMP (e);
5899 emacs_event->kind = SCROLL_BAR_CLICK_EVENT;
5900 emacs_event->arg = Qnil;
5901 XSETINT (emacs_event->x, loc * pixel_height);
5902 XSETINT (emacs_event->y, pixel_height-20);
5903
5904 n_emacs_events_pending++;
5905 kbd_buffer_store_event_hold (emacs_event, q_event_ptr);
5906 EVENT_INIT (*emacs_event);
5907 ns_send_appdefined (-1);
5908}
5909
5910
5911/* called manually thru timer to implement repeated button action w/hold-down */
5912- repeatScroll: (NSTimer *)scrollEntry
5913{
5914 NSEvent *e = [[self window] currentEvent];
5915 NSPoint p = [[self window] mouseLocationOutsideOfEventStream];
5916 BOOL inKnob = [self testPart: p] == NSScrollerKnob;
5917
5918 /* clear timer if need be */
5919 if (inKnob || [scroll_repeat_entry timeInterval] == SCROLL_BAR_FIRST_DELAY)
5920 {
5921 [scroll_repeat_entry invalidate];
5922 [scroll_repeat_entry release];
5923 scroll_repeat_entry = nil;
5924
5925 if (inKnob)
5926 return self;
5927
facfbbbd
SM
5928 scroll_repeat_entry
5929 = [[NSTimer scheduledTimerWithTimeInterval:
5930 SCROLL_BAR_CONTINUOUS_DELAY
edfda783
AR
5931 target: self
5932 selector: @selector (repeatScroll:)
5933 userInfo: 0
5934 repeats: YES]
facfbbbd 5935 retain];
edfda783
AR
5936 }
5937
5938 [self sendScrollEventAtLoc: 0 fromEvent: e];
5939 return self;
5940}
5941
5942
5943/* Asynchronous mouse tracking for scroller. This allows us to dispatch
5944 mouseDragged events without going into a modal loop. */
5945- (void)mouseDown: (NSEvent *)e
5946{
5947 NSRect sr, kr;
5948 /* hitPart is only updated AFTER event is passed on */
5949 NSScrollerPart part = [self testPart: [e locationInWindow]];
5950 double inc = 0.0, loc, kloc, pos;
5951 int edge = 0;
5952
5953 NSTRACE (EmacsScroller_mouseDown);
5954
5955 switch (part)
5956 {
5957 case NSScrollerDecrementPage:
5958 last_hit_part = scroll_bar_above_handle; inc = -1.0; break;
5959 case NSScrollerIncrementPage:
5960 last_hit_part = scroll_bar_below_handle; inc = 1.0; break;
5961 case NSScrollerDecrementLine:
5962 last_hit_part = scroll_bar_up_arrow; inc = -0.1; break;
5963 case NSScrollerIncrementLine:
5964 last_hit_part = scroll_bar_down_arrow; inc = 0.1; break;
5965 case NSScrollerKnob:
5966 last_hit_part = scroll_bar_handle; break;
5967 case NSScrollerKnobSlot: /* GNUstep-only */
5968 last_hit_part = scroll_bar_move_ratio; break;
5969 default: /* NSScrollerNoPart? */
5970 fprintf (stderr, "EmacsScoller-mouseDown: unexpected part %d\n", part);
5971 return;
5972 }
5973
5974 if (inc != 0.0)
5975 {
5976 pos = 0; /* ignored */
5977
5978 /* set a timer to repeat, as we can't let superclass do this modally */
facfbbbd
SM
5979 scroll_repeat_entry
5980 = [[NSTimer scheduledTimerWithTimeInterval: 0.5
5981 target: self
5982 selector: @selector (repeatScroll:)
5983 userInfo: 0
5984 repeats: YES]
5985 retain];
edfda783
AR
5986 }
5987 else
5988 {
5989 /* handle, or on GNUstep possibly slot */
5990 NSEvent *fake_event;
5991
5992 /* compute float loc in slot and mouse offset on knob */
5993 sr = [self convertRect: [self rectForPart: NSScrollerKnobSlot]
5994 toView: nil];
5995 loc = NSHeight (sr) - ([e locationInWindow].y - NSMinY (sr));
5996 if (loc <= 0.0)
5997 {
5998 loc = 0.0;
5999 edge = -1;
6000 }
6001 else if (loc >= NSHeight (sr))
6002 {
6003 loc = NSHeight (sr);
6004 edge = 1;
6005 }
6006
6007 if (edge)
6008 kloc = 0.5 * edge;
6009 else
6010 {
6011 kr = [self convertRect: [self rectForPart: NSScrollerKnob]
6012 toView: nil];
6013 kloc = NSHeight (kr) - ([e locationInWindow].y - NSMinY (kr));
6014 }
6015 last_mouse_offset = kloc;
6016
6017 /* if knob, tell emacs a location offset by knob pos
6018 (to indicate top of handle) */
6019 if (part == NSScrollerKnob)
6020 pos = (loc - last_mouse_offset) / NSHeight (sr);
6021 else
6022 /* else this is a slot click on GNUstep: go straight there */
6023 pos = loc / NSHeight (sr);
6024
6025 /* send a fake mouse-up to super to preempt modal -trackKnob: mode */
6026 fake_event = [NSEvent mouseEventWithType: NSLeftMouseUp
6027 location: [e locationInWindow]
6028 modifierFlags: [e modifierFlags]
6029 timestamp: [e timestamp]
6030 windowNumber: [e windowNumber]
6031 context: [e context]
6032 eventNumber: [e eventNumber]
6033 clickCount: [e clickCount]
6034 pressure: [e pressure]];
6035 [super mouseUp: fake_event];
6036 }
6037
6038 if (part != NSScrollerKnob)
6039 [self sendScrollEventAtLoc: pos fromEvent: e];
6040}
6041
6042
6043/* Called as we manually track scroller drags, rather than superclass. */
6044- (void)mouseDragged: (NSEvent *)e
6045{
6046 NSRect sr;
6047 double loc, pos;
6048 int edge = 0;
6049
6050 NSTRACE (EmacsScroller_mouseDragged);
6051
6052 sr = [self convertRect: [self rectForPart: NSScrollerKnobSlot]
6053 toView: nil];
6054 loc = NSHeight (sr) - ([e locationInWindow].y - NSMinY (sr));
6055
6056 if (loc <= 0.0)
6057 {
6058 loc = 0.0;
6059 edge = -1;
6060 }
6061 else if (loc >= NSHeight (sr) + last_mouse_offset)
6062 {
6063 loc = NSHeight (sr) + last_mouse_offset;
6064 edge = 1;
6065 }
6066
6067 pos = /*(edge ? loc :*/ (loc - last_mouse_offset) / NSHeight (sr);
6068 [self sendScrollEventAtLoc: pos fromEvent: e];
6069}
6070
6071
6072- (void)mouseUp: (NSEvent *)e
6073{
6074 if (scroll_repeat_entry)
6075 {
6076 [scroll_repeat_entry invalidate];
6077 [scroll_repeat_entry release];
6078 scroll_repeat_entry = nil;
6079 }
6080 last_hit_part = 0;
6081}
6082
6083
6084/* treat scrollwheel events in the bar as though they were in the main window */
6085- (void) scrollWheel: (NSEvent *)theEvent
6086{
6087 EmacsView *view = (EmacsView *)FRAME_NS_VIEW (frame);
6088 [view mouseDown: theEvent];
6089}
6090
6091@end /* EmacsScroller */
6092
6093
6094
6095/* ==========================================================================
6096
6097 EmacsPrefsController implementation
6098
6099 ========================================================================== */
6100
6101
6102@implementation EmacsPrefsController
6103
6104/* in Tiger+, can just do [popup selectItemWithTag: tag]; */
6105static void selectItemWithTag (NSPopUpButton *popup, int tag)
6106{
6107 NSEnumerator *items = [[popup itemArray] objectEnumerator];
6108 NSMenuItem *item;
6109 while (item = [items nextObject])
6110 {
6111 if ([item tag] == tag)
6112 {
6113 [popup selectItem: item];
6114 return;
6115 }
6116 }
6117}
6118
6119- init
6120{
6121 [NSBundle loadNibNamed: @"preferences" owner: self];
6122 return self;
6123}
6124
6125
6126- (void) showForFrame: (struct frame *)f
6127{
6128 frame = f;
6129 [self setPanelFromValues];
6130 [prefsWindow makeKeyAndOrderFront: self];
6131 [prefsWindow display];
6132}
6133
6134
6135- (void) setPanelFromValues
6136{
facfbbbd
SM
6137 int cursorType
6138 = ns_lisp_to_cursor_type (get_frame_param (frame, Qcursor_type));
edfda783
AR
6139 prevExpandSpace = XFLOATINT (ns_expand_space);
6140 prevBlinkRate = NILP (ns_cursor_blink_rate)
6141 ? 0 : XFLOATINT (ns_cursor_blink_rate);
6142
6143#ifdef NS_IMPL_COCOA
6144 prevUseHighlightColor = ns_use_system_highlight_color;
6145#endif
6146
6147 [expandSpaceSlider setFloatValue: prevExpandSpace];
6148 [cursorBlinkSlider setFloatValue: prevBlinkRate];
6149 [cursorTypeMatrix selectCellWithTag: (cursorType == filled_box ? 1 :
6150 (cursorType == bar ? 2 :
6151 (cursorType == underscore ? 3 : 4)))];
6882361b
SM
6152 selectItemWithTag (alternateModMenu,
6153 parse_solitary_modifier (ns_alternate_modifier));
6154 selectItemWithTag (commandModMenu,
6155 parse_solitary_modifier (ns_command_modifier));
edfda783 6156#ifdef NS_IMPL_COCOA
6882361b
SM
6157 selectItemWithTag (controlModMenu,
6158 parse_solitary_modifier (ns_control_modifier));
6159 selectItemWithTag (functionModMenu,
6160 parse_solitary_modifier (ns_function_modifier));
5c976973
AR
6161 [smoothFontsCheck setState: (NILP (ns_antialias_text) ? NO : YES)];
6162 [useQuickdrawCheck setState: (NILP (ns_use_qd_smoothing) ? NO : YES)];
6163 [useSysHiliteCheck setState: (NILP (prevUseHighlightColor) ? NO : YES)];
edfda783
AR
6164#endif
6165}
6166
6167
6168- (void) setValuesFromPanel
6169{
6170 int cursorTag = [[cursorTypeMatrix selectedCell] tag];
6171 int altTag = [[alternateModMenu selectedItem] tag];
6172 int cmdTag = [[commandModMenu selectedItem] tag];
6173#ifdef NS_IMPL_COCOA
6174 int ctrlTag = [[controlModMenu selectedItem] tag];
6175 int fnTag = [[functionModMenu selectedItem] tag];
6176#endif
6177 float blinkRate = [cursorBlinkSlider floatValue];
6178 float expandSpace = [expandSpaceSlider floatValue];
6179 Lisp_Object old_cursor_blink_mode;
6180
6181 if (expandSpace != prevExpandSpace)
6182 {
6183 ns_expand_space = make_float (expandSpace);
6184 /* PENDING: more needed: store needed metrics in nsfont_info, update
6185 frame default font max_bounds and fontp, recompute faces */
6186/* FRAME_LINE_HEIGHT (frame) *= (expandSpace / prevExpandSpace);
6187 x_set_window_size (frame, 0, frame->text_cols, frame->text_lines); */
6188 prevExpandSpace = expandSpace;
6189 }
6190 if (blinkRate != prevBlinkRate)
6191 {
6192 old_cursor_blink_mode = ns_cursor_blink_mode;
6193 if (blinkRate == 0.0)
6194 {
6195 ns_cursor_blink_rate = Qnil;
6196 ns_cursor_blink_mode = Qnil;
6197 }
6198 else
6199 {
6200 ns_cursor_blink_rate = make_float (blinkRate);
6201 ns_cursor_blink_mode = Qt;
6202 }
facfbbbd 6203 if (!EQ (ns_cursor_blink_mode, old_cursor_blink_mode))
edfda783
AR
6204 Feval (Fcons (intern ("blink-cursor-mode"), Qnil));
6205
6206 if (blinkRate != 0.0 && prevBlinkRate != 0.0)
6207 { /* if changed rates, remove blink handler so change picked up */
6208 struct ns_display_info *dpyinfo = FRAME_NS_DISPLAY_INFO (frame);
6209 [cursor_blink_entry invalidate];
6210 [cursor_blink_entry release];
6211 cursor_blink_entry = 0;
6212 if (dpyinfo->ns_highlight_frame)
6213 {
facfbbbd
SM
6214 Lisp_Object tem
6215 = get_frame_param (dpyinfo->ns_highlight_frame, Qcursor_type);
6216 dpyinfo->ns_highlight_frame->output_data.ns->desired_cursor
6217 = ns_lisp_to_cursor_type (tem);
edfda783
AR
6218 }
6219 }
6220 prevBlinkRate = blinkRate;
6221 }
facfbbbd
SM
6222 FRAME_NEW_CURSOR (frame)
6223 = (cursorTag == 1 ? filled_box
6224 : cursorTag == 2 ? bar
6225 : cursorTag == 3 ? underscore : hollow_box);
edfda783
AR
6226 store_frame_param (frame, Qcursor_type,
6227 ns_cursor_type_to_lisp (FRAME_NEW_CURSOR (frame)));
6228 ns_alternate_modifier = ns_mod_to_lisp (altTag);
6229 ns_command_modifier = ns_mod_to_lisp (cmdTag);
6230#ifdef NS_IMPL_COCOA
6231 ns_control_modifier = ns_mod_to_lisp (ctrlTag);
6232 ns_function_modifier = ns_mod_to_lisp (fnTag);
5c976973
AR
6233 ns_antialias_text = [smoothFontsCheck state] ? Qt : Qnil;
6234 ns_use_qd_smoothing = [useQuickdrawCheck state] ? Qt : Qnil;
6235 ns_use_system_highlight_color = [useSysHiliteCheck state] ? Qt : Qnil;
6236 if (! EQ (ns_use_system_highlight_color, prevUseHighlightColor))
edfda783
AR
6237 {
6238 prevUseHighlightColor = ns_use_system_highlight_color;
5c976973 6239 if (EQ (ns_use_system_highlight_color, Qt))
edfda783
AR
6240 {
6241 ns_selection_color = [[NSUserDefaults standardUserDefaults]
6242 stringForKey: @"AppleHighlightColor"];
6243 if (ns_selection_color == nil)
6244 ns_selection_color = NS_SELECTION_COLOR_DEFAULT;
6245 }
6246 else
6247 ns_selection_color = NS_SELECTION_COLOR_DEFAULT;
6248 }
6249#endif /* NS_IMPL_COCOA */
6250 Fcall_interactively (intern ("ns-save-preferences"), Qnil, Qnil);
6251}
6252
6253
6254/* buttons */
6255- (IBAction)cancel: (id)sender
6256{
6257 [prefsWindow close];
6258}
6259
6260
6261- (IBAction)ok: (id)sender
6262{
6263 [self setValuesFromPanel];
6264 [prefsWindow close];
6265}
6266
6267
6268- (IBAction)resetToDefaults: (id)sender
6269{
6270 ns_set_default_prefs ();
6271 [self setPanelFromValues];
6272}
6273
6274
6275- (IBAction)runHelp: (id)sender
6276{
6277 Feval (Fcons (intern ("info"),
6278 Fcons (build_string ("(ns-emacs)Preferences Panel"), Qnil)));
6279 SET_FRAME_GARBAGED (frame);
6280 ns_send_appdefined (-1);
6281}
6282
6283
6284- (IBAction)setColors: (id)sender
6285{
6286 Lisp_Object lispFrame;
6287 XSETFRAME (lispFrame, frame);
6288 Fns_popup_color_panel (lispFrame);
6289}
6290
6291
6292- (IBAction)setDefaultFont: (id)sender
6293{
6294 Lisp_Object lispFrame;
6295 XSETFRAME (lispFrame, frame);
6296 Fns_popup_font_panel (lispFrame);
6297}
6298
6299@end /* EmacsPrefsController */
6300
6301
6302
6303
6304/* ==========================================================================
6305
6306 Font-related functions; these used to be in nsfaces.m
6307
6308 ========================================================================== */
6309
6310
6311Lisp_Object
6312x_new_font (struct frame *f, Lisp_Object font_object, int fontset)
6313{
6314 struct font *font = XFONT_OBJECT (font_object);
6315
6316 if (fontset < 0)
6317 fontset = fontset_from_font (font_object);
6318 FRAME_FONTSET (f) = fontset;
6319
6320 if (FRAME_FONT (f) == font)
6321 /* This font is already set in frame F. There's nothing more to
6322 do. */
6323 return font_object;
6324
6325 FRAME_FONT (f) = font;
6326
6327 FRAME_BASELINE_OFFSET (f) = font->baseline_offset;
6328 FRAME_COLUMN_WIDTH (f) = font->average_width;
6329 FRAME_SPACE_WIDTH (f) = font->space_width;
6330 FRAME_LINE_HEIGHT (f) = font->height;
6331
6332 compute_fringe_widths (f, 1);
6333
6334 /* Compute the scroll bar width in character columns. */
6335 if (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0)
6336 {
6337 int wid = FRAME_COLUMN_WIDTH (f);
6338 FRAME_CONFIG_SCROLL_BAR_COLS (f)
6339 = (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) + wid - 1) / wid;
6340 }
6341 else
6342 {
6343 int wid = FRAME_COLUMN_WIDTH (f);
6344 FRAME_CONFIG_SCROLL_BAR_COLS (f) = (14 + wid - 1) / wid;
6345 }
6346
6347 /* Now make the frame display the given font. */
6348 if (FRAME_NS_WINDOW (f) != 0)
6349 x_set_window_size (f, 0, FRAME_COLS (f), FRAME_LINES (f));
6350
6351 return font_object;
6352}
6353
6354
6355Lisp_Object
6356ns_list_fonts (FRAME_PTR f, Lisp_Object pattern, int size, int maxnames)
6357/* --------------------------------------------------------------------------
6358 This is used by the xfaces system. It is expected to speak XLFD.
6359 -------------------------------------------------------------------------- */
6360{
6361 Lisp_Object list = Qnil,
6362 rpattern,
6363 key,
6364 tem,
6365 args[2];
6366 struct re_pattern_buffer *bufp;
6367 id fm = [NSFontManager sharedFontManager];
6368 NSEnumerator *fenum, *senum;
6369 NSArray *membInfo;
6370 NSString *fontname;
6371 const char *xlfdName;
6372 char *pattFam;
6373 char *patt;
6374 NSString *famName;
6375
6376 NSTRACE (ns_list_fonts);
6377
6378 CHECK_STRING (pattern);
6882361b 6379 patt = SDATA (pattern);
edfda783
AR
6380
6381#if 0
6382/* temporary: for font_backend, we use fontsets, and when these are defined,
6383 the old XLFD-based system is used; eventually this will be replaced by
6384 backend code, but for now we allow specs that are just family names */
6385 /* if pattern is not XLFD, panic now */
6386 if (patt[0] != '-')
6387 error ("ns_list_fonts: X font name (XLFD) expected.");
6388
6389 /* if unicode encoding not requested, also die */
6390 if (!strstr (patt, "iso10646") && patt[strlen (patt)-3] != '*')
6391 return Qnil;
6392#endif /* 0 */
6393
6394 key = f ? Fcons (pattern, make_number (maxnames)) : Qnil;
6395 tem = f ? XCDR (FRAME_NS_DISPLAY_INFO (f)->name_list_element) : Qnil;
6396
6397 /* See if we cached the result for this particular query.
6398 The cache is an alist of the form:
6399 ((((PATTERN . MAXNAMES) FONTNAME) ...) ...)
6400 */
6401 if (f && !NILP (list = Fassoc (key, tem)))
6402 {
6403 list = Fcdr_safe (list);
6404 /* We have a cached list. Don't have to get the list again. */
6405 if (!NILP (list))
6406 return list;
6407 }
6408
6409 if (patt[0] != '-')
6410 pattFam = patt;
6411 else
6412 pattFam = ns_xlfd_to_fontname (patt);
6413 /*PENDING: '*' at beginning matches literally.. */
6414 if (pattFam[0] == '*')
6415 pattFam[0] = '.';
6416
6417 /* must start w/family name, but can have other stuff afterwards
6418 (usually bold and italic specifiers) */
6419 args[0] = build_string ("^");
6420 args[1] = build_string (pattFam);
6421 rpattern = Fconcat (2, args);
6422 bufp = compile_pattern (rpattern, 0, Vascii_canon_table, 0, 0);
6423
6424 list = Qnil;
6425 fenum = [[fm availableFontFamilies] objectEnumerator];
6426 while ( (famName = [fenum nextObject]) )
6427 {
6428 NSMutableString *tmp = [famName mutableCopy];
6429 const char *fname;
6430 NSRange r;
6431
6432 /* remove spaces, to look like postscript name */
6433 while ((r = [tmp rangeOfString: @" "]).location != NSNotFound)
6434 [tmp deleteCharactersInRange: r];
6435
6436 fname = [tmp UTF8String];
6437 int len = strlen (fname);
6438 BOOL foundItal;
6439 const char *synthItalFont;
6440
6441 if (re_search (bufp, fname, len, 0, len, 0) >= 0)
6442 {
6443 /* Found a family. Add all variants. If we have no italic variant,
6444 add a synthItal. */
6445 senum =[[fm availableMembersOfFontFamily: famName] objectEnumerator];
6446 foundItal = NO;
6447 synthItalFont = NULL;
6448 while (membInfo = [senum nextObject])
6449 {
facfbbbd
SM
6450 xlfdName
6451 = ns_fontname_to_xlfd ([[membInfo objectAtIndex: 0]
6452 UTF8String]);
edfda783
AR
6453 list = Fcons (build_string (xlfdName), list);
6454 if (!synthItalFont)
6455 {
facfbbbd
SM
6456 NSString *synthName
6457 = [[membInfo objectAtIndex: 0]
6458 stringByAppendingString: @"-synthItal"];
edfda783
AR
6459 synthItalFont = [synthName UTF8String];
6460 }
6461 else if ([[membInfo objectAtIndex: 3] intValue]
6462 & NSItalicFontMask)
6463 foundItal = YES;
6464 }
6465 if (foundItal == NO)
6466 {
6467 xlfdName = ns_fontname_to_xlfd (synthItalFont);
6468 list = Fcons (build_string (xlfdName), list);
6469 }
6470 }
6471 [tmp release];
6472 }
6473
6474 /* fallback */
6475 if (XFASTINT (Flength (list)) == 0)
6476 list = Fcons (build_string (ns_fontname_to_xlfd ("Monaco")), list);
6477
6478 /* store result in cache */
6479 if (f != NULL)
6480 XCDR_AS_LVALUE (FRAME_NS_DISPLAY_INFO (f)->name_list_element)
6481 = Fcons (Fcons (key, list),
6482 XCDR (FRAME_NS_DISPLAY_INFO (f)->name_list_element));
6483 return list;
6484}
6485
6486
6487/* XLFD: -foundry-family-weight-slant-swidth-adstyle-pxlsz-ptSz-resx-resy-spc-avgWidth-rgstry-encoding */
6488
6489const char *
6490ns_font_to_xlfd (NSFont *nsfont)
6491/* --------------------------------------------------------------------------
6492 Convert an NS font name to an X font name (XLFD).
6493 The string returned is temporarily allocated.
6494 -------------------------------------------------------------------------- */
6495{
6496 NSFontManager *mgr = [NSFontManager sharedFontManager];
6497 NSString *sname = [nsfont /*familyName*/fontName];
6498 char *famName = [sname UTF8String];
6499 char *weightStr = [mgr fontNamed: sname hasTraits: NSBoldFontMask] ?
6500 "bold" : "medium";
6501 char *slantStr = [mgr fontNamed: sname hasTraits: NSItalicFontMask] ?
6502 "i" : "r";
6503 int size = [nsfont pointSize];
6504 int aWidth = lrint (10.0 * [nsfont widthOfString: @"a"]);
6505 const char *xlfd;
6506 int i, len;
6507
6508 /* change '-' to '$' to avoid messing w/XLFD separator */
6509 for (len =strlen (famName), i =0; i<len; i++)
6510 if (famName[i] == '-')
6511 {
6512 famName[i] = '\0';
6513 break;
6514 }
6515
6516 xlfd = [[NSString stringWithFormat:
6517 @"-apple-%s-%s-%s-normal--%d-%d-75-75-m-%d-iso10646-1",
6518 famName, weightStr, slantStr, size, 10*size, aWidth]
6519 UTF8String];
6520/*fprintf (stderr, "converted '%s' to '%s'\n",name,xlfd); */
6521 return xlfd;
6522}
6523
6524const char *
6525ns_fontname_to_xlfd (const char *name)
6526/* --------------------------------------------------------------------------
6527 Convert an NS font name to an X font name (XLFD).
6528 Sizes are set to 0.
6529 The string returned is temporarily allocated.
6530 -------------------------------------------------------------------------- */
6531{
6532 char famName[180];
6533 char *weightStr = strcasestr (name, "bold") ? "bold" : "medium";
6534 char *slantStr = strcasestr (name, "italic") || strcasestr (name, "oblique")
6535 || strcasestr (name, "synthital") ? "i" : "r";
6536 int i, len;
6537 const char *xlfd;
6538
6539 /* change '-' to '$' to avoid messing w/XLFD separator, and ' ' to '_' */
6540 bzero (famName, 180);
6541 bcopy (name, famName, max (strlen (name), 179));
6542 for (len =strlen (famName), i =0; i<len; i++)
6543 {
6544 if (famName[i] == '-')
6545 famName[i] = '$';
6546 else if (famName[i] == ' ')
6547 famName[i] = '_';
6548 }
6549
6550 xlfd = [[NSString stringWithFormat:
6551 @"-apple-%s-%s-%s-normal--0-0-75-75-m-0-iso10646-1",
6552 famName, weightStr, slantStr]
6553 UTF8String];
6554/*fprintf (stderr, "converted '%s' to '%s'\n",name,xlfd); */
6555 return xlfd;
6556}
6557
6558
6559const char *
6560ns_xlfd_to_fontname (const char *xlfd)
6561/* --------------------------------------------------------------------------
6562 Convert an X font name (XLFD) to an NS font name.
6563 Only family is used.
6564 The string returned is temporarily allocated.
6565 -------------------------------------------------------------------------- */
6566{
6567 char *name = xmalloc (180);
6568 int i, len;
6569 const char *ret;
6570
6571 if (!strncmp (xlfd, "--", 2))
6572 sscanf (xlfd, "--%*[^-]-%[^-]179-", name);
6573 else
6574 sscanf (xlfd, "-%*[^-]-%[^-]179-", name);
6575
6576 /* stopgap for malformed XLFD input */
6577 if (strlen (name) == 0)
6578 strcpy (name, "Monaco");
6579
6580 /* undo hack in ns_fontname_to_xlfd, converting '$' to '-', '_' to ' '
6581 also uppercase after '-' or ' ' */
6582 name[0] = toupper (name[0]);
6583 for (len =strlen (name), i =0; i<len; i++)
6584 {
6585 if (name[i] == '$')
6586 {
6587 name[i] = '-';
6588 if (i+1<len)
6589 name[i+1] = toupper (name[i+1]);
6590 }
6591 else if (name[i] == '_')
6592 {
6593 name[i] = ' ';
6594 if (i+1<len)
6595 name[i+1] = toupper (name[i+1]);
6596 }
6597 }
6598/*fprintf (stderr, "converted '%s' to '%s'\n",xlfd,name); */
6599 ret = [[NSString stringWithUTF8String: name] UTF8String];
6600 xfree (name);
6601 return ret;
6602}
0ae1e5e5 6603
2f8e74bb 6604// arch-tag: 6eaa8f7d-a69b-4e1c-b43d-ab31defbe0d2