Mercurial > emacs
annotate lwlib/xlwmenu.h @ 74883:9ac7844e1b6e
(fill-comment-paragraph): Prevent the use of an optimized comment regexp if
`comment-start-skip' uses a ^.
author | Michaël Cadilhac <michael.cadilhac@lrde.org> |
---|---|
date | Sun, 24 Dec 2006 20:20:26 +0000 |
parents | e8a3fb527b77 |
children | 6a01460d75ba c5406394f567 |
rev | line source |
---|---|
60584
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
1 /* Interface of a lightweight menubar widget. |
68640
e8a3fb527b77
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64769
diff
changeset
|
2 Copyright (C) 2000, 2002, 2003, 2004, 2005, |
e8a3fb527b77
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64769
diff
changeset
|
3 2006 Free Software Foundation, Inc. |
60584
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
4 |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
5 This file is part of the Lucid Widget Library. |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
6 |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
7 The Lucid Widget Library is free software; you can redistribute it and/or |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
8 modify it under the terms of the GNU General Public License as published by |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
10 any later version. |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
11 |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
12 The Lucid Widget Library is distributed in the hope that it will be useful, |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
15 GNU General Public License for more details. |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
16 |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
17 You should have received a copy of the GNU General Public License |
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
18 along with GNU Emacs; see the file COPYING. If not, write to the |
64083 | 19 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 Boston, MA 02110-1301, USA. */ | |
60584
597c62d04dec
Add missing copyright and license notice.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53564
diff
changeset
|
21 |
5626 | 22 #ifndef _XlwMenu_h |
23 #define _XlwMenu_h | |
24 | |
25 /*********************************************************************** | |
26 * | |
27 * XlwMenu Widget | |
28 * | |
29 ***********************************************************************/ | |
30 | |
31 #include "lwlib.h" | |
32 | |
33 /* Resource names used by the XlwMenu widget */ | |
45146
174fe450ad23
(XtNdisabledForeground, XtCDisabledForeground): New resource names.
Pavel Janík <Pavel@Janik.cz>
parents:
29466
diff
changeset
|
34 #define XtNdisabledForeground "disabledForeground" |
174fe450ad23
(XtNdisabledForeground, XtCDisabledForeground): New resource names.
Pavel Janík <Pavel@Janik.cz>
parents:
29466
diff
changeset
|
35 #define XtCDisabledForeground "DisabledForeground" |
5626 | 36 #define XtNbuttonForeground "buttonForeground" |
37 #define XtCButtonForeground "ButtonForeground" | |
38 #define XtNmargin "margin" | |
39 #define XtNhorizontalSpacing "horizontalSpacing" | |
40 #define XtNverticalSpacing "verticalSpacing" | |
41 #define XtNarrowSpacing "arrowSpacing" | |
42 #define XtNmenu "menu" | |
43 #define XtCMenu "Menu" | |
44 #define XtNopen "open" | |
45 #define XtNselect "select" | |
27339
8b90339beb04
(XtNhighlightCallback): New define.
Gerd Moellmann <gerd@gnu.org>
parents:
8786
diff
changeset
|
46 #define XtNhighlightCallback "highlightCallback" |
5626 | 47 #define XtNmenuBorderWidth "menuBorderWidth" |
48 #define XtNhorizontal "horizontal" | |
49 #define XtCHorizontal "Horizontal" | |
50 #define XtNcursor "cursor" | |
51 #define XtNCursor "Cursor" | |
8786 | 52 #define XtNshowGrip "showGrip" |
53 #define XtCShowGrip "ShowGrip" | |
54 #define XtNresizeToPreferred "resizeToPreferred" | |
55 #define XtCResizeToPreferred "ResizeToPreferred" | |
56 #define XtNallowResize "allowResize" | |
57 #define XtCAllowResize "AllowResize" | |
5626 | 58 |
59 /* Motif-compatible resource names */ | |
60 #define XmNshadowThickness "shadowThickness" | |
61 #define XmCShadowThickness "ShadowThickness" | |
62 #define XmNtopShadowColor "topShadowColor" | |
63 #define XmCTopShadowColor "TopShadowColor" | |
64 #define XmNbottomShadowColor "bottomShadowColor" | |
65 #define XmCBottomShadowColor "BottomShadowColor" | |
66 #define XmNtopShadowPixmap "topShadowPixmap" | |
67 #define XmCTopShadowPixmap "TopShadowPixmap" | |
68 #define XmNbottomShadowPixmap "bottomShadowPixmap" | |
69 #define XmCBottomShadowPixmap "BottomShadowPixmap" | |
70 #define XmRHorizontalDimension "HorizontalDimension" | |
71 | |
72 typedef struct _XlwMenuRec *XlwMenuWidget; | |
73 typedef struct _XlwMenuClassRec *XlwMenuWidgetClass; | |
74 | |
75 extern WidgetClass xlwMenuWidgetClass; | |
76 | |
77 #endif /* _XlwMenu_h */ | |
52401 | 78 |
79 /* arch-tag: 0c019735-d61b-4080-be85-4fdd6e50ae07 | |
80 (do not change this comment) */ |