Let expose requests pay proper attenton to widget
[xboard.git] / xoptions.c
1 /*
2  * xoptions.c -- Move list window, part of X front end for XBoard
3  *
4  * Copyright 2000, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
5  * ------------------------------------------------------------------------
6  *
7  * GNU XBoard is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or (at
10  * your option) any later version.
11  *
12  * GNU XBoard is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see http://www.gnu.org/licenses/.  *
19  *
20  *------------------------------------------------------------------------
21  ** See the file ChangeLog for a revision history.  */
22
23 // [HGM] this file is the counterpart of woptions.c, containing xboard popup menus
24 // similar to those of WinBoard, to set the most common options interactively.
25
26 #include "config.h"
27
28 #include <stdio.h>
29 #include <ctype.h>
30 #include <errno.h>
31 #include <sys/types.h>
32
33 #if STDC_HEADERS
34 # include <stdlib.h>
35 # include <string.h>
36 #else /* not STDC_HEADERS */
37 extern char *getenv();
38 # if HAVE_STRING_H
39 #  include <string.h>
40 # else /* not HAVE_STRING_H */
41 #  include <strings.h>
42 # endif /* not HAVE_STRING_H */
43 #endif /* not STDC_HEADERS */
44
45 #if HAVE_UNISTD_H
46 # include <unistd.h>
47 #endif
48 #include <stdint.h>
49
50 #include <X11/Intrinsic.h>
51 #include <X11/StringDefs.h>
52 #include <X11/Shell.h>
53 #include <X11/Xatom.h>
54 #include <X11/Xaw/Dialog.h>
55 #include <X11/Xaw/Form.h>
56 #include <X11/Xaw/List.h>
57 #include <X11/Xaw/Label.h>
58 #include <X11/Xaw/SimpleMenu.h>
59 #include <X11/Xaw/SmeBSB.h>
60 #include <X11/Xaw/SmeLine.h>
61 #include <X11/Xaw/Box.h>
62 #include <X11/Xaw/Paned.h>
63 #include <X11/Xaw/MenuButton.h>
64 #include <X11/cursorfont.h>
65 #include <X11/Xaw/Text.h>
66 #include <X11/Xaw/AsciiText.h>
67 #include <X11/Xaw/Viewport.h>
68 #include <X11/Xaw/Toggle.h>
69 #include <X11/Xaw/Scrollbar.h>
70
71 #include <cairo/cairo.h>
72 #include <cairo/cairo-xlib.h>
73
74 #include "common.h"
75 #include "backend.h"
76 #include "xboard.h"
77 #include "dialogs.h"
78 #include "menus.h"
79 #include "gettext.h"
80
81 #ifdef ENABLE_NLS
82 # define  _(s) gettext (s)
83 # define N_(s) gettext_noop (s)
84 #else
85 # define  _(s) (s)
86 # define N_(s)  s
87 #endif
88
89 // [HGM] the following code for makng menu popups was cloned from the FileNamePopUp routines
90
91 static Widget previous = NULL;
92 static Option *currentOption;
93
94 void
95 UnCaret ()
96 {
97     Arg args[2];
98
99     if(previous) {
100         XtSetArg(args[0], XtNdisplayCaret, False);
101         XtSetValues(previous, args, 1);
102     }
103     previous = NULL;
104 }
105
106 void
107 SetFocus (Widget w, XtPointer data, XEvent *event, Boolean *b)
108 {
109     Arg args[2];
110     char *s;
111     int j;
112
113     UnCaret();
114     XtSetArg(args[0], XtNstring, &s);
115     XtGetValues(w, args, 1);
116     j = 1;
117     XtSetArg(args[0], XtNdisplayCaret, True);
118     if(!strchr(s, '\n') && strlen(s) < 80) XtSetArg(args[1], XtNinsertPosition, strlen(s)), j++;
119     XtSetValues(w, args, j);
120     XtSetKeyboardFocus((Widget) data, w);
121     previous = w;
122 }
123
124 void
125 BoardFocus ()
126 {
127     XtSetKeyboardFocus(shellWidget, formWidget);
128 }
129
130 //--------------------------- Engine-specific options menu ----------------------------------
131
132 int dialogError;
133 Option *dialogOptions[NrOfDialogs];
134
135 static Arg layoutArgs[] = {
136     { XtNborderWidth, 0 },
137     { XtNdefaultDistance, 0 },
138 };
139
140 static Arg formArgs[] = {
141     { XtNborderWidth, 0 },
142     { XtNresizable, (XtArgVal) True },
143 };
144
145 void
146 GetWidgetText (Option *opt, char **buf)
147 {
148     Arg arg;
149     XtSetArg(arg, XtNstring, buf);
150     XtGetValues(opt->handle, &arg, 1);
151 }
152
153 void
154 SetWidgetText (Option *opt, char *buf, int n)
155 {
156     Arg arg;
157     XtSetArg(arg, XtNstring, buf);
158     XtSetValues(opt->handle, &arg, 1);
159     if(n >= 0) SetFocus(opt->handle, shells[n], NULL, False);
160 }
161
162 void
163 GetWidgetState (Option *opt, int *state)
164 {
165     Arg arg;
166     XtSetArg(arg, XtNstate, state);
167     XtGetValues(opt->handle, &arg, 1);
168 }
169
170 void
171 SetWidgetState (Option *opt, int state)
172 {
173     Arg arg;
174     XtSetArg(arg, XtNstate, state);
175     XtSetValues(opt->handle, &arg, 1);
176 }
177
178 void
179 SetWidgetLabel (Option *opt, char *buf)
180 {
181     Arg arg;
182     XtSetArg(arg, XtNlabel, (XtArgVal) buf);
183     XtSetValues(opt->handle, &arg, 1);
184 }
185
186 void
187 SetDialogTitle (DialogClass dlg, char *title)
188 {
189     Arg args[16];
190     XtSetArg(args[0], XtNtitle, title);
191     XtSetValues(shells[dlg], args, 1);
192 }
193
194 void
195 LoadListBox (Option *opt, char *emptyText)
196 {
197     static char *dummyList[2];
198     dummyList[0] = emptyText; // empty listboxes tend to crash X, so display user-supplied warning string instead
199     XawListChange(opt->handle, *(char*)opt->target ? opt->target : dummyList, 0, 0, True);
200 }
201
202 int
203 ReadScroll (Option *opt, float *top, float *bottom)
204 {   // retreives fractions of top and bottom of thumb
205     Arg args[16];
206     Widget w = XtParent(opt->handle); // viewport
207     Widget v = XtNameToWidget(w, "vertical");
208     int j=0;
209     float h;
210     if(!v) return FALSE; // no scroll bar
211     XtSetArg(args[j], XtNshown, &h); j++;
212     XtSetArg(args[j], XtNtopOfThumb, top); j++;
213     XtGetValues(v, args, j);
214     *bottom = *top + h;
215     return TRUE;
216 }
217
218 void
219 SetScroll (Option *opt, float f)
220 {   // sets top of thumb to given fraction
221     static char *params[3] = { "", "Continuous", "Proportional" };
222     static XEvent event;
223     Widget w = XtParent(opt->handle); // viewport
224     Widget v = XtNameToWidget(w, "vertical");
225     if(!v) return; // no scroll bar
226     XtCallActionProc(v, "StartScroll", &event, params+1, 1);
227     XawScrollbarSetThumb(v, f, -1.0);
228     XtCallActionProc(v, "NotifyThumb", &event, params, 0);
229 //    XtCallActionProc(v, "NotifyScroll", &event, params+2, 1);
230     XtCallActionProc(v, "EndScroll", &event, params, 0);
231 }
232
233 void
234 HighlightListBoxItem (Option *opt, int nr)
235 {
236     XawListHighlight(opt->handle, nr);
237 }
238
239 void
240 HighlightWithScroll (Option *opt, int sel, int max)
241 {
242     float top, bottom, f, g;
243     HighlightListBoxItem(opt, sel);
244     if(!ReadScroll(opt, &top, &bottom)) return; // no scroll bar
245     bottom = bottom*max - 1.f;
246     f = g = top;
247     top *= max;
248     if(sel > (top + 3*bottom)/4) f = (sel - 0.75f*(bottom-top))/max; else
249     if(sel < (3*top + bottom)/4) f = (sel - 0.25f*(bottom-top))/max;
250     if(f < 0.f) f = 0.; if(f + 1.f/max > 1.f) f = 1. - 1./max;
251     if(f != g) SetScroll(opt, f);
252 }
253
254 int
255 SelectedListBoxItem (Option *opt)
256 {
257     XawListReturnStruct *rs;
258     rs = XawListShowCurrent(opt->handle);
259     return rs->list_index;
260 }
261
262 void
263 FocusOnWidget (Option *opt, DialogClass dlg)
264 {
265     UnCaret();
266     XtSetKeyboardFocus(shells[dlg], opt->handle);
267 }
268
269 void
270 SetIconName (DialogClass dlg, char *name)
271 {
272         Arg args[16];
273         int j = 0;
274         XtSetArg(args[j], XtNiconName, (XtArgVal) name);  j++;
275 //      XtSetArg(args[j], XtNtitle, (XtArgVal) name);  j++;
276         XtSetValues(shells[dlg], args, j);
277 }
278
279 static void
280 CheckCallback (Widget ww, XtPointer client_data, XEvent *event, Boolean *b)
281 {
282     int s, data = (intptr_t) client_data;
283     Option *opt = dialogOptions[data >> 8] + (data & 255);
284
285     if(opt->type == Label) { ((ButtonCallback*) opt->target)(data&255); return; }
286
287     GetWidgetState(opt, &s);
288     SetWidgetState(opt, !s);
289 }
290
291 static void
292 SpinCallback (Widget w, XtPointer client_data, XtPointer call_data)
293 {
294     String name, val;
295     Arg args[16];
296     char buf[MSG_SIZ], *p;
297     int j = 0; // Initialisation is necessary because the text value may be non-numeric causing the scanf conversion to fail
298     int data = (intptr_t) client_data;
299     Option *opt = dialogOptions[data >> 8] + (data & 255);
300
301     XtSetArg(args[0], XtNlabel, &name);
302     XtGetValues(w, args, 1);
303
304     GetWidgetText(opt, &val);
305     sscanf(val, "%d", &j);
306     if (strcmp(name, _("browse")) == 0) {
307         char *q=val, *r;
308         for(r = ""; *q; q++) if(*q == '.') r = q; else if(*q == '/') r = ""; // last dot after last slash
309         if(!strcmp(r, "") && !currentCps && opt->type == FileName && opt->textValue)
310                 r = opt->textValue;
311         Browse(data>>8, opt->name, NULL, r, opt->type == PathName, "", &p, (FILE**) opt);
312         return;
313     } else
314     if (strcmp(name, "+") == 0) {
315         if(++j > opt->max) return;
316     } else
317     if (strcmp(name, "-") == 0) {
318         if(--j < opt->min) return;
319     } else return;
320     snprintf(buf, MSG_SIZ,  "%d", j);
321     SetWidgetText(opt, buf, TransientDlg);
322 }
323
324 static void
325 ComboSelect (Widget w, caddr_t addr, caddr_t index) // callback for all combo items
326 {
327     Arg args[16];
328     Option *opt = dialogOptions[((intptr_t)addr)>>24]; // applicable option list
329     int i = ((intptr_t)addr)>>16 & 255; // option number
330     int j = 0xFFFF & (intptr_t) addr;
331
332     values[i] = j; // store selected value in Option struct, for retrieval at OK
333
334     if(opt[i].type == Graph || opt[i].min & COMBO_CALLBACK && (!currentCps || shellUp[BrowserDlg])) {
335         ((ButtonCallback*) opt[i].target)(i);
336         return;
337     }
338
339     if(opt[i].min & NO_GETTEXT)
340       XtSetArg(args[0], XtNlabel, ((char**)opt[i].choice)[j]);
341     else
342       XtSetArg(args[0], XtNlabel, _(((char**)opt[i].choice)[j]));
343
344     XtSetValues(opt[i].handle, args, 1);
345 }
346
347 Widget
348 CreateMenuItem (Widget menu, char *msg, XtCallbackProc CB, int n)
349 {
350     int j=0;
351     Widget entry;
352     Arg args[16];
353     XtSetArg(args[j], XtNleftMargin, 20);   j++;
354     XtSetArg(args[j], XtNrightMargin, 20);  j++;
355     if(!strcmp(msg, "----")) { XtCreateManagedWidget(msg, smeLineObjectClass, menu, args, j); return NULL; }
356     XtSetArg(args[j], XtNlabel, msg);
357     entry = XtCreateManagedWidget("item", smeBSBObjectClass, menu, args, j+1);
358     XtAddCallback(entry, XtNcallback, CB, (caddr_t)(intptr_t) n);
359     return entry;
360 }
361
362 static Widget
363 CreateComboPopup (Widget parent, Option *opt, int n, int fromList, int def)
364 {   // fromList determines if the item texts are taken from a list of strings, or from a menu table
365     int i;
366     Widget menu, entry;
367     Arg arg;
368     MenuItem *mb = (MenuItem *) opt->choice;
369     char **list = (char **) opt->choice;
370
371     if(list[0] == NULL) return NULL; // avoid empty menus, as they cause crash
372     menu = XtCreatePopupShell(opt->name, simpleMenuWidgetClass, parent, NULL, 0);
373
374     for (i=0; 1; i++) 
375       {
376         char *msg = fromList ? list[i] : mb[i].string;
377         if(!msg) break;
378         entry = CreateMenuItem(menu, opt->min & NO_GETTEXT ? msg : _(msg), (XtCallbackProc) ComboSelect, (n<<16)+i);
379         if(!fromList) mb[i].handle = (void*) entry; // save item ID, for enabling / checkmarking
380         if(i==def) {
381             XtSetArg(arg, XtNpopupOnEntry, entry);
382             XtSetValues(menu, &arg, 1);
383         }
384       }
385       return menu;
386 }
387
388 char moveTypeInTranslations[] =
389     "<Key>Return: TypeInProc(1) \n"
390     "<Key>Escape: TypeInProc(0) \n";
391 extern char filterTranslations[];
392 extern char gameListTranslations[];
393 extern char memoTranslations[];
394
395
396 char *translationTable[] = { // beware: order is essential!
397    historyTranslations, commentTranslations, moveTypeInTranslations, ICSInputTranslations,
398    filterTranslations, gameListTranslations, memoTranslations
399 };
400
401 void
402 AddHandler (Option *opt, int nr)
403 {
404     XtOverrideTranslations(opt->handle, XtParseTranslationTable(translationTable[nr]));
405 }
406
407 //----------------------------Generic dialog --------------------------------------------
408
409 // cloned from Engine Settings dialog (and later merged with it)
410
411 Widget shells[NrOfDialogs];
412 DialogClass parents[NrOfDialogs];
413 WindowPlacement *wp[NrOfDialogs] = { // Beware! Order must correspond to DialogClass enum
414     NULL, &wpComment, &wpTags, NULL, NULL, NULL, NULL, &wpMoveHistory, &wpGameList, &wpEngineOutput, &wpEvalGraph,
415     NULL, NULL, NULL, NULL, /*&wpMain*/ NULL
416 };
417
418 int
419 DialogExists (DialogClass n)
420 {   // accessor for use in back-end
421     return shells[n] != NULL;
422 }
423
424 void
425 RaiseWindow (DialogClass dlg)
426 {
427     static XEvent xev;
428     Window root = RootWindow(xDisplay, DefaultScreen(xDisplay));
429     Atom atom = XInternAtom (xDisplay, "_NET_ACTIVE_WINDOW", False);
430
431     xev.xclient.type = ClientMessage;
432     xev.xclient.serial = 0;
433     xev.xclient.send_event = True;
434     xev.xclient.display = xDisplay;
435     xev.xclient.window = XtWindow(shells[dlg]);
436     xev.xclient.message_type = atom;
437     xev.xclient.format = 32;
438     xev.xclient.data.l[0] = 1;
439     xev.xclient.data.l[1] = CurrentTime;
440
441     XSendEvent (xDisplay,
442           root, False,
443           SubstructureRedirectMask | SubstructureNotifyMask,
444           &xev);
445
446     XFlush(xDisplay); 
447     XSync(xDisplay, False);
448 }
449
450 int
451 PopDown (DialogClass n)
452 {   // pops down any dialog created by GenericPopUp (or returns False if it wasn't up), unmarks any associated marked menu
453     int j;
454     Arg args[10];
455     Dimension windowH, windowW; Position windowX, windowY;
456     if (!shellUp[n] || !shells[n]) return 0;
457     if(n && wp[n]) { // remember position
458         j = 0;
459         XtSetArg(args[j], XtNx, &windowX); j++;
460         XtSetArg(args[j], XtNy, &windowY); j++;
461         XtSetArg(args[j], XtNheight, &windowH); j++;
462         XtSetArg(args[j], XtNwidth, &windowW); j++;
463         XtGetValues(shells[n], args, j);
464         wp[n]->x = windowX;
465         wp[n]->x = windowY;
466         wp[n]->width  = windowW;
467         wp[n]->height = windowH;
468     }
469     previous = NULL;
470     XtPopdown(shells[n]);
471     shellUp[n]--; // count rather than clear
472     if(n == 0 || n >= PromoDlg) XtDestroyWidget(shells[n]), shells[n] = NULL;
473     if(marked[n]) {
474         MarkMenuItem(marked[n], False);
475         marked[n] = NULL;
476     }
477     if(!n && n != BrowserDlg) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
478     currentOption = dialogOptions[TransientDlg]; // just in case a transient dialog was up (to allow its check and combo callbacks to work)
479     RaiseWindow(parents[n]);
480     if(parents[n] == BoardWindow) XtSetKeyboardFocus(shellWidget, formWidget);
481     return 1;
482 }
483
484 void
485 GenericPopDown (Widget w, XEvent *event, String *prms, Cardinal *nprms)
486 {   // to cause popdown through a translation (Delete Window button!)
487     int dlg = atoi(prms[0]);
488     Widget sh = shells[dlg];
489     if(shellUp[BrowserDlg] && dlg != BrowserDlg || dialogError) return; // prevent closing dialog when it has an open file-browse daughter
490     shells[dlg] = w;
491     PopDown(dlg);
492     shells[dlg] = sh; // restore
493 }
494
495 int
496 AppendText (Option *opt, char *s)
497 {
498     XawTextBlock t;
499     char *v;
500     int len;
501     GetWidgetText(opt, &v);
502     len = strlen(v);
503     t.ptr = s; t.firstPos = 0; t.length = strlen(s); t.format = XawFmt8Bit;
504     XawTextReplace(opt->handle, len, len, &t);
505     return len;
506 }
507
508 void
509 SetColor (char *colorName, Option *box)
510 {       // sets the color of a widget
511         Arg args[5];
512         Pixel buttonColor;
513         XrmValue vFrom, vTo;
514         if (!appData.monoMode) {
515             vFrom.addr = (caddr_t) colorName;
516             vFrom.size = strlen(colorName);
517             XtConvert(shellWidget, XtRString, &vFrom, XtRPixel, &vTo);
518             if (vTo.addr == NULL) {
519                 buttonColor = (Pixel) -1;
520             } else {
521                 buttonColor = *(Pixel *) vTo.addr;
522             }
523         } else buttonColor = timerBackgroundPixel;
524         XtSetArg(args[0], XtNbackground, buttonColor);;
525         XtSetValues(box->handle, args, 1);
526 }
527
528 void
529 ColorChanged (Widget w, XtPointer data, XEvent *event, Boolean *b)
530 {   // for detecting a typed change in color
531     char buf[10];
532     if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
533         RefreshColor((int)(intptr_t) data, 0);
534 }
535
536 static void
537 GraphEventProc(Widget widget, caddr_t client_data, XEvent *event)
538 {   // handle expose and mouse events on Graph widget
539     Dimension w, h;
540     Arg args[16];
541     int j, button=10, f=1, sizing=0;
542     Option *opt, *graph = (Option *) client_data;
543     PointerCallback *userHandler = graph->target;
544     cairo_t *cr;
545
546     if (!XtIsRealized(widget)) return;
547
548     switch(event->type) {
549         case Expose: // make handling of expose events generic, just copying from memory buffer (->choice) to display (->textValue)
550             /* Get window size */
551             j = 0;
552             XtSetArg(args[j], XtNwidth, &w); j++;
553             XtSetArg(args[j], XtNheight, &h); j++;
554             XtGetValues(widget, args, j);
555             sizing = ((w != graph->max || h != graph->value) && ((XExposeEvent*)event)->count >= 0);
556             graph->max = w; graph->value = h;
557             if(sizing && ((XExposeEvent*)event)->count > 0) { graph->max = 0; return; } // don't bother if further exposure is pending during resize
558             if(!graph->textValue || sizing) { // create surfaces of new size for display widget
559                 if(graph->textValue) cairo_surface_destroy((cairo_surface_t *)graph->textValue);
560                 graph->textValue = (char*) cairo_xlib_surface_create(xDisplay, XtWindow(widget), DefaultVisual(xDisplay, 0), w, h);
561             }
562             if(sizing) { // the memory buffer was already created in GenericPopup(),
563                          // to give drawing routines opportunity to use it befor first expose event
564                          // (which are only processed when main gets to the event loop, so after all init!)
565                          // so only change when size is no longer good
566                 if(graph->choice) cairo_surface_destroy((cairo_surface_t *) graph->choice);
567                 graph->choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, w, h);
568             }
569             cr = cairo_create((cairo_surface_t *) graph->textValue);
570             cairo_set_source_surface(cr, (cairo_surface_t *) graph->choice, 0, 0);
571             cairo_rectangle(cr, ((XExposeEvent*)event)->x, ((XExposeEvent*)event)->y, ((XExposeEvent*)event)->width, ((XExposeEvent*)event)->height);
572             cairo_fill(cr);
573             cairo_destroy(cr);
574             return;
575         case MotionNotify:
576             f = 0;
577             w = ((XButtonEvent*)event)->x; h = ((XButtonEvent*)event)->y;
578             break;
579         case ButtonRelease:
580             f = -1; // release indicated by negative button numbers
581         case ButtonPress:
582             w = ((XButtonEvent*)event)->x; h = ((XButtonEvent*)event)->y;
583             switch(((XButtonEvent*)event)->button) {
584                 case Button1: button = 1; break;
585                 case Button2: button = 2; break;
586                 case Button3: button = 3; break;
587                 case Button4: button = 4; break;
588                 case Button5: button = 5; break;
589             }
590     }
591     button *= f;
592     opt = userHandler(button, w, h);
593     if(opt) { // user callback specifies a context menu; pop it up
594         XUngrabPointer(xDisplay, CurrentTime);
595         XtCallActionProc(widget, "XawPositionSimpleMenu", event, &(opt->name), 1);
596         XtPopupSpringLoaded(opt->handle);
597     }
598     XSync(xDisplay, False);
599 }
600
601 void
602 GraphExpose (Option *opt, int x, int y, int w, int h)
603 {
604   XExposeEvent e;
605   if(!opt->handle) return;
606   e.x = x; e.y = y; e.width = w; e.height = h; e.count = -1; e.type = Expose; // count = -1: kludge to suppress sizing
607   GraphEventProc(opt->handle, (caddr_t) opt, (XEvent *) &e); // fake expose event
608 }
609
610 static void
611 GenericCallback (Widget w, XtPointer client_data, XtPointer call_data)
612 {   // all Buttons in a dialog (including OK, cancel) invoke this
613     String name;
614     Arg args[16];
615     char buf[MSG_SIZ];
616     int data = (intptr_t) client_data;
617     DialogClass dlg;
618     Widget sh = XtParent(XtParent(XtParent(w))), oldSh;
619
620     currentOption = dialogOptions[dlg=data>>16]; data &= 0xFFFF;
621     oldSh = shells[dlg]; shells[dlg] = sh; // bow to reality
622     if (data == 30000) { // cancel
623         PopDown(dlg); 
624     } else
625     if (data == 30001) { // save buttons imply OK
626         if(GenericReadout(currentOption, -1)) PopDown(dlg); // calls OK-proc after full readout, but no popdown if it returns false
627     } else
628
629     if(currentCps && dlg != BrowserDlg) {
630         XtSetArg(args[0], XtNlabel, &name);
631         XtGetValues(w, args, 1);
632         if(currentOption[data].type == SaveButton) GenericReadout(currentOption, -1);
633         snprintf(buf, MSG_SIZ,  "option %s\n", name);
634         SendToProgram(buf, currentCps);
635     } else ((ButtonCallback*) currentOption[data].target)(data);
636
637     shells[dlg] = oldSh; // in case of multiple instances, restore previous (as this one could be popped down now)
638 }
639
640 void
641 TabProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
642 {   // for transfering focus to the next text-edit
643     Option *opt;
644     for(opt = currentOption; opt->type != EndMark; opt++) {
645         if(opt->handle == w) {
646             while(++opt) {
647                 if(opt->type == EndMark) opt = currentOption; // wrap
648                 if(opt->handle == w) return; // full circle
649                 if(opt->type == TextBox || opt->type == Spin || opt->type == Fractional || opt->type == FileName || opt->type == PathName) {
650                     SetFocus(opt->handle, XtParent(XtParent(XtParent(w))), NULL, 0);
651                     return;
652                 }
653             }
654         }
655     }
656 }
657
658 void
659 WheelProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
660 {   // for scrolling a widget seen through a viewport with the mouse wheel (ListBox!)
661     int j=0, n = atoi(prms[0]);
662     static char *params[3] = { "", "Continuous", "Proportional" };
663     Arg args[16];
664     float h, top;
665     Widget v;
666     if(!n) { // transient dialogs also use this for list-selection callback
667         n = prms[1][0]-'0';
668         Option *opt=dialogOptions[prms[2][0]-'A'] + n;
669         if(opt->textValue) ((ListBoxCallback*) opt->textValue)(n, SelectedListBoxItem(opt));
670         return;
671     }
672     v = XtNameToWidget(XtParent(w), "vertical");
673     if(!v) return;
674     XtSetArg(args[j], XtNshown, &h); j++;
675     XtSetArg(args[j], XtNtopOfThumb, &top); j++;
676     XtGetValues(v, args, j);
677     top += 0.1f*h*n; if(top < 0.f) top = 0.;
678     XtCallActionProc(v, "StartScroll", event, params+1, 1);
679     XawScrollbarSetThumb(v, top, -1.0);
680     XtCallActionProc(v, "NotifyThumb", event, params, 0);
681 //    XtCallActionProc(w, "NotifyScroll", event, params+2, 1);
682     XtCallActionProc(v, "EndScroll", event, params, 0);
683 }
684
685 static char *oneLiner  =
686    "<Key>Return: redraw-display() \n \
687     <Key>Tab: TabProc() \n ";
688 static char scrollTranslations[] =
689    "<Btn1Up>(2): WheelProc(0 0 A) \n \
690     <Btn4Down>: WheelProc(-1) \n \
691     <Btn5Down>: WheelProc(1) \n ";
692
693 static void
694 SqueezeIntoBox (Option *opt, int nr, int width)
695 {   // size buttons in bar to fit, clipping button names where necessary
696     int i, wtot = 0;
697     Dimension widths[20], oldWidths[20];
698     Arg arg;
699     for(i=1; i<nr; i++) {
700         XtSetArg(arg, XtNwidth, &widths[i]);
701         XtGetValues(opt[i].handle, &arg, 1);
702         wtot +=  oldWidths[i] = widths[i];
703     }
704     opt->min = wtot;
705     if(width <= 0) return;
706     while(wtot > width) {
707         int wmax=0, imax=0;
708         for(i=1; i<nr; i++) if(widths[i] > wmax) wmax = widths[imax=i];
709         widths[imax]--;
710         wtot--;
711     }
712     for(i=1; i<nr; i++) if(widths[i] != oldWidths[i]) {
713         XtSetArg(arg, XtNwidth, widths[i]);
714         XtSetValues(opt[i].handle, &arg, 1);
715     }
716     opt->min = wtot;
717 }
718
719 int
720 SetPositionAndSize (Arg *args, Widget leftNeigbor, Widget topNeigbor, int b, int w, int h, int chaining)
721 {   // sizing and positioning most widgets have in common
722     int j = 0;
723     // first position the widget w.r.t. earlier ones
724     if(chaining & 1) { // same row: position w.r.t. last (on current row) and lastrow
725         XtSetArg(args[j], XtNfromVert, topNeigbor); j++;
726         XtSetArg(args[j], XtNfromHoriz, leftNeigbor); j++;
727     } else // otherwise it goes at left margin (which is default), below the previous element
728         XtSetArg(args[j], XtNfromVert, leftNeigbor),  j++;
729     // arrange chaining ('2'-bit indicates top and bottom chain the same)
730     if((chaining & 14) == 6) XtSetArg(args[j], XtNtop,    XtChainBottom), j++;
731     if((chaining & 14) == 10) XtSetArg(args[j], XtNbottom, XtChainTop ), j++;
732     if(chaining & 4) XtSetArg(args[j], XtNbottom, XtChainBottom ), j++;
733     if(chaining & 8) XtSetArg(args[j], XtNtop,    XtChainTop), j++;
734     if(chaining & 0x10) XtSetArg(args[j], XtNright, XtChainRight), j++;
735     if(chaining & 0x20) XtSetArg(args[j], XtNleft,  XtChainRight), j++;
736     if(chaining & 0x40) XtSetArg(args[j], XtNright, XtChainLeft ), j++;
737     if(chaining & 0x80) XtSetArg(args[j], XtNleft,  XtChainLeft ), j++;
738     // set size (if given)
739     if(w) XtSetArg(args[j], XtNwidth, w), j++;
740     if(h) XtSetArg(args[j], XtNheight, h),  j++;
741     // color
742     if(!appData.monoMode) {
743         if(!b && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
744         if(b == 3 && appData.buttonColor[0]) XtSetArg(args[j], XtNbackground, buttonColor),  j++;
745     }
746     if(b == 3) b = 1;
747     // border
748     XtSetArg(args[j], XtNborderWidth, b);  j++;
749     return j;
750 }
751
752 int
753 GenericPopUp (Option *option, char *title, DialogClass dlgNr, DialogClass parent, int modal, int top)
754 {
755     Arg args[24];
756     Widget popup, layout, dialog=NULL, edit=NULL, form,  last, b_ok, b_cancel, previousPane = NULL, textField = NULL, oldForm, oldLastRow, oldForeLast;
757     Window root, child;
758     int x, y, i, j, height=999, width=1, h, c, w, shrink=FALSE, stack = 0, box, chain;
759     int win_x, win_y, maxWidth, maxTextWidth;
760     unsigned int mask;
761     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
762     static char pane[6] = "paneX";
763     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL, browse = NULL;
764     Dimension bWidth = 50;
765
766     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
767     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
768         XtPopup(shells[dlgNr], XtGrabNone);
769         shellUp[dlgNr] = True;
770         return 0;
771     }
772
773     dialogOptions[dlgNr] = option; // make available to callback
774     // post currentOption globally, so Spin and Combo callbacks can already use it
775     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
776     currentOption = option;
777
778     if(engineDlg) { // Settings popup for engine: format through heuristic
779         int n = currentCps->nrOptions;
780         if(!n) { DisplayNote(_("Engine has no options")); currentCps = NULL; return 0; }
781         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
782         height = n / width + 1;
783         if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
784         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
785     }
786      i = 0;
787     XtSetArg(args[i], XtNresizable, True); i++;
788     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
789
790     if(dlgNr == BoardWindow) popup = shellWidget; else
791     popup = shells[dlgNr] =
792       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
793                                                            shells[parent], args, i);
794
795     layout =
796       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
797                             layoutArgs, XtNumber(layoutArgs));
798     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[0], XtNbackground, dialogColor);
799     XtSetValues(layout, args, 1);
800
801   for(c=0; c<width; c++) {
802     pane[4] = 'A'+c;
803     form =
804       XtCreateManagedWidget(pane, formWidgetClass, layout,
805                             formArgs, XtNumber(formArgs));
806     j=0;
807     XtSetArg(args[j], stack ? XtNfromVert : XtNfromHoriz, previousPane);  j++;
808     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
809     XtSetValues(form, args, j);
810     lastrow = forelast = NULL;
811     previousPane = form;
812
813     last = widest = NULL; anchor = lastrow;
814     for(h=0; h<height || c == width-1; h++) {
815         i = h + c*height;
816         if(option[i].type == EndMark) break;
817         if(option[i].type == -1) continue;
818         lastrow = forelast;
819         forelast = last;
820         switch(option[i].type) {
821           case Fractional:
822             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
823             option[i].value = *(float*)option[i].target;
824             goto tBox;
825           case Spin:
826             if(!engineDlg) option[i].value = *(int*)option[i].target;
827             snprintf(def, MSG_SIZ,  "%d", option[i].value);
828           case TextBox:
829           case FileName:
830           case PathName:
831           tBox:
832             if(option[i].name[0]) { // prefixed by label with option name
833                 j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
834                                        0 /* w */, textHeight /* h */, 0xC0 /* chain to left edge */);
835                 XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
836                 XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
837                 texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
838             } else texts[h] = dialog = NULL; // kludge to position from left margin
839             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
840             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
841             j = SetPositionAndSize(args, dialog, last, 1 /* border */,
842                                    w /* w */, option[i].type == TextBox ? option[i].value : 0 /* h */, 0x91 /* chain full width */);
843             if(option[i].type == TextBox) { // decorations for multi-line text-edits
844                 if(option[i].min & T_VSCRL) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
845                 if(option[i].min & T_HSCRL) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
846                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
847                 if(option[i].min & T_WRAP)  { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
848                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
849                     if(!option[i].value) {    XtSetArg(args[j], XtNbottom, XtChainTop); j++;
850                                               XtSetValues(dialog, args+j-2, 2);
851                     }
852                 }
853             } else shrink = TRUE;
854             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
855             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
856             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
857             XtSetArg(args[j], XtNresizable, True);  j++;
858             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
859             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def : 
860                                 engineDlg ? option[i].textValue : *(char**)option[i].target);  j++;
861             edit = last;
862             option[i].handle = (void*)
863                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
864             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup); // gets focus on mouse click
865             if(option[i].min == 0 || option[i].type != TextBox)
866                 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner)); // standard handler for <Enter> and <Tab>
867
868             if(option[i].type == TextBox || option[i].type == Fractional) break;
869
870             // add increment and decrement controls for spin
871             if(option[i].type == FileName || option[i].type == PathName) {
872                 msg = _("browse"); w = 0; // automatically scale to width of text
873                 j = textHeight ? textHeight : 0;
874             } else {
875                 w = 20; msg = "+"; j = textHeight/2; // spin button
876             }
877             j = SetPositionAndSize(args, last, edit, 3 /* border */,
878                                    w /* w */, j /* h */, 0x31 /* chain to right edge */);
879             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
880             XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
881             if(w == 0) browse = edit;
882
883             if(option[i].type != Spin) break;
884
885             j = SetPositionAndSize(args, last, edit, 3 /* border */,
886                                    20 /* w */, textHeight/2 /* h */, 0x31 /* chain to right edge */);
887             XtSetArg(args[j], XtNvertDistance, -1);  j++;
888             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
889             XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
890             break;
891           case CheckBox:
892             if(!engineDlg) option[i].value = *(Boolean*)option[i].target; // where checkbox callback uses it
893             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
894                                    textHeight/2 /* w */, textHeight/2 /* h */, 0xC0 /* chain both to left edge */);
895             XtSetArg(args[j], XtNvertDistance, (textHeight+2)/4 + 3);  j++;
896             XtSetArg(args[j], XtNstate, option[i].value);  j++;
897             lastrow  = last;
898             option[i].handle = (void*)
899                 (last = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
900             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
901                                    option[i].max /* w */, textHeight /* h */, 0xC1 /* chain */);
902             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
903             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
904             last = XtCreateManagedWidget("label", commandWidgetClass, form, args, j);
905             // make clicking the text toggle checkbox
906             XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
907             shrink = TRUE; // following buttons must get text height
908             break;
909           case Label:
910             msg = option[i].name;
911             if(!msg) break;
912             chain = option[i].min;
913             if(chain & SAME_ROW) forelast = lastrow; else shrink = FALSE;
914             j = SetPositionAndSize(args, last, lastrow, (chain & 2) != 0 /* border */,
915                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, chain | 2 /* chain */);
916 #if ENABLE_NLS
917             if(option[i].choice) XtSetArg(args[j], XtNfontSet, *(XFontSet*)option[i].choice), j++;
918 #else
919             if(option[i].choice) XtSetArg(args[j], XtNfont, (XFontStruct*)option[i].choice), j++;
920 #endif
921             XtSetArg(args[j], XtNresizable, False);  j++;
922             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
923             XtSetArg(args[j], XtNlabel, _(msg));  j++;
924             option[i].handle = (void*) (last = XtCreateManagedWidget("label", labelWidgetClass, form, args, j));
925             if(option[i].target) // allow user to specify event handler for button presses
926                 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
927             break;
928           case SaveButton:
929           case Button:
930             if(option[i].min & SAME_ROW) {
931                 chain = 0x31; // 0011.0001 = both left and right side to right edge
932                 forelast = lastrow;
933             } else chain = 0, shrink = FALSE;
934             j = SetPositionAndSize(args, last, lastrow, 3 /* border */,
935                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, option[i].min & 0xE | chain /* chain */);
936             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
937             if(option[i].textValue) { // special for buttons of New Variant dialog
938                 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
939                                          || strstr(first.variants, VariantName(option[i].value))); j++;
940                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
941             }
942             option[i].handle = (void*)
943                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
944             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !engineDlg) { // for the color picker default-reset
945                 SetColor( *(char**) option[i-1].target, &option[i]);
946                 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
947             }
948             XtAddCallback(last, XtNcallback, GenericCallback, (XtPointer)(intptr_t) i + (dlgNr<<16)); // invokes user callback
949             if(option[i].textValue) SetColor( option[i].textValue, &option[i]); // for new-variant buttons
950             break;
951           case ComboBox:
952             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
953                                    0 /* w */, textHeight /* h */, 0xC0 /* chain both sides to left edge */);
954             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
955             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
956             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
957
958             if(option[i].min & COMBO_CALLBACK) msg = _(option[i].name); else {
959               if(!engineDlg) SetCurrentComboSelection(option+i);
960               msg=_(((char**)option[i].choice)[option[i].value]);
961             }
962
963             j = SetPositionAndSize(args, dialog, last, (option[i].min & 2) == 0 /* border */,
964                                    option[i].max && !engineDlg ? option[i].max : 100 /* w */,
965                                    textHeight /* h */, 0x91 /* chain */); // same row as its label!
966             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
967             XtSetArg(args[j], XtNlabel, msg);  j++;
968             shrink = TRUE;
969             option[i].handle = (void*)
970                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
971             CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, -1);
972             values[i] = option[i].value;
973             break;
974           case ListBox:
975             // Listbox goes in viewport, as needed for game list
976             if(option[i].min & SAME_ROW) forelast = lastrow;
977             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
978                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
979             XtSetArg(args[j], XtNresizable, False);  j++;
980             XtSetArg(args[j], XtNallowVert, True); j++; // scoll direction
981             last =
982               XtCreateManagedWidget("viewport", viewportWidgetClass, form, args, j);
983             j = 0; // now list itself
984             XtSetArg(args[j], XtNdefaultColumns, 1);  j++;
985             XtSetArg(args[j], XtNforceColumns, True);  j++;
986             XtSetArg(args[j], XtNverticalList, True);  j++;
987             option[i].handle = (void*)
988                 (edit = XtCreateManagedWidget("list", listWidgetClass, last, args, j));
989             XawListChange(option[i].handle, option[i].target, 0, 0, True);
990             XawListHighlight(option[i].handle, 0);
991             scrollTranslations[25] = '0' + i;
992             scrollTranslations[27] = 'A' + dlgNr;
993             XtOverrideTranslations(edit, XtParseTranslationTable(scrollTranslations)); // for mouse-wheel
994             break;
995           case Graph:
996             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
997                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
998             option[i].handle = (void*)
999                 (last = XtCreateManagedWidget("graph", widgetClass, form, args, j));
1000             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1001                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1002             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1003             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1004             break;
1005           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1006             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1007             break;
1008           case BoxBegin:
1009             if(option[i].min & SAME_ROW) forelast = lastrow;
1010             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1011                                    0 /* w */, 0 /* h */, option[i].min /* chain */);
1012             XtSetArg(args[j], XtNorientation, XtorientHorizontal);  j++;
1013             XtSetArg(args[j], XtNvSpace, 0);                        j++;
1014             option[box=i].handle = (void*)
1015                 (last = XtCreateWidget("box", boxWidgetClass, form, args, j));
1016             oldForm = form; form = last; oldLastRow = lastrow; oldForeLast = forelast;
1017             lastrow = NULL; last = NULL;
1018             break;
1019           case DropDown:
1020             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1021                                    0 /* w */, 0 /* h */, 1 /* chain (always on same row) */);
1022             forelast = lastrow;
1023             msg = _(option[i].name); // write name on the menu button
1024             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1025             XtSetArg(args[j], XtNlabel, msg);  j++;
1026             option[i].handle = (void*)
1027                 (last = XtCreateManagedWidget(option[i].name, menuButtonWidgetClass, form, args, j));
1028             option[i].textValue = (char*) CreateComboPopup(last, option + i, i + 256*dlgNr, FALSE, -1);
1029             break;
1030           case BoxEnd:
1031             XtManageChildren(&form, 1);
1032             SqueezeIntoBox(&option[box], i-box, option[box].max);
1033             if(option[i].target) ((ButtonCallback*)option[i].target)(box); // callback that can make sizing decisions
1034             last = form; lastrow = oldLastRow; form = oldForm; forelast = oldForeLast;
1035             break;
1036           case Break:
1037             width++;
1038             height = i+1;
1039             stack = !(option[i].min & SAME_ROW);
1040             break;
1041         default:
1042             printf("GenericPopUp: unexpected case in switch.\n");
1043             break;
1044         }
1045     }
1046
1047     // make an attempt to align all spins and textbox controls
1048     maxWidth = maxTextWidth = 0;
1049     if(browse != NULL) {
1050         j=0;
1051         XtSetArg(args[j], XtNwidth, &bWidth);  j++;
1052         XtGetValues(browse, args, j);
1053     }
1054     for(h=0; h<height || c == width-1; h++) {
1055         i = h + c*height;
1056         if(option[i].type == EndMark) break;
1057         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1058                                   || option[i].type == PathName || option[i].type == FileName) {
1059             Dimension w;
1060             if(!texts[h]) continue;
1061             j=0;
1062             XtSetArg(args[j], XtNwidth, &w);  j++;
1063             XtGetValues(texts[h], args, j);
1064             if(option[i].type == Spin) {
1065                 if(w > maxWidth) maxWidth = w;
1066                 widest = texts[h];
1067             } else {
1068                 if(w > maxTextWidth) maxTextWidth = w;
1069                 if(!widest) widest = texts[h];
1070             }
1071         }
1072     }
1073     if(maxTextWidth + 110 < maxWidth)
1074          maxTextWidth = maxWidth - 110;
1075     else maxWidth = maxTextWidth + 110;
1076     for(h=0; h<height || c == width-1; h++) {
1077         i = h + c*height;
1078         if(option[i].type == EndMark) break;
1079         if(!texts[h]) continue; // Note: texts[h] can be undefined (giving errors in valgrind), but then both if's below will be false.
1080         j=0;
1081         if(option[i].type == Spin) {
1082             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1083             XtSetValues(texts[h], args, j);
1084         } else
1085         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1086             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1087             XtSetValues(texts[h], args, j);
1088             if(bWidth != 50 && (option[i].type == FileName || option[i].type == PathName)) {
1089                 int tWidth = (option[i].max ? option[i].max : 205) - 5 - bWidth;
1090                 j = 0;
1091                 XtSetArg(args[j], XtNwidth, tWidth);  j++;
1092                 XtSetValues(option[i].handle, args, j);
1093             }
1094         }
1095     }
1096   }
1097
1098     if(option[i].min & SAME_ROW) { // even when OK suppressed this EndMark bit can request chaining of last row to bottom
1099         for(j=i-1; option[j+1].min & SAME_ROW; j--) {
1100             XtSetArg(args[0], XtNtop, XtChainBottom);
1101             XtSetArg(args[1], XtNbottom, XtChainBottom);
1102             XtSetValues(option[j].handle, args, 2);
1103         }
1104         if((option[j].type == TextBox || option[j].type == ListBox) && option[j].name[0] == NULLCHAR) {
1105             Widget w = option[j].handle;
1106             if(option[j].type == ListBox) w = XtParent(w); // for listbox we must chain viewport
1107             XtSetArg(args[0], XtNbottom, XtChainBottom);
1108             XtSetValues(w, args, 1);
1109         }
1110         lastrow = forelast;
1111     } else shrink = FALSE, lastrow = last, last = widest ? widest : dialog;
1112     j = SetPositionAndSize(args, last, anchor ? anchor : lastrow, 3 /* border */,
1113                            0 /* w */, shrink ? textHeight : 0 /* h */, 0x37 /* chain: right, bottom and use both neighbors */);
1114
1115   if(!(option[i].min & NO_OK)) {
1116     option[i].handle = b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1117     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30001 + (dlgNr<<16)));
1118     if(!(option[i].min & NO_CANCEL)) {
1119       XtSetArg(args[1], XtNfromHoriz, b_ok); // overwrites!
1120       b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1121       XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30000 + (dlgNr<<16)));
1122     }
1123   }
1124
1125     XtRealizeWidget(popup);
1126     if(dlgNr != BoardWindow) { // assign close button, and position w.r.t. pointer, if not main window
1127         XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1128         snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1129         XtAugmentTranslations(popup, XtParseTranslationTable(def));
1130         XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1131                         &x, &y, &win_x, &win_y, &mask);
1132
1133         XtSetArg(args[0], XtNx, x - 10);
1134         XtSetArg(args[1], XtNy, y - 30);
1135         XtSetValues(popup, args, 2);
1136     }
1137     XtPopup(popup, modal ? XtGrabExclusive : XtGrabNone);
1138     shellUp[dlgNr]++; // count rather than flag
1139     previous = NULL;
1140     if(textField) SetFocus(textField, popup, (XEvent*) NULL, False);
1141     if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1142         j = 0;
1143         XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1144         XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1145         XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1146         XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1147         XtSetValues(popup, args, j);
1148     }
1149     RaiseWindow(dlgNr);
1150     return 1; // tells caller he must do initialization (e.g. add specific event handlers)
1151 }
1152
1153
1154 /* function called when the data to Paste is ready */
1155 static void
1156 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1157             Atom *type, XtPointer value, unsigned long *len, int *format)
1158 {
1159   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1160   if (value==NULL || *len==0) return; /* nothing selected, abort */
1161   name[*len]='\0';
1162   strncpy(buf, p, MSG_SIZ);
1163   q = strstr(p, "$name");
1164   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1165   SendString(buf);
1166   XtFree(value);
1167 }
1168
1169 void
1170 SendText (int n)
1171 {
1172     char *p = (char*) textOptions[n].choice;
1173     if(strstr(p, "$name")) {
1174         XtGetSelectionValue(menuBarWidget,
1175           XA_PRIMARY, XA_STRING,
1176           /* (XtSelectionCallbackProc) */ SendTextCB,
1177           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1178           CurrentTime
1179         );
1180     } else SendString(p);
1181 }
1182
1183 void
1184 SetInsertPos (Option *opt, int pos)
1185 {
1186     Arg args[16];
1187     XtSetArg(args[0], XtNinsertPosition, pos);
1188     XtSetValues(opt->handle, args, 1);
1189 //    SetFocus(opt->handle, shells[InputBoxDlg], NULL, False); // No idea why this does not work, and the following is needed:
1190 //    XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1191 }
1192
1193 void
1194 TypeInProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1195 {   // can be used as handler for any text edit in any dialog (from GenericPopUp, that is)
1196     int n = prms[0][0] - '0';
1197     Widget sh = XtParent(XtParent(XtParent(w))); // popup shell
1198
1199     if(n<2) { // Enter or Esc typed from primed text widget: treat as if dialog OK or cancel button hit.
1200         int dlgNr; // figure out what the dialog number is by comparing shells (because we must pass it :( )
1201         for(dlgNr=0; dlgNr<NrOfDialogs; dlgNr++) if(shellUp[dlgNr] && shells[dlgNr] == sh)
1202             GenericCallback (w, (XtPointer)(intptr_t) (30000 + n + (dlgNr<<16)), NULL);
1203     }
1204 }
1205
1206 void
1207 HardSetFocus (Option *opt)
1208 {
1209     XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1210 }
1211
1212