From: Richard M. Stallman Date: Tue, 25 Jul 1995 20:21:15 +0000 (+0000) Subject: (struct x_display): New fields saved_button_event, id. X-Git-Tag: emacs-19.34~3201 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=51057b1fa48a6b116f4a2e79cc910073a4be9f6e;p=emacs.git (struct x_display): New fields saved_button_event, id. --- diff --git a/src/xterm.h b/src/xterm.h index 85fed55ec6f..ea7ecac127d 100644 --- a/src/xterm.h +++ b/src/xterm.h @@ -466,6 +466,15 @@ struct x_display /* This is the Emacs structure for the X display this frame is on. */ struct x_display_info *display_info; + /* This is a button event that wants to activate the menubar. + We save it here until the command loop gets to think about it. */ + XButtonEvent *saved_button_event; + + /* This is the widget id used for this frame's menubar in lwlib. */ +#ifdef USE_X_TOOLKIT + int id; +#endif + /* Nonzero means our parent is another application's window and was explicitly specified. */ char explicit_parent;