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