1 /* Definitions and headers for communication with NeXT/Open/GNUstep API.
2 Copyright (C) 1989, 1993, 2005, 2008, 2009 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include "dispextern.h"
22 #include "character.h"
29 /* ==========================================================================
33 ========================================================================== */
35 /* We override sendEvent: as a means to stop/start the event loop */
36 @interface EmacsApp
: NSApplication
39 - (void)logNotification
: (NSNotification
*)notification
;
40 - (void)sendEvent
: (NSEvent
*)theEvent
;
41 - (void)showPreferencesWindow
: (id
)sender
;
42 - (BOOL
) openFile
: (NSString
*)fileName
;
43 - (void)fd_handler
: (NSTimer
*) fdEntry
;
44 - (void)timeout_handler
: (NSTimer
*)timedEntry
;
45 - (BOOL
)fulfillService
: (NSString
*)name withArg
: (NSString
*)arg
;
49 /* ==========================================================================
53 ========================================================================== */
57 @interface EmacsView
: NSView
<NSTextInput
>
61 NSString
*workingText
;
62 BOOL processingCompose
;
64 struct frame
*emacsframe
;
66 int scrollbarsNeedingUpdate
;
67 EmacsToolbar
*toolbar
;
70 /* AppKit-side interface */
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
;
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
;
86 #ifdef NS_IMPL_GNUSTEP
87 /* Not declared, but useful. */
88 - (void) unlockFocusNeedsFlush
: (BOOL
)needs
;
93 /* Small utility used for processing resize events under Cocoa. */
94 @interface EmacsWindow
: NSWindow
101 /* ==========================================================================
103 The main menu implementation
105 ========================================================================== */
107 @interface EmacsMenu
: NSMenu
110 unsigned long keyEquivModMask
;
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
;
117 - (NSMenuItem
*)addItemWithWidgetValue
: (void *)wvptr
;
118 - (void)fillWithWidgetValue
: (void *)wvptr
;
119 - (EmacsMenu
*)addSubmenuWithTitle
: (char *)title forFrame
: (struct frame
*)f
;
121 - (Lisp_Object
)runMenuAt
: (NSPoint
)p forFrame
: (struct frame
*)f
122 keymaps
: (int)keymaps
;
126 /* ==========================================================================
130 ========================================================================== */
134 @interface EmacsToolbar
: NSToolbar
136 EmacsView
*emacsView
;
137 NSMutableDictionary
*identifierToItem
;
138 NSMutableArray
*activeIdentifiers
;
139 NSArray
*prevIdentifiers
;
140 unsigned long enablement
, prevEnablement
;
142 - initForView
: (EmacsView
*)view withIdentifier
: (NSString
*)identifier
;
143 - (void) clearActive
;
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
;
157 /* ==========================================================================
159 Message / question windows
161 ========================================================================== */
163 @interface EmacsDialogPanel
: NSPanel
165 NSTextField
*command
;
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
;
174 - (Lisp_Object
)runDialogAt
: (NSPoint
)p
;
177 @interface EmacsTooltip
: NSObject
180 NSTextField
*textField
;
184 - (void) setText
: (char *)text
;
185 - (void) showAtX
: (int)x Y
: (int)y
for: (int)seconds
;
192 /* ==========================================================================
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.
198 ========================================================================== */
200 @interface EmacsSavePanel
: NSSavePanel
204 @interface EmacsOpenPanel
: NSOpenPanel
209 @interface EmacsFileDelegate
: NSObject
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
;
219 /* ==========================================================================
223 ========================================================================== */
225 @interface EmacsImage
: NSImage
229 NSBitmapImageRep
*bmRep
; /* used for accessing pixel data */
230 unsigned char *pixmapData
[5]; /* shortcut to access pixel data */
232 NSColor
*stippleMask
;
234 + allocInitFromFile
: (Lisp_Object
)file
;
236 - imageListSetNext
: (id
)arg
;
239 - initFromXBM
: (unsigned char *)bits width
: (int)w height
: (int)h
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
;
255 /* ==========================================================================
259 ========================================================================== */
261 @interface EmacsScroller
: NSScroller
265 NSResponder
*prevResponder
;
267 /* offset to the bottom of knob of last mouse down */
268 float last_mouse_offset
;
275 /* optimize against excessive positioning calls generated by emacs */
281 - initFrame
: (NSRect
)r window
: (Lisp_Object
)win
;
282 - (void)setFrame
: (NSRect
)r
;
285 - setPosition
: (int) position portion
: (int) portion whole
: (int) whole
;
286 - (int) checkSamePosition
: (int)position portion
: (int)portion
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
;
298 /* ==========================================================================
300 Rendering on Panther and above
302 ========================================================================== */
306 @interface EmacsGlyphStorage
: NSObject
<NSGlyphStorage
>
309 NSAttributedString
*attrStr
;
310 NSMutableDictionary
*dict
;
312 unsigned long maxChar
, maxGlyph
;
315 - initWithCapacity
: (unsigned long) c
;
316 - (void) setString
: (NSString
*)str font
: (NSFont
*)font
;
318 #endif /* NS_IMPL_COCOA */
321 /* ==========================================================================
323 Running the preferences window
325 ========================================================================== */
327 @interface EmacsPrefsController
: NSObject
330 IBOutlet NSWindow
*prefsWindow
;
331 IBOutlet NSPopUpButton
*alternateModMenu
;
332 IBOutlet NSPopUpButton
*commandModMenu
;
334 IBOutlet NSPopUpButton
*controlModMenu
;
335 IBOutlet NSPopUpButton
*functionModMenu
;
337 IBOutlet NSMatrix
*cursorTypeMatrix
;
338 IBOutlet NSSlider
*cursorBlinkSlider
;
339 IBOutlet NSSlider
*expandSpaceSlider
;
341 IBOutlet NSButton
*smoothFontsCheck
;
342 IBOutlet NSButton
*useQuickdrawCheck
;
343 IBOutlet NSButton
*useSysHiliteCheck
;
344 Lisp_Object prevUseHighlightColor
;
346 float prevExpandSpace
;
349 - (IBAction
)cancel
: (id
)sender
;
350 - (IBAction
)ok
: (id
)sender
;
351 - (IBAction
)resetToDefaults
: (id
)sender
;
352 - (IBAction
)runHelp
: (id
)sender
;
353 - (IBAction
)setColors
: (id
)sender
;
354 - (IBAction
)setDefaultFont
: (id
)sender
;
356 - (void) showForFrame
: (struct frame
*)f
;
357 - (void) setPanelFromValues
;
358 - (void) setValuesFromPanel
;
361 extern NSArray
*ns_send_types
, *ns_return_types
;
362 extern EmacsMenu
*mainMenu
, *svcsMenu
, *dockMenu
;
364 /* Apple removed the declaration, but kept the implementation */
365 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_4
366 @interface
NSApplication (EmacsApp
)
367 - (void)setAppleMenu
: (NSMenu
*)menu
;
371 #ifndef NS_HAVE_NSINTEGER
372 typedef long NSInteger
;
373 typedef unsigned long NSUInteger
;
374 #endif /* not NS_HAVE_NSINTEGER */
376 #endif /* __OBJC__ */
380 /* ==========================================================================
384 ========================================================================== */
386 /* could use list to store these, but rest of emacs has a big infrastructure
387 for managing a table of bitmap "records" */
388 struct ns_bitmap_record
397 int height
, width
, depth
;
400 /* this to map between emacs color indices and NSColor objects */
401 struct ns_color_table
407 NSMutableSet
*empty_indices
;
413 #define NS_COLOR_CAPACITY 256
415 #define RGB_TO_ULONG(r, g, b) (((r) << 16) | ((g) << 8) | (b))
416 #define ARGB_TO_ULONG(a, r, g, b) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
418 #define ALPHA_FROM_ULONG(color) ((color) >> 24)
419 #define RED_FROM_ULONG(color) (((color) >> 16) & 0xff)
420 #define GREEN_FROM_ULONG(color) (((color) >> 8) & 0xff)
421 #define BLUE_FROM_ULONG(color) ((color) & 0xff)
423 /* Do not change `* 0x101' in the following lines to `<< 8'. If
424 changed, image masks in 1-bit depth will not work. */
425 #define RED16_FROM_ULONG(color) (RED_FROM_ULONG(color) * 0x101)
426 #define GREEN16_FROM_ULONG(color) (GREEN_FROM_ULONG(color) * 0x101)
427 #define BLUE16_FROM_ULONG(color) (BLUE_FROM_ULONG(color) * 0x101)
429 /* this extends font backend font */
434 char *name
; /* postscript name, uniquely identifies on NS systems */
435 float width
; /* this and following metrics stored as float rather than int */
442 /* cgfont and synthItal are used only on OS X 10.3+ */
443 #if defined (NS_IMPL_COCOA) && (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3)
445 #else /* GNUstep or OS X < 10.3 */
452 char bold
, ital
; /* convenience flags */
454 float voffset
; /* mean of ascender/descender offsets */
455 XCharStruct max_bounds
; /* 23 */
456 /* we compute glyph codes and metrics on-demand in blocks of 256 indexed
458 unsigned short **glyphs
; /* map unicode index to glyph */
459 struct font_metrics
**metrics
;
463 /* init'd in ns_initialize_display_info () */
464 struct ns_display_info
466 /* Chain of all ns_display_info structures. */
467 struct ns_display_info
*next
;
469 /* The generic display parameters corresponding to this NS display. */
470 struct terminal
*terminal
;
472 /* This is a cons cell of the form (NAME . FONT-LIST-CACHE).
473 The same cons cell also appears in ns_display_name_list. */
474 Lisp_Object name_list_element
;
476 /* The number of fonts loaded. */
479 /* Minimum width over all characters in all fonts in font_table. */
480 int smallest_char_width
;
482 /* Minimum font height over all fonts in font_table. */
483 int smallest_font_height
;
486 struct ns_bitmap_record
*bitmaps
;
491 struct image_cache
*image_cache
;
493 struct ns_color_table
*color_table
;
495 /* 23: DPI resolution of this screen */
498 /* 23: Mask of things that cause the mouse to be grabbed */
513 /* 23: The cursor to use for vertical scroll bars. */
514 Cursor vertical_scroll_bar_cursor
;
516 /* 23: most mouse face stuff moved in here (and reasonably so) */
517 int mouse_face_beg_row
, mouse_face_beg_col
;
518 int mouse_face_end_row
, mouse_face_end_col
;
519 int mouse_face_beg_x
, mouse_face_beg_y
;
520 int mouse_face_end_x
, mouse_face_end_y
;
521 int mouse_face_past_end
;
522 Lisp_Object mouse_face_window
;
523 int mouse_face_face_id
;
524 int mouse_face_deferred_gc
;
525 Lisp_Object mouse_face_overlay
;
526 FRAME_PTR mouse_face_mouse_frame
;
527 int mouse_face_mouse_x
, mouse_face_mouse_y
;
528 int mouse_face_defer
;
529 int mouse_face_hidden
;
530 int mouse_face_image_state
;
532 struct frame
*x_highlight_frame
;
533 struct frame
*x_focus_frame
;
536 /* This is a chain of structures for all the NS displays currently in use. */
537 extern struct ns_display_info
*x_display_list
;
539 extern Lisp_Object ns_display_name_list
;
540 extern struct ns_display_info
*ns_display_info_for_name ();
542 /* 23: FIXME: these functions (we defined in nsfns) are used in various
543 places, but no prototypes are provided */
544 struct ns_display_info
*check_x_display_info (Lisp_Object frame
);
545 FRAME_PTR
check_x_frame (Lisp_Object frame
);
553 NSColor
*cursor_color
;
554 NSColor
*foreground_color
;
555 NSColor
*background_color
;
556 EmacsToolbar
*toolbar
;
561 void *foreground_color
;
562 void *background_color
;
566 /* 23: NSCursors init'ed in initFrameFromEmacs */
568 Cursor nontext_cursor
;
569 Cursor modeline_cursor
;
571 Cursor hourglass_cursor
;
572 Cursor horizontal_drag_cursor
;
574 /* 23: NS-specific */
575 Cursor current_pointer
;
577 /* 23: lord knows why Emacs needs to know about our Window ids.. */
578 Window window_desc
, parent_desc
;
579 char explicit_parent
;
584 /* If a fontset is specified for this frame instead of font, this
585 value contains an ID of the fontset, else -1. */
586 int fontset
; /* only used with font_backend */
588 Lisp_Object icon_top
;
589 Lisp_Object icon_left
;
591 /* The size of the extra width currently allotted for vertical
592 scroll bars, in pixels. */
593 int vertical_scroll_bar_extra
;
595 /* The height of the titlebar decoration (included in NSWindow's frame). */
598 /* The height of the toolbar if displayed, else 0. */
601 /* This is the Emacs structure for the NS display this frame is on. */
602 struct ns_display_info
*display_info
;
605 /* 23: this dummy decl now needed to support TTYs */
608 unsigned long background_pixel
;
609 unsigned long foreground_pixel
;
613 /* This gives the ns_display_info structure for the display F is on. */
614 #define FRAME_NS_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
615 /* the primacy of X must be constantly worked with... */
616 #define FRAME_X_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
617 #define FRAME_X_OUTPUT(f) ((f)->output_data.ns)
618 #define FRAME_NS_WINDOW(f) ((f)->output_data.ns->window_desc)
619 #define FRAME_X_WINDOW(f) ((f)->output_data.ns->window_desc)
621 /* This is the `Display *' which frame F is on. */
622 #define FRAME_NS_DISPLAY(f) (0)
623 #define FRAME_X_DISPLAY(f) (0)
625 #define FRAME_FOREGROUND_COLOR(f) ((f)->output_data.ns->foreground_color)
626 #define FRAME_BACKGROUND_COLOR(f) ((f)->output_data.ns->background_color)
628 #define FRAME_X_IMAGE_CACHE(F) FRAME_NS_DISPLAY_INFO ((F))->image_cache
630 #define NS_FACE_FOREGROUND(f) ((f)->foreground)
631 #define NS_FACE_BACKGROUND(f) ((f)->background)
632 #define FRAME_NS_TITLEBAR_HEIGHT(f) ((f)->output_data.ns->titlebar_height)
633 #define FRAME_NS_TOOLBAR_HEIGHT(f) ((f)->output_data.ns->toolbar_height)
635 #define FONT_WIDTH(f) ((f)->max_width)
636 #define FONT_HEIGHT(f) ((f)->height)
637 /*#define FONT_BASE(f) ((f)->ascent) */
638 #define FONT_BASE(f) (((struct nsfont_info *)f)->max_bounds.ascent)
639 /*#define FONT_DESCENT(f) ((f)->descent) */
640 #define FONT_DESCENT(f) (((struct nsfont_info *)f)->max_bounds.descent)
642 #define FRAME_DEFAULT_FACE(f) FACE_FROM_ID (f, DEFAULT_FACE_ID)
644 #define FRAME_NS_VIEW(f) ((f)->output_data.ns->view)
645 #define FRAME_CURSOR_COLOR(f) ((f)->output_data.ns->cursor_color)
646 #define FRAME_POINTER_TYPE(f) ((f)->output_data.ns->current_pointer)
648 #define FRAME_FONT(f) ((f)->output_data.ns->font)
651 #define XNS_SCROLL_BAR(vec) ((id) XSAVE_VALUE (vec)->pointer)
653 #define XNS_SCROLL_BAR(vec) XSAVE_VALUE (vec)->pointer
656 /* Compute pixel size for vertical scroll bars */
657 #define NS_SCROLL_BAR_WIDTH(f) \
658 (FRAME_HAS_VERTICAL_SCROLL_BARS (f) \
659 ? rint (FRAME_CONFIG_SCROLL_BAR_WIDTH (f) > 0 \
660 ? FRAME_CONFIG_SCROLL_BAR_WIDTH (f) \
661 : (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f))) \
664 /* Difference btwn char-column-calculated and actual SB widths.
665 This is only a concern for rendering when SB on left. */
666 #define NS_SCROLL_BAR_ADJUST(w, f) \
667 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w) ? \
668 (FRAME_SCROLL_BAR_COLS (f) * FRAME_COLUMN_WIDTH (f) \
669 - NS_SCROLL_BAR_WIDTH (f)) : 0)
671 /* XXX: fix for GNUstep inconsistent accounting for titlebar */
672 #ifdef NS_IMPL_GNUSTEP
673 #define NS_TOP_POS(f) ((f)->top_pos + 18)
675 #define NS_TOP_POS(f) ((f)->top_pos)
678 #define FRAME_NS_FONT_TABLE(f) (FRAME_NS_DISPLAY_INFO (f)->font_table)
680 #define FRAME_FONTSET(f) ((f)->output_data.ns->fontset)
683 #define FRAME_SMALLEST_CHAR_WIDTH(f) \
684 (FRAME_NS_DISPLAY_INFO (f)->smallest_char_width)
685 #define FRAME_SMALLEST_FONT_HEIGHT(f) \
686 (FRAME_NS_DISPLAY_INFO (f)->smallest_font_height)
687 #define FONT_TYPE_FOR_UNIBYTE(font, ch) 0
688 #define FONT_TYPE_FOR_MULTIBYTE(font, ch) 0
689 #define FRAME_BASELINE_OFFSET(f) ((f)->output_data.ns->baseline_offset)
690 #define BLACK_PIX_DEFAULT(f) 0x000000
691 #define WHITE_PIX_DEFAULT(f) 0xFFFFFF
693 /* First position where characters can be shown (instead of scrollbar, if
695 #define FIRST_CHAR_POSITION(f) \
696 (! (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f)) ? 0 \
697 : FRAME_SCROLL_BAR_COLS (f))
699 extern struct ns_display_info
*ns_term_init ();
700 extern void ns_term_shutdown (int sig
);
702 /* constants for text rendering */
703 #define NS_DUMPGLYPH_NORMAL 0
704 #define NS_DUMPGLYPH_CURSOR 1
705 #define NS_DUMPGLYPH_FOREGROUND 2
706 #define NS_DUMPGLYPH_MOUSEFACE 3
709 EXFUN (Fx_display_grayscale_p
, 1);
710 EXFUN (Fx_display_planes
, 1);
712 /* In nsfont, called from fontset.c */
713 extern void nsfont_make_fontset_for_font (Lisp_Object name
,
714 Lisp_Object font_object
);
716 /* In nsfont, for debugging */
718 void dump_glyphstring (struct glyph_string
*s
);
720 /* Implemented in nsterm, published in or needed from nsfns. */
721 extern Lisp_Object Qfontsize
;
722 extern Lisp_Object
ns_list_fonts (FRAME_PTR f
, Lisp_Object pattern
,
723 int size
, int maxnames
);
724 extern void ns_clear_frame (struct frame
*f
);
726 extern const char *ns_xlfd_to_fontname (const char *xlfd
);
728 extern void check_ns (void);
729 extern Lisp_Object
ns_map_event_to_object ();
730 extern Lisp_Object
ns_string_from_pasteboard ();
731 extern void ns_string_to_pasteboard ();
732 extern void nxatoms_of_nsselect ();
733 extern int ns_lisp_to_cursor_type ();
734 extern Lisp_Object
ns_cursor_type_to_lisp (int arg
);
735 extern Lisp_Object Qnone
;
737 /* XColor defined in dispextern.h (we use color_def->pixel = NSColor id), but
738 this causes an #include snafu, so we can't declare it. */
740 ns_defined_color (struct frame
*f
, char *name
, XColor
*color_def
, int alloc
,
744 extern Lisp_Object
ns_color_to_lisp (NSColor
*col
);
745 extern int ns_lisp_to_color (Lisp_Object color
, NSColor
**col
);
746 extern NSColor
*ns_lookup_indexed_color (unsigned long idx
, struct frame
*f
);
747 extern unsigned long ns_index_color (NSColor
*color
, struct frame
*f
);
748 extern void ns_free_indexed_color (unsigned long idx
, struct frame
*f
);
751 /* C access to ObjC functionality */
752 extern void ns_release_object (void *obj
);
753 extern void ns_retain_object (void *obj
);
754 extern void *ns_alloc_autorelease_pool ();
755 extern void ns_release_autorelease_pool ();
758 extern void update_frame_tool_bar (FRAME_PTR f
);
759 extern void free_frame_tool_bar (FRAME_PTR f
);
760 extern void find_and_call_menu_selection (FRAME_PTR f
,
761 int menu_bar_items_used
, Lisp_Object vector
, void *client_data
);
762 extern Lisp_Object
find_and_return_menu_selection (FRAME_PTR f
,
765 extern Lisp_Object
ns_popup_dialog (Lisp_Object position
, Lisp_Object contents
,
768 /* two more prototypes that should be moved to a more general include file */
769 extern void set_frame_menubar (struct frame
*f
, int first_time
, int deep_p
);
770 extern void x_set_window_size (struct frame
*f
, int change_grav
,
773 /* From nsimage.m, needed in image.c */
775 extern void *ns_image_from_XBM (unsigned char *bits
, int width
, int height
);
776 extern void *ns_image_for_XPM (int width
, int height
, int depth
);
777 extern void *ns_image_from_file (Lisp_Object file
);
778 extern int ns_load_image (struct frame
*f
, struct image
*img
,
779 Lisp_Object spec_file
, Lisp_Object spec_data
);
780 extern int ns_image_width (void *img
);
781 extern int ns_image_height (void *img
);
782 extern unsigned long ns_get_pixel (void *img
, int x
, int y
);
783 extern void ns_put_pixel (void *img
, int x
, int y
, unsigned long argb
);
784 extern void ns_set_alpha (void *img
, int x
, int y
, unsigned char a
);
786 extern int x_display_pixel_height
P_ ((struct ns_display_info
*));
787 extern int x_display_pixel_width
P_ ((struct ns_display_info
*));
789 /* This in nsterm.m */
790 extern unsigned long ns_get_rgb_color (struct frame
*f
,
791 float r
, float g
, float b
, float a
);
792 extern NSPoint last_mouse_motion_position
;
794 #ifdef NS_IMPL_GNUSTEP
795 extern char gnustep_base_version
[]; /* version tracking */
801 /* Screen max coordinate
802 Using larger coordinates causes movewindow/placewindow to abort */
803 #define SCREENMAX 16000
805 #define NS_SCROLL_BAR_WIDTH_DEFAULT [EmacsScroller scrollerWidth]
806 /* This is to match emacs on other platforms, ugly though it is. */
807 #define NS_SELECTION_COLOR_DEFAULT @"LightGoldenrod2";
808 #define RESIZE_HANDLE_SIZE 12
810 /* Little utility macros */
811 #define IN_BOUND(min, x, max) (((x) < (min)) \
812 ? (min) : (((x)>(max)) ? (max) : (x)))
813 #define SCREENMAXBOUND(x) (IN_BOUND (-SCREENMAX, x, SCREENMAX))
815 /* 23: needed somewhere... */
816 #define VERTICAL_SCROLL_BAR_WIDTH_TRIM (0)
821 /* arch-tag: 0a28b142-4ac1-4a81-a243-abcd82d9c4e5
822 (do not change this comment) */