diff options
| author | Dmitry Antipov | 2014-06-04 08:58:31 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-06-04 08:58:31 +0400 |
| commit | cfd794af4214ae0e5587ab8b1f4e5fcb355a0f12 (patch) | |
| tree | c45be02b5b568e7534eb91e03ba46899dc42dff5 /src/termhooks.h | |
| parent | 39ec03147e88bb7a12d2e42edfa0206f6b7d546b (diff) | |
| download | emacs-cfd794af4214ae0e5587ab8b1f4e5fcb355a0f12.tar.gz emacs-cfd794af4214ae0e5587ab8b1f4e5fcb355a0f12.zip | |
Use terminal-specific hooks to display menus.
* termhooks.h (struct terminal): New field menu_show_hook.
* menu.h (<anonymous enum>): Bit flags for menu hooks.
(x_menu_show, w32_menu_show, ns_menu_show, tty_menu_show):
Adjust prototypes.
* menu.c (Fx_popup_menu): Use bit flags and menu_show_hook.
* nsmenu.m (ns_menu_show):
* w32menu.c (w32_menu_show):
* xmenu.c (x_menu_show):
* term.c (tty_menu_show): Adjust to use bit flags.
(set_tty_hooks): Set menu_show_hook.
* xterm.c (x_create_terminal):
* nsterm.m (ns_create_terminal):
* msdos.c (initialize_msdos_display):
* w32term.c (w32_create_terminal): Likewise.
Diffstat (limited to 'src/termhooks.h')
| -rw-r--r-- | src/termhooks.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/termhooks.h b/src/termhooks.h index 207b8ccbc3c..76adc539e48 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -478,7 +478,10 @@ struct terminal | |||
| 478 | may do something OS dependent, like extended window manager hints on X11. */ | 478 | may do something OS dependent, like extended window manager hints on X11. */ |
| 479 | void (*fullscreen_hook) (struct frame *f); | 479 | void (*fullscreen_hook) (struct frame *f); |
| 480 | 480 | ||
| 481 | 481 | /* This hook is called to display menus. */ | |
| 482 | Lisp_Object (*menu_show_hook) (struct frame *f, int x, int y, int menuflags, | ||
| 483 | Lisp_Object title, const char **error_name); | ||
| 484 | |||
| 482 | /* Scroll bar hooks. */ | 485 | /* Scroll bar hooks. */ |
| 483 | 486 | ||
| 484 | /* The representation of scroll bars is determined by the code which | 487 | /* The representation of scroll bars is determined by the code which |