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