aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frame.h')
-rw-r--r--src/frame.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/frame.h b/src/frame.h
index 0c08d12c92e..6f5de3f5689 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -332,9 +332,8 @@ struct frame
332 frame. */ 332 frame. */
333 bool_bf can_x_set_window_size : 1; 333 bool_bf can_x_set_window_size : 1;
334 334
335 /* True means run_window_configuration_change_hook can be processed 335 /* Set to true after this frame was made by `make-frame'. */
336 for this frame. */ 336 bool_bf after_make_frame : 1;
337 bool_bf can_run_window_configuration_change_hook : 1;
338 337
339 /* True means tool bar has been redisplayed at least once in current 338 /* True means tool bar has been redisplayed at least once in current
340 session. */ 339 session. */
@@ -392,9 +391,9 @@ struct frame
392 int left_pos, top_pos; 391 int left_pos, top_pos;
393 392
394 /* Total width of this frame (including fringes, vertical scroll bar 393 /* Total width of this frame (including fringes, vertical scroll bar
395 and internal border widths) and total height (including menu bar, 394 and internal border widths) and total height (including internal
396 tool bar, horizontal scroll bar and internal border widths) in 395 menu and tool bars, horizontal scroll bar and internal border
397 pixels. */ 396 widths) in pixels. */
398 int pixel_width, pixel_height; 397 int pixel_width, pixel_height;
399 398
400 /* These many pixels are the difference between the outer window (i.e. the 399 /* These many pixels are the difference between the outer window (i.e. the
@@ -1124,6 +1123,8 @@ extern void frame_make_pointer_visible (struct frame *);
1124extern Lisp_Object delete_frame (Lisp_Object, Lisp_Object); 1123extern Lisp_Object delete_frame (Lisp_Object, Lisp_Object);
1125extern bool frame_inhibit_resize (struct frame *, bool, Lisp_Object); 1124extern bool frame_inhibit_resize (struct frame *, bool, Lisp_Object);
1126extern void adjust_frame_size (struct frame *, int, int, int, bool, Lisp_Object); 1125extern void adjust_frame_size (struct frame *, int, int, int, bool, Lisp_Object);
1126extern void frame_size_history_add (struct frame *f, Lisp_Object fun_symbol,
1127 int width, int height, Lisp_Object rest);
1127 1128
1128extern Lisp_Object Vframe_list; 1129extern Lisp_Object Vframe_list;
1129 1130