annotate src/dialog-x.c @ 14:9ee227acff29 r19-15b90

Import from CVS: tag r19-15b90
author cvs
date Mon, 13 Aug 2007 08:48:42 +0200
parents ac2d302a0011
children 859a2309aef8
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 /* Implements elisp-programmable dialog boxes -- X interface.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 #include "console-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #include "EmacsManager.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include "EmacsFrame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "EmacsShell.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include "gui-x.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "commands.h" /* zmacs_regions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "opaque.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 maybe_run_dbox_text_callback (LWLIB_ID id)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* !!#### This function has not been Mule-ized */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 widget_value *wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 int got_some;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 wv = xmalloc_widget_value ();
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
48 wv->name = (char *) "value";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 got_some = lw_get_some_values (id, wv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 if (got_some)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Lisp_Object text_field_callback;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 char *text_field_value = wv->value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 VOID_TO_LISP (text_field_callback, wv->call_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 if (text_field_value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 void *tmp = LISP_TO_VOID (list2 (text_field_callback,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 build_string (text_field_value)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 popup_selection_callback (0, id, (XtPointer) tmp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 xfree (text_field_value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 free_widget_value (wv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 dbox_selection_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 /* This is called with client_data == -1 when WM_DELETE_WINDOW is sent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 instead of a button being selected. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 struct device *d = get_device_from_display (XtDisplay (widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 struct frame *f = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 Widget cur_widget = widget;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 /* The parent which is actually connected to our EmacsFrame may be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ways up the tree. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 while (!f && cur_widget)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 f = x_any_window_to_frame (d, XtWindow (cur_widget));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 cur_widget = XtParent (cur_widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 if (popup_handled_p (id))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 assert (popup_up_p != 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ungcpro_popup_callbacks (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 popup_up_p--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 maybe_run_dbox_text_callback (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 popup_selection_callback (widget, id, client_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 lw_destroy_all_widgets (id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 /* The Motif dialog box sets the keyboard focus to itself. When it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 goes away we have to take care of getting the focus back
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 ourselves. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 /* #### Not sure if this special case is necessary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 if (!FRAME_X_EXTERNAL_WINDOW_P (f) && f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 if (f)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 lw_set_keyboard_focus (FRAME_X_SHELL_WIDGET (f), FRAME_X_TEXT_WIDGET (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 static CONST char * CONST button_names [] = {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 "button1", "button2", "button3", "button4", "button5",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 "button6", "button7", "button8", "button9", "button10" };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 /* can't have static frame locals because of some broken compilers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 static char tmp_dbox_name [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 static widget_value *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 dbox_descriptor_to_widget_value (Lisp_Object desc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 /* !!#### This function has not been Mule-ized */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 char *name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 int lbuttons = 0, rbuttons = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 int partition_seen = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 int text_field_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 int allow_text_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 widget_value *prev = 0, *kids = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 int n = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 int count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Lisp_Object wv_closure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 CHECK_CONS (desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 CHECK_STRING (XCAR (desc));
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
128 name = (char *) XSTRING_DATA (LISP_GETTEXT (XCAR (desc)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 desc = XCDR (desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 if (!CONSP (desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 error ("dialog boxes must have some buttons");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 /* Inhibit GC during this conversion. The reasons for this are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 the same as in menu_item_descriptor_to_widget_value(); see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 the large comment above that function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 record_unwind_protect (restore_gc_inhibit,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 make_int (gc_currently_forbidden));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 gc_currently_forbidden = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 kids = prev = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 /* Also make sure that we free the partially-created widget_value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 tree on Lisp error. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 wv_closure = make_opaque_ptr (kids);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 record_unwind_protect (widget_value_unwind, wv_closure);
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
148 prev->name = (char *) "message";
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 prev->value = xstrdup (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 prev->enabled = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 for (; !NILP (desc); desc = Fcdr (desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 Lisp_Object button = XCAR (desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 widget_value *wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 if (NILP (button))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 if (partition_seen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 error ("more than one partition (nil) seen in dbox spec");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 partition_seen = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 CHECK_VECTOR (button);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 wv = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 if (!button_item_to_widget_value (button, wv, allow_text_p, 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 free_widget_value (wv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 if (wv->type == TEXT_TYPE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 text_field_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 allow_text_p = 0; /* only allow one */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 else /* it's a button */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 allow_text_p = 0; /* only allow text field at the front */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 wv->value = xstrdup (wv->name); /* what a mess... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 wv->name = (char *) button_names [n];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 if (partition_seen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 rbuttons++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 lbuttons++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 n++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 if (lbuttons > 9 || rbuttons > 9)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 error ("too many buttons (9)"); /* #### this leaks */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 prev->next = wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 prev = wv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 if (n == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 error ("dialog boxes must have some buttons");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 char type = (text_field_p ? 'P' : 'Q');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 widget_value *dbox;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 sprintf (tmp_dbox_name, "%c%dBR%d", type, lbuttons + rbuttons, rbuttons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 dbox = xmalloc_widget_value ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 dbox->name = tmp_dbox_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 dbox->contents = kids;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 /* No more need to free the half-filled-in structures. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 set_opaque_ptr (wv_closure, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 return dbox;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 DEFUN ("popup-dialog-box", Fpopup_dialog_box, Spopup_dialog_box, 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 Pop up a dialog box.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 A dialog box description is a list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 The first element of a dialog box must be a string, which is the title or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 question.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 The rest of the elements are descriptions of the dialog box's buttons.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 Each of these is a vector, the syntax of which is essentially the same as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 that of popup menu items. They may have any of the following forms:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 [ \"name\" callback <active-p> ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 [ \"name\" callback <active-p> \"suffix\" ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 [ \"name\" callback :<keyword> <value> :<keyword> <value> ... ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 The name is the string to display on the button; it is filtered through the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 resource database, so it is possible for resources to override what string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 is actually displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 If the `callback' of a button is a symbol, then it must name a command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 It will be invoked with `call-interactively'. If it is a list, then it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 evaluated with `eval'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 One (and only one) of the buttons may be `nil'. This marker means that all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 following buttons should be flushright instead of flushleft.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 Though the keyword/value syntax is supported for dialog boxes just as in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 popup menus, the only keyword which is both meaningful and fully implemented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 for dialog box buttons is `:active'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (dbox_desc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 Lisp_Object dbox_desc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 int dbox_id;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 struct frame *f = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 widget_value *data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 Widget parent, dbox;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 Lisp_Object frame = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 XSETFRAME (frame, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 CHECK_X_FRAME (frame);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 if (SYMBOLP (dbox_desc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 dbox_desc = Fsymbol_value (dbox_desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 CHECK_CONS (dbox_desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 CHECK_STRING (XCAR (dbox_desc));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 data = dbox_descriptor_to_widget_value (dbox_desc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 parent = FRAME_X_SHELL_WIDGET (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 dbox_id = new_lwlib_id ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 dbox = lw_create_widget (data->name, "dialog", dbox_id, data, parent, 1, 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 dbox_selection_callback, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 lw_modify_all_widgets (dbox_id, data, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 lw_modify_all_widgets (dbox_id, data->contents, True);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 free_popup_widget_value_tree (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 gcpro_popup_callbacks (dbox_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 /* Setting zmacs-region-stays is necessary here because executing a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 command from a dialog is really a two-command process: the first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 command (bound to the button-click) simply pops up the dialog,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 and returns. This causes a sequence of magic-events (destined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 for the dialog widget) to begin. Eventually, a dialog item is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 selected, and a misc-user-event blip is pushed onto the end of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 the input stream, which is then executed by the event loop.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 So there are two command-events, with a bunch of magic-events
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 between them. We don't want the *first* command event to alter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 the state of the region, so that the region can be available as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 an argument for the second command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 if (zmacs_regions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 zmacs_region_stays = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 popup_up_p++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 lw_pop_up_all_widgets (dbox_id);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 syms_of_dialog_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 defsubr (&Spopup_dialog_box);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 vars_of_dialog_x (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 #if defined (LWLIB_DIALOGS_LUCID)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 Fprovide (intern ("lucid-dialogs"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 #elif defined (LWLIB_DIALOGS_MOTIF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 Fprovide (intern ("motif-dialogs"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 #elif defined (LWLIB_DIALOGS_ATHENA)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 Fprovide (intern ("athena-dialogs"));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 }