diff options
| author | Miles Bader | 2006-05-02 05:51:52 +0000 |
|---|---|---|
| committer | Miles Bader | 2006-05-02 05:51:52 +0000 |
| commit | fe682fb2f05fcbd9fcd2d12c2110719adcfcb58a (patch) | |
| tree | 2a89d2d9ea2689cfe80a7618885cdd9f449761dd /src/macterm.h | |
| parent | 7e635d0ed3c42e6e779821f5c0c1c62289f4c1ee (diff) | |
| parent | 6cf93749317c2e18f850cd0f47f905895e850bfc (diff) | |
| download | emacs-fe682fb2f05fcbd9fcd2d12c2110719adcfcb58a.tar.gz emacs-fe682fb2f05fcbd9fcd2d12c2110719adcfcb58a.zip | |
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-58
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 239-258)
- Update from CVS
- (Ffield_beginning, find_field): Undo change of 2006-04-23.
- Rcirc patch from Ryan Yeske
- Merge from gnus--rel--5.10
- Clean up lisp/gnus/ChangeLog a bit
* gnus--rel--5.10 (patch 91-98)
- Merge from emacs--devo--0
- Update from CVS
Diffstat (limited to 'src/macterm.h')
| -rw-r--r-- | src/macterm.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/macterm.h b/src/macterm.h index e35f04a6ba6..f23554f01c6 100644 --- a/src/macterm.h +++ b/src/macterm.h | |||
| @@ -335,6 +335,11 @@ 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 | |||
| 338 | #if USE_CG_DRAWING | 343 | #if USE_CG_DRAWING |
| 339 | /* Quartz 2D graphics context. */ | 344 | /* Quartz 2D graphics context. */ |
| 340 | CGContextRef cg_context; | 345 | CGContextRef cg_context; |
| @@ -360,6 +365,8 @@ typedef struct mac_output mac_output; | |||
| 360 | 365 | ||
| 361 | #define FRAME_SIZE_HINTS(f) ((f)->output_data.mac->size_hints) | 366 | #define FRAME_SIZE_HINTS(f) ((f)->output_data.mac->size_hints) |
| 362 | 367 | ||
| 368 | #define FRAME_FILE_NAME(f) ((f)->output_data.mac->file_name) | ||
| 369 | |||
| 363 | /* This gives the mac_display_info structure for the display F is on. */ | 370 | /* This gives the mac_display_info structure for the display F is on. */ |
| 364 | #define FRAME_MAC_DISPLAY_INFO(f) (&one_mac_display_info) | 371 | #define FRAME_MAC_DISPLAY_INFO(f) (&one_mac_display_info) |
| 365 | #define FRAME_X_DISPLAY_INFO(f) (&one_mac_display_info) | 372 | #define FRAME_X_DISPLAY_INFO(f) (&one_mac_display_info) |
| @@ -606,6 +613,7 @@ extern int x_char_width P_ ((struct frame *)); | |||
| 606 | extern int x_char_height P_ ((struct frame *)); | 613 | extern int x_char_height P_ ((struct frame *)); |
| 607 | extern void x_sync P_ ((struct frame *)); | 614 | extern void x_sync P_ ((struct frame *)); |
| 608 | extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); | 615 | extern void x_set_tool_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); |
| 616 | extern void mac_update_title_bar P_ ((struct frame *, int)); | ||
| 609 | 617 | ||
| 610 | /* Defined in macmenu.c */ | 618 | /* Defined in macmenu.c */ |
| 611 | 619 | ||