comparison src/frame.h @ 28226:d5e2053c7bbd

(struct frame): Member `fontset_data' removed. (FRAME_FONTSET_DATA): Macro removed.
author Kenichi Handa <handa@m17n.org>
date Tue, 21 Mar 2000 00:39:29 +0000
parents c75e18fc1a7a
children 4b675266db04
comparison
equal deleted inserted replaced
28225:eee51908f90f 28226:d5e2053c7bbd
363 int trunc_area_pixel_width, trunc_area_cols; 363 int trunc_area_pixel_width, trunc_area_cols;
364 364
365 /* The baud rate that was used to calculate costs for this frame. */ 365 /* The baud rate that was used to calculate costs for this frame. */
366 int cost_calculation_baud_rate; 366 int cost_calculation_baud_rate;
367 367
368 /* A pointer to the data structure containing all information of
369 fontsets associated with this frame. See the comments in
370 fontset.h for more detail. */
371 struct fontset_data *fontset_data;
372
373 /* Nonzero if the mouse has moved on this display 368 /* Nonzero if the mouse has moved on this display
374 since the last time we checked. */ 369 since the last time we checked. */
375 char mouse_moved; 370 char mouse_moved;
376 371
377 /* Exponent for gamma correction of colors. 1/(VIEWING_GAMMA * 372 /* Exponent for gamma correction of colors. 1/(VIEWING_GAMMA *
564 #define FRAME_SCROLL_BARS(f) ((f)->scroll_bars) 559 #define FRAME_SCROLL_BARS(f) ((f)->scroll_bars)
565 560
566 #define FRAME_CONDEMNED_SCROLL_BARS(f) ((f)->condemned_scroll_bars) 561 #define FRAME_CONDEMNED_SCROLL_BARS(f) ((f)->condemned_scroll_bars)
567 #define FRAME_MENU_BAR_ITEMS(f) ((f)->menu_bar_items) 562 #define FRAME_MENU_BAR_ITEMS(f) ((f)->menu_bar_items)
568 #define FRAME_COST_BAUD_RATE(f) ((f)->cost_calculation_baud_rate) 563 #define FRAME_COST_BAUD_RATE(f) ((f)->cost_calculation_baud_rate)
569 #define FRAME_FONTSET_DATA(f) ((f)->fontset_data)
570 564
571 /* Return a pointer to the face cache of frame F. */ 565 /* Return a pointer to the face cache of frame F. */
572 566
573 #define FRAME_FACE_CACHE(F) (F)->face_cache 567 #define FRAME_FACE_CACHE(F) (F)->face_cache
574 568