diff options
| author | Gerd Moellmann | 1999-09-05 15:49:07 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-09-05 15:49:07 +0000 |
| commit | 9ea173e83025644384bad4a4ea697bcb6cf7995e (patch) | |
| tree | f787c96d61d0fecd60d18e050f8649b6fd77a19d /src/dispextern.h | |
| parent | e037b9ecb3c11b1775171da6e9376a5221fefd78 (diff) | |
| download | emacs-9ea173e83025644384bad4a4ea697bcb6cf7995e.tar.gz emacs-9ea173e83025644384bad4a4ea697bcb6cf7995e.zip | |
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Likewise for upper-case etc.
Diffstat (limited to 'src/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 8163fc8ea31..622dc8a806b 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -1264,7 +1264,7 @@ enum face_id | |||
| 1264 | { | 1264 | { |
| 1265 | DEFAULT_FACE_ID, | 1265 | DEFAULT_FACE_ID, |
| 1266 | MODE_LINE_FACE_ID, | 1266 | MODE_LINE_FACE_ID, |
| 1267 | TOOLBAR_FACE_ID, | 1267 | TOOL_BAR_FACE_ID, |
| 1268 | BITMAP_AREA_FACE_ID, | 1268 | BITMAP_AREA_FACE_ID, |
| 1269 | TOP_LINE_FACE_ID, | 1269 | TOP_LINE_FACE_ID, |
| 1270 | BASIC_FACE_ID_SENTINEL | 1270 | BASIC_FACE_ID_SENTINEL |
| @@ -1581,7 +1581,7 @@ struct it | |||
| 1581 | unsigned overlay_strings_at_end_processed_p : 1; | 1581 | unsigned overlay_strings_at_end_processed_p : 1; |
| 1582 | 1582 | ||
| 1583 | /* The ID of the default face to use. One of DEFAULT_FACE_ID, | 1583 | /* The ID of the default face to use. One of DEFAULT_FACE_ID, |
| 1584 | MODE_LINE_FACE_ID, or TOOLBAR_FACE_ID, depending on what we | 1584 | MODE_LINE_FACE_ID, or TOOL_BAR_FACE_ID, depending on what we |
| 1585 | are displaying. */ | 1585 | are displaying. */ |
| 1586 | int base_face_id; | 1586 | int base_face_id; |
| 1587 | 1587 | ||
| @@ -1961,69 +1961,69 @@ struct image_cache | |||
| 1961 | 1961 | ||
| 1962 | 1962 | ||
| 1963 | /*********************************************************************** | 1963 | /*********************************************************************** |
| 1964 | Toolbars | 1964 | Tool-bars |
| 1965 | ***********************************************************************/ | 1965 | ***********************************************************************/ |
| 1966 | 1966 | ||
| 1967 | /* Enumeration defining where to find toolbar item information in | 1967 | /* Enumeration defining where to find tool-bar item information in |
| 1968 | toolbar items vectors stored with frames. Each toolbar item | 1968 | tool-bar items vectors stored with frames. Each tool-bar item |
| 1969 | occupies TOOLBAR_ITEM_NSLOTS elements in such a vector. */ | 1969 | occupies TOOL_BAR_ITEM_NSLOTS elements in such a vector. */ |
| 1970 | 1970 | ||
| 1971 | enum toolbar_item_idx | 1971 | enum tool_bar_item_idx |
| 1972 | { | 1972 | { |
| 1973 | /* The key of the toolbar item. Used to remove items when a binding | 1973 | /* The key of the tool-bar item. Used to remove items when a binding |
| 1974 | for `undefined' is found. */ | 1974 | for `undefined' is found. */ |
| 1975 | TOOLBAR_ITEM_KEY, | 1975 | TOOL_BAR_ITEM_KEY, |
| 1976 | 1976 | ||
| 1977 | /* Non-nil if item is enabled. */ | 1977 | /* Non-nil if item is enabled. */ |
| 1978 | TOOLBAR_ITEM_ENABLED_P, | 1978 | TOOL_BAR_ITEM_ENABLED_P, |
| 1979 | 1979 | ||
| 1980 | /* Non-nil if item is selected (pressed). */ | 1980 | /* Non-nil if item is selected (pressed). */ |
| 1981 | TOOLBAR_ITEM_SELECTED_P, | 1981 | TOOL_BAR_ITEM_SELECTED_P, |
| 1982 | 1982 | ||
| 1983 | /* Caption. */ | 1983 | /* Caption. */ |
| 1984 | TOOLBAR_ITEM_CAPTION, | 1984 | TOOL_BAR_ITEM_CAPTION, |
| 1985 | 1985 | ||
| 1986 | /* Image(s) to display. This is either a single image specification | 1986 | /* Image(s) to display. This is either a single image specification |
| 1987 | or a vector of specifications. */ | 1987 | or a vector of specifications. */ |
| 1988 | TOOLBAR_ITEM_IMAGES, | 1988 | TOOL_BAR_ITEM_IMAGES, |
| 1989 | 1989 | ||
| 1990 | /* The binding. */ | 1990 | /* The binding. */ |
| 1991 | TOOLBAR_ITEM_BINDING, | 1991 | TOOL_BAR_ITEM_BINDING, |
| 1992 | 1992 | ||
| 1993 | /* Button type. One of nil, `:radio' or `:toggle'. */ | 1993 | /* Button type. One of nil, `:radio' or `:toggle'. */ |
| 1994 | TOOLBAR_ITEM_TYPE, | 1994 | TOOL_BAR_ITEM_TYPE, |
| 1995 | 1995 | ||
| 1996 | /* Help string. */ | 1996 | /* Help string. */ |
| 1997 | TOOLBAR_ITEM_HELP, | 1997 | TOOL_BAR_ITEM_HELP, |
| 1998 | 1998 | ||
| 1999 | /* Sentinel = number of slots in toolbar_items occupied by one | 1999 | /* Sentinel = number of slots in tool_bar_items occupied by one |
| 2000 | toolbar item. */ | 2000 | tool-bar item. */ |
| 2001 | TOOLBAR_ITEM_NSLOTS | 2001 | TOOL_BAR_ITEM_NSLOTS |
| 2002 | }; | 2002 | }; |
| 2003 | 2003 | ||
| 2004 | 2004 | ||
| 2005 | /* An enumeration for the different images that can be specified | 2005 | /* An enumeration for the different images that can be specified |
| 2006 | for a toolbar item. */ | 2006 | for a tool-bar item. */ |
| 2007 | 2007 | ||
| 2008 | enum toolbar_item_image | 2008 | enum tool_bar_item_image |
| 2009 | { | 2009 | { |
| 2010 | TOOLBAR_IMAGE_ENABLED_SELECTED, | 2010 | TOOL_BAR_IMAGE_ENABLED_SELECTED, |
| 2011 | TOOLBAR_IMAGE_ENABLED_DESELECTED, | 2011 | TOOL_BAR_IMAGE_ENABLED_DESELECTED, |
| 2012 | TOOLBAR_IMAGE_DISABLED_SELECTED, | 2012 | TOOL_BAR_IMAGE_DISABLED_SELECTED, |
| 2013 | TOOLBAR_IMAGE_DISABLED_DESELECTED | 2013 | TOOL_BAR_IMAGE_DISABLED_DESELECTED |
| 2014 | }; | 2014 | }; |
| 2015 | 2015 | ||
| 2016 | /* Non-zero means raise toolbar buttons when the mouse moves over them. */ | 2016 | /* Non-zero means raise tool-bar buttons when the mouse moves over them. */ |
| 2017 | 2017 | ||
| 2018 | extern int auto_raise_toolbar_buttons_p; | 2018 | extern int auto_raise_tool_bar_buttons_p; |
| 2019 | 2019 | ||
| 2020 | /* Margin around toolbar buttons in pixels. */ | 2020 | /* Margin around tool-bar buttons in pixels. */ |
| 2021 | 2021 | ||
| 2022 | extern int toolbar_button_margin; | 2022 | extern int tool_bar_button_margin; |
| 2023 | 2023 | ||
| 2024 | /* Thickness of relief to draw around toolbar buttons. */ | 2024 | /* Thickness of relief to draw around tool-bar buttons. */ |
| 2025 | 2025 | ||
| 2026 | extern int toolbar_button_relief; | 2026 | extern int tool_bar_button_relief; |
| 2027 | 2027 | ||
| 2028 | 2028 | ||
| 2029 | 2029 | ||
| @@ -2060,8 +2060,8 @@ void move_it_vertically P_ ((struct it *, int)); | |||
| 2060 | void move_it_by_lines P_ ((struct it *, int, int)); | 2060 | void move_it_by_lines P_ ((struct it *, int, int)); |
| 2061 | int frame_mode_line_height P_ ((struct frame *)); | 2061 | int frame_mode_line_height P_ ((struct frame *)); |
| 2062 | void highlight_trailing_whitespace P_ ((struct frame *, struct glyph_row *)); | 2062 | void highlight_trailing_whitespace P_ ((struct frame *, struct glyph_row *)); |
| 2063 | int toolbar_item_info P_ ((struct frame *, struct glyph *, int *)); | 2063 | int tool_bar_item_info P_ ((struct frame *, struct glyph *, int *)); |
| 2064 | extern Lisp_Object Qtoolbar; | 2064 | extern Lisp_Object Qtool_bar; |
| 2065 | extern Lisp_Object Vshow_trailing_whitespace; | 2065 | extern Lisp_Object Vshow_trailing_whitespace; |
| 2066 | extern int redisplaying_p; | 2066 | extern int redisplaying_p; |
| 2067 | 2067 | ||