Stop ns builds setting the EMACSPATH environment variable
[bpt/emacs.git] / src / nsterm.h
CommitLineData
edfda783 1/* Definitions and headers for communication with NeXT/Open/GNUstep API.
acaf905b 2 Copyright (C) 1989, 1993, 2005, 2008-2012 Free Software Foundation, Inc.
edfda783
AR
3
4This file is part of GNU Emacs.
5
32d235f8 6GNU Emacs is free software: you can redistribute it and/or modify
edfda783 7it under the terms of the GNU General Public License as published by
32d235f8
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
edfda783
AR
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
32d235f8
GM
17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
edfda783
AR
19
20#include "dispextern.h"
21#include "frame.h"
22#include "character.h"
23#include "font.h"
3d608a86 24#include "sysselect.h"
edfda783
AR
25
26#ifdef HAVE_NS
27
699c10bd 28#ifdef NS_IMPL_COCOA
4393663b
JD
29#ifndef MAC_OS_X_VERSION_10_3
30#define MAC_OS_X_VERSION_10_3 1030
31#endif
32#ifndef MAC_OS_X_VERSION_10_4
33#define MAC_OS_X_VERSION_10_4 1040
34#endif
35#ifndef MAC_OS_X_VERSION_10_5
36#define MAC_OS_X_VERSION_10_5 1050
37#endif
699c10bd
JD
38#ifndef MAC_OS_X_VERSION_10_6
39#define MAC_OS_X_VERSION_10_6 1060
40#endif
4393663b 41#endif /* NS_IMPL_COCOA */
699c10bd 42
edfda783
AR
43#ifdef __OBJC__
44
45/* ==========================================================================
46
47 The Emacs application
48
49 ========================================================================== */
50
51/* We override sendEvent: as a means to stop/start the event loop */
52@interface EmacsApp : NSApplication
53{
54}
15034960 55- (void)logNotification: (NSNotification *)notification;
edfda783
AR
56- (void)sendEvent: (NSEvent *)theEvent;
57- (void)showPreferencesWindow: (id)sender;
15034960
AR
58- (BOOL) openFile: (NSString *)fileName;
59- (void)fd_handler: (NSTimer *) fdEntry;
15034960
AR
60- (void)timeout_handler: (NSTimer *)timedEntry;
61- (BOOL)fulfillService: (NSString *)name withArg: (NSString *)arg;
edfda783
AR
62@end
63
64
65/* ==========================================================================
66
67 The main Emacs view
68
69 ========================================================================== */
70
71@class EmacsToolbar;
72
4393663b
JD
73#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
74@interface EmacsView : NSView <NSTextInput, NSWindowDelegate>
75#else
76@interface EmacsView : NSView <NSTextInput>
77#endif
edfda783
AR
78 {
79 char *old_title;
80 BOOL windowClosing;
81 NSString *workingText;
82 BOOL processingCompose;
83@public
84 struct frame *emacsframe;
85 int rows, cols;
86 int scrollbarsNeedingUpdate;
87 EmacsToolbar *toolbar;
e2f79c8d 88 NSRect ns_userRect;
edfda783
AR
89 }
90
91/* AppKit-side interface */
92- menuDown: sender;
93- toolbarClicked: (id)item;
94- toggleToolbar: (id)sender;
95- (void)keyDown: (NSEvent *)theEvent;
96- (void)mouseDown: (NSEvent *)theEvent;
97- (void)mouseUp: (NSEvent *)theEvent;
98- setMiniwindowImage: (BOOL)setMini;
99
100/* Emacs-side interface */
101- initFrameFromEmacs: (struct frame *) f;
102- (void) setRows: (int) r andColumns: (int) c;
103- (void) setWindowClosing: (BOOL)closing;
104- (EmacsToolbar *) toolbar;
105- (void) deleteWorkingText;
f2f7f42c
AR
106
107#ifdef NS_IMPL_GNUSTEP
108/* Not declared, but useful. */
109- (void) unlockFocusNeedsFlush: (BOOL)needs;
110#endif
edfda783
AR
111@end
112
113
114/* Small utility used for processing resize events under Cocoa. */
115@interface EmacsWindow : NSWindow
116{
117 NSPoint grabOffset;
118}
119@end
120
121
122/* ==========================================================================
123
124 The main menu implementation
125
126 ========================================================================== */
127
4393663b
JD
128#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
129@interface EmacsMenu : NSMenu <NSMenuDelegate>
130#else
131@interface EmacsMenu : NSMenu
132#endif
edfda783
AR
133{
134 struct frame *frame;
135 unsigned long keyEquivModMask;
136}
137
138- initWithTitle: (NSString *)title frame: (struct frame *)f;
139- (void)setFrame: (struct frame *)f;
140- (void)menuNeedsUpdate: (NSMenu *)menu; /* (delegate method) */
9c5bd55a 141- (NSString *)parseKeyEquiv: (const char *)key;
15034960 142- (NSMenuItem *)addItemWithWidgetValue: (void *)wvptr;
edfda783 143- (void)fillWithWidgetValue: (void *)wvptr;
9c5bd55a 144- (EmacsMenu *)addSubmenuWithTitle: (const char *)title forFrame: (struct frame *)f;
edfda783
AR
145- (void) clear;
146- (Lisp_Object)runMenuAt: (NSPoint)p forFrame: (struct frame *)f
147 keymaps: (int)keymaps;
148@end
149
150
151/* ==========================================================================
152
153 Toolbar
154
155 ========================================================================== */
156
157@class EmacsImage;
158
4393663b
JD
159#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
160@interface EmacsToolbar : NSToolbar <NSToolbarDelegate>
161#else
162@interface EmacsToolbar : NSToolbar
163#endif
edfda783
AR
164 {
165 EmacsView *emacsView;
166 NSMutableDictionary *identifierToItem;
167 NSMutableArray *activeIdentifiers;
168 NSArray *prevIdentifiers;
169 unsigned long enablement, prevEnablement;
170 }
171- initForView: (EmacsView *)view withIdentifier: (NSString *)identifier;
172- (void) clearActive;
173- (BOOL) changed;
174- (void) addDisplayItemWithImage: (EmacsImage *)img idx: (int)idx
9c5bd55a 175 helpText: (const char *)help
edfda783
AR
176 enabled: (BOOL)enabled;
177/* delegate methods */
178- (NSToolbarItem *)toolbar: (NSToolbar *)toolbar
179 itemForItemIdentifier: (NSString *)itemIdentifier
180 willBeInsertedIntoToolbar: (BOOL)flag;
181- (NSArray *)toolbarDefaultItemIdentifiers: (NSToolbar *)toolbar;
182- (NSArray *)toolbarAllowedItemIdentifiers: (NSToolbar *)toolbar;
183@end
184
185
186/* ==========================================================================
187
188 Message / question windows
189
190 ========================================================================== */
191
192@interface EmacsDialogPanel : NSPanel
193 {
194 NSTextField *command;
195 NSTextField *title;
196 NSMatrix *matrix;
197 int rows, cols;
198 }
199- initFromContents: (Lisp_Object)menu isQuestion: (BOOL)isQ;
200- addButton: (char *)str value: (Lisp_Object)val row: (int)row;
201- addString: (char *)str row: (int)row;
202- addSplit;
203- (Lisp_Object)runDialogAt: (NSPoint)p;
204@end
205
4393663b
JD
206#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
207@interface EmacsTooltip : NSObject <NSWindowDelegate>
208#else
209@interface EmacsTooltip : NSObject
210#endif
edfda783
AR
211 {
212 NSWindow *win;
213 NSTextField *textField;
214 NSTimer *timer;
215 }
216- init;
217- (void) setText: (char *)text;
218- (void) showAtX: (int)x Y: (int)y for: (int)seconds;
219- (void) hide;
220- (BOOL) isActive;
221- (NSRect) frame;
222@end
223
224
225/* ==========================================================================
226
227 File open/save panels
228 This and next override methods to work around OS X behavior of
229 restarting application loop when user dismisses panel.
230
231 ========================================================================== */
232
233@interface EmacsSavePanel : NSSavePanel
234{
235}
236@end
237@interface EmacsOpenPanel : NSOpenPanel
238{
239}
240@end
241
242@interface EmacsFileDelegate : NSObject
243{
244}
245- (BOOL)panel: (id)sender isValidFilename: (NSString *)filename;
246- (BOOL)panel: (id)sender shouldShowFilename: (NSString *)filename;
247- (NSString *)panel: (id)sender userEnteredFilename: (NSString *)filename
248 confirmed: (BOOL)okFlag;
249@end
250
251
252/* ==========================================================================
253
254 Images and stippling
255
256 ========================================================================== */
257
258@interface EmacsImage : NSImage
259{
260 id imageListNext;
261 int refCount;
262 NSBitmapImageRep *bmRep; /* used for accessing pixel data */
263 unsigned char *pixmapData[5]; /* shortcut to access pixel data */
264 BOOL onTiger;
265 NSColor *stippleMask;
266}
267+ allocInitFromFile: (Lisp_Object)file;
268- reference;
269- imageListSetNext: (id)arg;
270- imageListNext;
271- (void)dealloc;
272- initFromXBM: (unsigned char *)bits width: (int)w height: (int)h
273 flip: (BOOL)flip;
274- initFromSkipXBM: (unsigned char *)bits width: (int)w height: (int)h
275 flip: (BOOL)flip length: (int)length;
276- setXBMColor: (NSColor *)color;
277- initForXPMWithDepth: (int)depth width: (int)width height: (int)height;
278- (void)setPixmapData;
279- (unsigned long)getPixelAtX: (int)x Y: (int)y;
280- (void)setPixelAtX: (int)x Y: (int)y toRed: (unsigned char)r
281 green: (unsigned char)g blue: (unsigned char)b
282 alpha:(unsigned char)a;
283- (void)setAlphaAtX: (int)x Y: (int)y to: (unsigned char)a;
284- (NSColor *)stippleMask;
285@end
286
287
288/* ==========================================================================
289
290 Scrollbars
291
292 ========================================================================== */
293
294@interface EmacsScroller : NSScroller
295 {
296 Lisp_Object win;
297 struct frame *frame;
298 NSResponder *prevResponder;
299
300 /* offset to the bottom of knob of last mouse down */
301 float last_mouse_offset;
302 float min_portion;
303 int pixel_height;
304 int last_hit_part;
305
306 BOOL condemned;
307
308 /* optimize against excessive positioning calls generated by emacs */
309 int em_position;
310 int em_portion;
311 int em_whole;
312 }
313
314- initFrame: (NSRect )r window: (Lisp_Object)win;
315- (void)setFrame: (NSRect)r;
316- (void)dealloc;
317
318- setPosition: (int) position portion: (int) portion whole: (int) whole;
319- (int) checkSamePosition: (int)position portion: (int)portion
320 whole: (int)whole;
321- (void) getMouseMotionPart: (int *)part window: (Lisp_Object *)window
322 x: (Lisp_Object *)x y: ( Lisp_Object *)y;
323- (void) sendScrollEventAtLoc: (float)loc fromEvent: (NSEvent *)e;
324- repeatScroll: (NSTimer *)sender;
325- condemn;
326- reprieve;
327- judge;
328@end
329
330
331/* ==========================================================================
332
333 Rendering on Panther and above
334
335 ========================================================================== */
336
337#ifdef NS_IMPL_COCOA
338/* rendering util */
339@interface EmacsGlyphStorage : NSObject <NSGlyphStorage>
340{
341@public
342 NSAttributedString *attrStr;
343 NSMutableDictionary *dict;
344 CGGlyph *cglyphs;
345 unsigned long maxChar, maxGlyph;
346 long i, len;
347}
348- initWithCapacity: (unsigned long) c;
349- (void) setString: (NSString *)str font: (NSFont *)font;
350@end
351#endif /* NS_IMPL_COCOA */
352
edfda783 353extern NSArray *ns_send_types, *ns_return_types;
abd5747e 354extern NSString *ns_app_name;
4e622592 355extern EmacsMenu *mainMenu, *svcsMenu, *dockMenu;
edfda783
AR
356
357/* Apple removed the declaration, but kept the implementation */
a39e2539 358#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
edfda783
AR
359@interface NSApplication (EmacsApp)
360- (void)setAppleMenu: (NSMenu *)menu;
361@end
362#endif
363
5cca5bf0 364#ifndef NS_HAVE_NSINTEGER
5e617bc2 365#if defined (__LP64__) && __LP64__
5cca5bf0
AR
366typedef double CGFloat;
367typedef long NSInteger;
368typedef unsigned long NSUInteger;
369#else
370typedef float CGFloat;
371typedef int NSInteger;
372typedef unsigned int NSUInteger;
373#endif /* not LP64 */
374#endif /* not NS_HAVE_NSINTEGER */
375
edfda783
AR
376#endif /* __OBJC__ */
377
378
379
380/* ==========================================================================
381
382 Non-OO stuff
383
384 ========================================================================== */
385
8612b71a
AR
386/* Special keycodes that we pass down the event chain */
387#define KEY_NS_POWER_OFF ((1<<28)|(0<<16)|1)
388#define KEY_NS_OPEN_FILE ((1<<28)|(0<<16)|2)
389#define KEY_NS_OPEN_TEMP_FILE ((1<<28)|(0<<16)|3)
390#define KEY_NS_DRAG_FILE ((1<<28)|(0<<16)|4)
391#define KEY_NS_DRAG_COLOR ((1<<28)|(0<<16)|5)
392#define KEY_NS_DRAG_TEXT ((1<<28)|(0<<16)|6)
393#define KEY_NS_CHANGE_FONT ((1<<28)|(0<<16)|7)
394#define KEY_NS_OPEN_FILE_LINE ((1<<28)|(0<<16)|8)
395#define KEY_NS_PUT_WORKING_TEXT ((1<<28)|(0<<16)|9)
396#define KEY_NS_UNPUT_WORKING_TEXT ((1<<28)|(0<<16)|10)
397#define KEY_NS_SPI_SERVICE_CALL ((1<<28)|(0<<16)|11)
398#define KEY_NS_NEW_FRAME ((1<<28)|(0<<16)|12)
399#define KEY_NS_TOGGLE_TOOLBAR ((1<<28)|(0<<16)|13)
c6c62e78 400#define KEY_NS_SHOW_PREFS ((1<<28)|(0<<16)|14)
8612b71a 401
edfda783
AR
402/* could use list to store these, but rest of emacs has a big infrastructure
403 for managing a table of bitmap "records" */
404struct ns_bitmap_record
405{
406#ifdef __OBJC__
407 EmacsImage *img;
408#else
409 void *img;
410#endif
411 char *file;
412 int refcount;
413 int height, width, depth;
414};
415
416/* this to map between emacs color indices and NSColor objects */
417struct ns_color_table
418{
1ef7689b
PE
419 ptrdiff_t size;
420 ptrdiff_t avail;
edfda783
AR
421#ifdef __OBJC__
422 NSColor **colors;
423 NSMutableSet *empty_indices;
424#else
425 void **items;
426 void *availIndices;
427#endif
428};
429#define NS_COLOR_CAPACITY 256
430
431#define RGB_TO_ULONG(r, g, b) (((r) << 16) | ((g) << 8) | (b))
432#define ARGB_TO_ULONG(a, r, g, b) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
433
434#define ALPHA_FROM_ULONG(color) ((color) >> 24)
435#define RED_FROM_ULONG(color) (((color) >> 16) & 0xff)
436#define GREEN_FROM_ULONG(color) (((color) >> 8) & 0xff)
437#define BLUE_FROM_ULONG(color) ((color) & 0xff)
438
439/* Do not change `* 0x101' in the following lines to `<< 8'. If
440 changed, image masks in 1-bit depth will not work. */
441#define RED16_FROM_ULONG(color) (RED_FROM_ULONG(color) * 0x101)
442#define GREEN16_FROM_ULONG(color) (GREEN_FROM_ULONG(color) * 0x101)
443#define BLUE16_FROM_ULONG(color) (BLUE_FROM_ULONG(color) * 0x101)
444
445/* this extends font backend font */
446struct nsfont_info
447{
448 struct font font;
449
7877f373 450 char *name; /* PostScript name, uniquely identifies on NS systems */
edfda783
AR
451 float width; /* this and following metrics stored as float rather than int */
452 float height;
453 float underpos;
454 float underwidth;
455 float size;
456#ifdef __OBJC__
457 NSFont *nsfont;
458 /* cgfont and synthItal are used only on OS X 10.3+ */
459#if defined (NS_IMPL_COCOA) && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3)
460 CGFontRef cgfont;
461#else /* GNUstep or OS X < 10.3 */
462 void *cgfont;
463#endif
464#else /* ! OBJC */
465 void *nsfont;
466 void *cgfont;
467#endif
468 char bold, ital; /* convenience flags */
469 char synthItal;
3fe53a83 470 XCharStruct max_bounds;
edfda783
AR
471 /* we compute glyph codes and metrics on-demand in blocks of 256 indexed
472 by hibyte, lobyte */
fe7a3057 473 unsigned short **glyphs; /* map Unicode index to glyph */
edfda783
AR
474 struct font_metrics **metrics;
475};
476
477
478/* init'd in ns_initialize_display_info () */
479struct ns_display_info
480{
481 /* Chain of all ns_display_info structures. */
482 struct ns_display_info *next;
483
484 /* The generic display parameters corresponding to this NS display. */
485 struct terminal *terminal;
486
487 /* This is a cons cell of the form (NAME . FONT-LIST-CACHE).
488 The same cons cell also appears in ns_display_name_list. */
489 Lisp_Object name_list_element;
490
491 /* The number of fonts loaded. */
492 int n_fonts;
493
494 /* Minimum width over all characters in all fonts in font_table. */
495 int smallest_char_width;
496
497 /* Minimum font height over all fonts in font_table. */
498 int smallest_font_height;
499
edfda783 500 struct ns_bitmap_record *bitmaps;
0766b489
PE
501 ptrdiff_t bitmaps_size;
502 ptrdiff_t bitmaps_last;
edfda783 503
edfda783
AR
504 struct image_cache *image_cache;
505
506 struct ns_color_table *color_table;
507
3fe53a83 508 /* DPI resolution of this screen */
edfda783
AR
509 double resx, resy;
510
3fe53a83 511 /* Mask of things that cause the mouse to be grabbed */
edfda783
AR
512 int grabbed;
513
edfda783
AR
514 int n_planes;
515
edfda783
AR
516 int color_p;
517
edfda783
AR
518 Window root_window;
519
3fe53a83 520 /* Xism */
edfda783
AR
521 XrmDatabase xrdb;
522
3fe53a83 523 /* The cursor to use for vertical scroll bars. */
edfda783
AR
524 Cursor vertical_scroll_bar_cursor;
525
7ea692f6
EZ
526 /* Information about the range of text currently shown in
527 mouse-face. */
528 Mouse_HLInfo mouse_highlight;
edfda783 529
9e50ff0c
DN
530 struct frame *x_highlight_frame;
531 struct frame *x_focus_frame;
edfda783
AR
532};
533
534/* This is a chain of structures for all the NS displays currently in use. */
9e50ff0c 535extern struct ns_display_info *x_display_list;
edfda783
AR
536
537extern Lisp_Object ns_display_name_list;
538extern struct ns_display_info *ns_display_info_for_name ();
539
edfda783
AR
540struct ns_display_info *check_x_display_info (Lisp_Object frame);
541FRAME_PTR check_x_frame (Lisp_Object frame);
542
543
544struct ns_output
545{
546#ifdef __OBJC__
547 EmacsView *view;
548 id miniimage;
c8c057de 549 NSColor *cursor_color;
edfda783
AR
550 NSColor *foreground_color;
551 NSColor *background_color;
552 EmacsToolbar *toolbar;
553#else
554 void *view;
555 void *miniimage;
c8c057de 556 void *cursor_color;
edfda783
AR
557 void *foreground_color;
558 void *background_color;
559 void *toolbar;
560#endif
561
3fe53a83 562 /* NSCursors init'ed in initFrameFromEmacs */
edfda783
AR
563 Cursor text_cursor;
564 Cursor nontext_cursor;
565 Cursor modeline_cursor;
566 Cursor hand_cursor;
567 Cursor hourglass_cursor;
568 Cursor horizontal_drag_cursor;
569
3fe53a83 570 /* NS-specific */
edfda783
AR
571 Cursor current_pointer;
572
3fe53a83 573 /* lord knows why Emacs needs to know about our Window ids.. */
edfda783
AR
574 Window window_desc, parent_desc;
575 char explicit_parent;
576
577 struct font *font;
578 int baseline_offset;
579
580 /* If a fontset is specified for this frame instead of font, this
581 value contains an ID of the fontset, else -1. */
582 int fontset; /* only used with font_backend */
583
584 Lisp_Object icon_top;
585 Lisp_Object icon_left;
edfda783
AR
586
587 /* The size of the extra width currently allotted for vertical
588 scroll bars, in pixels. */
589 int vertical_scroll_bar_extra;
590
591 /* The height of the titlebar decoration (included in NSWindow's frame). */
592 int titlebar_height;
593
594 /* The height of the toolbar if displayed, else 0. */
595 int toolbar_height;
596
597 /* This is the Emacs structure for the NS display this frame is on. */
598 struct ns_display_info *display_info;
e2f79c8d
JD
599
600 /* Non-zero if we want to constrain the frame to the screen. */
601 int dont_constrain;
602
603 /* Non-zero if we are zooming (maximizing) the frame. */
604 int zooming;
edfda783
AR
605};
606
3fe53a83 607/* this dummy decl needed to support TTYs */
edfda783
AR
608struct x_output
609{
610 unsigned long background_pixel;
611 unsigned long foreground_pixel;
612};
613
614
615/* This gives the ns_display_info structure for the display F is on. */
616#define FRAME_NS_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
617/* the primacy of X must be constantly worked with... */
618#define FRAME_X_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
619#define FRAME_X_OUTPUT(f) ((f)->output_data.ns)
620#define FRAME_NS_WINDOW(f) ((f)->output_data.ns->window_desc)
621#define FRAME_X_WINDOW(f) ((f)->output_data.ns->window_desc)
622
623/* This is the `Display *' which frame F is on. */
624#define FRAME_NS_DISPLAY(f) (0)
625#define FRAME_X_DISPLAY(f) (0)
626
627#define FRAME_FOREGROUND_COLOR(f) ((f)->output_data.ns->foreground_color)
628#define FRAME_BACKGROUND_COLOR(f) ((f)->output_data.ns->background_color)
629
630#define FRAME_X_IMAGE_CACHE(F) FRAME_NS_DISPLAY_INFO ((F))->image_cache
631
632#define NS_FACE_FOREGROUND(f) ((f)->foreground)
633#define NS_FACE_BACKGROUND(f) ((f)->background)
634#define FRAME_NS_TITLEBAR_HEIGHT(f) ((f)->output_data.ns->titlebar_height)
581a8100 635#define FRAME_TOOLBAR_HEIGHT(f) ((f)->output_data.ns->toolbar_height)
edfda783
AR
636
637#define FONT_WIDTH(f) ((f)->max_width)
638#define FONT_HEIGHT(f) ((f)->height)
639/*#define FONT_BASE(f) ((f)->ascent) */
640#define FONT_BASE(f) (((struct nsfont_info *)f)->max_bounds.ascent)
641/*#define FONT_DESCENT(f) ((f)->descent) */
642#define FONT_DESCENT(f) (((struct nsfont_info *)f)->max_bounds.descent)
643
644#define FRAME_DEFAULT_FACE(f) FACE_FROM_ID (f, DEFAULT_FACE_ID)
645
646#define FRAME_NS_VIEW(f) ((f)->output_data.ns->view)
c8c057de 647#define FRAME_CURSOR_COLOR(f) ((f)->output_data.ns->cursor_color)
edfda783 648#define FRAME_POINTER_TYPE(f) ((f)->output_data.ns->current_pointer)
edfda783
AR
649
650#define FRAME_FONT(f) ((f)->output_data.ns->font)
651
652#ifdef __OBJC__
653#define XNS_SCROLL_BAR(vec) ((id) XSAVE_VALUE (vec)->pointer)
654#else
655#define XNS_SCROLL_BAR(vec) XSAVE_VALUE (vec)->pointer
656#endif
657
658/* Compute pixel size for vertical scroll bars */
659#define NS_SCROLL_BAR_WIDTH(f) \
660(FRAME_HAS_VERTICAL_SCROLL_BARS (f) \
661 ? rint (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0 \
662 ? FRAME_CONFIG_SCROLL_BAR_WIDTH (f) \
663 : (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f))) \
664 : 0)
665
666/* Difference btwn char-column-calculated and actual SB widths.
667 This is only a concern for rendering when SB on left. */
668#define NS_SCROLL_BAR_ADJUST(w, f) \
669(WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) ? \
670 (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f) \
671 - NS_SCROLL_BAR_WIDTH (f)) : 0)
672
6fb5f7da 673/* XXX: fix for GNUstep inconsistent accounting for titlebar */
edfda783
AR
674#ifdef NS_IMPL_GNUSTEP
675#define NS_TOP_POS(f) ((f)->top_pos + 18)
676#else
677#define NS_TOP_POS(f) ((f)->top_pos)
678#endif
679
680#define FRAME_NS_FONT_TABLE(f) (FRAME_NS_DISPLAY_INFO (f)->font_table)
681
682#define FRAME_FONTSET(f) ((f)->output_data.ns->fontset)
683
edfda783
AR
684#define FRAME_SMALLEST_CHAR_WIDTH(f) \
685 (FRAME_NS_DISPLAY_INFO (f)->smallest_char_width)
686#define FRAME_SMALLEST_FONT_HEIGHT(f) \
687 (FRAME_NS_DISPLAY_INFO (f)->smallest_font_height)
688#define FONT_TYPE_FOR_UNIBYTE(font, ch) 0
689#define FONT_TYPE_FOR_MULTIBYTE(font, ch) 0
690#define FRAME_BASELINE_OFFSET(f) ((f)->output_data.ns->baseline_offset)
691#define BLACK_PIX_DEFAULT(f) 0x000000
692#define WHITE_PIX_DEFAULT(f) 0xFFFFFF
693
694/* First position where characters can be shown (instead of scrollbar, if
695 it is on left. */
696#define FIRST_CHAR_POSITION(f) \
697 (! (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)) ? 0 \
698 : FRAME_SCROLL_BAR_COLS (f))
699
700extern struct ns_display_info *ns_term_init ();
701extern void ns_term_shutdown (int sig);
702
703/* constants for text rendering */
704#define NS_DUMPGLYPH_NORMAL 0
705#define NS_DUMPGLYPH_CURSOR 1
706#define NS_DUMPGLYPH_FOREGROUND 2
707#define NS_DUMPGLYPH_MOUSEFACE 3
708
709
facfbbbd 710
edfda783
AR
711/* In nsfont, called from fontset.c */
712extern void nsfont_make_fontset_for_font (Lisp_Object name,
713 Lisp_Object font_object);
714
715/* In nsfont, for debugging */
716struct glyph_string;
c7eb9816 717void ns_dump_glyphstring (struct glyph_string *s);
edfda783
AR
718
719/* Implemented in nsterm, published in or needed from nsfns. */
720extern Lisp_Object Qfontsize;
721extern Lisp_Object ns_list_fonts (FRAME_PTR f, Lisp_Object pattern,
722 int size, int maxnames);
723extern void ns_clear_frame (struct frame *f);
724
edfda783
AR
725extern const char *ns_xlfd_to_fontname (const char *xlfd);
726
727extern void check_ns (void);
728extern Lisp_Object ns_map_event_to_object ();
729extern Lisp_Object ns_string_from_pasteboard ();
730extern void ns_string_to_pasteboard ();
699c10bd
JD
731extern Lisp_Object ns_get_local_selection (Lisp_Object selection_name,
732 Lisp_Object target_type);
edfda783
AR
733extern void nxatoms_of_nsselect ();
734extern int ns_lisp_to_cursor_type ();
735extern Lisp_Object ns_cursor_type_to_lisp (int arg);
736extern Lisp_Object Qnone;
9ae6e189
CY
737extern void ns_set_name_as_filename (struct frame *f);
738extern void ns_set_doc_edited (struct frame *f, Lisp_Object arg);
edfda783 739
facfbbbd 740extern int
3d608a86
J
741ns_defined_color (struct frame *f,
742 const char *name,
743 XColor *color_def, int alloc,
facfbbbd 744 char makeIndex);
5e1dedc1
AR
745extern void
746ns_query_color (void *col, XColor *color_def, int setPixel);
edfda783
AR
747
748#ifdef __OBJC__
facfbbbd 749extern Lisp_Object ns_color_to_lisp (NSColor *col);
edfda783
AR
750extern int ns_lisp_to_color (Lisp_Object color, NSColor **col);
751extern NSColor *ns_lookup_indexed_color (unsigned long idx, struct frame *f);
752extern unsigned long ns_index_color (NSColor *color, struct frame *f);
753extern void ns_free_indexed_color (unsigned long idx, struct frame *f);
754#endif
755
756/* C access to ObjC functionality */
757extern void ns_release_object (void *obj);
758extern void ns_retain_object (void *obj);
759extern void *ns_alloc_autorelease_pool ();
760extern void ns_release_autorelease_pool ();
f7dfe5d6 761extern const char *ns_get_defaults_value ();
edfda783
AR
762
763/* in nsmenu */
764extern void update_frame_tool_bar (FRAME_PTR f);
765extern void free_frame_tool_bar (FRAME_PTR f);
766extern void find_and_call_menu_selection (FRAME_PTR f,
faf257a1 767 int menu_bar_items_used, Lisp_Object vector, void *client_data);
edfda783
AR
768extern Lisp_Object find_and_return_menu_selection (FRAME_PTR f,
769 int keymaps,
770 void *client_data);
771extern Lisp_Object ns_popup_dialog (Lisp_Object position, Lisp_Object contents,
772 Lisp_Object header);
773
3d608a86 774/* More prototypes that should be moved to a more general include file */
edfda783
AR
775extern void set_frame_menubar (struct frame *f, int first_time, int deep_p);
776extern void x_set_window_size (struct frame *f, int change_grav,
777 int cols, int rows);
3d608a86
J
778extern void x_sync (struct frame *);
779extern Lisp_Object x_get_focus_frame (struct frame *);
780extern void x_set_mouse_position (struct frame *f, int h, int v);
781extern void x_set_mouse_pixel_position (struct frame *f, int pix_x, int pix_y);
782extern void x_make_frame_visible (struct frame *f);
783extern void x_make_frame_invisible (struct frame *f);
784extern void x_iconify_frame (struct frame *f);
785extern int x_char_width (struct frame *f);
786extern int x_char_height (struct frame *f);
787extern int x_pixel_width (struct frame *f);
788extern int x_pixel_height (struct frame *f);
789extern void x_set_frame_alpha (struct frame *f);
4094bf36 790extern void x_set_menu_bar_lines (struct frame *, Lisp_Object, Lisp_Object);
3d608a86
J
791extern void x_set_tool_bar_lines (struct frame *f,
792 Lisp_Object value,
793 Lisp_Object oldval);
794extern void x_activate_menubar (struct frame *);
795extern void free_frame_menubar (struct frame *);
83faebb4 796extern void x_free_frame_resources (struct frame *);
3d608a86 797
08e3161a
JD
798#define NSAPP_DATA2_RUNASSCRIPT 10
799extern void ns_run_ascript (void);
800
7c4e8ec0 801extern const char *ns_etc_directory (void);
cbb31951 802extern const char *ns_exec_path (void);
3d608a86
J
803extern void ns_init_paths (void);
804extern void syms_of_nsterm (void);
805extern void syms_of_nsfns (void);
806extern void syms_of_nsmenu (void);
807extern void syms_of_nsselect (void);
edfda783
AR
808
809/* From nsimage.m, needed in image.c */
810struct image;
811extern void *ns_image_from_XBM (unsigned char *bits, int width, int height);
812extern void *ns_image_for_XPM (int width, int height, int depth);
813extern void *ns_image_from_file (Lisp_Object file);
814extern int ns_load_image (struct frame *f, struct image *img,
815 Lisp_Object spec_file, Lisp_Object spec_data);
816extern int ns_image_width (void *img);
817extern int ns_image_height (void *img);
818extern unsigned long ns_get_pixel (void *img, int x, int y);
819extern void ns_put_pixel (void *img, int x, int y, unsigned long argb);
820extern void ns_set_alpha (void *img, int x, int y, unsigned char a);
821
383e0970
J
822extern int x_display_pixel_height (struct ns_display_info *);
823extern int x_display_pixel_width (struct ns_display_info *);
b532986e 824
edfda783 825/* This in nsterm.m */
3d608a86 826extern int ns_select (int nfds, fd_set *readfds, fd_set *writefds,
d35af63c
PE
827 fd_set *exceptfds, EMACS_TIME *timeout,
828 sigset_t *sigmask);
edfda783
AR
829extern unsigned long ns_get_rgb_color (struct frame *f,
830 float r, float g, float b, float a);
831extern NSPoint last_mouse_motion_position;
832
4843aac3
AA
833/* From nsterm.m, needed in nsfont.m. */
834#ifdef __OBJC__
835extern void
836ns_draw_text_decoration (struct glyph_string *s, struct face *face,
837 NSColor *defaultCol, CGFloat width, CGFloat x);
838#endif
839
edfda783
AR
840#ifdef NS_IMPL_GNUSTEP
841extern char gnustep_base_version[]; /* version tracking */
842#endif
843
844#define MINWIDTH 10
845#define MINHEIGHT 10
846
847/* Screen max coordinate
848 Using larger coordinates causes movewindow/placewindow to abort */
849#define SCREENMAX 16000
850
851#define NS_SCROLL_BAR_WIDTH_DEFAULT [EmacsScroller scrollerWidth]
852/* This is to match emacs on other platforms, ugly though it is. */
853#define NS_SELECTION_COLOR_DEFAULT @"LightGoldenrod2";
854#define RESIZE_HANDLE_SIZE 12
855
856/* Little utility macros */
857#define IN_BOUND(min, x, max) (((x) < (min)) \
858 ? (min) : (((x)>(max)) ? (max) : (x)))
859#define SCREENMAXBOUND(x) (IN_BOUND (-SCREENMAX, x, SCREENMAX))
860
3fe53a83 861/* needed somewhere... */
edfda783
AR
862#define VERTICAL_SCROLL_BAR_WIDTH_TRIM (0)
863
864
865#endif /* HAVE_NS */