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