*** empty log message ***
[bpt/emacs.git] / lwlib / lwlib-Xaw.c
1 /* The lwlib interface to Athena widgets.
2 Copyright (C) 1993 Chuck Thompson <cthomp@cs.uiuc.edu>
3
4 This file is part of the Lucid Widget Library.
5
6 The Lucid Widget Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
9 any later version.
10
11 The Lucid Widget Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #include <stdio.h>
21
22 #include "lwlib-Xaw.h"
23
24 #include <X11/StringDefs.h>
25 #include <X11/IntrinsicP.h>
26 #include <X11/CoreP.h>
27 #include <X11/Shell.h>
28
29 #include <X11/Xaw/Scrollbar.h>
30 #include <X11/Xaw/Paned.h>
31 #include <X11/Xaw/Dialog.h>
32 #include <X11/Xaw/Form.h>
33 #include <X11/Xaw/Command.h>
34 #include <X11/Xaw/Label.h>
35
36 #include <X11/Xatom.h>
37
38 static void xaw_generic_callback (Widget, XtPointer, XtPointer);
39
40
41 Boolean
42 lw_xaw_widget_p (widget)
43 Widget widget;
44 {
45 return (XtIsSubclass (widget, scrollbarWidgetClass) ||
46 XtIsSubclass (widget, dialogWidgetClass));
47 }
48
49 static void
50 xaw_update_scrollbar (instance, widget, val)
51 widget_instance *instance;
52 Widget widget;
53 widget_value *val;
54 {
55 #if 0
56 if (val->scrollbar_data)
57 {
58 scrollbar_values *data = val->scrollbar_data;
59 Dimension height, width;
60 Dimension pos_x, pos_y;
61 int widget_shown, widget_topOfThumb;
62 float new_shown, new_topOfThumb;
63
64 XtVaGetValues (widget,
65 XtNheight, &height,
66 XtNwidth, &width,
67 XtNx, &pos_x,
68 XtNy, &pos_y,
69 XtNtopOfThumb, &widget_topOfThumb,
70 XtNshown, &widget_shown,
71 0);
72
73 /*
74 * First size and position the scrollbar widget.
75 * We need to position it to second-guess the Paned widget's notion
76 * of what should happen when the WMShell gets resized.
77 */
78 if (height != data->scrollbar_height || pos_y != data->scrollbar_pos)
79 {
80 XtConfigureWidget (widget, pos_x, data->scrollbar_pos,
81 width, data->scrollbar_height, 0);
82
83 XtVaSetValues (widget,
84 XtNlength, data->scrollbar_height,
85 XtNthickness, width,
86 0);
87 }
88
89 /*
90 * Now the size the scrollbar's slider.
91 */
92 new_shown = (float) data->slider_size /
93 (float) (data->maximum - data->minimum);
94
95 new_topOfThumb = (float) (data->slider_position - data->minimum) /
96 (float) (data->maximum - data->minimum);
97
98 if (new_shown > 1.0)
99 new_shown = 1.0;
100 if (new_shown < 0)
101 new_shown = 0;
102
103 if (new_topOfThumb > 1.0)
104 new_topOfThumb = 1.0;
105 if (new_topOfThumb < 0)
106 new_topOfThumb = 0;
107
108 if (new_shown != widget_shown || new_topOfThumb != widget_topOfThumb)
109 XawScrollbarSetThumb (widget, new_topOfThumb, new_shown);
110 }
111 #endif
112 }
113
114 void
115 xaw_update_one_widget (instance, widget, val, deep_p)
116 widget_instance *instance;
117 Widget widget;
118 widget_value *val;
119 Boolean deep_p;
120 {
121 #if 0
122 if (XtIsSubclass (widget, scrollbarWidgetClass))
123 {
124 xaw_update_scrollbar (instance, widget, val);
125 }
126 #endif
127 if (XtIsSubclass (widget, dialogWidgetClass))
128 {
129 Arg al[1];
130 int ac = 0;
131 XtSetArg (al[ac], XtNlabel, val->contents->value); ac++;
132 XtSetValues (widget, al, ac);
133 }
134 else if (XtIsSubclass (widget, commandWidgetClass))
135 {
136 Dimension bw = 0;
137 Arg al[3];
138
139 XtVaGetValues (widget, XtNborderWidth, &bw, 0);
140 if (bw == 0)
141 /* Don't let buttons end up with 0 borderwidth, that's ugly...
142 Yeah, all this should really be done through app-defaults files
143 or fallback resources, but that's a whole different can of worms
144 that I don't feel like opening right now. Making Athena widgets
145 not look like shit is just entirely too much work.
146 */
147 {
148 XtSetArg (al[0], XtNborderWidth, 1);
149 XtSetValues (widget, al, 1);
150 }
151
152 XtSetArg (al[0], XtNlabel, val->value);
153 XtSetArg (al[1], XtNsensitive, val->enabled);
154 /* Force centered button text. Se above. */
155 XtSetArg (al[2], XtNjustify, XtJustifyCenter);
156 XtSetValues (widget, al, 3);
157 XtRemoveAllCallbacks (widget, XtNcallback);
158 XtAddCallback (widget, XtNcallback, xaw_generic_callback, instance);
159 }
160 }
161
162 void
163 xaw_update_one_value (instance, widget, val)
164 widget_instance *instance;
165 Widget widget;
166 widget_value *val;
167 {
168 /* This function is not used by the scrollbars and those are the only
169 Athena widget implemented at the moment so do nothing. */
170 return;
171 }
172
173 void
174 xaw_destroy_instance (instance)
175 widget_instance *instance;
176 {
177 if (XtIsSubclass (instance->widget, dialogWidgetClass))
178 /* Need to destroy the Shell too. */
179 XtDestroyWidget (XtParent (instance->widget));
180 else
181 XtDestroyWidget (instance->widget);
182 }
183
184 void
185 xaw_popup_menu (widget)
186 Widget widget;
187 {
188 /* An Athena menubar has not been implemented. */
189 return;
190 }
191
192 void
193 xaw_pop_instance (instance, up)
194 widget_instance *instance;
195 Boolean up;
196 {
197 Widget widget = instance->widget;
198
199 if (up)
200 {
201 if (XtIsSubclass (widget, dialogWidgetClass))
202 {
203 /* For dialogs, we need to call XtPopup on the parent instead
204 of calling XtManageChild on the widget.
205 Also we need to hack the shell's WM_PROTOCOLS to get it to
206 understand what the close box is supposed to do!!
207 */
208 Display *dpy = XtDisplay (widget);
209 Widget shell = XtParent (widget);
210 Atom props [2];
211 int i = 0;
212 props [i++] = XInternAtom (dpy, "WM_DELETE_WINDOW", False);
213 XChangeProperty (dpy, XtWindow (shell),
214 XInternAtom (dpy, "WM_PROTOCOLS", False),
215 XA_ATOM, 32, PropModeAppend,
216 (unsigned char *) props, i);
217
218 /* Center the widget in its parent. Why isn't this kind of crap
219 done automatically? I thought toolkits were supposed to make
220 life easier?
221 */
222 {
223 int x, y, w, h;
224 Widget topmost = instance->parent;
225 w = shell->core.width;
226 h = shell->core.height;
227 while (topmost->core.parent && XtIsRealized (topmost->core.parent))
228 topmost = topmost->core.parent;
229 if (topmost->core.width < w) x = topmost->core.x;
230 else x = topmost->core.x + ((topmost->core.width - w) / 2);
231 if (topmost->core.height < h) y = topmost->core.y;
232 else y = topmost->core.y + ((topmost->core.height - h) / 2);
233 XtMoveWidget (shell, x, y);
234 }
235
236 /* Finally, pop it up. */
237 XtPopup (shell, XtGrabNonexclusive);
238 }
239 else
240 XtManageChild (widget);
241 }
242 else
243 {
244 if (XtIsSubclass (widget, dialogWidgetClass))
245 XtUnmanageChild (XtParent (widget));
246 else
247 XtUnmanageChild (widget);
248 }
249 }
250
251 \f
252 /* Dialog boxes */
253
254 static char overrideTrans[] =
255 "<Message>WM_PROTOCOLS: lwlib_delete_dialog()";
256 static void wm_delete_window();
257 static XtActionsRec xaw_actions [] = {
258 {"lwlib_delete_dialog", wm_delete_window}
259 };
260 static Boolean actions_initted = False;
261
262 static Widget
263 make_dialog (name, parent, pop_up_p, shell_title, icon_name, text_input_slot, radio_box, list, left_buttons, right_buttons)
264 char* name;
265 Widget parent;
266 Boolean pop_up_p;
267 char* shell_title;
268 char* icon_name;
269 Boolean text_input_slot;
270 Boolean radio_box;
271 Boolean list;
272 int left_buttons;
273 int right_buttons;
274 {
275 Arg av [20];
276 int ac = 0;
277 int i, bc;
278 char button_name [255];
279 Widget shell;
280 Widget dialog;
281 Widget button;
282 XtTranslations override;
283
284 if (! pop_up_p) abort (); /* not implemented */
285 if (text_input_slot) abort (); /* not implemented */
286 if (radio_box) abort (); /* not implemented */
287 if (list) abort (); /* not implemented */
288
289 if (! actions_initted)
290 {
291 XtAppContext app = XtWidgetToApplicationContext (parent);
292 XtAppAddActions (app, xaw_actions,
293 sizeof (xaw_actions) / sizeof (xaw_actions[0]));
294 actions_initted = True;
295 }
296
297 override = XtParseTranslationTable (overrideTrans);
298
299 ac = 0;
300 XtSetArg (av[ac], XtNtitle, shell_title); ac++;
301 XtSetArg (av[ac], XtNallowShellResize, True); ac++;
302 shell = XtCreatePopupShell ("dialog", transientShellWidgetClass,
303 parent, av, ac);
304 XtOverrideTranslations (shell, override);
305
306 ac = 0;
307 dialog = XtCreateManagedWidget (name, dialogWidgetClass, shell, av, ac);
308
309 bc = 0;
310 button = 0;
311 for (i = 0; i < left_buttons; i++)
312 {
313 ac = 0;
314 XtSetArg (av [ac], XtNfromHoriz, button); ac++;
315 XtSetArg (av [ac], XtNleft, XtChainLeft); ac++;
316 XtSetArg (av [ac], XtNright, XtChainLeft); ac++;
317 XtSetArg (av [ac], XtNtop, XtChainBottom); ac++;
318 XtSetArg (av [ac], XtNbottom, XtChainBottom); ac++;
319 XtSetArg (av [ac], XtNresizable, True); ac++;
320 sprintf (button_name, "button%d", ++bc);
321 button = XtCreateManagedWidget (button_name, commandWidgetClass,
322 dialog, av, ac);
323 }
324 if (right_buttons)
325 {
326 /* Create a separator
327
328 I want the separator to take up the slack between the buttons on
329 the right and the buttons on the left (that is I want the buttons
330 after the separator to be packed against the right edge of the
331 window) but I can't seem to make it do it.
332 */
333 ac = 0;
334 XtSetArg (av [ac], XtNfromHoriz, button); ac++;
335 /* XtSetArg (av [ac], XtNfromVert, XtNameToWidget (dialog, "label")); ac++; */
336 XtSetArg (av [ac], XtNleft, XtChainLeft); ac++;
337 XtSetArg (av [ac], XtNright, XtChainRight); ac++;
338 XtSetArg (av [ac], XtNtop, XtChainBottom); ac++;
339 XtSetArg (av [ac], XtNbottom, XtChainBottom); ac++;
340 XtSetArg (av [ac], XtNlabel, ""); ac++;
341 XtSetArg (av [ac], XtNwidth, 30); ac++; /* #### aaack!! */
342 XtSetArg (av [ac], XtNborderWidth, 0); ac++;
343 XtSetArg (av [ac], XtNshapeStyle, XmuShapeRectangle); ac++;
344 XtSetArg (av [ac], XtNresizable, False); ac++;
345 XtSetArg (av [ac], XtNsensitive, False); ac++;
346 button = XtCreateManagedWidget ("separator",
347 /* labelWidgetClass, */
348 /* This has to be Command to fake out
349 the Dialog widget... */
350 commandWidgetClass,
351 dialog, av, ac);
352 }
353 for (i = 0; i < right_buttons; i++)
354 {
355 ac = 0;
356 XtSetArg (av [ac], XtNfromHoriz, button); ac++;
357 XtSetArg (av [ac], XtNleft, XtChainRight); ac++;
358 XtSetArg (av [ac], XtNright, XtChainRight); ac++;
359 XtSetArg (av [ac], XtNtop, XtChainBottom); ac++;
360 XtSetArg (av [ac], XtNbottom, XtChainBottom); ac++;
361 XtSetArg (av [ac], XtNresizable, True); ac++;
362 sprintf (button_name, "button%d", ++bc);
363 button = XtCreateManagedWidget (button_name, commandWidgetClass,
364 dialog, av, ac);
365 }
366
367 return dialog;
368 }
369
370 Widget
371 xaw_create_dialog (instance)
372 widget_instance* instance;
373 {
374 char *name = instance->info->type;
375 Widget parent = instance->parent;
376 Widget widget;
377 Boolean pop_up_p = instance->pop_up_p;
378 char *shell_name = 0;
379 char *icon_name;
380 Boolean text_input_slot = False;
381 Boolean radio_box = False;
382 Boolean list = False;
383 int total_buttons;
384 int left_buttons = 0;
385 int right_buttons = 1;
386
387 switch (name [0]) {
388 case 'E': case 'e':
389 icon_name = "dbox-error";
390 shell_name = "Error";
391 break;
392
393 case 'I': case 'i':
394 icon_name = "dbox-info";
395 shell_name = "Information";
396 break;
397
398 case 'L': case 'l':
399 list = True;
400 icon_name = "dbox-question";
401 shell_name = "Prompt";
402 break;
403
404 case 'P': case 'p':
405 text_input_slot = True;
406 icon_name = "dbox-question";
407 shell_name = "Prompt";
408 break;
409
410 case 'Q': case 'q':
411 icon_name = "dbox-question";
412 shell_name = "Question";
413 break;
414 }
415
416 total_buttons = name [1] - '0';
417
418 if (name [3] == 'T' || name [3] == 't')
419 {
420 text_input_slot = False;
421 radio_box = True;
422 }
423 else if (name [3])
424 right_buttons = name [4] - '0';
425
426 left_buttons = total_buttons - right_buttons;
427
428 widget = make_dialog (name, parent, pop_up_p,
429 shell_name, icon_name, text_input_slot, radio_box,
430 list, left_buttons, right_buttons);
431
432 return widget;
433 }
434
435
436 static void
437 xaw_generic_callback (widget, closure, call_data)
438 Widget widget;
439 XtPointer closure;
440 XtPointer call_data;
441 {
442 widget_instance *instance = (widget_instance *) closure;
443 Widget instance_widget;
444 LWLIB_ID id;
445 XtPointer user_data;
446
447 lw_internal_update_other_instances (widget, closure, call_data);
448
449 if (! instance)
450 return;
451 if (widget->core.being_destroyed)
452 return;
453
454 instance_widget = instance->widget;
455 if (!instance_widget)
456 return;
457
458 id = instance->info->id;
459
460 #if 0
461 user_data = NULL;
462 XtVaGetValues (widget, XtNuserData, &user_data, 0);
463 #else
464 /* Damn! Athena doesn't give us a way to hang our own data on the
465 buttons, so we have to go find it... I guess this assumes that
466 all instances of a button have the same call data. */
467 {
468 widget_value *val = instance->info->val->contents;
469 char *name = XtName (widget);
470 while (val)
471 {
472 if (val->name && !strcmp (val->name, name))
473 break;
474 val = val->next;
475 }
476 if (! val) abort ();
477 user_data = val->call_data;
478 }
479 #endif
480
481 if (instance->info->selection_cb)
482 instance->info->selection_cb (widget, id, user_data);
483 }
484
485 static void
486 wm_delete_window (shell, closure, call_data)
487 Widget shell;
488 XtPointer closure;
489 XtPointer call_data;
490 {
491 LWLIB_ID id;
492 Widget *kids = 0;
493 Widget widget;
494 if (! XtIsSubclass (shell, shellWidgetClass))
495 abort ();
496 XtVaGetValues (shell, XtNchildren, &kids, 0);
497 if (!kids || !*kids)
498 abort ();
499 widget = kids [0];
500 if (! XtIsSubclass (widget, dialogWidgetClass))
501 abort ();
502 id = lw_get_widget_id (widget);
503 if (! id) abort ();
504
505 {
506 widget_info *info = lw_get_widget_info (id);
507 if (! info) abort ();
508 if (info->selection_cb)
509 info->selection_cb (widget, id, (XtPointer) -1);
510 }
511
512 lw_destroy_all_widgets (id);
513 }
514
515 \f
516 /* Scrollbars */
517
518 static void
519 xaw_scrollbar_scroll (widget, closure, call_data)
520 Widget widget;
521 XtPointer closure;
522 XtPointer call_data;
523 {
524 #if 0
525 widget_instance *instance = (widget_instance *) closure;
526 LWLIB_ID id;
527 scroll_event event_data;
528
529 if (!instance || widget->core.being_destroyed)
530 return;
531
532 id = instance->info->id;
533 event_data.slider_value = 0;
534 event_data.time = 0;
535
536 if ((int) call_data > 0)
537 event_data.action = SCROLLBAR_PAGE_DOWN;
538 else
539 event_data.action = SCROLLBAR_PAGE_UP;
540
541 if (instance->info->pre_activate_cb)
542 instance->info->pre_activate_cb (widget, id, (XtPointer) &event_data);
543 #endif
544 }
545
546 static void
547 xaw_scrollbar_jump (widget, closure, call_data)
548 Widget widget;
549 XtPointer closure;
550 XtPointer call_data;
551 {
552 #if 0
553 widget_instance *instance = (widget_instance *) closure;
554 LWLIB_ID id;
555 scroll_event event_data;
556 scrollbar_values *val =
557 (scrollbar_values *) instance->info->val->scrollbar_data;
558 float percent;
559
560 if (!instance || widget->core.being_destroyed)
561 return;
562
563 id = instance->info->id;
564
565 percent = * (float *) call_data;
566 event_data.slider_value =
567 (int) (percent * (float) (val->maximum - val->minimum)) + val->minimum;
568
569 event_data.time = 0;
570 event_data.action = SCROLLBAR_DRAG;
571
572 if (instance->info->pre_activate_cb)
573 instance->info->pre_activate_cb (widget, id, (XtPointer) &event_data);
574 #endif
575 }
576
577 static Widget
578 xaw_create_scrollbar (instance)
579 widget_instance *instance;
580 {
581 #if 0
582 Arg av[20];
583 int ac = 0;
584 Dimension width;
585 Widget scrollbar;
586
587 XtVaGetValues (instance->parent, XtNwidth, &width, 0);
588
589 XtSetArg (av[ac], XtNshowGrip, 0); ac++;
590 XtSetArg (av[ac], XtNresizeToPreferred, 1); ac++;
591 XtSetArg (av[ac], XtNallowResize, True); ac++;
592 XtSetArg (av[ac], XtNskipAdjust, True); ac++;
593 XtSetArg (av[ac], XtNwidth, width); ac++;
594 XtSetArg (av[ac], XtNmappedWhenManaged, True); ac++;
595
596 scrollbar =
597 XtCreateWidget (instance->info->name, scrollbarWidgetClass,
598 instance->parent, av, ac);
599
600 /* We have to force the border width to be 0 otherwise the
601 geometry manager likes to start looping for awhile... */
602 XtVaSetValues (scrollbar, XtNborderWidth, 0, 0);
603
604 XtRemoveAllCallbacks (scrollbar, "jumpProc");
605 XtRemoveAllCallbacks (scrollbar, "scrollProc");
606
607 XtAddCallback (scrollbar, "jumpProc", xaw_scrollbar_jump,
608 (XtPointer) instance);
609 XtAddCallback (scrollbar, "scrollProc", xaw_scrollbar_scroll,
610 (XtPointer) instance);
611
612 return scrollbar;
613 #endif
614 }
615
616 widget_creation_entry
617 xaw_creation_table [] =
618 {
619 {"scrollbar", xaw_create_scrollbar},
620 {NULL, NULL}
621 };