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/w32term.c | |
| 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/w32term.c')
| -rw-r--r-- | src/w32term.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/w32term.c b/src/w32term.c index 5145c840c71..213cff4f138 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -50,6 +50,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 50 | #include "process.h" | 50 | #include "process.h" |
| 51 | #include "atimer.h" | 51 | #include "atimer.h" |
| 52 | #include "keymap.h" | 52 | #include "keymap.h" |
| 53 | #include "menu.h" | ||
| 53 | 54 | ||
| 54 | #ifdef WINDOWSNT | 55 | #ifdef WINDOWSNT |
| 55 | #include "w32.h" /* for filename_from_utf16, filename_from_ansi */ | 56 | #include "w32.h" /* for filename_from_utf16, filename_from_ansi */ |
| @@ -6272,6 +6273,7 @@ w32_create_terminal (struct w32_display_info *dpyinfo) | |||
| 6272 | terminal->frame_rehighlight_hook = w32_frame_rehighlight; | 6273 | terminal->frame_rehighlight_hook = w32_frame_rehighlight; |
| 6273 | terminal->frame_raise_lower_hook = w32_frame_raise_lower; | 6274 | terminal->frame_raise_lower_hook = w32_frame_raise_lower; |
| 6274 | terminal->fullscreen_hook = w32fullscreen_hook; | 6275 | terminal->fullscreen_hook = w32fullscreen_hook; |
| 6276 | terminal->menu_show_hook = w32_menu_show; | ||
| 6275 | terminal->set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar; | 6277 | terminal->set_vertical_scroll_bar_hook = w32_set_vertical_scroll_bar; |
| 6276 | terminal->condemn_scroll_bars_hook = w32_condemn_scroll_bars; | 6278 | terminal->condemn_scroll_bars_hook = w32_condemn_scroll_bars; |
| 6277 | terminal->redeem_scroll_bar_hook = w32_redeem_scroll_bar; | 6279 | terminal->redeem_scroll_bar_hook = w32_redeem_scroll_bar; |