comparison src/frame.h @ 14215:f258b4fd44c0

(struct frame): New field `title'.
author Richard M. Stallman <rms@gnu.org>
date Thu, 18 Jan 1996 08:36:51 +0000
parents ee40177f6c68
children a3c8776451ce
comparison
equal deleted inserted replaced
14214:c08b7e5004b1 14215:f258b4fd44c0
47 47
48 /* All Lisp_Object components must come first. 48 /* All Lisp_Object components must come first.
49 Only EMACS_INT values can be intermixed with them. 49 Only EMACS_INT values can be intermixed with them.
50 That ensures they are all aligned normally. */ 50 That ensures they are all aligned normally. */
51 51
52 /* Name of this frame: a Lisp string. See also `explicit_name' 52 /* Name of this frame: a Lisp string. It is used for looking up resources,
53 and `namebuf'. */ 53 as well as for the title in some cases. */
54 Lisp_Object name; 54 Lisp_Object name;
55 55
56 /* The name to use for the icon, the last time 56 /* The name to use for the icon, the last time
57 it was refreshed. nil means not explicitly specified. */ 57 it was refreshed. nil means not explicitly specified. */
58 Lisp_Object icon_name; 58 Lisp_Object icon_name;
59
60 /* This is the frame title specified explicitly, if any.
61 Usually it is nil. */
62 Lisp_Object title;
59 63
60 /* The frame which should receive keystrokes that occur in this 64 /* The frame which should receive keystrokes that occur in this
61 frame, or nil if they should go to the frame itself. This is 65 frame, or nil if they should go to the frame itself. This is
62 usually nil, but if the frame is minibufferless, we can use this 66 usually nil, but if the frame is minibufferless, we can use this
63 to redirect keystrokes to a surrogate minibuffer frame when 67 to redirect keystrokes to a surrogate minibuffer frame when