Mercurial > emacs
annotate src/widget.h @ 83537:c19f348befac
Fix F10 behaviour. (Reported by Bernard Adrian.)
* src/xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]:
Rename from Fmenu_bar_open.
(syms_of_xmenu): Update defsubr.
* lisp/menu-bar.el (menu-bar-open): New function.
Bind it to f10.
* lisp/term/x-win.el: Don't bind f10.
* lisp/tmm.el: Remove autoload binding for f10.
* lisp/ldefs-boot.el: Regenerate.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-577
| author | Karoly Lorentey <lorentey@elte.hu> |
|---|---|
| date | Sat, 29 Jul 2006 20:57:26 +0000 |
| parents | 3bd95f4f2941 |
| children | e90d04cd455a c5406394f567 |
| rev | line source |
|---|---|
| 5626 | 1 /* The emacs frame widget public header file. |
|
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64770
diff
changeset
|
2 Copyright (C) 1993, 2002, 2003, 2004, 2005, |
|
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64770
diff
changeset
|
3 2006 Free Software Foundation, Inc. |
| 5626 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 9 the Free Software Foundation; either version 2, or (at your option) | |
| 10 any later version. | |
| 11 | |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
| 64084 | 19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 20 Boston, MA 02110-1301, USA. */ | |
| 5626 | 21 |
| 22 /* Emacs 19 face widget ported by Fred Pierresteguy */ | |
| 23 | |
| 24 #ifndef _EmacsFrame_h | |
| 25 #define _EmacsFrame_h | |
| 26 | |
| 27 #define XtNminibuffer "minibuffer" | |
| 28 #define XtCMinibuffer "Minibuffer" | |
| 29 #define XtNunsplittable "unsplittable" | |
| 30 #define XtCUnsplittable "Unsplittable" | |
| 31 #define XtNinternalBorderWidth "internalBorderWidth" | |
| 32 #define XtCInternalBorderWidth "InternalBorderWidth" | |
| 33 #define XtNinterline "interline" | |
| 34 #define XtCInterline "Interline" | |
| 35 | |
| 36 #ifndef XtNfont | |
| 37 #define XtNfont "font" | |
| 38 #endif | |
| 39 #ifndef XtCFont | |
| 40 #define XtCFont "Font" | |
| 41 #endif | |
| 42 #ifndef XtNforeground | |
| 43 #define XtNforeground "foreground" | |
| 44 #endif | |
| 45 #ifndef XtCForeground | |
| 46 #define XtCForeground "Foreground" | |
| 47 #endif | |
| 48 | |
| 49 #define XtNcursorColor "cursorColor" | |
| 50 #define XtCCursorColor "CursorColor" | |
| 51 #define XtNbarCursor "barCursor" | |
| 52 #define XtCBarCursor "BarCursor" | |
| 53 | |
| 54 #define XtNvisualBell "visualBell" | |
| 55 #define XtCVisualBell "VisualBell" | |
| 56 #define XtCBellVolume "BellVolume" | |
| 57 #define XtNbellVolume "bellVolume" | |
| 58 | |
| 59 #define XtNpointerBackground "pointerBackground" | |
| 60 #define XtNpointerColor "pointerColor" | |
| 61 | |
| 62 #define XtNtextPointer "textPointer" | |
| 63 #define XtNspacePointer "spacePointer" | |
| 64 #define XtNmodeLinePointer "modePointer" | |
| 65 #define XtNgcPointer "gcPointer" | |
| 66 | |
| 67 #define XtNemacsFrame "emacsFrame" | |
| 68 #define XtCEmacsFrame "EmacsFrame" | |
| 69 | |
| 70 #ifndef XtNgeometry | |
| 71 #define XtNgeometry "geometry" | |
| 72 #endif | |
| 73 #ifndef XtCGeometry | |
| 74 #define XtCGeometry "Geometry" | |
| 75 #endif | |
|
9229
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
76 #ifndef XtNshowGrip |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
77 #define XtNshowGrip "showGrip" |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
78 #endif |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
79 #ifndef XtNallowResize |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
80 #define XtNallowResize "allowResize" |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
81 #endif |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
82 #ifndef XtNresizeToPreferred |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
83 #define XtNresizeToPreferred "resizeToPreferred" |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
84 #endif |
| 5626 | 85 |
| 86 #define XtNinitialGeometry "initialGeometry" | |
| 87 #define XtCInitialGeometry "InitialGeometry" | |
| 88 | |
| 89 /* structures | |
| 90 */ | |
| 91 typedef struct _EmacsFrameRec *EmacsFrame; | |
| 92 typedef struct _EmacsFrameClassRec *EmacsFrameClass; | |
| 93 | |
| 94 extern WidgetClass emacsFrameClass; | |
| 95 | |
| 96 extern struct _DisplayContext* display_context; | |
| 97 | |
| 98 /* Special entrypoints */ | |
|
35057
29053ba75ce5
(EmacsFrameSetCharSize_): Prototype.
Dave Love <fx@gnu.org>
parents:
24998
diff
changeset
|
99 void EmacsFrameSetCharSize P_ ((Widget, int, int)); |
|
24998
c61fea4f9105
(x_set_font): Don't call face-set-after-frame-default
Gerd Moellmann <gerd@gnu.org>
parents:
14186
diff
changeset
|
100 void widget_store_internal_border P_ ((Widget widget)); |
| 5626 | 101 |
| 102 #endif /* _EmacsFrame_h */ | |
| 52401 | 103 |
| 104 /* arch-tag: 98be17cc-8878-4701-abfa-66f1c04e9cb7 | |
| 105 (do not change this comment) */ |
