Port the font backend from the Mac port.
[bpt/emacs.git] / src / nsterm.h
1 /* Definitions and headers for communication with NeXT/Open/GNUstep API.
2 Copyright (C) 1989, 1993, 2005, 2008-2013 Free Software Foundation,
3 Inc.
4
5 This file is part of GNU Emacs.
6
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.
11
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.
16
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/>. */
19
20
21 #include "dispextern.h"
22 #include "frame.h"
23 #include "character.h"
24 #include "font.h"
25 #include "sysselect.h"
26
27 #ifdef HAVE_NS
28
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
45
46 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7
47 #define HAVE_NATIVE_FS
48 #endif
49
50 #endif /* NS_IMPL_COCOA */
51
52 #ifdef __OBJC__
53
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
58
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 */
70
71 typedef CGFloat EmacsCGFloat;
72
73 #elif GNUSTEP_GUI_MAJOR_VERSION > 0 || GNUSTEP_GUI_MINOR_VERSION >= 22
74 typedef CGFloat EmacsCGFloat;
75 #else
76 typedef float EmacsCGFloat;
77 #endif
78
79 /* ==========================================================================
80
81 The Emacs application
82
83 ========================================================================== */
84
85 /* We override sendEvent: as a means to stop/start the event loop */
86 @interface EmacsApp : NSApplication
87 {
88 #ifdef NS_IMPL_GNUSTEP
89 @public
90 int nextappdefined;
91 #endif
92 }
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
104
105 #ifdef NS_IMPL_GNUSTEP
106 /* Dummy class to get rid of startup warnings. */
107 @interface EmacsDocument : NSDocument
108 {
109 }
110 @end
111 #endif
112
113 /* ==========================================================================
114
115 The main Emacs view
116
117 ========================================================================== */
118
119 @class EmacsToolbar;
120
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
126 {
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;
145 }
146
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;
155
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
171
172 #ifdef NS_IMPL_GNUSTEP
173 - (void)windowDidMove: (id)sender;
174 #endif
175 @end
176
177
178 /* Small utility used for processing resize events under Cocoa. */
179 @interface EmacsWindow : NSWindow
180 {
181 NSPoint grabOffset;
182 }
183 @end
184
185
186 /* Fullscreen version of the above. */
187 @interface EmacsFSWindow : EmacsWindow
188 {
189 }
190 @end
191
192 /* ==========================================================================
193
194 The main menu implementation
195
196 ========================================================================== */
197
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
203 {
204 struct frame *frame;
205 unsigned long keyEquivModMask;
206 }
207
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
220
221
222 /* ==========================================================================
223
224 Toolbar
225
226 ========================================================================== */
227
228 @class EmacsImage;
229
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
235 {
236 EmacsView *emacsView;
237 NSMutableDictionary *identifierToItem;
238 NSMutableArray *activeIdentifiers;
239 NSArray *prevIdentifiers;
240 unsigned long enablement, prevEnablement;
241 }
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;
251
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
259
260
261 /* ==========================================================================
262
263 Message / question windows
264
265 ========================================================================== */
266
267 @interface EmacsDialogPanel : NSPanel
268 {
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;
276 }
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
285
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
291 {
292 NSWindow *win;
293 NSTextField *textField;
294 NSTimer *timer;
295 }
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
303
304
305 /* ==========================================================================
306
307 File open/save panels
308 This and next override methods to handle keyboard input in panels.
309
310 ========================================================================== */
311
312 @interface EmacsSavePanel : NSSavePanel
313 {
314 }
315 @end
316 @interface EmacsOpenPanel : NSOpenPanel
317 {
318 }
319 @end
320
321 @interface EmacsFileDelegate : NSObject
322 {
323 }
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
329
330
331 /* ==========================================================================
332
333 Images and stippling
334
335 ========================================================================== */
336
337 @interface EmacsImage : NSImage
338 {
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;
344 }
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
364
365
366 /* ==========================================================================
367
368 Scrollbars
369
370 ========================================================================== */
371
372 @interface EmacsScroller : NSScroller
373 {
374 Lisp_Object win;
375 struct frame *frame;
376 NSResponder *prevResponder;
377
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;
383
384 BOOL condemned;
385
386 /* optimize against excessive positioning calls generated by emacs */
387 int em_position;
388 int em_portion;
389 int em_whole;
390 }
391
392 - initFrame: (NSRect )r window: (Lisp_Object)win;
393 - (void)setFrame: (NSRect)r;
394 - (void)dealloc;
395
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
407
408
409 /* ==========================================================================
410
411 Rendering
412
413 ========================================================================== */
414
415 #ifdef NS_IMPL_COCOA
416 /* rendering util */
417 @interface EmacsGlyphStorage : NSObject <NSGlyphStorage>
418 {
419 @public
420 NSAttributedString *attrStr;
421 NSMutableDictionary *dict;
422 CGGlyph *cglyphs;
423 unsigned long maxChar, maxGlyph;
424 long i, len;
425 }
426 - initWithCapacity: (unsigned long) c;
427 - (void) setString: (NSString *)str font: (NSFont *)font;
428 @end
429 #endif /* NS_IMPL_COCOA */
430
431 extern NSArray *ns_send_types, *ns_return_types;
432 extern NSString *ns_app_name;
433 extern EmacsMenu *mainMenu, *svcsMenu, *dockMenu;
434
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
441
442 #endif /* __OBJC__ */
443
444
445
446 /* ==========================================================================
447
448 Non-OO stuff
449
450 ========================================================================== */
451
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)
467
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
471 {
472 #ifdef __OBJC__
473 EmacsImage *img;
474 #else
475 void *img;
476 #endif
477 char *file;
478 int refcount;
479 int height, width, depth;
480 };
481
482 /* this to map between emacs color indices and NSColor objects */
483 struct ns_color_table
484 {
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
494 };
495 #define NS_COLOR_CAPACITY 256
496
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))
499
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)
504
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)
510
511 /* this extends font backend font */
512 struct nsfont_info
513 {
514 struct font font;
515
516 char *name; /* PostScript name, uniquely identifies on NS systems */
517
518 /* The following metrics are stored as float rather than int. */
519
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;
543 };
544
545
546 /* init'd in ns_initialize_display_info () */
547 struct ns_display_info
548 {
549 /* Chain of all ns_display_info structures. */
550 struct ns_display_info *next;
551
552 /* The generic display parameters corresponding to this NS display. */
553 struct terminal *terminal;
554
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;
558
559 /* The number of fonts loaded. */
560 int n_fonts;
561
562 /* Minimum width over all characters in all fonts in font_table. */
563 int smallest_char_width;
564
565 /* Minimum font height over all fonts in font_table. */
566 int smallest_font_height;
567
568 struct ns_bitmap_record *bitmaps;
569 ptrdiff_t bitmaps_size;
570 ptrdiff_t bitmaps_last;
571
572 struct image_cache *image_cache;
573
574 struct ns_color_table *color_table;
575
576 /* DPI resolution of this screen */
577 double resx, resy;
578
579 /* Mask of things that cause the mouse to be grabbed */
580 int grabbed;
581
582 int n_planes;
583
584 int color_p;
585
586 Window root_window;
587
588 /* Xism */
589 XrmDatabase xrdb;
590
591 /* The cursor to use for vertical scroll bars. */
592 Cursor vertical_scroll_bar_cursor;
593
594 /* Information about the range of text currently shown in
595 mouse-face. */
596 Mouse_HLInfo mouse_highlight;
597
598 struct frame *x_highlight_frame;
599 struct frame *x_focus_frame;
600 };
601
602 /* This is a chain of structures for all the NS displays currently in use. */
603 extern struct ns_display_info *x_display_list;
604
605 extern Lisp_Object ns_display_name_list;
606 extern struct ns_display_info *ns_display_info_for_name (Lisp_Object name);
607
608 struct ns_display_info *check_x_display_info (Lisp_Object frame);
609
610 struct ns_output
611 {
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
627
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;
635
636 /* NS-specific */
637 Cursor current_pointer;
638
639 /* lord knows why Emacs needs to know about our Window ids.. */
640 Window window_desc, parent_desc;
641 char explicit_parent;
642
643 struct font *font;
644 int baseline_offset;
645
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 */
649
650 Lisp_Object icon_top;
651 Lisp_Object icon_left;
652
653 /* The size of the extra width currently allotted for vertical
654 scroll bars, in pixels. */
655 int vertical_scroll_bar_extra;
656
657 /* The height of the titlebar decoration (included in NSWindow's frame). */
658 int titlebar_height;
659
660 /* The height of the toolbar if displayed, else 0. */
661 int toolbar_height;
662
663 /* This is the Emacs structure for the NS display this frame is on. */
664 struct ns_display_info *display_info;
665
666 /* Non-zero if we want to constrain the frame to the screen. */
667 int dont_constrain;
668
669 /* Non-zero if we are zooming (maximizing) the frame. */
670 int zooming;
671 };
672
673 /* this dummy decl needed to support TTYs */
674 struct x_output
675 {
676 int unused;
677 };
678
679
680 /* This gives the ns_display_info structure for the display F is on. */
681 #define FRAME_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
682 #define FRAME_X_OUTPUT(f) ((f)->output_data.ns)
683 #define FRAME_NS_WINDOW(f) ((f)->output_data.ns->window_desc)
684 #define FRAME_X_WINDOW(f) ((f)->output_data.ns->window_desc)
685
686 /* This is the `Display *' which frame F is on. */
687 #define FRAME_NS_DISPLAY(f) (0)
688 #define FRAME_X_DISPLAY(f) (0)
689 #define FRAME_X_SCREEN(f) (0)
690 #define FRAME_X_VISUAL(f) FRAME_DISPLAY_INFO(f)->visual
691
692 #define FRAME_FOREGROUND_COLOR(f) ((f)->output_data.ns->foreground_color)
693 #define FRAME_BACKGROUND_COLOR(f) ((f)->output_data.ns->background_color)
694
695 #define FRAME_X_IMAGE_CACHE(F) FRAME_DISPLAY_INFO ((F))->image_cache
696
697 #define NS_FACE_FOREGROUND(f) ((f)->foreground)
698 #define NS_FACE_BACKGROUND(f) ((f)->background)
699 #define FRAME_NS_TITLEBAR_HEIGHT(f) ((f)->output_data.ns->titlebar_height)
700 #define FRAME_TOOLBAR_HEIGHT(f) ((f)->output_data.ns->toolbar_height)
701
702 #define FONT_WIDTH(f) ((f)->max_width)
703 #define FONT_HEIGHT(f) ((f)->height)
704 #define FONT_BASE(f) ((f)->ascent)
705 #define FONT_DESCENT(f) ((f)->descent)
706
707 #define FRAME_DEFAULT_FACE(f) FACE_FROM_ID (f, DEFAULT_FACE_ID)
708
709 #define FRAME_NS_VIEW(f) ((f)->output_data.ns->view)
710 #define FRAME_CURSOR_COLOR(f) ((f)->output_data.ns->cursor_color)
711 #define FRAME_POINTER_TYPE(f) ((f)->output_data.ns->current_pointer)
712
713 #define FRAME_FONT(f) ((f)->output_data.ns->font)
714
715 #ifdef __OBJC__
716 #define XNS_SCROLL_BAR(vec) ((id) XSAVE_POINTER (vec, 0))
717 #else
718 #define XNS_SCROLL_BAR(vec) XSAVE_POINTER (vec, 0)
719 #endif
720
721 /* Compute pixel size for vertical scroll bars */
722 #define NS_SCROLL_BAR_WIDTH(f) \
723 (FRAME_HAS_VERTICAL_SCROLL_BARS (f) \
724 ? rint (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0 \
725 ? FRAME_CONFIG_SCROLL_BAR_WIDTH (f) \
726 : (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f))) \
727 : 0)
728
729 /* Difference btwn char-column-calculated and actual SB widths.
730 This is only a concern for rendering when SB on left. */
731 #define NS_SCROLL_BAR_ADJUST(w, f) \
732 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) ? \
733 (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f) \
734 - NS_SCROLL_BAR_WIDTH (f)) : 0)
735
736 /* XXX: fix for GNUstep inconsistent accounting for titlebar */
737 #ifdef NS_IMPL_GNUSTEP
738 #define NS_TOP_POS(f) ((f)->top_pos + 18)
739 #else
740 #define NS_TOP_POS(f) ((f)->top_pos)
741 #endif
742
743 #define FRAME_NS_FONT_TABLE(f) (FRAME_DISPLAY_INFO (f)->font_table)
744
745 #define FRAME_FONTSET(f) ((f)->output_data.ns->fontset)
746
747 #define FRAME_BASELINE_OFFSET(f) ((f)->output_data.ns->baseline_offset)
748 #define BLACK_PIX_DEFAULT(f) 0x000000
749 #define WHITE_PIX_DEFAULT(f) 0xFFFFFF
750
751 /* First position where characters can be shown (instead of scrollbar, if
752 it is on left. */
753 #define FIRST_CHAR_POSITION(f) \
754 (! (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)) ? 0 \
755 : FRAME_SCROLL_BAR_COLS (f))
756
757 extern struct ns_display_info *ns_term_init (Lisp_Object display_name);
758 extern void ns_term_shutdown (int sig);
759
760 /* constants for text rendering */
761 #define NS_DUMPGLYPH_NORMAL 0
762 #define NS_DUMPGLYPH_CURSOR 1
763 #define NS_DUMPGLYPH_FOREGROUND 2
764 #define NS_DUMPGLYPH_MOUSEFACE 3
765
766
767
768 /* In nsfont, called from fontset.c */
769 extern void nsfont_make_fontset_for_font (Lisp_Object name,
770 Lisp_Object font_object);
771
772 /* In nsfont, for debugging */
773 struct glyph_string;
774 void ns_dump_glyphstring (struct glyph_string *s);
775
776 /* Implemented in nsterm, published in or needed from nsfns. */
777 extern Lisp_Object Qfontsize;
778 extern Lisp_Object ns_list_fonts (struct frame *f, Lisp_Object pattern,
779 int size, int maxnames);
780 extern void ns_clear_frame (struct frame *f);
781
782 extern const char *ns_xlfd_to_fontname (const char *xlfd);
783
784 extern Lisp_Object ns_map_event_to_object (void);
785 #ifdef __OBJC__
786 extern Lisp_Object ns_string_from_pasteboard (id pb);
787 extern void ns_string_to_pasteboard (id pb, Lisp_Object str);
788 #endif
789 extern Lisp_Object ns_get_local_selection (Lisp_Object selection_name,
790 Lisp_Object target_type);
791 extern void nxatoms_of_nsselect (void);
792 extern int ns_lisp_to_cursor_type (Lisp_Object arg);
793 extern Lisp_Object ns_cursor_type_to_lisp (int arg);
794 extern void ns_set_name_as_filename (struct frame *f);
795 extern void ns_set_doc_edited (struct frame *f, Lisp_Object arg);
796
797 extern bool
798 ns_defined_color (struct frame *f,
799 const char *name,
800 XColor *color_def, bool alloc,
801 bool makeIndex);
802 extern void
803 ns_query_color (void *col, XColor *color_def, int setPixel);
804
805 #ifdef __OBJC__
806 extern Lisp_Object ns_color_to_lisp (NSColor *col);
807 extern int ns_lisp_to_color (Lisp_Object color, NSColor **col);
808 extern NSColor *ns_lookup_indexed_color (unsigned long idx, struct frame *f);
809 extern unsigned long ns_index_color (NSColor *color, struct frame *f);
810 extern void ns_free_indexed_color (unsigned long idx, struct frame *f);
811 extern const char *ns_get_pending_menu_title (void);
812 extern void ns_check_menu_open (NSMenu *menu);
813 extern void ns_check_pending_open_menu (void);
814 #endif
815
816 /* C access to ObjC functionality */
817 extern void ns_release_object (void *obj);
818 extern void ns_retain_object (void *obj);
819 extern void *ns_alloc_autorelease_pool (void);
820 extern void ns_release_autorelease_pool (void *);
821 extern const char *ns_get_defaults_value (const char *key);
822
823 /* in nsmenu */
824 extern void update_frame_tool_bar (struct frame *f);
825 extern void free_frame_tool_bar (struct frame *f);
826 extern void find_and_call_menu_selection (struct frame *f,
827 int menu_bar_items_used, Lisp_Object vector, void *client_data);
828 extern Lisp_Object find_and_return_menu_selection (struct frame *f,
829 bool keymaps,
830 void *client_data);
831 extern Lisp_Object ns_popup_dialog (Lisp_Object position, Lisp_Object contents,
832 Lisp_Object header);
833
834 #define NSAPP_DATA2_RUNASSCRIPT 10
835 extern void ns_run_ascript (void);
836
837 #define NSAPP_DATA2_RUNFILEDIALOG 11
838 extern void ns_run_file_dialog (void);
839
840 extern const char *ns_etc_directory (void);
841 extern const char *ns_exec_path (void);
842 extern const char *ns_load_path (void);
843 extern void syms_of_nsterm (void);
844 extern void syms_of_nsfns (void);
845 extern void syms_of_nsmenu (void);
846 extern void syms_of_nsselect (void);
847
848 /* From nsimage.m, needed in image.c */
849 struct image;
850 extern void *ns_image_from_XBM (unsigned char *bits, int width, int height);
851 extern void *ns_image_for_XPM (int width, int height, int depth);
852 extern void *ns_image_from_file (Lisp_Object file);
853 extern bool ns_load_image (struct frame *f, struct image *img,
854 Lisp_Object spec_file, Lisp_Object spec_data);
855 extern int ns_image_width (void *img);
856 extern int ns_image_height (void *img);
857 extern unsigned long ns_get_pixel (void *img, int x, int y);
858 extern void ns_put_pixel (void *img, int x, int y, unsigned long argb);
859 extern void ns_set_alpha (void *img, int x, int y, unsigned char a);
860
861 extern int x_display_pixel_height (struct ns_display_info *);
862 extern int x_display_pixel_width (struct ns_display_info *);
863
864 /* This in nsterm.m */
865 extern void x_destroy_window (struct frame *f);
866 extern int ns_select (int nfds, fd_set *readfds, fd_set *writefds,
867 fd_set *exceptfds, struct timespec const *timeout,
868 sigset_t const *sigmask);
869 extern unsigned long ns_get_rgb_color (struct frame *f,
870 float r, float g, float b, float a);
871 extern NSPoint last_mouse_motion_position;
872
873 /* From nsterm.m, needed in nsfont.m. */
874 #ifdef __OBJC__
875 extern void
876 ns_draw_text_decoration (struct glyph_string *s, struct face *face,
877 NSColor *defaultCol, CGFloat width, CGFloat x);
878 #endif
879
880 #ifdef NS_IMPL_GNUSTEP
881 extern char gnustep_base_version[]; /* version tracking */
882 #endif
883
884 #define MINWIDTH 10
885 #define MINHEIGHT 10
886
887 /* Screen max coordinate
888 Using larger coordinates causes movewindow/placewindow to abort */
889 #define SCREENMAX 16000
890
891 #define NS_SCROLL_BAR_WIDTH_DEFAULT [EmacsScroller scrollerWidth]
892 /* This is to match emacs on other platforms, ugly though it is. */
893 #define NS_SELECTION_COLOR_DEFAULT @"LightGoldenrod2";
894 #define RESIZE_HANDLE_SIZE 12
895
896 /* Little utility macros */
897 #define IN_BOUND(min, x, max) (((x) < (min)) \
898 ? (min) : (((x)>(max)) ? (max) : (x)))
899 #define SCREENMAXBOUND(x) (IN_BOUND (-SCREENMAX, x, SCREENMAX))
900
901 #endif /* HAVE_NS */