aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorChong Yidong2010-12-20 08:17:26 +0800
committerChong Yidong2010-12-20 08:17:26 +0800
commit949752705efd6a4b7478623d41b3552f93e9596c (patch)
tree3f41f09628f8c7ac17c1c771c69cdb2916cc5fb8 /src/keyboard.c
parentef1b0ba7e5a82308514b8427cd84994805e61a4f (diff)
downloademacs-949752705efd6a4b7478623d41b3552f93e9596c.tar.gz
emacs-949752705efd6a4b7478623d41b3552f93e9596c.zip
Implement tool-bar separators for non-GTK tool-bars.
* lisp/tool-bar.el (tool-bar--image-expression): New function. (tool-bar-local-item, tool-bar--image-exp): Use it. (tool-bar-setup): Initialize tool-bar-separator-image-expression. Use :enable instead of :visible to avoid changing the tool-bar configuration unnecessarily. * src/keyboard.c (Vtool_bar_separator_image_expression): New variable. (parse_tool_bar_item): Use it to obtain image separators for displays not using native tool-bar separators. * src/xdisp.c (build_desired_tool_bar_string): Don't handle separators specially, since this is now done in parse_tool_bar_item. * lisp/info.el (info-tool-bar-map): Add separators.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 959c57a81e3..27c311d72e2 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -212,6 +212,12 @@ Lisp_Object Vprefix_help_command;
212/* List of items that should move to the end of the menu bar. */ 212/* List of items that should move to the end of the menu bar. */
213Lisp_Object Vmenu_bar_final_items; 213Lisp_Object Vmenu_bar_final_items;
214 214
215/* Expression to evaluate for the tool bar separator image.
216 This is used for build_desired_tool_bar_string only. For GTK, we
217 use GTK tool bar seperators. */
218
219Lisp_Object Vtool_bar_separator_image_expression;
220
215/* Non-nil means show the equivalent key-binding for 221/* Non-nil means show the equivalent key-binding for
216 any M-x command that has one. 222 any M-x command that has one.
217 The value can be a length of time to show the message for. 223 The value can be a length of time to show the message for.
@@ -8294,6 +8300,15 @@ parse_tool_bar_item (Lisp_Object key, Lisp_Object item)
8294 if (menu_separator_name_p (SDATA (caption))) 8300 if (menu_separator_name_p (SDATA (caption)))
8295 { 8301 {
8296 PROP (TOOL_BAR_ITEM_TYPE) = Qt; 8302 PROP (TOOL_BAR_ITEM_TYPE) = Qt;
8303#if !defined (USE_GTK) && !defined (HAVE_NS)
8304 /* If we use build_desired_tool_bar_string to render the
8305 tool bar, the separator is rendered as an image. */
8306 PROP (TOOL_BAR_ITEM_IMAGES)
8307 = menu_item_eval_property (Vtool_bar_separator_image_expression);
8308 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qnil;
8309 PROP (TOOL_BAR_ITEM_SELECTED_P) = Qnil;
8310 PROP (TOOL_BAR_ITEM_CAPTION) = Qnil;
8311#endif
8297 return 1; 8312 return 1;
8298 } 8313 }
8299 return 0; 8314 return 0;
@@ -12151,6 +12166,12 @@ might happen repeatedly and make Emacs nonfunctional. */);
12151The elements of the list are event types that may have menu bar bindings. */); 12166The elements of the list are event types that may have menu bar bindings. */);
12152 Vmenu_bar_final_items = Qnil; 12167 Vmenu_bar_final_items = Qnil;
12153 12168
12169 DEFVAR_LISP ("tool-bar-separator-image-expression", &Vtool_bar_separator_image_expression,
12170 doc: /* Expression evaluating to the image spec for a tool-bar separator.
12171This is used internally by graphical displays that do not render
12172tool-bar separators natively. Otherwise it is unused (e.g. on GTK). */);
12173 Vtool_bar_separator_image_expression = Qnil;
12174
12154 DEFVAR_KBOARD ("overriding-terminal-local-map", 12175 DEFVAR_KBOARD ("overriding-terminal-local-map",
12155 Voverriding_terminal_local_map, 12176 Voverriding_terminal_local_map,
12156 doc: /* Per-terminal keymap that overrides all other local keymaps. 12177 doc: /* Per-terminal keymap that overrides all other local keymaps.