(Search-based Fontification): Correct a typo.
[emacs.git] / src / nsterm.h
blobb1bff2e916fff5cd80a7d9f41444d3b033f30f6f
1 /* Definitions and headers for communication with NeXT/Open/GNUstep API.
2 Copyright (C) 1989, 1993, 2005, 2008, 2009 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include "dispextern.h"
21 #include "frame.h"
22 #include "character.h"
23 #include "font.h"
25 #ifdef HAVE_NS
27 #ifdef __OBJC__
29 /* ==========================================================================
31 The Emacs application
33 ========================================================================== */
35 /* We override sendEvent: as a means to stop/start the event loop */
36 @interface EmacsApp : NSApplication
39 - (void)logNotification: (NSNotification *)notification;
40 - (void)sendEvent: (NSEvent *)theEvent;
41 - (void)showPreferencesWindow: (id)sender;
42 - (BOOL) openFile: (NSString *)fileName;
43 - (void)fd_handler: (NSTimer *) fdEntry;
44 - (void)timeout_handler: (NSTimer *)timedEntry;
45 - (BOOL)fulfillService: (NSString *)name withArg: (NSString *)arg;
46 @end
49 /* ==========================================================================
51 The main Emacs view
53 ========================================================================== */
55 @class EmacsToolbar;
57 @interface EmacsView : NSView <NSTextInput>
59 char *old_title;
60 BOOL windowClosing;
61 NSString *workingText;
62 BOOL processingCompose;
63 @public
64 struct frame *emacsframe;
65 int rows, cols;
66 int scrollbarsNeedingUpdate;
67 EmacsToolbar *toolbar;
70 /* AppKit-side interface */
71 - menuDown: sender;
72 - toolbarClicked: (id)item;
73 - toggleToolbar: (id)sender;
74 - (void)keyDown: (NSEvent *)theEvent;
75 - (void)mouseDown: (NSEvent *)theEvent;
76 - (void)mouseUp: (NSEvent *)theEvent;
77 - setMiniwindowImage: (BOOL)setMini;
79 /* Emacs-side interface */
80 - initFrameFromEmacs: (struct frame *) f;
81 - (void) setRows: (int) r andColumns: (int) c;
82 - (void) setWindowClosing: (BOOL)closing;
83 - (EmacsToolbar *) toolbar;
84 - (void) deleteWorkingText;
86 #ifdef NS_IMPL_GNUSTEP
87 /* Not declared, but useful. */
88 - (void) unlockFocusNeedsFlush: (BOOL)needs;
89 #endif
90 @end
93 /* Small utility used for processing resize events under Cocoa. */
94 @interface EmacsWindow : NSWindow
96 NSPoint grabOffset;
98 @end
101 /* ==========================================================================
103 The main menu implementation
105 ========================================================================== */
107 @interface EmacsMenu : NSMenu
109 struct frame *frame;
110 unsigned long keyEquivModMask;
113 - initWithTitle: (NSString *)title frame: (struct frame *)f;
114 - (void)setFrame: (struct frame *)f;
115 - (void)menuNeedsUpdate: (NSMenu *)menu; /* (delegate method) */
116 - (NSString *)parseKeyEquiv: (char *)key;
117 - (NSMenuItem *)addItemWithWidgetValue: (void *)wvptr;
118 - (void)fillWithWidgetValue: (void *)wvptr;
119 - (EmacsMenu *)addSubmenuWithTitle: (char *)title forFrame: (struct frame *)f;
120 - (void) clear;
121 - (Lisp_Object)runMenuAt: (NSPoint)p forFrame: (struct frame *)f
122 keymaps: (int)keymaps;
123 @end
126 /* ==========================================================================
128 Toolbar
130 ========================================================================== */
132 @class EmacsImage;
134 @interface EmacsToolbar : NSToolbar
136 EmacsView *emacsView;
137 NSMutableDictionary *identifierToItem;
138 NSMutableArray *activeIdentifiers;
139 NSArray *prevIdentifiers;
140 unsigned long enablement, prevEnablement;
142 - initForView: (EmacsView *)view withIdentifier: (NSString *)identifier;
143 - (void) clearActive;
144 - (BOOL) changed;
145 - (void) addDisplayItemWithImage: (EmacsImage *)img idx: (int)idx
146 helpText: (char *)help
147 enabled: (BOOL)enabled;
148 /* delegate methods */
149 - (NSToolbarItem *)toolbar: (NSToolbar *)toolbar
150 itemForItemIdentifier: (NSString *)itemIdentifier
151 willBeInsertedIntoToolbar: (BOOL)flag;
152 - (NSArray *)toolbarDefaultItemIdentifiers: (NSToolbar *)toolbar;
153 - (NSArray *)toolbarAllowedItemIdentifiers: (NSToolbar *)toolbar;
154 @end
157 /* ==========================================================================
159 Message / question windows
161 ========================================================================== */
163 @interface EmacsDialogPanel : NSPanel
165 NSTextField *command;
166 NSTextField *title;
167 NSMatrix *matrix;
168 int rows, cols;
170 - initFromContents: (Lisp_Object)menu isQuestion: (BOOL)isQ;
171 - addButton: (char *)str value: (Lisp_Object)val row: (int)row;
172 - addString: (char *)str row: (int)row;
173 - addSplit;
174 - (Lisp_Object)runDialogAt: (NSPoint)p;
175 @end
177 @interface EmacsTooltip : NSObject
179 NSWindow *win;
180 NSTextField *textField;
181 NSTimer *timer;
183 - init;
184 - (void) setText: (char *)text;
185 - (void) showAtX: (int)x Y: (int)y for: (int)seconds;
186 - (void) hide;
187 - (BOOL) isActive;
188 - (NSRect) frame;
189 @end
192 /* ==========================================================================
194 File open/save panels
195 This and next override methods to work around OS X behavior of
196 restarting application loop when user dismisses panel.
198 ========================================================================== */
200 @interface EmacsSavePanel : NSSavePanel
203 @end
204 @interface EmacsOpenPanel : NSOpenPanel
207 @end
209 @interface EmacsFileDelegate : NSObject
212 - (BOOL)panel: (id)sender isValidFilename: (NSString *)filename;
213 - (BOOL)panel: (id)sender shouldShowFilename: (NSString *)filename;
214 - (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename
215 confirmed: (BOOL)okFlag;
216 @end
219 /* ==========================================================================
221 Images and stippling
223 ========================================================================== */
225 @interface EmacsImage : NSImage
227 id imageListNext;
228 int refCount;
229 NSBitmapImageRep *bmRep; /* used for accessing pixel data */
230 unsigned char *pixmapData[5]; /* shortcut to access pixel data */
231 BOOL onTiger;
232 NSColor *stippleMask;
234 + allocInitFromFile: (Lisp_Object)file;
235 - reference;
236 - imageListSetNext: (id)arg;
237 - imageListNext;
238 - (void)dealloc;
239 - initFromXBM: (unsigned char *)bits width: (int)w height: (int)h
240 flip: (BOOL)flip;
241 - initFromSkipXBM: (unsigned char *)bits width: (int)w height: (int)h
242 flip: (BOOL)flip length: (int)length;
243 - setXBMColor: (NSColor *)color;
244 - initForXPMWithDepth: (int)depth width: (int)width height: (int)height;
245 - (void)setPixmapData;
246 - (unsigned long)getPixelAtX: (int)x Y: (int)y;
247 - (void)setPixelAtX: (int)x Y: (int)y toRed: (unsigned char)r
248 green: (unsigned char)g blue: (unsigned char)b
249 alpha:(unsigned char)a;
250 - (void)setAlphaAtX: (int)x Y: (int)y to: (unsigned char)a;
251 - (NSColor *)stippleMask;
252 @end
255 /* ==========================================================================
257 Scrollbars
259 ========================================================================== */
261 @interface EmacsScroller : NSScroller
263 Lisp_Object win;
264 struct frame *frame;
265 NSResponder *prevResponder;
267 /* offset to the bottom of knob of last mouse down */
268 float last_mouse_offset;
269 float min_portion;
270 int pixel_height;
271 int last_hit_part;
273 BOOL condemned;
275 /* optimize against excessive positioning calls generated by emacs */
276 int em_position;
277 int em_portion;
278 int em_whole;
281 - initFrame: (NSRect )r window: (Lisp_Object)win;
282 - (void)setFrame: (NSRect)r;
283 - (void)dealloc;
285 - setPosition: (int) position portion: (int) portion whole: (int) whole;
286 - (int) checkSamePosition: (int)position portion: (int)portion
287 whole: (int)whole;
288 - (void) getMouseMotionPart: (int *)part window: (Lisp_Object *)window
289 x: (Lisp_Object *)x y: ( Lisp_Object *)y;
290 - (void) sendScrollEventAtLoc: (float)loc fromEvent: (NSEvent *)e;
291 - repeatScroll: (NSTimer *)sender;
292 - condemn;
293 - reprieve;
294 - judge;
295 @end
298 /* ==========================================================================
300 Rendering on Panther and above
302 ========================================================================== */
304 #ifdef NS_IMPL_COCOA
305 /* rendering util */
306 @interface EmacsGlyphStorage : NSObject <NSGlyphStorage>
308 @public
309 NSAttributedString *attrStr;
310 NSMutableDictionary *dict;
311 CGGlyph *cglyphs;
312 unsigned long maxChar, maxGlyph;
313 long i, len;
315 - initWithCapacity: (unsigned long) c;
316 - (void) setString: (NSString *)str font: (NSFont *)font;
317 @end
318 #endif /* NS_IMPL_COCOA */
321 /* ==========================================================================
323 Running the preferences window
325 ========================================================================== */
327 @interface EmacsPrefsController : NSObject
329 struct frame *frame;
330 IBOutlet NSWindow *prefsWindow;
331 IBOutlet NSPopUpButton *alternateModMenu;
332 IBOutlet NSPopUpButton *commandModMenu;
333 #ifdef NS_IMPL_COCOA
334 IBOutlet NSPopUpButton *controlModMenu;
335 IBOutlet NSPopUpButton *functionModMenu;
336 #endif
337 IBOutlet NSMatrix *cursorTypeMatrix;
338 IBOutlet NSSlider *cursorBlinkSlider;
339 IBOutlet NSSlider *expandSpaceSlider;
340 #ifdef NS_IMPL_COCOA
341 IBOutlet NSButton *smoothFontsCheck;
342 IBOutlet NSButton *useQuickdrawCheck;
343 IBOutlet NSButton *useSysHiliteCheck;
344 Lisp_Object prevUseHighlightColor;
345 #endif
346 float prevExpandSpace;
347 float prevBlinkRate;
349 - (IBAction)cancel: (id)sender;
350 - (IBAction)ok: (id)sender;
351 - (IBAction)resetToDefaults: (id)sender;
352 - (IBAction)runHelp: (id)sender;
353 - (IBAction)setColors: (id)sender;
354 - (IBAction)setDefaultFont: (id)sender;
356 - (void) showForFrame: (struct frame *)f;
357 - (void) setPanelFromValues;
358 - (void) setPanelFromDefaultValues;
359 - (void) setValuesFromPanel;
360 @end
362 extern NSArray *ns_send_types, *ns_return_types;
363 extern EmacsMenu *mainMenu, *svcsMenu, *dockMenu;
365 /* Apple removed the declaration, but kept the implementation */
366 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
367 @interface NSApplication (EmacsApp)
368 - (void)setAppleMenu: (NSMenu *)menu;
369 @end
370 #endif
372 #ifndef NS_HAVE_NSINTEGER
373 typedef long NSInteger;
374 typedef unsigned long NSUInteger;
375 #endif /* not NS_HAVE_NSINTEGER */
377 #endif /* __OBJC__ */
381 /* ==========================================================================
383 Non-OO stuff
385 ========================================================================== */
387 /* Special keycodes that we pass down the event chain */
388 #define KEY_NS_POWER_OFF ((1<<28)|(0<<16)|1)
389 #define KEY_NS_OPEN_FILE ((1<<28)|(0<<16)|2)
390 #define KEY_NS_OPEN_TEMP_FILE ((1<<28)|(0<<16)|3)
391 #define KEY_NS_DRAG_FILE ((1<<28)|(0<<16)|4)
392 #define KEY_NS_DRAG_COLOR ((1<<28)|(0<<16)|5)
393 #define KEY_NS_DRAG_TEXT ((1<<28)|(0<<16)|6)
394 #define KEY_NS_CHANGE_FONT ((1<<28)|(0<<16)|7)
395 #define KEY_NS_OPEN_FILE_LINE ((1<<28)|(0<<16)|8)
396 #define KEY_NS_PUT_WORKING_TEXT ((1<<28)|(0<<16)|9)
397 #define KEY_NS_UNPUT_WORKING_TEXT ((1<<28)|(0<<16)|10)
398 #define KEY_NS_SPI_SERVICE_CALL ((1<<28)|(0<<16)|11)
399 #define KEY_NS_NEW_FRAME ((1<<28)|(0<<16)|12)
400 #define KEY_NS_TOGGLE_TOOLBAR ((1<<28)|(0<<16)|13)
401 #define KEY_NS_INFO_PREFS ((1<<28)|(0<<16)|14)
403 /* could use list to store these, but rest of emacs has a big infrastructure
404 for managing a table of bitmap "records" */
405 struct ns_bitmap_record
407 #ifdef __OBJC__
408 EmacsImage *img;
409 #else
410 void *img;
411 #endif
412 char *file;
413 int refcount;
414 int height, width, depth;
417 /* this to map between emacs color indices and NSColor objects */
418 struct ns_color_table
420 unsigned int size;
421 unsigned int avail;
422 #ifdef __OBJC__
423 NSColor **colors;
424 NSMutableSet *empty_indices;
425 #else
426 void **items;
427 void *availIndices;
428 #endif
430 #define NS_COLOR_CAPACITY 256
432 #define RGB_TO_ULONG(r, g, b) (((r) << 16) | ((g) << 8) | (b))
433 #define ARGB_TO_ULONG(a, r, g, b) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
435 #define ALPHA_FROM_ULONG(color) ((color) >> 24)
436 #define RED_FROM_ULONG(color) (((color) >> 16) & 0xff)
437 #define GREEN_FROM_ULONG(color) (((color) >> 8) & 0xff)
438 #define BLUE_FROM_ULONG(color) ((color) & 0xff)
440 /* Do not change `* 0x101' in the following lines to `<< 8'. If
441 changed, image masks in 1-bit depth will not work. */
442 #define RED16_FROM_ULONG(color) (RED_FROM_ULONG(color) * 0x101)
443 #define GREEN16_FROM_ULONG(color) (GREEN_FROM_ULONG(color) * 0x101)
444 #define BLUE16_FROM_ULONG(color) (BLUE_FROM_ULONG(color) * 0x101)
446 /* this extends font backend font */
447 struct nsfont_info
449 struct font font;
451 char *name; /* postscript name, uniquely identifies on NS systems */
452 float width; /* this and following metrics stored as float rather than int */
453 float height;
454 float underpos;
455 float underwidth;
456 float size;
457 #ifdef __OBJC__
458 NSFont *nsfont;
459 /* cgfont and synthItal are used only on OS X 10.3+ */
460 #if defined (NS_IMPL_COCOA) && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3)
461 CGFontRef cgfont;
462 #else /* GNUstep or OS X < 10.3 */
463 void *cgfont;
464 #endif
465 #else /* ! OBJC */
466 void *nsfont;
467 void *cgfont;
468 #endif
469 char bold, ital; /* convenience flags */
470 char synthItal;
471 float voffset; /* mean of ascender/descender offsets */
472 XCharStruct max_bounds;
473 /* we compute glyph codes and metrics on-demand in blocks of 256 indexed
474 by hibyte, lobyte */
475 unsigned short **glyphs; /* map unicode index to glyph */
476 struct font_metrics **metrics;
480 /* init'd in ns_initialize_display_info () */
481 struct ns_display_info
483 /* Chain of all ns_display_info structures. */
484 struct ns_display_info *next;
486 /* The generic display parameters corresponding to this NS display. */
487 struct terminal *terminal;
489 /* This is a cons cell of the form (NAME . FONT-LIST-CACHE).
490 The same cons cell also appears in ns_display_name_list. */
491 Lisp_Object name_list_element;
493 /* The number of fonts loaded. */
494 int n_fonts;
496 /* Minimum width over all characters in all fonts in font_table. */
497 int smallest_char_width;
499 /* Minimum font height over all fonts in font_table. */
500 int smallest_font_height;
502 struct ns_bitmap_record *bitmaps;
503 int bitmaps_size;
504 int bitmaps_last;
506 struct image_cache *image_cache;
508 struct ns_color_table *color_table;
510 /* DPI resolution of this screen */
511 double resx, resy;
513 /* Mask of things that cause the mouse to be grabbed */
514 int grabbed;
516 int n_planes;
518 int color_p;
520 Window root_window;
522 /* Xism */
523 XrmDatabase xrdb;
525 /* The cursor to use for vertical scroll bars. */
526 Cursor vertical_scroll_bar_cursor;
528 /* most mouse face stuff moved in here as of 21+ (and reasonably so) */
529 int mouse_face_beg_row, mouse_face_beg_col;
530 int mouse_face_end_row, mouse_face_end_col;
531 int mouse_face_beg_x, mouse_face_beg_y;
532 int mouse_face_end_x, mouse_face_end_y;
533 int mouse_face_past_end;
534 Lisp_Object mouse_face_window;
535 int mouse_face_face_id;
536 int mouse_face_deferred_gc;
537 Lisp_Object mouse_face_overlay;
538 FRAME_PTR mouse_face_mouse_frame;
539 int mouse_face_mouse_x, mouse_face_mouse_y;
540 int mouse_face_defer;
541 int mouse_face_hidden;
542 int mouse_face_image_state;
544 struct frame *x_highlight_frame;
545 struct frame *x_focus_frame;
548 /* This is a chain of structures for all the NS displays currently in use. */
549 extern struct ns_display_info *x_display_list;
551 extern Lisp_Object ns_display_name_list;
552 extern struct ns_display_info *ns_display_info_for_name ();
554 struct ns_display_info *check_x_display_info (Lisp_Object frame);
555 FRAME_PTR check_x_frame (Lisp_Object frame);
558 struct ns_output
560 #ifdef __OBJC__
561 EmacsView *view;
562 id miniimage;
563 NSColor *cursor_color;
564 NSColor *foreground_color;
565 NSColor *background_color;
566 EmacsToolbar *toolbar;
567 #else
568 void *view;
569 void *miniimage;
570 void *cursor_color;
571 void *foreground_color;
572 void *background_color;
573 void *toolbar;
574 #endif
576 /* NSCursors init'ed in initFrameFromEmacs */
577 Cursor text_cursor;
578 Cursor nontext_cursor;
579 Cursor modeline_cursor;
580 Cursor hand_cursor;
581 Cursor hourglass_cursor;
582 Cursor horizontal_drag_cursor;
584 /* NS-specific */
585 Cursor current_pointer;
587 /* lord knows why Emacs needs to know about our Window ids.. */
588 Window window_desc, parent_desc;
589 char explicit_parent;
591 struct font *font;
592 int baseline_offset;
594 /* If a fontset is specified for this frame instead of font, this
595 value contains an ID of the fontset, else -1. */
596 int fontset; /* only used with font_backend */
598 Lisp_Object icon_top;
599 Lisp_Object icon_left;
601 /* The size of the extra width currently allotted for vertical
602 scroll bars, in pixels. */
603 int vertical_scroll_bar_extra;
605 /* The height of the titlebar decoration (included in NSWindow's frame). */
606 int titlebar_height;
608 /* The height of the toolbar if displayed, else 0. */
609 int toolbar_height;
611 /* This is the Emacs structure for the NS display this frame is on. */
612 struct ns_display_info *display_info;
615 /* this dummy decl needed to support TTYs */
616 struct x_output
618 unsigned long background_pixel;
619 unsigned long foreground_pixel;
623 /* This gives the ns_display_info structure for the display F is on. */
624 #define FRAME_NS_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
625 /* the primacy of X must be constantly worked with... */
626 #define FRAME_X_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
627 #define FRAME_X_OUTPUT(f) ((f)->output_data.ns)
628 #define FRAME_NS_WINDOW(f) ((f)->output_data.ns->window_desc)
629 #define FRAME_X_WINDOW(f) ((f)->output_data.ns->window_desc)
631 /* This is the `Display *' which frame F is on. */
632 #define FRAME_NS_DISPLAY(f) (0)
633 #define FRAME_X_DISPLAY(f) (0)
635 #define FRAME_FOREGROUND_COLOR(f) ((f)->output_data.ns->foreground_color)
636 #define FRAME_BACKGROUND_COLOR(f) ((f)->output_data.ns->background_color)
638 #define FRAME_X_IMAGE_CACHE(F) FRAME_NS_DISPLAY_INFO ((F))->image_cache
640 #define NS_FACE_FOREGROUND(f) ((f)->foreground)
641 #define NS_FACE_BACKGROUND(f) ((f)->background)
642 #define FRAME_NS_TITLEBAR_HEIGHT(f) ((f)->output_data.ns->titlebar_height)
643 #define FRAME_NS_TOOLBAR_HEIGHT(f) ((f)->output_data.ns->toolbar_height)
645 #define FONT_WIDTH(f) ((f)->max_width)
646 #define FONT_HEIGHT(f) ((f)->height)
647 /*#define FONT_BASE(f) ((f)->ascent) */
648 #define FONT_BASE(f) (((struct nsfont_info *)f)->max_bounds.ascent)
649 /*#define FONT_DESCENT(f) ((f)->descent) */
650 #define FONT_DESCENT(f) (((struct nsfont_info *)f)->max_bounds.descent)
652 #define FRAME_DEFAULT_FACE(f) FACE_FROM_ID (f, DEFAULT_FACE_ID)
654 #define FRAME_NS_VIEW(f) ((f)->output_data.ns->view)
655 #define FRAME_CURSOR_COLOR(f) ((f)->output_data.ns->cursor_color)
656 #define FRAME_POINTER_TYPE(f) ((f)->output_data.ns->current_pointer)
658 #define FRAME_FONT(f) ((f)->output_data.ns->font)
660 #ifdef __OBJC__
661 #define XNS_SCROLL_BAR(vec) ((id) XSAVE_VALUE (vec)->pointer)
662 #else
663 #define XNS_SCROLL_BAR(vec) XSAVE_VALUE (vec)->pointer
664 #endif
666 /* Compute pixel size for vertical scroll bars */
667 #define NS_SCROLL_BAR_WIDTH(f) \
668 (FRAME_HAS_VERTICAL_SCROLL_BARS (f) \
669 ? rint (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0 \
670 ? FRAME_CONFIG_SCROLL_BAR_WIDTH (f) \
671 : (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f))) \
672 : 0)
674 /* Difference btwn char-column-calculated and actual SB widths.
675 This is only a concern for rendering when SB on left. */
676 #define NS_SCROLL_BAR_ADJUST(w, f) \
677 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) ? \
678 (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f) \
679 - NS_SCROLL_BAR_WIDTH (f)) : 0)
681 /* XXX: fix for GNUstep inconsistent accounting for titlebar */
682 #ifdef NS_IMPL_GNUSTEP
683 #define NS_TOP_POS(f) ((f)->top_pos + 18)
684 #else
685 #define NS_TOP_POS(f) ((f)->top_pos)
686 #endif
688 #define FRAME_NS_FONT_TABLE(f) (FRAME_NS_DISPLAY_INFO (f)->font_table)
690 #define FRAME_FONTSET(f) ((f)->output_data.ns->fontset)
692 #define FRAME_SMALLEST_CHAR_WIDTH(f) \
693 (FRAME_NS_DISPLAY_INFO (f)->smallest_char_width)
694 #define FRAME_SMALLEST_FONT_HEIGHT(f) \
695 (FRAME_NS_DISPLAY_INFO (f)->smallest_font_height)
696 #define FONT_TYPE_FOR_UNIBYTE(font, ch) 0
697 #define FONT_TYPE_FOR_MULTIBYTE(font, ch) 0
698 #define FRAME_BASELINE_OFFSET(f) ((f)->output_data.ns->baseline_offset)
699 #define BLACK_PIX_DEFAULT(f) 0x000000
700 #define WHITE_PIX_DEFAULT(f) 0xFFFFFF
702 /* First position where characters can be shown (instead of scrollbar, if
703 it is on left. */
704 #define FIRST_CHAR_POSITION(f) \
705 (! (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)) ? 0 \
706 : FRAME_SCROLL_BAR_COLS (f))
708 extern struct ns_display_info *ns_term_init ();
709 extern void ns_term_shutdown (int sig);
711 /* constants for text rendering */
712 #define NS_DUMPGLYPH_NORMAL 0
713 #define NS_DUMPGLYPH_CURSOR 1
714 #define NS_DUMPGLYPH_FOREGROUND 2
715 #define NS_DUMPGLYPH_MOUSEFACE 3
718 EXFUN (Fx_display_grayscale_p, 1);
719 EXFUN (Fx_display_planes, 1);
721 /* In nsfont, called from fontset.c */
722 extern void nsfont_make_fontset_for_font (Lisp_Object name,
723 Lisp_Object font_object);
725 /* In nsfont, for debugging */
726 struct glyph_string;
727 void dump_glyphstring (struct glyph_string *s);
729 /* Implemented in nsterm, published in or needed from nsfns. */
730 extern Lisp_Object Qfontsize;
731 extern Lisp_Object ns_list_fonts (FRAME_PTR f, Lisp_Object pattern,
732 int size, int maxnames);
733 extern void ns_clear_frame (struct frame *f);
735 extern const char *ns_xlfd_to_fontname (const char *xlfd);
737 extern void check_ns (void);
738 extern Lisp_Object ns_map_event_to_object ();
739 extern Lisp_Object ns_string_from_pasteboard ();
740 extern void ns_string_to_pasteboard ();
741 extern void nxatoms_of_nsselect ();
742 extern int ns_lisp_to_cursor_type ();
743 extern Lisp_Object ns_cursor_type_to_lisp (int arg);
744 extern Lisp_Object Qnone;
745 extern char ns_no_defaults;
747 /* XColor defined in dispextern.h (we use color_def->pixel = NSColor id), but
748 this causes an #include snafu, so we can't declare it. */
749 extern int
750 ns_defined_color (struct frame *f, char *name, XColor *color_def, int alloc,
751 char makeIndex);
753 #ifdef __OBJC__
754 extern Lisp_Object ns_color_to_lisp (NSColor *col);
755 extern int ns_lisp_to_color (Lisp_Object color, NSColor **col);
756 extern NSColor *ns_lookup_indexed_color (unsigned long idx, struct frame *f);
757 extern unsigned long ns_index_color (NSColor *color, struct frame *f);
758 extern void ns_free_indexed_color (unsigned long idx, struct frame *f);
759 #endif
761 /* C access to ObjC functionality */
762 extern void ns_release_object (void *obj);
763 extern void ns_retain_object (void *obj);
764 extern void *ns_alloc_autorelease_pool ();
765 extern void ns_release_autorelease_pool ();
767 /* in nsmenu */
768 extern void update_frame_tool_bar (FRAME_PTR f);
769 extern void free_frame_tool_bar (FRAME_PTR f);
770 extern void find_and_call_menu_selection (FRAME_PTR f,
771 int menu_bar_items_used, Lisp_Object vector, void *client_data);
772 extern Lisp_Object find_and_return_menu_selection (FRAME_PTR f,
773 int keymaps,
774 void *client_data);
775 extern Lisp_Object ns_popup_dialog (Lisp_Object position, Lisp_Object contents,
776 Lisp_Object header);
778 /* two more prototypes that should be moved to a more general include file */
779 extern void set_frame_menubar (struct frame *f, int first_time, int deep_p);
780 extern void x_set_window_size (struct frame *f, int change_grav,
781 int cols, int rows);
783 /* From nsimage.m, needed in image.c */
784 struct image;
785 extern void *ns_image_from_XBM (unsigned char *bits, int width, int height);
786 extern void *ns_image_for_XPM (int width, int height, int depth);
787 extern void *ns_image_from_file (Lisp_Object file);
788 extern int ns_load_image (struct frame *f, struct image *img,
789 Lisp_Object spec_file, Lisp_Object spec_data);
790 extern int ns_image_width (void *img);
791 extern int ns_image_height (void *img);
792 extern unsigned long ns_get_pixel (void *img, int x, int y);
793 extern void ns_put_pixel (void *img, int x, int y, unsigned long argb);
794 extern void ns_set_alpha (void *img, int x, int y, unsigned char a);
796 extern int x_display_pixel_height P_ ((struct ns_display_info *));
797 extern int x_display_pixel_width P_ ((struct ns_display_info *));
799 /* This in nsterm.m */
800 extern unsigned long ns_get_rgb_color (struct frame *f,
801 float r, float g, float b, float a);
802 extern NSPoint last_mouse_motion_position;
804 #ifdef NS_IMPL_GNUSTEP
805 extern char gnustep_base_version[]; /* version tracking */
806 #endif
808 #define MINWIDTH 10
809 #define MINHEIGHT 10
811 /* Screen max coordinate
812 Using larger coordinates causes movewindow/placewindow to abort */
813 #define SCREENMAX 16000
815 #define NS_SCROLL_BAR_WIDTH_DEFAULT [EmacsScroller scrollerWidth]
816 /* This is to match emacs on other platforms, ugly though it is. */
817 #define NS_SELECTION_COLOR_DEFAULT @"LightGoldenrod2";
818 #define RESIZE_HANDLE_SIZE 12
820 /* Little utility macros */
821 #define IN_BOUND(min, x, max) (((x) < (min)) \
822 ? (min) : (((x)>(max)) ? (max) : (x)))
823 #define SCREENMAXBOUND(x) (IN_BOUND (-SCREENMAX, x, SCREENMAX))
825 /* needed somewhere... */
826 #define VERTICAL_SCROLL_BAR_WIDTH_TRIM (0)
829 #endif /* HAVE_NS */
831 /* arch-tag: 0a28b142-4ac1-4a81-a243-abcd82d9c4e5
832 (do not change this comment) */