comparison src/frame.h @ 8233:5b063488f2f8

(FRAME_EXTERNAL_MENU_BAR) [!USE_X_TOOLKIT]: Give zero.
author Richard M. Stallman <rms@gnu.org>
date Wed, 13 Jul 1994 04:15:52 +0000
parents cd81dba38a49
children 9f5965fe4f6b
comparison
equal deleted inserted replaced
8232:d87067f822f5 8233:5b063488f2f8
263 #define FRAME_HEIGHT(f) (f)->height 263 #define FRAME_HEIGHT(f) (f)->height
264 #define FRAME_WIDTH(f) (f)->width 264 #define FRAME_WIDTH(f) (f)->width
265 #define FRAME_NEW_HEIGHT(f) (f)->new_height 265 #define FRAME_NEW_HEIGHT(f) (f)->new_height
266 #define FRAME_NEW_WIDTH(f) (f)->new_width 266 #define FRAME_NEW_WIDTH(f) (f)->new_width
267 #define FRAME_MENU_BAR_LINES(f) (f)->menu_bar_lines 267 #define FRAME_MENU_BAR_LINES(f) (f)->menu_bar_lines
268 #ifdef USE_X_TOOLKIT
268 #define FRAME_EXTERNAL_MENU_BAR(f) (f)->external_menu_bar 269 #define FRAME_EXTERNAL_MENU_BAR(f) (f)->external_menu_bar
270 #else
271 #define FRAME_EXTERNAL_MENU_BAR(f) 0
272 #endif
269 #define FRAME_CURSOR_X(f) (f)->cursor_x 273 #define FRAME_CURSOR_X(f) (f)->cursor_x
270 #define FRAME_CURSOR_Y(f) (f)->cursor_y 274 #define FRAME_CURSOR_Y(f) (f)->cursor_y
271 #define FRAME_VISIBLE_P(f) ((f)->visible != 0) 275 #define FRAME_VISIBLE_P(f) ((f)->visible != 0)
272 #define FRAME_SET_VISIBLE(f,p) \ 276 #define FRAME_SET_VISIBLE(f,p) \
273 ((f)->async_visible = (p), FRAME_SAMPLE_VISIBILITY (f)) 277 ((f)->async_visible = (p), FRAME_SAMPLE_VISIBILITY (f))