Mercurial > emacs
annotate etc/schema/xhtml-pres.rnc @ 111991:968255ee954a
Support for menu separators in the GTK tool-bar.
* src/gtkutil.c (XG_BIN_CHILD): New macro.
(xg_get_menu_item_label, xg_update_menubar)
(xg_update_menu_item, xg_tool_bar_menu_proxy)
(xg_show_toolbar_item, update_frame_tool_bar): Use it.
(separator_names, xg_separator_p): Move to keyboard.c.
(create_menus, xg_update_submenu, update_frame_tool_bar): Use
menu_separator_name_p.
* src/keyboard.c (parse_tool_bar_item): Allow menu separators in
tool-bar maps.
(menu_separator_name_p): New function, from gtkutil.c.
(separator_names): Move from gtkutil.c.
* src/keyboard.h (menu_separator_name_p): Add prototype.
* src/nsmenu.m (name_is_separator): Function deleted.
(addItemWithWidgetValue): Use menu_separator_name_p.
* src/w32menu.c (name_is_separator): Function deleted.
(add_menu_item): Use menu_separator_name_p.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Fri, 17 Dec 2010 12:04:06 +0800 |
parents | 38f93f3d00a2 |
children |
rev | line source |
---|---|
86361 | 1 hr = element hr { hr.attlist } |
2 hr.attlist = Common.attrib | |
3 Block.class |= hr | |
4 b = element b { b.attlist, Inline.model } | |
5 b.attlist = Common.attrib | |
6 big = element big { big.attlist, Inline.model } | |
7 big.attlist = Common.attrib | |
8 i = element i { i.attlist, Inline.model } | |
9 i.attlist = Common.attrib | |
10 small = element small { small.attlist, Inline.model } | |
11 small.attlist = Common.attrib | |
12 sub = element sub { sub.attlist, Inline.model } | |
13 sub.attlist = Common.attrib | |
14 sup = element sup { sup.attlist, Inline.model } | |
15 sup.attlist = Common.attrib | |
16 tt = element tt { tt.attlist, Inline.model } | |
17 tt.attlist = Common.attrib | |
18 Inline.class |= b | big | i | small | sub | sup | tt |