diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-01-30 15:04:35 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-01-30 15:04:35 +0000 |
commit | cc4cb7559c4e91c908e42d35f095c9a02808f1a3 (patch) | |
tree | da2210ed31ea6bcd06425b9a91bc614e645130ec | |
parent | 2149d5dc0fafbbfd49ad74066c7cf332ac40d294 (diff) | |
download | emacs-cc4cb7559c4e91c908e42d35f095c9a02808f1a3.tar.gz |
(Vtool_bar_button_margin:): Declare extern.
(DEFAULT_TOOL_BAR_BUTTON_MARGIN, DEFAULT_TOOL_BAR_BUTTON_RELIEF)
(DEFAULT_TOOL_BAR_IMAGE_HEIGHT): New defines.
-rw-r--r-- | src/dispextern.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 534f18d76d6..33c1d99128c 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -1,5 +1,5 @@ /* Interface definitions for display code. - Copyright (C) 1985, 1993, 1994, 1997, 1998, 1999, 2000 + Copyright (C) 1985, 1993, 1994, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -2118,12 +2118,20 @@ extern int auto_raise_tool_bar_buttons_p; /* Margin around tool-bar buttons in pixels. */ -extern int tool_bar_button_margin; +extern Lisp_Object Vtool_bar_button_margin; /* Thickness of relief to draw around tool-bar buttons. */ extern int tool_bar_button_relief; +/* Default values of the above variables. */ + +#define DEFAULT_TOOL_BAR_BUTTON_MARGIN 1 +#define DEFAULT_TOOL_BAR_BUTTON_RELIEF 3 + +/* The height in pixels of the default tool-bar images. */ + +#define DEFAULT_TOOL_BAR_IMAGE_HEIGHT 24 /*********************************************************************** |