70ab43195f8a6ee72d4a5885d853bbc94424d3db
[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 DrawExpose (Option *opt, int x, int y, int w, int h)
603 {
604   XExposeEvent e;
605   opt = &mainOptions[W_BOARD];
606   if(!opt->handle) return;
607   e.x = x; e.y = y; e.width = w; e.height = h; e.count = -1; e.type = Expose; // count = -1: kludge to suppress sizing
608   GraphEventProc(opt->handle, (caddr_t) opt, (XEvent *) &e); // fake expose event
609 }
610
611 static void
612 GenericCallback (Widget w, XtPointer client_data, XtPointer call_data)
613 {   // all Buttons in a dialog (including OK, cancel) invoke this
614     String name;
615     Arg args[16];
616     char buf[MSG_SIZ];
617     int data = (intptr_t) client_data;
618     DialogClass dlg;
619     Widget sh = XtParent(XtParent(XtParent(w))), oldSh;
620
621     currentOption = dialogOptions[dlg=data>>16]; data &= 0xFFFF;
622     oldSh = shells[dlg]; shells[dlg] = sh; // bow to reality
623     if (data == 30000) { // cancel
624         PopDown(dlg); 
625     } else
626     if (data == 30001) { // save buttons imply OK
627         if(GenericReadout(currentOption, -1)) PopDown(dlg); // calls OK-proc after full readout, but no popdown if it returns false
628     } else
629
630     if(currentCps && dlg != BrowserDlg) {
631         XtSetArg(args[0], XtNlabel, &name);
632         XtGetValues(w, args, 1);
633         if(currentOption[data].type == SaveButton) GenericReadout(currentOption, -1);
634         snprintf(buf, MSG_SIZ,  "option %s\n", name);
635         SendToProgram(buf, currentCps);
636     } else ((ButtonCallback*) currentOption[data].target)(data);
637
638     shells[dlg] = oldSh; // in case of multiple instances, restore previous (as this one could be popped down now)
639 }
640
641 void
642 TabProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
643 {   // for transfering focus to the next text-edit
644     Option *opt;
645     for(opt = currentOption; opt->type != EndMark; opt++) {
646         if(opt->handle == w) {
647             while(++opt) {
648                 if(opt->type == EndMark) opt = currentOption; // wrap
649                 if(opt->handle == w) return; // full circle
650                 if(opt->type == TextBox || opt->type == Spin || opt->type == Fractional || opt->type == FileName || opt->type == PathName) {
651                     SetFocus(opt->handle, XtParent(XtParent(XtParent(w))), NULL, 0);
652                     return;
653                 }
654             }
655         }
656     }
657 }
658
659 void
660 WheelProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
661 {   // for scrolling a widget seen through a viewport with the mouse wheel (ListBox!)
662     int j=0, n = atoi(prms[0]);
663     static char *params[3] = { "", "Continuous", "Proportional" };
664     Arg args[16];
665     float h, top;
666     Widget v;
667     if(!n) { // transient dialogs also use this for list-selection callback
668         n = prms[1][0]-'0';
669         Option *opt=dialogOptions[prms[2][0]-'A'] + n;
670         if(opt->textValue) ((ListBoxCallback*) opt->textValue)(n, SelectedListBoxItem(opt));
671         return;
672     }
673     v = XtNameToWidget(XtParent(w), "vertical");
674     if(!v) return;
675     XtSetArg(args[j], XtNshown, &h); j++;
676     XtSetArg(args[j], XtNtopOfThumb, &top); j++;
677     XtGetValues(v, args, j);
678     top += 0.1f*h*n; if(top < 0.f) top = 0.;
679     XtCallActionProc(v, "StartScroll", event, params+1, 1);
680     XawScrollbarSetThumb(v, top, -1.0);
681     XtCallActionProc(v, "NotifyThumb", event, params, 0);
682 //    XtCallActionProc(w, "NotifyScroll", event, params+2, 1);
683     XtCallActionProc(v, "EndScroll", event, params, 0);
684 }
685
686 static char *oneLiner  =
687    "<Key>Return: redraw-display() \n \
688     <Key>Tab: TabProc() \n ";
689 static char scrollTranslations[] =
690    "<Btn1Up>(2): WheelProc(0 0 A) \n \
691     <Btn4Down>: WheelProc(-1) \n \
692     <Btn5Down>: WheelProc(1) \n ";
693
694 static void
695 SqueezeIntoBox (Option *opt, int nr, int width)
696 {   // size buttons in bar to fit, clipping button names where necessary
697     int i, wtot = 0;
698     Dimension widths[20], oldWidths[20];
699     Arg arg;
700     for(i=1; i<nr; i++) {
701         XtSetArg(arg, XtNwidth, &widths[i]);
702         XtGetValues(opt[i].handle, &arg, 1);
703         wtot +=  oldWidths[i] = widths[i];
704     }
705     opt->min = wtot;
706     if(width <= 0) return;
707     while(wtot > width) {
708         int wmax=0, imax=0;
709         for(i=1; i<nr; i++) if(widths[i] > wmax) wmax = widths[imax=i];
710         widths[imax]--;
711         wtot--;
712     }
713     for(i=1; i<nr; i++) if(widths[i] != oldWidths[i]) {
714         XtSetArg(arg, XtNwidth, widths[i]);
715         XtSetValues(opt[i].handle, &arg, 1);
716     }
717     opt->min = wtot;
718 }
719
720 int
721 SetPositionAndSize (Arg *args, Widget leftNeigbor, Widget topNeigbor, int b, int w, int h, int chaining)
722 {   // sizing and positioning most widgets have in common
723     int j = 0;
724     // first position the widget w.r.t. earlier ones
725     if(chaining & 1) { // same row: position w.r.t. last (on current row) and lastrow
726         XtSetArg(args[j], XtNfromVert, topNeigbor); j++;
727         XtSetArg(args[j], XtNfromHoriz, leftNeigbor); j++;
728     } else // otherwise it goes at left margin (which is default), below the previous element
729         XtSetArg(args[j], XtNfromVert, leftNeigbor),  j++;
730     // arrange chaining ('2'-bit indicates top and bottom chain the same)
731     if((chaining & 14) == 6) XtSetArg(args[j], XtNtop,    XtChainBottom), j++;
732     if((chaining & 14) == 10) XtSetArg(args[j], XtNbottom, XtChainTop ), j++;
733     if(chaining & 4) XtSetArg(args[j], XtNbottom, XtChainBottom ), j++;
734     if(chaining & 8) XtSetArg(args[j], XtNtop,    XtChainTop), j++;
735     if(chaining & 0x10) XtSetArg(args[j], XtNright, XtChainRight), j++;
736     if(chaining & 0x20) XtSetArg(args[j], XtNleft,  XtChainRight), j++;
737     if(chaining & 0x40) XtSetArg(args[j], XtNright, XtChainLeft ), j++;
738     if(chaining & 0x80) XtSetArg(args[j], XtNleft,  XtChainLeft ), j++;
739     // set size (if given)
740     if(w) XtSetArg(args[j], XtNwidth, w), j++;
741     if(h) XtSetArg(args[j], XtNheight, h),  j++;
742     // color
743     if(!appData.monoMode) {
744         if(!b && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
745         if(b == 3 && appData.buttonColor[0]) XtSetArg(args[j], XtNbackground, buttonColor),  j++;
746     }
747     if(b == 3) b = 1;
748     // border
749     XtSetArg(args[j], XtNborderWidth, b);  j++;
750     return j;
751 }
752
753 int
754 GenericPopUp (Option *option, char *title, DialogClass dlgNr, DialogClass parent, int modal, int top)
755 {
756     Arg args[24];
757     Widget popup, layout, dialog=NULL, edit=NULL, form,  last, b_ok, b_cancel, previousPane = NULL, textField = NULL, oldForm, oldLastRow, oldForeLast;
758     Window root, child;
759     int x, y, i, j, height=999, width=1, h, c, w, shrink=FALSE, stack = 0, box, chain;
760     int win_x, win_y, maxWidth, maxTextWidth;
761     unsigned int mask;
762     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
763     static char pane[6] = "paneX";
764     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL, browse = NULL;
765     Dimension bWidth = 50;
766
767     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
768     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
769         XtPopup(shells[dlgNr], XtGrabNone);
770         shellUp[dlgNr] = True;
771         return 0;
772     }
773
774     dialogOptions[dlgNr] = option; // make available to callback
775     // post currentOption globally, so Spin and Combo callbacks can already use it
776     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
777     currentOption = option;
778
779     if(engineDlg) { // Settings popup for engine: format through heuristic
780         int n = currentCps->nrOptions;
781         if(!n) { DisplayNote(_("Engine has no options")); currentCps = NULL; return 0; }
782         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
783         height = n / width + 1;
784         if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
785         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
786     }
787      i = 0;
788     XtSetArg(args[i], XtNresizable, True); i++;
789     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
790
791     if(dlgNr == BoardWindow) popup = shellWidget; else
792     popup = shells[dlgNr] =
793       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
794                                                            shells[parent], args, i);
795
796     layout =
797       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
798                             layoutArgs, XtNumber(layoutArgs));
799     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[0], XtNbackground, dialogColor);
800     XtSetValues(layout, args, 1);
801
802   for(c=0; c<width; c++) {
803     pane[4] = 'A'+c;
804     form =
805       XtCreateManagedWidget(pane, formWidgetClass, layout,
806                             formArgs, XtNumber(formArgs));
807     j=0;
808     XtSetArg(args[j], stack ? XtNfromVert : XtNfromHoriz, previousPane);  j++;
809     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
810     XtSetValues(form, args, j);
811     lastrow = forelast = NULL;
812     previousPane = form;
813
814     last = widest = NULL; anchor = lastrow;
815     for(h=0; h<height || c == width-1; h++) {
816         i = h + c*height;
817         if(option[i].type == EndMark) break;
818         if(option[i].type == -1) continue;
819         lastrow = forelast;
820         forelast = last;
821         switch(option[i].type) {
822           case Fractional:
823             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
824             option[i].value = *(float*)option[i].target;
825             goto tBox;
826           case Spin:
827             if(!engineDlg) option[i].value = *(int*)option[i].target;
828             snprintf(def, MSG_SIZ,  "%d", option[i].value);
829           case TextBox:
830           case FileName:
831           case PathName:
832           tBox:
833             if(option[i].name[0]) { // prefixed by label with option name
834                 j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
835                                        0 /* w */, textHeight /* h */, 0xC0 /* chain to left edge */);
836                 XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
837                 XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
838                 texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
839             } else texts[h] = dialog = NULL; // kludge to position from left margin
840             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
841             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
842             j = SetPositionAndSize(args, dialog, last, 1 /* border */,
843                                    w /* w */, option[i].type == TextBox ? option[i].value : 0 /* h */, 0x91 /* chain full width */);
844             if(option[i].type == TextBox) { // decorations for multi-line text-edits
845                 if(option[i].min & T_VSCRL) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
846                 if(option[i].min & T_HSCRL) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
847                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
848                 if(option[i].min & T_WRAP)  { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
849                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
850                     if(!option[i].value) {    XtSetArg(args[j], XtNbottom, XtChainTop); j++;
851                                               XtSetValues(dialog, args+j-2, 2);
852                     }
853                 }
854             } else shrink = TRUE;
855             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
856             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
857             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
858             XtSetArg(args[j], XtNresizable, True);  j++;
859             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
860             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def : 
861                                 engineDlg ? option[i].textValue : *(char**)option[i].target);  j++;
862             edit = last;
863             option[i].handle = (void*)
864                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
865             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup); // gets focus on mouse click
866             if(option[i].min == 0 || option[i].type != TextBox)
867                 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner)); // standard handler for <Enter> and <Tab>
868
869             if(option[i].type == TextBox || option[i].type == Fractional) break;
870
871             // add increment and decrement controls for spin
872             if(option[i].type == FileName || option[i].type == PathName) {
873                 msg = _("browse"); w = 0; // automatically scale to width of text
874                 j = textHeight ? textHeight : 0;
875             } else {
876                 w = 20; msg = "+"; j = textHeight/2; // spin button
877             }
878             j = SetPositionAndSize(args, last, edit, 3 /* border */,
879                                    w /* w */, j /* h */, 0x31 /* chain to right edge */);
880             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
881             XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
882             if(w == 0) browse = edit;
883
884             if(option[i].type != Spin) break;
885
886             j = SetPositionAndSize(args, last, edit, 3 /* border */,
887                                    20 /* w */, textHeight/2 /* h */, 0x31 /* chain to right edge */);
888             XtSetArg(args[j], XtNvertDistance, -1);  j++;
889             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
890             XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
891             break;
892           case CheckBox:
893             if(!engineDlg) option[i].value = *(Boolean*)option[i].target; // where checkbox callback uses it
894             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
895                                    textHeight/2 /* w */, textHeight/2 /* h */, 0xC0 /* chain both to left edge */);
896             XtSetArg(args[j], XtNvertDistance, (textHeight+2)/4 + 3);  j++;
897             XtSetArg(args[j], XtNstate, option[i].value);  j++;
898             lastrow  = last;
899             option[i].handle = (void*)
900                 (last = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
901             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
902                                    option[i].max /* w */, textHeight /* h */, 0xC1 /* chain */);
903             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
904             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
905             last = XtCreateManagedWidget("label", commandWidgetClass, form, args, j);
906             // make clicking the text toggle checkbox
907             XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
908             shrink = TRUE; // following buttons must get text height
909             break;
910           case Label:
911             msg = option[i].name;
912             if(!msg) break;
913             chain = option[i].min;
914             if(chain & SAME_ROW) forelast = lastrow; else shrink = FALSE;
915             j = SetPositionAndSize(args, last, lastrow, (chain & 2) != 0 /* border */,
916                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, chain | 2 /* chain */);
917 #if ENABLE_NLS
918             if(option[i].choice) XtSetArg(args[j], XtNfontSet, *(XFontSet*)option[i].choice), j++;
919 #else
920             if(option[i].choice) XtSetArg(args[j], XtNfont, (XFontStruct*)option[i].choice), j++;
921 #endif
922             XtSetArg(args[j], XtNresizable, False);  j++;
923             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
924             XtSetArg(args[j], XtNlabel, _(msg));  j++;
925             option[i].handle = (void*) (last = XtCreateManagedWidget("label", labelWidgetClass, form, args, j));
926             if(option[i].target) // allow user to specify event handler for button presses
927                 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
928             break;
929           case SaveButton:
930           case Button:
931             if(option[i].min & SAME_ROW) {
932                 chain = 0x31; // 0011.0001 = both left and right side to right edge
933                 forelast = lastrow;
934             } else chain = 0, shrink = FALSE;
935             j = SetPositionAndSize(args, last, lastrow, 3 /* border */,
936                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, option[i].min & 0xE | chain /* chain */);
937             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
938             if(option[i].textValue) { // special for buttons of New Variant dialog
939                 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
940                                          || strstr(first.variants, VariantName(option[i].value))); j++;
941                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
942             }
943             option[i].handle = (void*)
944                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
945             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !engineDlg) { // for the color picker default-reset
946                 SetColor( *(char**) option[i-1].target, &option[i]);
947                 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
948             }
949             XtAddCallback(last, XtNcallback, GenericCallback, (XtPointer)(intptr_t) i + (dlgNr<<16)); // invokes user callback
950             if(option[i].textValue) SetColor( option[i].textValue, &option[i]); // for new-variant buttons
951             break;
952           case ComboBox:
953             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
954                                    0 /* w */, textHeight /* h */, 0xC0 /* chain both sides to left edge */);
955             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
956             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
957             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
958
959             if(option[i].min & COMBO_CALLBACK) msg = _(option[i].name); else {
960               if(!engineDlg) SetCurrentComboSelection(option+i);
961               msg=_(((char**)option[i].choice)[option[i].value]);
962             }
963
964             j = SetPositionAndSize(args, dialog, last, (option[i].min & 2) == 0 /* border */,
965                                    option[i].max && !engineDlg ? option[i].max : 100 /* w */,
966                                    textHeight /* h */, 0x91 /* chain */); // same row as its label!
967             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
968             XtSetArg(args[j], XtNlabel, msg);  j++;
969             shrink = TRUE;
970             option[i].handle = (void*)
971                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
972             CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, -1);
973             values[i] = option[i].value;
974             break;
975           case ListBox:
976             // Listbox goes in viewport, as needed for game list
977             if(option[i].min & SAME_ROW) forelast = lastrow;
978             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
979                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
980             XtSetArg(args[j], XtNresizable, False);  j++;
981             XtSetArg(args[j], XtNallowVert, True); j++; // scoll direction
982             last =
983               XtCreateManagedWidget("viewport", viewportWidgetClass, form, args, j);
984             j = 0; // now list itself
985             XtSetArg(args[j], XtNdefaultColumns, 1);  j++;
986             XtSetArg(args[j], XtNforceColumns, True);  j++;
987             XtSetArg(args[j], XtNverticalList, True);  j++;
988             option[i].handle = (void*)
989                 (edit = XtCreateManagedWidget("list", listWidgetClass, last, args, j));
990             XawListChange(option[i].handle, option[i].target, 0, 0, True);
991             XawListHighlight(option[i].handle, 0);
992             scrollTranslations[25] = '0' + i;
993             scrollTranslations[27] = 'A' + dlgNr;
994             XtOverrideTranslations(edit, XtParseTranslationTable(scrollTranslations)); // for mouse-wheel
995             break;
996           case Graph:
997             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
998                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
999             option[i].handle = (void*)
1000                 (last = XtCreateManagedWidget("graph", widgetClass, form, args, j));
1001             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1002                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1003             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1004             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1005             break;
1006           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1007             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1008             break;
1009           case BoxBegin:
1010             if(option[i].min & SAME_ROW) forelast = lastrow;
1011             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1012                                    0 /* w */, 0 /* h */, option[i].min /* chain */);
1013             XtSetArg(args[j], XtNorientation, XtorientHorizontal);  j++;
1014             XtSetArg(args[j], XtNvSpace, 0);                        j++;
1015             option[box=i].handle = (void*)
1016                 (last = XtCreateWidget("box", boxWidgetClass, form, args, j));
1017             oldForm = form; form = last; oldLastRow = lastrow; oldForeLast = forelast;
1018             lastrow = NULL; last = NULL;
1019             break;
1020           case DropDown:
1021             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1022                                    0 /* w */, 0 /* h */, 1 /* chain (always on same row) */);
1023             forelast = lastrow;
1024             msg = _(option[i].name); // write name on the menu button
1025             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1026             XtSetArg(args[j], XtNlabel, msg);  j++;
1027             option[i].handle = (void*)
1028                 (last = XtCreateManagedWidget(option[i].name, menuButtonWidgetClass, form, args, j));
1029             option[i].textValue = (char*) CreateComboPopup(last, option + i, i + 256*dlgNr, FALSE, -1);
1030             break;
1031           case BoxEnd:
1032             XtManageChildren(&form, 1);
1033             SqueezeIntoBox(&option[box], i-box, option[box].max);
1034             if(option[i].target) ((ButtonCallback*)option[i].target)(box); // callback that can make sizing decisions
1035             last = form; lastrow = oldLastRow; form = oldForm; forelast = oldForeLast;
1036             break;
1037           case Break:
1038             width++;
1039             height = i+1;
1040             stack = !(option[i].min & SAME_ROW);
1041             break;
1042         default:
1043             printf("GenericPopUp: unexpected case in switch.\n");
1044             break;
1045         }
1046     }
1047
1048     // make an attempt to align all spins and textbox controls
1049     maxWidth = maxTextWidth = 0;
1050     if(browse != NULL) {
1051         j=0;
1052         XtSetArg(args[j], XtNwidth, &bWidth);  j++;
1053         XtGetValues(browse, args, j);
1054     }
1055     for(h=0; h<height || c == width-1; h++) {
1056         i = h + c*height;
1057         if(option[i].type == EndMark) break;
1058         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1059                                   || option[i].type == PathName || option[i].type == FileName) {
1060             Dimension w;
1061             if(!texts[h]) continue;
1062             j=0;
1063             XtSetArg(args[j], XtNwidth, &w);  j++;
1064             XtGetValues(texts[h], args, j);
1065             if(option[i].type == Spin) {
1066                 if(w > maxWidth) maxWidth = w;
1067                 widest = texts[h];
1068             } else {
1069                 if(w > maxTextWidth) maxTextWidth = w;
1070                 if(!widest) widest = texts[h];
1071             }
1072         }
1073     }
1074     if(maxTextWidth + 110 < maxWidth)
1075          maxTextWidth = maxWidth - 110;
1076     else maxWidth = maxTextWidth + 110;
1077     for(h=0; h<height || c == width-1; h++) {
1078         i = h + c*height;
1079         if(option[i].type == EndMark) break;
1080         if(!texts[h]) continue; // Note: texts[h] can be undefined (giving errors in valgrind), but then both if's below will be false.
1081         j=0;
1082         if(option[i].type == Spin) {
1083             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1084             XtSetValues(texts[h], args, j);
1085         } else
1086         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1087             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1088             XtSetValues(texts[h], args, j);
1089             if(bWidth != 50 && (option[i].type == FileName || option[i].type == PathName)) {
1090                 int tWidth = (option[i].max ? option[i].max : 205) - 5 - bWidth;
1091                 j = 0;
1092                 XtSetArg(args[j], XtNwidth, tWidth);  j++;
1093                 XtSetValues(option[i].handle, args, j);
1094             }
1095         }
1096     }
1097   }
1098
1099     if(option[i].min & SAME_ROW) { // even when OK suppressed this EndMark bit can request chaining of last row to bottom
1100         for(j=i-1; option[j+1].min & SAME_ROW; j--) {
1101             XtSetArg(args[0], XtNtop, XtChainBottom);
1102             XtSetArg(args[1], XtNbottom, XtChainBottom);
1103             XtSetValues(option[j].handle, args, 2);
1104         }
1105         if((option[j].type == TextBox || option[j].type == ListBox) && option[j].name[0] == NULLCHAR) {
1106             Widget w = option[j].handle;
1107             if(option[j].type == ListBox) w = XtParent(w); // for listbox we must chain viewport
1108             XtSetArg(args[0], XtNbottom, XtChainBottom);
1109             XtSetValues(w, args, 1);
1110         }
1111         lastrow = forelast;
1112     } else shrink = FALSE, lastrow = last, last = widest ? widest : dialog;
1113     j = SetPositionAndSize(args, last, anchor ? anchor : lastrow, 3 /* border */,
1114                            0 /* w */, shrink ? textHeight : 0 /* h */, 0x37 /* chain: right, bottom and use both neighbors */);
1115
1116   if(!(option[i].min & NO_OK)) {
1117     option[i].handle = b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1118     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30001 + (dlgNr<<16)));
1119     if(!(option[i].min & NO_CANCEL)) {
1120       XtSetArg(args[1], XtNfromHoriz, b_ok); // overwrites!
1121       b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1122       XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30000 + (dlgNr<<16)));
1123     }
1124   }
1125
1126     XtRealizeWidget(popup);
1127     if(dlgNr != BoardWindow) { // assign close button, and position w.r.t. pointer, if not main window
1128         XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1129         snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1130         XtAugmentTranslations(popup, XtParseTranslationTable(def));
1131         XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1132                         &x, &y, &win_x, &win_y, &mask);
1133
1134         XtSetArg(args[0], XtNx, x - 10);
1135         XtSetArg(args[1], XtNy, y - 30);
1136         XtSetValues(popup, args, 2);
1137     }
1138     XtPopup(popup, modal ? XtGrabExclusive : XtGrabNone);
1139     shellUp[dlgNr]++; // count rather than flag
1140     previous = NULL;
1141     if(textField) SetFocus(textField, popup, (XEvent*) NULL, False);
1142     if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1143         j = 0;
1144         XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1145         XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1146         XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1147         XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1148         XtSetValues(popup, args, j);
1149     }
1150     RaiseWindow(dlgNr);
1151     return 1; // tells caller he must do initialization (e.g. add specific event handlers)
1152 }
1153
1154
1155 /* function called when the data to Paste is ready */
1156 static void
1157 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1158             Atom *type, XtPointer value, unsigned long *len, int *format)
1159 {
1160   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1161   if (value==NULL || *len==0) return; /* nothing selected, abort */
1162   name[*len]='\0';
1163   strncpy(buf, p, MSG_SIZ);
1164   q = strstr(p, "$name");
1165   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1166   SendString(buf);
1167   XtFree(value);
1168 }
1169
1170 void
1171 SendText (int n)
1172 {
1173     char *p = (char*) textOptions[n].choice;
1174     if(strstr(p, "$name")) {
1175         XtGetSelectionValue(menuBarWidget,
1176           XA_PRIMARY, XA_STRING,
1177           /* (XtSelectionCallbackProc) */ SendTextCB,
1178           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1179           CurrentTime
1180         );
1181     } else SendString(p);
1182 }
1183
1184 void
1185 SetInsertPos (Option *opt, int pos)
1186 {
1187     Arg args[16];
1188     XtSetArg(args[0], XtNinsertPosition, pos);
1189     XtSetValues(opt->handle, args, 1);
1190 //    SetFocus(opt->handle, shells[InputBoxDlg], NULL, False); // No idea why this does not work, and the following is needed:
1191 //    XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1192 }
1193
1194 void
1195 TypeInProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1196 {   // can be used as handler for any text edit in any dialog (from GenericPopUp, that is)
1197     int n = prms[0][0] - '0';
1198     Widget sh = XtParent(XtParent(XtParent(w))); // popup shell
1199
1200     if(n<2) { // Enter or Esc typed from primed text widget: treat as if dialog OK or cancel button hit.
1201         int dlgNr; // figure out what the dialog number is by comparing shells (because we must pass it :( )
1202         for(dlgNr=0; dlgNr<NrOfDialogs; dlgNr++) if(shellUp[dlgNr] && shells[dlgNr] == sh)
1203             GenericCallback (w, (XtPointer)(intptr_t) (30000 + n + (dlgNr<<16)), NULL);
1204     }
1205 }
1206
1207 void
1208 HardSetFocus (Option *opt)
1209 {
1210     XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1211 }
1212
1213