annotate src/menubar.h @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents c5d627a313b1
children 2f8bb876ab1d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Define generic menubar support.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1995 Board of Trustees, University of Illinois.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* #### Not properly abstracted for device-independence. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
25 #ifndef INCLUDED_menubar_h_
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
26 #define INCLUDED_menubar_h_
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #ifdef HAVE_MENUBARS
253
157b30c96d03 Import from CVS: tag r20-5b25
cvs
parents: 251
diff changeset
29 #include "gui.h"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 void update_frame_menubars (struct frame *f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 void free_frame_menubars (struct frame *f);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 0
diff changeset
32 Lisp_Object menu_parse_submenu_keywords (Lisp_Object desc,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
33 Lisp_Object gui_item);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
34 Lisp_Object current_frame_menubar (const struct frame* f);
251
677f6a0ee643 Import from CVS: tag r20-5b24
cvs
parents: 0
diff changeset
35
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 253
diff changeset
36 EXFUN (Fmenu_find_real_submenu, 2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #endif /* HAVE_MENUBARS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 272
diff changeset
40 #endif /* INCLUDED_menubar_h_ */