]> code.delx.au - gnu-emacs/blob - src/macterm.h
Allow building on Mac OS X again after Kim's merging of display code.
[gnu-emacs] / src / macterm.h
1 /* Display module for Mac OS.
2 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
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 2, or (at your option)
9 any later version.
10
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.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 /* Contributed by Andrew Choi (akochoi@mac.com). */
22
23 #include "macgui.h"
24 #include "frame.h"
25
26 /* Include Carbon.h to define Cursor and Rect. */
27 #ifdef HAVE_CARBON
28 #undef mktime
29 #undef DEBUG
30 #undef Z
31 #undef free
32 #undef malloc
33 #undef realloc
34 /* Macros max and min defined in lisp.h conflict with those in
35 precompiled header Carbon.h. */
36 #undef max
37 #undef min
38 #undef init_process
39 #include <Carbon/Carbon.h>
40 #undef Z
41 #define Z (current_buffer->text->z)
42 #undef free
43 #define free unexec_free
44 #undef malloc
45 #define malloc unexec_malloc
46 #undef realloc
47 #define realloc unexec_realloc
48 #undef min
49 #define min(a, b) ((a) < (b) ? (a) : (b))
50 #undef max
51 #define max(a, b) ((a) > (b) ? (a) : (b))
52 #undef init_process
53 #define init_process emacs_init_process
54 #endif /* MAC_OSX */
55
56 /* The class of this X application. */
57 #define EMACS_CLASS "Emacs"
58
59 #define RGB_TO_ULONG(r, g, b) (((r) << 16) | ((g) << 8) | (b))
60
61 #define RED_FROM_ULONG(color) ((color) >> 16)
62 #define GREEN_FROM_ULONG(color) (((color) >> 8) & 0xff)
63 #define BLUE_FROM_ULONG(color) ((color) & 0xff)
64
65 #define BLACK_PIX_DEFAULT(f) RGB_TO_ULONG(0,0,0)
66 #define WHITE_PIX_DEFAULT(f) RGB_TO_ULONG(255,255,255)
67
68 #define FONT_WIDTH(f) ((f)->max_bounds.width)
69 #define FONT_HEIGHT(f) ((f)->ascent + (f)->descent)
70 #define FONT_BASE(f) ((f)->ascent)
71 #define FONT_DESCENT(f) ((f)->descent)
72
73 #define FONT_MAX_WIDTH(f) FONT_WIDTH(f) /* fix later */
74
75 /* Structure recording bitmaps and reference count.
76 If REFCOUNT is 0 then this record is free to be reused. */
77
78 struct mac_bitmap_record
79 {
80 char *bitmap_data;
81 int refcount;
82 int height, width;
83 };
84
85
86 /* For each display (currently only one on mac), we have a structure that
87 records information about it. */
88
89 struct mac_display_info
90 {
91 /* Chain of all mac_display_info structures. */
92 struct mac_display_info *next;
93
94 /* This is a cons cell of the form (NAME . FONT-LIST-CACHE).
95 The same cons cell also appears in x_display_name_list. */
96 Lisp_Object name_list_element;
97
98 /* Number of frames that are on this display. */
99 int reference_count;
100
101 /* Dots per inch of the screen. */
102 double resx, resy;
103
104 /* Number of planes on this screen. */
105 int n_planes;
106
107 /* Number of bits per pixel on this screen. */
108 int n_cbits;
109
110 /* Dimensions of this screen. */
111 int height, width;
112 #if 0
113 int height_in,width_in;
114 #endif
115
116 /* Mask of things that cause the mouse to be grabbed. */
117 int grabbed;
118
119 #if 0
120 /* Emacs bitmap-id of the default icon bitmap for this frame.
121 Or -1 if none has been allocated yet. */
122 int icon_bitmap_id;
123
124 #endif
125 /* The root window of this screen. */
126 Window root_window;
127
128 /* The cursor to use for vertical scroll bars. */
129 Cursor vertical_scroll_bar_cursor;
130
131 #if 0
132 /* color palette information. */
133 int has_palette;
134 struct w32_palette_entry * color_list;
135 unsigned num_colors;
136 HPALETTE palette;
137
138 /* deferred action flags checked when starting frame update. */
139 int regen_palette;
140
141 /* Keystroke that has been faked by Emacs and will be ignored when
142 received; value is reset after key is received. */
143 int faked_key;
144
145 #endif
146
147 /* A table of all the fonts we have already loaded. */
148 struct font_info *font_table;
149
150 /* The current capacity of font_table. */
151 int font_table_size;
152
153 /* The number of fonts actually stored in the font table.
154 font_table[n] is used and valid iff 0 <= n < n_fonts. 0 <=
155 n_fonts <= font_table_size. and font_table[i].name != 0. */
156 int n_fonts;
157
158 /* Minimum width over all characters in all fonts in font_table. */
159 int smallest_char_width;
160
161 /* Minimum font height over all fonts in font_table. */
162 int smallest_font_height;
163
164 /* Reusable Graphics Context for drawing a cursor in a non-default face. */
165 XGCValues *scratch_cursor_gc;
166
167 /* These variables describe the range of text currently shown in its
168 mouse-face, together with the window they apply to. As long as
169 the mouse stays within this range, we need not redraw anything on
170 its account. Rows and columns are glyph matrix positions in
171 MOUSE_FACE_WINDOW. */
172 int mouse_face_beg_row, mouse_face_beg_col;
173 int mouse_face_beg_x, mouse_face_beg_y;
174 int mouse_face_end_row, mouse_face_end_col;
175 int mouse_face_end_x, mouse_face_end_y;
176 int mouse_face_past_end;
177 Lisp_Object mouse_face_window;
178 int mouse_face_face_id;
179 Lisp_Object mouse_face_overlay;
180
181 /* 1 if a mouse motion event came and we didn't handle it right away because
182 gc was in progress. */
183 int mouse_face_deferred_gc;
184
185 /* FRAME and X, Y position of mouse when last checked for
186 highlighting. X and Y can be negative or out of range for the frame. */
187 struct frame *mouse_face_mouse_frame;
188
189 int mouse_face_mouse_x, mouse_face_mouse_y;
190
191 /* Nonzero means defer mouse-motion highlighting. */
192 int mouse_face_defer;
193
194 /* Nonzero means that the mouse highlight should not be shown. */
195 int mouse_face_hidden;
196
197 int mouse_face_image_state;
198
199 char *mac_id_name;
200
201 /* Pointer to bitmap records. */
202 struct mac_bitmap_record *bitmaps;
203
204 /* Allocated size of bitmaps field. */
205 int bitmaps_size;
206
207 /* Last used bitmap index. */
208 int bitmaps_last;
209
210 /* The frame (if any) which has the window that has keyboard focus.
211 Zero if none. This is examined by Ffocus_frame in w32fns.c. Note
212 that a mere EnterNotify event can set this; if you need to know the
213 last frame specified in a FocusIn or FocusOut event, use
214 w32_focus_event_frame. */
215 struct frame *x_focus_frame;
216
217 /* The last frame mentioned in a FocusIn or FocusOut event. This is
218 separate from w32_focus_frame, because whether or not LeaveNotify
219 events cause us to lose focus depends on whether or not we have
220 received a FocusIn event for it. */
221 struct frame *x_focus_event_frame;
222
223 /* The frame which currently has the visual highlight, and should get
224 keyboard input (other sorts of input have the frame encoded in the
225 event). It points to the focus frame's selected window's
226 frame. It differs from w32_focus_frame when we're using a global
227 minibuffer. */
228 struct frame *x_highlight_frame;
229
230 /* Cache of images. */
231 struct image_cache *image_cache;
232 };
233
234 #define x_display_info mac_display_info
235
236 /* This is a chain of structures for all the X displays currently in use. */
237 extern struct x_display_info *x_display_list;
238
239 /* This is a chain of structures for all the displays currently in use. */
240 extern struct mac_display_info one_mac_display_info;
241
242 /* This is a list of cons cells, each of the form (NAME . FONT-LIST-CACHE),
243 one for each element of x_display_list and in the same order.
244 NAME is the name of the frame.
245 FONT-LIST-CACHE records previous values returned by x-list-fonts. */
246 extern Lisp_Object x_display_name_list;
247
248 /* A flag to control how to display unibyte 8-bit character. */
249 extern int unibyte_display_via_language_environment;
250
251 extern struct x_display_info *x_display_info_for_display P_ ((Display *));
252 extern struct x_display_info *x_display_info_for_name P_ ((Lisp_Object));
253
254 extern struct mac_display_info *mac_term_init ();
255
256 /* When Emacs uses a tty window, tty_display in frame.c points to an
257 x_output struct . */
258 struct x_output
259 {
260 unsigned long background_pixel;
261 unsigned long foreground_pixel;
262 };
263
264 /* The collection of data describing a window on the Mac. */
265 struct mac_output {
266 /* Placeholder for things accessed through output_data.x. Must
267 appear first. */
268 struct x_output x_compatible;
269
270 /* Menubar "widget" handle. */
271 int menubar_widget;
272
273 Window mWP; /* pointer to QuickDraw window */
274 FRAME_PTR mFP; /* points back to the frame struct */
275
276 #if 0
277 int mNumCols; /* number of characters per column */
278 int mNumRows; /* number of characters per row */
279 int mLineHeight; /* height of one line of text in pixels */
280 int mCharWidth; /* width of one character in pixels */
281 int mHomeX; /* X pixel coordinate of lower left
282 corner of character at (0, 0) */
283 int mHomeY; /* Y pixel coordinate of lower left
284 corner of character at (0, 0) */
285 int mHighlight; /* current highlight state (0 = off). */
286 int mTermWinSize; /* num of lines from top of window
287 affected by ins_del_lines; set by
288 set_terminal_window. */
289 #endif /* 0 */
290
291 #if 0
292 /* stuffs used by xfaces.c */
293 struct face **param_faces;
294 int n_param_faces;
295 struct face **computed_faces;
296 int n_computed_faces;
297 int size_computed_faces;
298 #endif
299
300 /* Position of the Mac window (x and y offsets in global coordinates). */
301 int left_pos;
302 int top_pos;
303
304 /* Border width of the W32 window as known by the window system. */
305 int border_width;
306
307 /* Size of the W32 window in pixels. */
308 int pixel_height, pixel_width;
309
310 /* Height of a line, in pixels. */
311 int line_height;
312
313 /* Here are the Graphics Contexts for the default font. */
314 GC normal_gc; /* Normal video */
315 GC reverse_gc; /* Reverse video */
316 GC cursor_gc; /* cursor drawing */
317
318 /* Width of the internal border. This is a line of background color
319 just inside the window's border. When the frame is selected,
320 a highlighting is displayed inside the internal border. */
321 int internal_border_width;
322
323 /* The window used for this frame.
324 May be zero while the frame object is being created
325 and the window has not yet been created. */
326 Window window_desc;
327
328 /* The window that is the parent of this window.
329 Usually this is a window that was made by the window manager,
330 but it can be the root window, and it can be explicitly specified
331 (see the explicit_parent field, below). */
332 Window parent_desc;
333
334 /* Default ASCII font of this frame. */
335 XFontStruct *font;
336
337 /* The baseline offset of the default ASCII font. */
338 int baseline_offset;
339
340 /* If a fontset is specified for this frame instead of font, this
341 value contains an ID of the fontset, else -1. */
342 int fontset;
343
344 /* Pixel values used for various purposes.
345 border_pixel may be -1 meaning use a gray tile. */
346 unsigned long cursor_pixel;
347 unsigned long border_pixel;
348 unsigned long mouse_pixel;
349 unsigned long cursor_foreground_pixel;
350
351 /* Foreground color for scroll bars. A value of -1 means use the
352 default (black for non-toolkit scroll bars). */
353 unsigned long scroll_bar_foreground_pixel;
354
355 /* Background color for scroll bars. A value of -1 means use the
356 default (background color of the frame for non-toolkit scroll
357 bars). */
358 unsigned long scroll_bar_background_pixel;
359
360 /* Descriptor for the cursor in use for this window. */
361 Cursor text_cursor;
362 Cursor nontext_cursor;
363 Cursor modeline_cursor;
364 Cursor hand_cursor;
365 Cursor hourglass_cursor;
366 Cursor horizontal_drag_cursor;
367 #if 0
368 /* Window whose cursor is hourglass_cursor. This window is temporarily
369 mapped to display a hourglass-cursor. */
370 Window hourglass_window;
371
372 /* Non-zero means hourglass cursor is currently displayed. */
373 unsigned hourglass_p : 1;
374
375 /* Flag to set when the window needs to be completely repainted. */
376 int needs_exposure;
377
378 #endif
379
380 #if 0
381 DWORD dwStyle;
382 #endif
383
384 /* The size of the extra width currently allotted for vertical
385 scroll bars, in pixels. */
386 int vertical_scroll_bar_extra;
387
388 /* The extra width currently allotted for the areas in which
389 truncation marks, continuation marks, and overlay arrows are
390 displayed. */
391 int left_fringe_width, right_fringe_width;
392 int fringe_cols, fringes_extra;
393
394 /* This is the gravity value for the specified window position. */
395 int win_gravity;
396
397 /* The geometry flags for this window. */
398 int size_hint_flags;
399
400 /* This is the Emacs structure for the display this frame is on. */
401 /* struct w32_display_info *display_info; */
402
403 /* Nonzero means our parent is another application's window
404 and was explicitly specified. */
405 char explicit_parent;
406
407 /* Nonzero means tried already to make this frame visible. */
408 char asked_for_visible;
409
410 /* Nonzero means menubar is currently active. */
411 char menubar_active;
412
413 /* Nonzero means a menu command is being processed. */
414 char menu_command_in_progress;
415
416 /* Nonzero means menubar is about to become active, but should be
417 brought up to date first. */
418 volatile char pending_menu_activation;
419
420 /* Relief GCs, colors etc. */
421 struct relief
422 {
423 XGCValues *gc;
424 unsigned long pixel;
425 int allocated_p;
426 }
427 black_relief, white_relief;
428
429 /* The background for which the above relief GCs were set up.
430 They are changed only when a different background is involved. */
431 unsigned long relief_background;
432 };
433
434 typedef struct mac_output mac_output;
435
436 /* Return the X output data for frame F. */
437 #define FRAME_X_OUTPUT(f) ((f)->output_data.mac)
438
439 /* Return the Mac window used for displaying data in frame F. */
440 #define FRAME_MAC_WINDOW(f) ((f)->output_data.mac->mWP)
441 #define FRAME_X_WINDOW(f) ((f)->output_data.mac->mWP)
442
443 #define FRAME_FOREGROUND_PIXEL(f) ((f)->output_data.x->foreground_pixel)
444 #define FRAME_BACKGROUND_PIXEL(f) ((f)->output_data.x->background_pixel)
445
446 #define FRAME_FONT(f) ((f)->output_data.mac->font)
447 #define FRAME_FONTSET(f) ((f)->output_data.mac->fontset)
448
449 #undef FRAME_INTERNAL_BORDER_WIDTH
450 #define FRAME_INTERNAL_BORDER_WIDTH(f) \
451 ((f)->output_data.mac->internal_border_width)
452 #define FRAME_LINE_HEIGHT(f) ((f)->output_data.mac->line_height)
453 /* Width of the default font of frame F. Must be defined by each
454 terminal specific header. */
455 #define FRAME_DEFAULT_FONT_WIDTH(F) FONT_WIDTH (FRAME_FONT (F))
456 #define FRAME_BASELINE_OFFSET(f) ((f)->output_data.mac->baseline_offset)
457
458 /* This gives the w32_display_info structure for the display F is on. */
459 #define FRAME_MAC_DISPLAY_INFO(f) (&one_mac_display_info)
460 #define FRAME_X_DISPLAY_INFO(f) (&one_mac_display_info)
461
462 /* This is the `Display *' which frame F is on. */
463 #define FRAME_MAC_DISPLAY(f) (0)
464 #define FRAME_X_DISPLAY(f) (0)
465
466 /* This is the 'font_info *' which frame F has. */
467 #define FRAME_MAC_FONT_TABLE(f) (FRAME_MAC_DISPLAY_INFO (f)->font_table)
468
469 /* These two really ought to be called FRAME_PIXEL_{WIDTH,HEIGHT}. */
470 #define PIXEL_WIDTH(f) ((f)->output_data.mac->pixel_width)
471 #define PIXEL_HEIGHT(f) ((f)->output_data.mac->pixel_height)
472
473 /* Value is the smallest width of any character in any font on frame F. */
474
475 #define FRAME_SMALLEST_CHAR_WIDTH(F) \
476 FRAME_MAC_DISPLAY_INFO(F)->smallest_char_width
477
478 /* Value is the smallest height of any font on frame F. */
479
480 #define FRAME_SMALLEST_FONT_HEIGHT(F) \
481 FRAME_MAC_DISPLAY_INFO(F)->smallest_font_height
482
483 /* Return a pointer to the image cache of frame F. */
484
485 #define FRAME_X_IMAGE_CACHE(F) FRAME_MAC_DISPLAY_INFO ((F))->image_cache
486
487 \f
488 /* Total width of fringes reserved for drawing truncation bitmaps,
489 continuation bitmaps and alike. The width is in canonical char
490 units of the frame. This must currently be the case because window
491 sizes aren't pixel values. If it weren't the case, we wouldn't be
492 able to split windows horizontally nicely. */
493
494 #define FRAME_X_FRINGE_COLS(F) ((F)->output_data.mac->fringe_cols)
495
496 /* Total width of fringes in pixels. */
497
498 #define FRAME_X_FRINGE_WIDTH(F) ((F)->output_data.mac->fringes_extra)
499
500 /* Pixel-width of the left and right fringe. */
501
502 #define FRAME_X_LEFT_FRINGE_WIDTH(F) ((F)->output_data.mac->left_fringe_width)
503 #define FRAME_X_RIGHT_FRINGE_WIDTH(F) ((F)->output_data.mac->right_fringe_width)
504
505
506 \f
507 /* Mac-specific scroll bar stuff. */
508
509 /* We represent scroll bars as lisp vectors. This allows us to place
510 references to them in windows without worrying about whether we'll
511 end up with windows referring to dead scroll bars; the garbage
512 collector will free it when its time comes.
513
514 We use struct scroll_bar as a template for accessing fields of the
515 vector. */
516
517 struct scroll_bar {
518
519 /* These fields are shared by all vectors. */
520 EMACS_INT size_from_Lisp_Vector_struct;
521 struct Lisp_Vector *next_from_Lisp_Vector_struct;
522
523 /* The window we're a scroll bar for. */
524 Lisp_Object window;
525
526 /* The next and previous in the chain of scroll bars in this frame. */
527 Lisp_Object next, prev;
528
529 /* The Mac control handle of this scroll bar. Since this is a full
530 32-bit quantity, we store it split into two 32-bit values. */
531 Lisp_Object control_handle_low, control_handle_high;
532
533 /* The position and size of the scroll bar in pixels, relative to the
534 frame. */
535 Lisp_Object top, left, width, height;
536
537 /* The starting and ending positions of the handle, relative to the
538 handle area (i.e. zero is the top position, not
539 SCROLL_BAR_TOP_BORDER). If they're equal, that means the handle
540 hasn't been drawn yet.
541
542 These are not actually the locations where the beginning and end
543 are drawn; in order to keep handles from becoming invisible when
544 editing large files, we establish a minimum height by always
545 drawing handle bottoms VERTICAL_SCROLL_BAR_MIN_HANDLE pixels below
546 where they would be normally; the bottom and top are in a
547 different co-ordinate system. */
548 Lisp_Object start, end;
549
550 /* If the scroll bar handle is currently being dragged by the user,
551 this is the number of pixels from the top of the handle to the
552 place where the user grabbed it. If the handle isn't currently
553 being dragged, this is Qnil. */
554 Lisp_Object dragging;
555 };
556
557 /* The number of elements a vector holding a struct scroll_bar needs. */
558 #define SCROLL_BAR_VEC_SIZE \
559 ((sizeof (struct scroll_bar) \
560 - sizeof (EMACS_INT) - sizeof (struct Lisp_Vector *)) \
561 / sizeof (Lisp_Object))
562
563 /* Turning a lisp vector value into a pointer to a struct scroll_bar. */
564 #define XSCROLL_BAR(vec) ((struct scroll_bar *) XVECTOR (vec))
565
566
567 /* Building a 32-bit C integer from two 16-bit lisp integers. */
568 #define SCROLL_BAR_PACK(low, high) (XINT (high) << 16 | XINT (low))
569
570 /* Setting two lisp integers to the low and high words of a 32-bit C int. */
571 #define SCROLL_BAR_UNPACK(low, high, int32) \
572 (XSETINT ((low), (int32) & 0xffff), \
573 XSETINT ((high), ((int32) >> 16) & 0xffff))
574
575
576 /* Extract the Mac control handle of the scroll bar from a struct
577 scroll_bar. */
578 #define SCROLL_BAR_CONTROL_HANDLE(ptr) \
579 ((ControlHandle) SCROLL_BAR_PACK ((ptr)->control_handle_low, \
580 (ptr)->control_handle_high))
581
582 /* Store a Mac control handle in a struct scroll_bar. */
583 #define SET_SCROLL_BAR_CONTROL_HANDLE(ptr, id) \
584 (SCROLL_BAR_UNPACK ((ptr)->control_handle_low, \
585 (ptr)->control_handle_high, (int) id))
586
587 /* Return the inside width of a vertical scroll bar, given the outside
588 width. */
589 #define VERTICAL_SCROLL_BAR_INSIDE_WIDTH(f,width) \
590 ((width) \
591 - VERTICAL_SCROLL_BAR_LEFT_BORDER \
592 - VERTICAL_SCROLL_BAR_RIGHT_BORDER \
593 - VERTICAL_SCROLL_BAR_WIDTH_TRIM * 2)
594
595 /* Return the length of the rectangle within which the top of the
596 handle must stay. This isn't equivalent to the inside height,
597 because the scroll bar handle has a minimum height.
598
599 This is the real range of motion for the scroll bar, so when we're
600 scaling buffer positions to scroll bar positions, we use this, not
601 VERTICAL_SCROLL_BAR_INSIDE_HEIGHT. */
602 #define VERTICAL_SCROLL_BAR_TOP_RANGE(f,height) \
603 (VERTICAL_SCROLL_BAR_INSIDE_HEIGHT (f, height) \
604 - VERTICAL_SCROLL_BAR_MIN_HANDLE - UP_AND_DOWN_ARROWS)
605
606 /* Return the inside height of vertical scroll bar, given the outside
607 height. See VERTICAL_SCROLL_BAR_TOP_RANGE too. */
608 #define VERTICAL_SCROLL_BAR_INSIDE_HEIGHT(f,height) \
609 ((height) - VERTICAL_SCROLL_BAR_TOP_BORDER \
610 - VERTICAL_SCROLL_BAR_BOTTOM_BORDER)
611
612
613 /* Border widths for scroll bars.
614
615 Scroll bar windows don't have any borders; their border width is
616 set to zero, and we redraw borders ourselves. This makes the code
617 a bit cleaner, since we don't have to convert between outside width
618 (used when relating to the rest of the screen) and inside width
619 (used when sizing and drawing the scroll bar window itself).
620
621 The handle moves up and down/back and forth in a rectangle inset
622 from the edges of the scroll bar. These are widths by which we
623 inset the handle boundaries from the scroll bar edges. */
624 #define VERTICAL_SCROLL_BAR_LEFT_BORDER (0)
625 #define VERTICAL_SCROLL_BAR_RIGHT_BORDER (0)
626 #define VERTICAL_SCROLL_BAR_TOP_BORDER (0)
627 #define VERTICAL_SCROLL_BAR_BOTTOM_BORDER (0)
628
629 /* Minimum lengths for scroll bar handles, in pixels. */
630 #define VERTICAL_SCROLL_BAR_MIN_HANDLE (16)
631
632 /* Combined length of up and down arrow boxes in scroll bars, in pixels. */
633 #define UP_AND_DOWN_ARROWS (32)
634
635 /* Trimming off a few pixels from each side prevents
636 text from glomming up against the scroll bar */
637 #define VERTICAL_SCROLL_BAR_WIDTH_TRIM (0)
638
639 \f
640 /* Manipulating pixel sizes and character sizes.
641 Knowledge of which factors affect the overall size of the window should
642 be hidden in these macros, if that's possible.
643
644 Return the upper/left pixel position of the character cell on frame F
645 at ROW/COL. */
646 #define CHAR_TO_PIXEL_ROW(f, row) \
647 ((f)->output_data.mac->internal_border_width \
648 + (row) * (f)->output_data.mac->line_height)
649 #define CHAR_TO_PIXEL_COL(f, col) \
650 ((f)->output_data.mac->internal_border_width \
651 + (col) * FONT_WIDTH ((f)->output_data.mac->font))
652
653 /* Return the pixel width/height of frame F if it has
654 WIDTH columns/HEIGHT rows. */
655 #define CHAR_TO_PIXEL_WIDTH(f, width) \
656 (CHAR_TO_PIXEL_COL (f, width) \
657 + (f)->output_data.mac->vertical_scroll_bar_extra \
658 + (f)->output_data.mac->fringes_extra \
659 + (f)->output_data.mac->internal_border_width)
660 #define CHAR_TO_PIXEL_HEIGHT(f, height) \
661 (CHAR_TO_PIXEL_ROW (f, height) \
662 + (f)->output_data.mac->internal_border_width)
663
664
665 /* Return the row/column (zero-based) of the character cell containing
666 the pixel on FRAME at ROW/COL. */
667 #define PIXEL_TO_CHAR_ROW(f, row) \
668 (((row) - (f)->output_data.mac->internal_border_width) \
669 / (f)->output_data.mac->line_height)
670 #define PIXEL_TO_CHAR_COL(f, col) \
671 (((col) - (f)->output_data.mac->internal_border_width) \
672 / FONT_WIDTH ((f)->output_data.mac->font))
673
674 /* How many columns/rows of text can we fit in WIDTH/HEIGHT pixels on
675 frame F? */
676 #define PIXEL_TO_CHAR_WIDTH(f, width) \
677 (PIXEL_TO_CHAR_COL (f, ((width) \
678 - (f)->output_data.mac->internal_border_width \
679 - (f)->output_data.mac->fringes_extra \
680 - (f)->output_data.mac->vertical_scroll_bar_extra)))
681 #define PIXEL_TO_CHAR_HEIGHT(f, height) \
682 (PIXEL_TO_CHAR_ROW (f, ((height) \
683 - (f)->output_data.mac->internal_border_width)))
684
685 struct frame * check_x_frame (Lisp_Object);
686
687 void activate_scroll_bars (FRAME_PTR);
688 void deactivate_scroll_bars (FRAME_PTR);
689
690 #define FONT_TYPE_FOR_UNIBYTE(font, ch) 0
691 #define FONT_TYPE_FOR_MULTIBYTE(font, ch) 0
692