aboutsummaryrefslogtreecommitdiffstats
path: root/src/macterm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/macterm.h')
-rw-r--r--src/macterm.h17
1 files changed, 5 insertions, 12 deletions
diff --git a/src/macterm.h b/src/macterm.h
index fd71e36d28d..659a13bbb17 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -335,11 +335,6 @@ struct mac_output {
335 /* Hints for the size and the position of a window. */ 335 /* Hints for the size and the position of a window. */
336 XSizeHints *size_hints; 336 XSizeHints *size_hints;
337 337
338#if TARGET_API_MAC_CARBON
339 /* File name for the proxy icon of this frame. Might be NULL. */
340 char *file_name;
341#endif
342
343#if USE_CG_DRAWING 338#if USE_CG_DRAWING
344 /* Quartz 2D graphics context. */ 339 /* Quartz 2D graphics context. */
345 CGContextRef cg_context; 340 CGContextRef cg_context;
@@ -362,8 +357,6 @@ typedef struct mac_output mac_output;
362 357
363#define FRAME_SIZE_HINTS(f) ((f)->output_data.mac->size_hints) 358#define FRAME_SIZE_HINTS(f) ((f)->output_data.mac->size_hints)
364 359
365#define FRAME_FILE_NAME(f) ((f)->output_data.mac->file_name)
366
367/* This gives the mac_display_info structure for the display F is on. */ 360/* This gives the mac_display_info structure for the display F is on. */
368#define FRAME_MAC_DISPLAY_INFO(f) (&one_mac_display_info) 361#define FRAME_MAC_DISPLAY_INFO(f) (&one_mac_display_info)
369#define FRAME_X_DISPLAY_INFO(f) (&one_mac_display_info) 362#define FRAME_X_DISPLAY_INFO(f) (&one_mac_display_info)
@@ -631,7 +624,7 @@ extern void mac_unload_font P_ ((struct mac_display_info *, XFontStruct *));
631extern int mac_font_panel_visible_p P_ ((void)); 624extern int mac_font_panel_visible_p P_ ((void));
632extern OSStatus mac_show_hide_font_panel P_ ((void)); 625extern OSStatus mac_show_hide_font_panel P_ ((void));
633extern OSStatus mac_set_font_info_for_selection P_ ((struct frame *, int, int)); 626extern OSStatus mac_set_font_info_for_selection P_ ((struct frame *, int, int));
634extern OSErr install_window_handler P_ ((WindowPtr)); 627extern OSStatus install_window_handler P_ ((WindowPtr));
635extern void remove_window_handler P_ ((WindowPtr)); 628extern void remove_window_handler P_ ((WindowPtr));
636extern void do_menu_choice P_ ((SInt32)); 629extern void do_menu_choice P_ ((SInt32));
637extern OSStatus mac_post_mouse_moved_event P_ ((void)); 630extern OSStatus mac_post_mouse_moved_event P_ ((void));
@@ -672,10 +665,10 @@ extern void mac_clear_font_name_table P_ ((void));
672extern Lisp_Object mac_aedesc_to_lisp P_ ((const AEDesc *)); 665extern Lisp_Object mac_aedesc_to_lisp P_ ((const AEDesc *));
673extern OSErr mac_ae_put_lisp P_ ((AEDescList *, UInt32, Lisp_Object)); 666extern OSErr mac_ae_put_lisp P_ ((AEDescList *, UInt32, Lisp_Object));
674#if TARGET_API_MAC_CARBON 667#if TARGET_API_MAC_CARBON
675extern OSErr create_apple_event_from_event_ref P_ ((EventRef, UInt32, 668extern OSStatus create_apple_event_from_event_ref P_ ((EventRef, UInt32,
676 EventParamName *, 669 EventParamName *,
677 EventParamType *, 670 EventParamType *,
678 AppleEvent *)); 671 AppleEvent *));
679extern OSErr create_apple_event_from_drag_ref P_ ((DragRef, UInt32, 672extern OSErr create_apple_event_from_drag_ref P_ ((DragRef, UInt32,
680 FlavorType *, 673 FlavorType *,
681 AppleEvent *)); 674 AppleEvent *));