comparison src/gui.c @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 2d532a89d707
comparison
equal deleted inserted replaced
-1:000000000000 0:376386a54a3c
1 /* Generic GUI code. (menubars, scrollbars, toolbars, dialogs)
2 Copyright (C) 1995 Board of Trustees, University of Illinois.
3 Copyright (C) 1995, 1996 Ben Wing.
4 Copyright (C) 1995 Sun Microsystems, Inc.
5
6 This file is part of XEmacs.
7
8 XEmacs is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
11 later version.
12
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with XEmacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23 /* Synched up with: Not in FSF. */
24
25 #include <config.h>
26 #include "lisp.h"
27
28 Lisp_Object Q_active, Q_suffix, Q_keys, Q_style, Q_selected;
29 Lisp_Object Q_filter, Q_config, Q_included;
30 Lisp_Object Qtoggle, Qradio;
31
32 void
33 syms_of_gui (void)
34 {
35 defkeyword (&Q_active, ":active");
36 defkeyword (&Q_suffix, ":suffix");
37 defkeyword (&Q_keys, ":keys");
38 defkeyword (&Q_style, ":style");
39 defkeyword (&Q_selected, ":selected");
40 defkeyword (&Q_filter, ":filter");
41 defkeyword (&Q_config, ":config");
42 defkeyword (&Q_included, ":included");
43
44 defsymbol (&Qtoggle, "toggle");
45 defsymbol (&Qradio, "radio");
46 }
47
48 void
49 vars_of_gui (void)
50 {
51 }