Mention interactive call of buffer-disable-undo.
[emacs.git] / src / nsterm.h
blobc34067991f62bc583231990a993bccc8addc4d5f
1 /* Definitions and headers for communication with NeXT/Open/GNUstep API.
2 Copyright (C) 1989, 1993, 2005, 2008-2013 Free Software Foundation,
3 Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include "dispextern.h"
22 #include "frame.h"
23 #include "character.h"
24 #include "font.h"
25 #include "sysselect.h"
27 #ifdef HAVE_NS
29 #ifdef NS_IMPL_COCOA
30 #ifndef MAC_OS_X_VERSION_10_4
31 #define MAC_OS_X_VERSION_10_4 1040
32 #endif
33 #ifndef MAC_OS_X_VERSION_10_5
34 #define MAC_OS_X_VERSION_10_5 1050
35 #endif
36 #ifndef MAC_OS_X_VERSION_10_6
37 #define MAC_OS_X_VERSION_10_6 1060
38 #endif
39 #ifndef MAC_OS_X_VERSION_10_7
40 #define MAC_OS_X_VERSION_10_7 1070
41 #endif
42 #ifndef MAC_OS_X_VERSION_10_8
43 #define MAC_OS_X_VERSION_10_8 1080
44 #endif
46 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7
47 #define HAVE_NATIVE_FS
48 #endif
50 #endif /* NS_IMPL_COCOA */
52 #ifdef __OBJC__
54 /* CGFloat on GNUStep may be 4 or 8 byte, but functions expect float* for some
55 versions.
56 On Cocoa >= 10.5, functions expect CGFloat*. Make compatible type. */
57 #ifdef NS_IMPL_COCOA
59 #ifndef NS_HAVE_NSINTEGER
60 #if defined (__LP64__) && __LP64__
61 typedef double CGFloat;
62 typedef long NSInteger;
63 typedef unsigned long NSUInteger;
64 #else
65 typedef float CGFloat;
66 typedef int NSInteger;
67 typedef unsigned int NSUInteger;
68 #endif /* not LP64 */
69 #endif /* not NS_HAVE_NSINTEGER */
71 typedef CGFloat EmacsCGFloat;
73 #elif GNUSTEP_GUI_MAJOR_VERSION > 0 || GNUSTEP_GUI_MINOR_VERSION >= 22
74 typedef CGFloat EmacsCGFloat;
75 #else
76 typedef float EmacsCGFloat;
77 #endif
79 /* ==========================================================================
81 The Emacs application
83 ========================================================================== */
85 /* We override sendEvent: as a means to stop/start the event loop */
86 @interface EmacsApp : NSApplication
88 #ifdef NS_IMPL_GNUSTEP
89 @public
90 int nextappdefined;
91 #endif
93 - (void)logNotification: (NSNotification *)notification;
94 - (void)sendEvent: (NSEvent *)theEvent;
95 - (void)showPreferencesWindow: (id)sender;
96 - (BOOL) openFile: (NSString *)fileName;
97 - (void)fd_handler: (id)unused;
98 - (void)timeout_handler: (NSTimer *)timedEntry;
99 - (BOOL)fulfillService: (NSString *)name withArg: (NSString *)arg;
100 #ifdef NS_IMPL_GNUSTEP
101 - (void)sendFromMainThread:(id)unused;
102 #endif
103 @end
105 #ifdef NS_IMPL_GNUSTEP
106 /* Dummy class to get rid of startup warnings. */
107 @interface EmacsDocument : NSDocument
110 @end
111 #endif
113 /* ==========================================================================
115 The main Emacs view
117 ========================================================================== */
119 @class EmacsToolbar;
121 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
122 @interface EmacsView : NSView <NSTextInput, NSWindowDelegate>
123 #else
124 @interface EmacsView : NSView <NSTextInput>
125 #endif
127 #ifdef NS_IMPL_COCOA
128 char *old_title;
129 BOOL maximizing_resize;
130 #endif
131 BOOL windowClosing;
132 NSString *workingText;
133 BOOL processingCompose;
134 int fs_state, fs_before_fs, next_maximized;
135 int tibar_height, tobar_height, bwidth;
136 int maximized_width, maximized_height;
137 NSWindow *nonfs_window;
138 BOOL fs_is_native;
139 @public
140 struct frame *emacsframe;
141 int rows, cols;
142 int scrollbarsNeedingUpdate;
143 EmacsToolbar *toolbar;
144 NSRect ns_userRect;
147 /* AppKit-side interface */
148 - menuDown: (id)sender;
149 - toolbarClicked: (id)item;
150 - toggleToolbar: (id)sender;
151 - (void)keyDown: (NSEvent *)theEvent;
152 - (void)mouseDown: (NSEvent *)theEvent;
153 - (void)mouseUp: (NSEvent *)theEvent;
154 - setMiniwindowImage: (BOOL)setMini;
156 /* Emacs-side interface */
157 - initFrameFromEmacs: (struct frame *) f;
158 - (void) setRows: (int) r andColumns: (int) c;
159 - (void) setWindowClosing: (BOOL)closing;
160 - (EmacsToolbar *) toolbar;
161 - (void) deleteWorkingText;
162 - (void) updateFrameSize: (BOOL) delay;
163 - (void) handleFS;
164 - (void) setFSValue: (int)value;
165 - (void) toggleFullScreen: (id) sender;
166 - (BOOL) fsIsNative;
167 - (BOOL) isFullscreen;
168 #ifdef HAVE_NATIVE_FS
169 - (void) updateCollectionBehaviour;
170 #endif
172 #ifdef NS_IMPL_GNUSTEP
173 - (void)windowDidMove: (id)sender;
174 #endif
175 @end
178 /* Small utility used for processing resize events under Cocoa. */
179 @interface EmacsWindow : NSWindow
181 NSPoint grabOffset;
183 @end
186 /* Fullscreen version of the above. */
187 @interface EmacsFSWindow : EmacsWindow
190 @end
192 /* ==========================================================================
194 The main menu implementation
196 ========================================================================== */
198 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
199 @interface EmacsMenu : NSMenu <NSMenuDelegate>
200 #else
201 @interface EmacsMenu : NSMenu
202 #endif
204 struct frame *frame;
205 unsigned long keyEquivModMask;
208 - initWithTitle: (NSString *)title frame: (struct frame *)f;
209 - (void)setFrame: (struct frame *)f;
210 - (void)menuNeedsUpdate: (NSMenu *)menu; /* (delegate method) */
211 - (NSString *)parseKeyEquiv: (const char *)key;
212 - (NSMenuItem *)addItemWithWidgetValue: (void *)wvptr;
213 - (void)fillWithWidgetValue: (void *)wvptr;
214 - (void)fillWithWidgetValue: (void *)wvptr frame: (struct frame *)f;
215 - (EmacsMenu *)addSubmenuWithTitle: (const char *)title forFrame: (struct frame *)f;
216 - (void) clear;
217 - (Lisp_Object)runMenuAt: (NSPoint)p forFrame: (struct frame *)f
218 keymaps: (bool)keymaps;
219 @end
222 /* ==========================================================================
224 Toolbar
226 ========================================================================== */
228 @class EmacsImage;
230 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
231 @interface EmacsToolbar : NSToolbar <NSToolbarDelegate>
232 #else
233 @interface EmacsToolbar : NSToolbar
234 #endif
236 EmacsView *emacsView;
237 NSMutableDictionary *identifierToItem;
238 NSMutableArray *activeIdentifiers;
239 NSArray *prevIdentifiers;
240 unsigned long enablement, prevEnablement;
242 - initForView: (EmacsView *)view withIdentifier: (NSString *)identifier;
243 - (void) clearActive;
244 - (void) clearAll;
245 - (BOOL) changed;
246 - (void) addDisplayItemWithImage: (EmacsImage *)img
247 idx: (int)idx
248 tag: (int)tag
249 helpText: (const char *)help
250 enabled: (BOOL)enabled;
252 /* delegate methods */
253 - (NSToolbarItem *)toolbar: (NSToolbar *)toolbar
254 itemForItemIdentifier: (NSString *)itemIdentifier
255 willBeInsertedIntoToolbar: (BOOL)flag;
256 - (NSArray *)toolbarDefaultItemIdentifiers: (NSToolbar *)toolbar;
257 - (NSArray *)toolbarAllowedItemIdentifiers: (NSToolbar *)toolbar;
258 @end
261 /* ==========================================================================
263 Message / question windows
265 ========================================================================== */
267 @interface EmacsDialogPanel : NSPanel
269 NSTextField *command;
270 NSTextField *title;
271 NSMatrix *matrix;
272 int rows, cols;
273 BOOL timer_fired, window_closed;
274 Lisp_Object dialog_return;
275 Lisp_Object *button_values;
277 - initFromContents: (Lisp_Object)menu isQuestion: (BOOL)isQ;
278 - (void)process_dialog: (Lisp_Object)list;
279 - (void)addButton: (char *)str value: (int)tag row: (int)row;
280 - (void)addString: (char *)str row: (int)row;
281 - (void)addSplit;
282 - (Lisp_Object)runDialogAt: (NSPoint)p;
283 - (void)timeout_handler: (NSTimer *)timedEntry;
284 @end
286 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
287 @interface EmacsTooltip : NSObject <NSWindowDelegate>
288 #else
289 @interface EmacsTooltip : NSObject
290 #endif
292 NSWindow *win;
293 NSTextField *textField;
294 NSTimer *timer;
296 - init;
297 - (void) setText: (char *)text;
298 - (void) showAtX: (int)x Y: (int)y for: (int)seconds;
299 - (void) hide;
300 - (BOOL) isActive;
301 - (NSRect) frame;
302 @end
305 /* ==========================================================================
307 File open/save panels
308 This and next override methods to handle keyboard input in panels.
310 ========================================================================== */
312 @interface EmacsSavePanel : NSSavePanel
315 @end
316 @interface EmacsOpenPanel : NSOpenPanel
319 @end
321 @interface EmacsFileDelegate : NSObject
324 - (BOOL)panel: (id)sender isValidFilename: (NSString *)filename;
325 - (BOOL)panel: (id)sender shouldShowFilename: (NSString *)filename;
326 - (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename
327 confirmed: (BOOL)okFlag;
328 @end
331 /* ==========================================================================
333 Images and stippling
335 ========================================================================== */
337 @interface EmacsImage : NSImage
339 id imageListNext;
340 int refCount;
341 NSBitmapImageRep *bmRep; /* used for accessing pixel data */
342 unsigned char *pixmapData[5]; /* shortcut to access pixel data */
343 NSColor *stippleMask;
345 + allocInitFromFile: (Lisp_Object)file;
346 - reference;
347 - imageListSetNext: (id)arg;
348 - imageListNext;
349 - (void)dealloc;
350 - initFromXBM: (unsigned char *)bits width: (int)w height: (int)h
351 flip: (BOOL)flip;
352 - initFromSkipXBM: (unsigned char *)bits width: (int)w height: (int)h
353 flip: (BOOL)flip length: (int)length;
354 - setXBMColor: (NSColor *)color;
355 - initForXPMWithDepth: (int)depth width: (int)width height: (int)height;
356 - (void)setPixmapData;
357 - (unsigned long)getPixelAtX: (int)x Y: (int)y;
358 - (void)setPixelAtX: (int)x Y: (int)y toRed: (unsigned char)r
359 green: (unsigned char)g blue: (unsigned char)b
360 alpha:(unsigned char)a;
361 - (void)setAlphaAtX: (int)x Y: (int)y to: (unsigned char)a;
362 - (NSColor *)stippleMask;
363 @end
366 /* ==========================================================================
368 Scrollbars
370 ========================================================================== */
372 @interface EmacsScroller : NSScroller
374 Lisp_Object win;
375 struct frame *frame;
376 NSResponder *prevResponder;
378 /* offset to the bottom of knob of last mouse down */
379 CGFloat last_mouse_offset;
380 float min_portion;
381 int pixel_height;
382 int last_hit_part;
384 BOOL condemned;
386 /* optimize against excessive positioning calls generated by emacs */
387 int em_position;
388 int em_portion;
389 int em_whole;
392 - initFrame: (NSRect )r window: (Lisp_Object)win;
393 - (void)setFrame: (NSRect)r;
394 - (void)dealloc;
396 - setPosition: (int) position portion: (int) portion whole: (int) whole;
397 - (int) checkSamePosition: (int)position portion: (int)portion
398 whole: (int)whole;
399 - (void) getMouseMotionPart: (int *)part window: (Lisp_Object *)window
400 x: (Lisp_Object *)x y: ( Lisp_Object *)y;
401 - (void) sendScrollEventAtLoc: (float)loc fromEvent: (NSEvent *)e;
402 - repeatScroll: (NSTimer *)sender;
403 - condemn;
404 - reprieve;
405 - judge;
406 @end
409 /* ==========================================================================
411 Rendering
413 ========================================================================== */
415 #ifdef NS_IMPL_COCOA
416 /* rendering util */
417 @interface EmacsGlyphStorage : NSObject <NSGlyphStorage>
419 @public
420 NSAttributedString *attrStr;
421 NSMutableDictionary *dict;
422 CGGlyph *cglyphs;
423 unsigned long maxChar, maxGlyph;
424 long i, len;
426 - initWithCapacity: (unsigned long) c;
427 - (void) setString: (NSString *)str font: (NSFont *)font;
428 @end
429 #endif /* NS_IMPL_COCOA */
431 extern NSArray *ns_send_types, *ns_return_types;
432 extern NSString *ns_app_name;
433 extern EmacsMenu *mainMenu, *svcsMenu, *dockMenu;
435 /* Apple removed the declaration, but kept the implementation */
436 #if defined (NS_IMPL_COCOA)
437 @interface NSApplication (EmacsApp)
438 - (void)setAppleMenu: (NSMenu *)menu;
439 @end
440 #endif
442 #endif /* __OBJC__ */
446 /* ==========================================================================
448 Non-OO stuff
450 ========================================================================== */
452 /* Special keycodes that we pass down the event chain */
453 #define KEY_NS_POWER_OFF ((1<<28)|(0<<16)|1)
454 #define KEY_NS_OPEN_FILE ((1<<28)|(0<<16)|2)
455 #define KEY_NS_OPEN_TEMP_FILE ((1<<28)|(0<<16)|3)
456 #define KEY_NS_DRAG_FILE ((1<<28)|(0<<16)|4)
457 #define KEY_NS_DRAG_COLOR ((1<<28)|(0<<16)|5)
458 #define KEY_NS_DRAG_TEXT ((1<<28)|(0<<16)|6)
459 #define KEY_NS_CHANGE_FONT ((1<<28)|(0<<16)|7)
460 #define KEY_NS_OPEN_FILE_LINE ((1<<28)|(0<<16)|8)
461 #define KEY_NS_PUT_WORKING_TEXT ((1<<28)|(0<<16)|9)
462 #define KEY_NS_UNPUT_WORKING_TEXT ((1<<28)|(0<<16)|10)
463 #define KEY_NS_SPI_SERVICE_CALL ((1<<28)|(0<<16)|11)
464 #define KEY_NS_NEW_FRAME ((1<<28)|(0<<16)|12)
465 #define KEY_NS_TOGGLE_TOOLBAR ((1<<28)|(0<<16)|13)
466 #define KEY_NS_SHOW_PREFS ((1<<28)|(0<<16)|14)
468 /* could use list to store these, but rest of emacs has a big infrastructure
469 for managing a table of bitmap "records" */
470 struct ns_bitmap_record
472 #ifdef __OBJC__
473 EmacsImage *img;
474 #else
475 void *img;
476 #endif
477 char *file;
478 int refcount;
479 int height, width, depth;
482 /* this to map between emacs color indices and NSColor objects */
483 struct ns_color_table
485 ptrdiff_t size;
486 ptrdiff_t avail;
487 #ifdef __OBJC__
488 NSColor **colors;
489 NSMutableSet *empty_indices;
490 #else
491 void **items;
492 void *availIndices;
493 #endif
495 #define NS_COLOR_CAPACITY 256
497 #define RGB_TO_ULONG(r, g, b) (((r) << 16) | ((g) << 8) | (b))
498 #define ARGB_TO_ULONG(a, r, g, b) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
500 #define ALPHA_FROM_ULONG(color) ((color) >> 24)
501 #define RED_FROM_ULONG(color) (((color) >> 16) & 0xff)
502 #define GREEN_FROM_ULONG(color) (((color) >> 8) & 0xff)
503 #define BLUE_FROM_ULONG(color) ((color) & 0xff)
505 /* Do not change `* 0x101' in the following lines to `<< 8'. If
506 changed, image masks in 1-bit depth will not work. */
507 #define RED16_FROM_ULONG(color) (RED_FROM_ULONG(color) * 0x101)
508 #define GREEN16_FROM_ULONG(color) (GREEN_FROM_ULONG(color) * 0x101)
509 #define BLUE16_FROM_ULONG(color) (BLUE_FROM_ULONG(color) * 0x101)
511 /* this extends font backend font */
512 struct nsfont_info
514 struct font font;
516 char *name; /* PostScript name, uniquely identifies on NS systems */
518 /* The following metrics are stored as float rather than int. */
520 float width; /* Maximum advance for the font. */
521 float height;
522 float underpos;
523 float underwidth;
524 float size;
525 #ifdef __OBJC__
526 NSFont *nsfont;
527 #if defined (NS_IMPL_COCOA)
528 CGFontRef cgfont;
529 #else /* GNUstep */
530 void *cgfont;
531 #endif
532 #else /* ! OBJC */
533 void *nsfont;
534 void *cgfont;
535 #endif
536 char bold, ital; /* convenience flags */
537 char synthItal;
538 XCharStruct max_bounds;
539 /* we compute glyph codes and metrics on-demand in blocks of 256 indexed
540 by hibyte, lobyte */
541 unsigned short **glyphs; /* map Unicode index to glyph */
542 struct font_metrics **metrics;
546 /* init'd in ns_initialize_display_info () */
547 struct ns_display_info
549 /* Chain of all ns_display_info structures. */
550 struct ns_display_info *next;
552 /* The generic display parameters corresponding to this NS display. */
553 struct terminal *terminal;
555 /* This is a cons cell of the form (NAME . FONT-LIST-CACHE).
556 The same cons cell also appears in ns_display_name_list. */
557 Lisp_Object name_list_element;
559 /* The number of fonts loaded. */
560 int n_fonts;
562 /* Minimum width over all characters in all fonts in font_table. */
563 int smallest_char_width;
565 /* Minimum font height over all fonts in font_table. */
566 int smallest_font_height;
568 struct ns_bitmap_record *bitmaps;
569 ptrdiff_t bitmaps_size;
570 ptrdiff_t bitmaps_last;
572 struct image_cache *image_cache;
574 struct ns_color_table *color_table;
576 /* DPI resolution of this screen */
577 double resx, resy;
579 /* Mask of things that cause the mouse to be grabbed */
580 int grabbed;
582 int n_planes;
584 int color_p;
586 Window root_window;
588 /* Xism */
589 XrmDatabase xrdb;
591 /* The cursor to use for vertical scroll bars. */
592 Cursor vertical_scroll_bar_cursor;
594 /* Information about the range of text currently shown in
595 mouse-face. */
596 Mouse_HLInfo mouse_highlight;
598 struct frame *x_highlight_frame;
599 struct frame *x_focus_frame;
602 /* This is a chain of structures for all the NS displays currently in use. */
603 extern struct ns_display_info *x_display_list;
605 extern Lisp_Object ns_display_name_list;
606 extern struct ns_display_info *ns_display_info_for_name (Lisp_Object name);
608 struct ns_display_info *check_x_display_info (Lisp_Object frame);
610 struct ns_output
612 #ifdef __OBJC__
613 EmacsView *view;
614 id miniimage;
615 NSColor *cursor_color;
616 NSColor *foreground_color;
617 NSColor *background_color;
618 EmacsToolbar *toolbar;
619 #else
620 void *view;
621 void *miniimage;
622 void *cursor_color;
623 void *foreground_color;
624 void *background_color;
625 void *toolbar;
626 #endif
628 /* NSCursors init'ed in initFrameFromEmacs */
629 Cursor text_cursor;
630 Cursor nontext_cursor;
631 Cursor modeline_cursor;
632 Cursor hand_cursor;
633 Cursor hourglass_cursor;
634 Cursor horizontal_drag_cursor;
636 /* NS-specific */
637 Cursor current_pointer;
639 /* lord knows why Emacs needs to know about our Window ids.. */
640 Window window_desc, parent_desc;
641 char explicit_parent;
643 struct font *font;
644 int baseline_offset;
646 /* If a fontset is specified for this frame instead of font, this
647 value contains an ID of the fontset, else -1. */
648 int fontset; /* only used with font_backend */
650 Lisp_Object icon_top;
651 Lisp_Object icon_left;
653 /* The size of the extra width currently allotted for vertical
654 scroll bars, in pixels. */
655 int vertical_scroll_bar_extra;
657 /* The height of the titlebar decoration (included in NSWindow's frame). */
658 int titlebar_height;
660 /* The height of the toolbar if displayed, else 0. */
661 int toolbar_height;
663 /* This is the Emacs structure for the NS display this frame is on. */
664 struct ns_display_info *display_info;
666 /* Non-zero if we want to constrain the frame to the screen. */
667 int dont_constrain;
669 /* Non-zero if we are zooming (maximizing) the frame. */
670 int zooming;
673 /* this dummy decl needed to support TTYs */
674 struct x_output
676 int unused;
680 /* This gives the ns_display_info structure for the display F is on. */
681 #define FRAME_NS_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
682 /* the primacy of X must be constantly worked with... */
683 #define FRAME_X_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
684 #define FRAME_X_OUTPUT(f) ((f)->output_data.ns)
685 #define FRAME_NS_WINDOW(f) ((f)->output_data.ns->window_desc)
686 #define FRAME_X_WINDOW(f) ((f)->output_data.ns->window_desc)
688 /* This is the `Display *' which frame F is on. */
689 #define FRAME_NS_DISPLAY(f) (0)
690 #define FRAME_X_DISPLAY(f) (0)
691 #define FRAME_X_SCREEN(f) (0)
692 #define FRAME_X_VISUAL(f) FRAME_NS_DISPLAY_INFO(f)->visual
694 #define FRAME_FOREGROUND_COLOR(f) ((f)->output_data.ns->foreground_color)
695 #define FRAME_BACKGROUND_COLOR(f) ((f)->output_data.ns->background_color)
697 #define FRAME_X_IMAGE_CACHE(F) FRAME_NS_DISPLAY_INFO ((F))->image_cache
699 #define NS_FACE_FOREGROUND(f) ((f)->foreground)
700 #define NS_FACE_BACKGROUND(f) ((f)->background)
701 #define FRAME_NS_TITLEBAR_HEIGHT(f) ((f)->output_data.ns->titlebar_height)
702 #define FRAME_TOOLBAR_HEIGHT(f) ((f)->output_data.ns->toolbar_height)
704 #define FONT_WIDTH(f) ((f)->max_width)
705 #define FONT_HEIGHT(f) ((f)->height)
706 /*#define FONT_BASE(f) ((f)->ascent) */
707 #define FONT_BASE(f) (((struct nsfont_info *)f)->max_bounds.ascent)
708 /*#define FONT_DESCENT(f) ((f)->descent) */
709 #define FONT_DESCENT(f) (((struct nsfont_info *)f)->max_bounds.descent)
711 #define FRAME_DEFAULT_FACE(f) FACE_FROM_ID (f, DEFAULT_FACE_ID)
713 #define FRAME_NS_VIEW(f) ((f)->output_data.ns->view)
714 #define FRAME_CURSOR_COLOR(f) ((f)->output_data.ns->cursor_color)
715 #define FRAME_POINTER_TYPE(f) ((f)->output_data.ns->current_pointer)
717 #define FRAME_FONT(f) ((f)->output_data.ns->font)
719 #ifdef __OBJC__
720 #define XNS_SCROLL_BAR(vec) ((id) XSAVE_POINTER (vec, 0))
721 #else
722 #define XNS_SCROLL_BAR(vec) XSAVE_POINTER (vec, 0)
723 #endif
725 /* Compute pixel size for vertical scroll bars */
726 #define NS_SCROLL_BAR_WIDTH(f) \
727 (FRAME_HAS_VERTICAL_SCROLL_BARS (f) \
728 ? rint (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0 \
729 ? FRAME_CONFIG_SCROLL_BAR_WIDTH (f) \
730 : (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f))) \
731 : 0)
733 /* Difference btwn char-column-calculated and actual SB widths.
734 This is only a concern for rendering when SB on left. */
735 #define NS_SCROLL_BAR_ADJUST(w, f) \
736 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) ? \
737 (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f) \
738 - NS_SCROLL_BAR_WIDTH (f)) : 0)
740 /* XXX: fix for GNUstep inconsistent accounting for titlebar */
741 #ifdef NS_IMPL_GNUSTEP
742 #define NS_TOP_POS(f) ((f)->top_pos + 18)
743 #else
744 #define NS_TOP_POS(f) ((f)->top_pos)
745 #endif
747 #define FRAME_NS_FONT_TABLE(f) (FRAME_NS_DISPLAY_INFO (f)->font_table)
749 #define FRAME_FONTSET(f) ((f)->output_data.ns->fontset)
751 #define FRAME_SMALLEST_CHAR_WIDTH(f) \
752 (FRAME_NS_DISPLAY_INFO (f)->smallest_char_width)
753 #define FRAME_SMALLEST_FONT_HEIGHT(f) \
754 (FRAME_NS_DISPLAY_INFO (f)->smallest_font_height)
755 #define FONT_TYPE_FOR_UNIBYTE(font, ch) 0
756 #define FONT_TYPE_FOR_MULTIBYTE(font, ch) 0
757 #define FRAME_BASELINE_OFFSET(f) ((f)->output_data.ns->baseline_offset)
758 #define BLACK_PIX_DEFAULT(f) 0x000000
759 #define WHITE_PIX_DEFAULT(f) 0xFFFFFF
761 /* First position where characters can be shown (instead of scrollbar, if
762 it is on left. */
763 #define FIRST_CHAR_POSITION(f) \
764 (! (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)) ? 0 \
765 : FRAME_SCROLL_BAR_COLS (f))
767 extern struct ns_display_info *ns_term_init (Lisp_Object display_name);
768 extern void ns_term_shutdown (int sig);
770 /* constants for text rendering */
771 #define NS_DUMPGLYPH_NORMAL 0
772 #define NS_DUMPGLYPH_CURSOR 1
773 #define NS_DUMPGLYPH_FOREGROUND 2
774 #define NS_DUMPGLYPH_MOUSEFACE 3
778 /* In nsfont, called from fontset.c */
779 extern void nsfont_make_fontset_for_font (Lisp_Object name,
780 Lisp_Object font_object);
782 /* In nsfont, for debugging */
783 struct glyph_string;
784 void ns_dump_glyphstring (struct glyph_string *s);
786 /* Implemented in nsterm, published in or needed from nsfns. */
787 extern Lisp_Object Qfontsize;
788 extern Lisp_Object ns_list_fonts (struct frame *f, Lisp_Object pattern,
789 int size, int maxnames);
790 extern void ns_clear_frame (struct frame *f);
792 extern const char *ns_xlfd_to_fontname (const char *xlfd);
794 extern Lisp_Object ns_map_event_to_object (void);
795 #ifdef __OBJC__
796 extern Lisp_Object ns_string_from_pasteboard (id pb);
797 extern void ns_string_to_pasteboard (id pb, Lisp_Object str);
798 #endif
799 extern Lisp_Object ns_get_local_selection (Lisp_Object selection_name,
800 Lisp_Object target_type);
801 extern void nxatoms_of_nsselect (void);
802 extern int ns_lisp_to_cursor_type (Lisp_Object arg);
803 extern Lisp_Object ns_cursor_type_to_lisp (int arg);
804 extern void ns_set_name_as_filename (struct frame *f);
805 extern void ns_set_doc_edited (struct frame *f, Lisp_Object arg);
807 extern bool
808 ns_defined_color (struct frame *f,
809 const char *name,
810 XColor *color_def, bool alloc,
811 bool makeIndex);
812 extern void
813 ns_query_color (void *col, XColor *color_def, int setPixel);
815 #ifdef __OBJC__
816 extern Lisp_Object ns_color_to_lisp (NSColor *col);
817 extern int ns_lisp_to_color (Lisp_Object color, NSColor **col);
818 extern NSColor *ns_lookup_indexed_color (unsigned long idx, struct frame *f);
819 extern unsigned long ns_index_color (NSColor *color, struct frame *f);
820 extern void ns_free_indexed_color (unsigned long idx, struct frame *f);
821 extern const char *ns_get_pending_menu_title (void);
822 extern void ns_check_menu_open (NSMenu *menu);
823 extern void ns_check_pending_open_menu (void);
824 #endif
826 /* C access to ObjC functionality */
827 extern void ns_release_object (void *obj);
828 extern void ns_retain_object (void *obj);
829 extern void *ns_alloc_autorelease_pool (void);
830 extern void ns_release_autorelease_pool (void *);
831 extern const char *ns_get_defaults_value (const char *key);
833 /* in nsmenu */
834 extern void update_frame_tool_bar (struct frame *f);
835 extern void free_frame_tool_bar (struct frame *f);
836 extern void find_and_call_menu_selection (struct frame *f,
837 int menu_bar_items_used, Lisp_Object vector, void *client_data);
838 extern Lisp_Object find_and_return_menu_selection (struct frame *f,
839 bool keymaps,
840 void *client_data);
841 extern Lisp_Object ns_popup_dialog (Lisp_Object position, Lisp_Object contents,
842 Lisp_Object header);
844 #define NSAPP_DATA2_RUNASSCRIPT 10
845 extern void ns_run_ascript (void);
847 #define NSAPP_DATA2_RUNFILEDIALOG 11
848 extern void ns_run_file_dialog (void);
850 extern const char *ns_etc_directory (void);
851 extern const char *ns_exec_path (void);
852 extern const char *ns_load_path (void);
853 extern void syms_of_nsterm (void);
854 extern void syms_of_nsfns (void);
855 extern void syms_of_nsmenu (void);
856 extern void syms_of_nsselect (void);
858 /* From nsimage.m, needed in image.c */
859 struct image;
860 extern void *ns_image_from_XBM (unsigned char *bits, int width, int height);
861 extern void *ns_image_for_XPM (int width, int height, int depth);
862 extern void *ns_image_from_file (Lisp_Object file);
863 extern bool ns_load_image (struct frame *f, struct image *img,
864 Lisp_Object spec_file, Lisp_Object spec_data);
865 extern int ns_image_width (void *img);
866 extern int ns_image_height (void *img);
867 extern unsigned long ns_get_pixel (void *img, int x, int y);
868 extern void ns_put_pixel (void *img, int x, int y, unsigned long argb);
869 extern void ns_set_alpha (void *img, int x, int y, unsigned char a);
871 extern int x_display_pixel_height (struct ns_display_info *);
872 extern int x_display_pixel_width (struct ns_display_info *);
874 /* This in nsterm.m */
875 extern void x_destroy_window (struct frame *f);
876 extern int ns_select (int nfds, fd_set *readfds, fd_set *writefds,
877 fd_set *exceptfds, EMACS_TIME *timeout,
878 sigset_t *sigmask);
879 extern unsigned long ns_get_rgb_color (struct frame *f,
880 float r, float g, float b, float a);
881 extern NSPoint last_mouse_motion_position;
883 /* From nsterm.m, needed in nsfont.m. */
884 #ifdef __OBJC__
885 extern void
886 ns_draw_text_decoration (struct glyph_string *s, struct face *face,
887 NSColor *defaultCol, CGFloat width, CGFloat x);
888 #endif
890 #ifdef NS_IMPL_GNUSTEP
891 extern char gnustep_base_version[]; /* version tracking */
892 #endif
894 #define MINWIDTH 10
895 #define MINHEIGHT 10
897 /* Screen max coordinate
898 Using larger coordinates causes movewindow/placewindow to abort */
899 #define SCREENMAX 16000
901 #define NS_SCROLL_BAR_WIDTH_DEFAULT [EmacsScroller scrollerWidth]
902 /* This is to match emacs on other platforms, ugly though it is. */
903 #define NS_SELECTION_COLOR_DEFAULT @"LightGoldenrod2";
904 #define RESIZE_HANDLE_SIZE 12
906 /* Little utility macros */
907 #define IN_BOUND(min, x, max) (((x) < (min)) \
908 ? (min) : (((x)>(max)) ? (max) : (x)))
909 #define SCREENMAXBOUND(x) (IN_BOUND (-SCREENMAX, x, SCREENMAX))
911 /* needed somewhere... */
912 #define VERTICAL_SCROLL_BAR_WIDTH_TRIM (0)
915 #endif /* HAVE_NS */