Integrate ICS output into Chat Window
[xboard.git] / xaw / xoptions.c
1 /*
2  * xoptions.c -- Move list window, part of X front end for XBoard
3  *
4  * Copyright 2000, 2009, 2010, 2011, 2012, 2013, 2014 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 CursorAtEnd (Option *opt)
147 {
148 }
149
150 void
151 GetWidgetText (Option *opt, char **buf)
152 {
153     Arg arg;
154     XtSetArg(arg, XtNstring, buf);
155     XtGetValues(opt->handle, &arg, 1);
156 }
157
158 void
159 SetWidgetText (Option *opt, char *buf, int n)
160 {
161     Arg arg;
162     XtSetArg(arg, XtNstring, buf);
163     XtSetValues(opt->handle, &arg, 1);
164     if(n >= 0) SetFocus(opt->handle, shells[n], NULL, False);
165 }
166
167 void
168 GetWidgetState (Option *opt, int *state)
169 {
170     Arg arg;
171     XtSetArg(arg, XtNstate, state);
172     XtGetValues(opt->handle, &arg, 1);
173 }
174
175 void
176 SetWidgetState (Option *opt, int state)
177 {
178     Arg arg;
179     XtSetArg(arg, XtNstate, state);
180     XtSetValues(opt->handle, &arg, 1);
181 }
182
183 void
184 SetWidgetLabel (Option *opt, char *buf)
185 {
186     Arg arg;
187     XtSetArg(arg, XtNlabel, (XtArgVal) buf);
188     XtSetValues(opt->handle, &arg, 1);
189 }
190
191 void
192 SetDialogTitle (DialogClass dlg, char *title)
193 {
194     Arg args[16];
195     XtSetArg(args[0], XtNtitle, title);
196     XtSetValues(shells[dlg], args, 1);
197 }
198
199 void
200 LoadListBox (Option *opt, char *emptyText, int n1, int n2)
201 {
202     static char *dummyList[2];
203     dummyList[0] = emptyText; // empty listboxes tend to crash X, so display user-supplied warning string instead
204     XawListChange(opt->handle, *(char**)opt->target ? opt->target : dummyList, 0, 0, True);
205 //printf("listbox data = %x\n", opt->target);
206 }
207
208 int
209 ReadScroll (Option *opt, float *top, float *bottom)
210 {   // retreives fractions of top and bottom of thumb
211     Arg args[16];
212     Widget w = XtParent(opt->handle); // viewport
213     Widget v = XtNameToWidget(w, "vertical");
214     int j=0;
215     float h;
216     if(!v) return FALSE; // no scroll bar
217     XtSetArg(args[j], XtNshown, &h); j++;
218     XtSetArg(args[j], XtNtopOfThumb, top); j++;
219     XtGetValues(v, args, j);
220     *bottom = *top + h;
221     return TRUE;
222 }
223
224 void
225 SetScroll (Option *opt, float f)
226 {   // sets top of thumb to given fraction
227     static char *params[3] = { "", "Continuous", "Proportional" };
228     static XEvent event;
229     Widget w = XtParent(opt->handle); // viewport
230     Widget v = XtNameToWidget(w, "vertical");
231     if(!v) return; // no scroll bar
232     XtCallActionProc(v, "StartScroll", &event, params+1, 1);
233     XawScrollbarSetThumb(v, f, -1.0);
234     XtCallActionProc(v, "NotifyThumb", &event, params, 0);
235 //    XtCallActionProc(v, "NotifyScroll", &event, params+2, 1);
236     XtCallActionProc(v, "EndScroll", &event, params, 0);
237 }
238
239 void
240 HighlightListBoxItem (Option *opt, int nr)
241 {
242     XawListHighlight(opt->handle, nr);
243 }
244
245 void
246 HighlightWithScroll (Option *opt, int sel, int max)
247 {
248     float top, bottom, f, g;
249     HighlightListBoxItem(opt, sel);
250     if(!ReadScroll(opt, &top, &bottom)) return; // no scroll bar
251     bottom = bottom*max - 1.f;
252     f = g = top;
253     top *= max;
254     if(sel > (top + 3*bottom)/4) f = (sel - 0.75f*(bottom-top))/max; else
255     if(sel < (3*top + bottom)/4) f = (sel - 0.25f*(bottom-top))/max;
256     if(f < 0.f) f = 0.; if(f + 1.f/max > 1.f) f = 1. - 1./max;
257     if(f != g) SetScroll(opt, f);
258 }
259
260 int
261 SelectedListBoxItem (Option *opt)
262 {
263     XawListReturnStruct *rs;
264     rs = XawListShowCurrent(opt->handle);
265     return rs->list_index;
266 }
267
268 void
269 SetTextColor (char **cnames, int fg, int bg, int attr)
270 { // this is not possible in Xaw
271 }
272
273 void
274 AppendColorized (Option *opt, char *message, int count)
275 { // ignore
276 }
277
278 void
279 Show (Option *opt, int hide)
280 {
281 }
282
283 void
284 HighlightText (Option *opt, int start, int end, Boolean on)
285 {
286     if(on)
287         XawTextSetSelection( opt->handle, start, end ); // for lack of a better method, use selection for highighting
288     else
289         XawTextSetSelection( opt->handle, 0, 0 );
290 }
291
292 void
293 FocusOnWidget (Option *opt, DialogClass dlg)
294 {
295     UnCaret();
296     XtSetKeyboardFocus(shells[dlg], opt->handle);
297 }
298
299 void
300 SetIconName (DialogClass dlg, char *name)
301 {
302         Arg args[16];
303         int j = 0;
304         XtSetArg(args[j], XtNiconName, (XtArgVal) name);  j++;
305 //      XtSetArg(args[j], XtNtitle, (XtArgVal) name);  j++;
306         XtSetValues(shells[dlg], args, j);
307 }
308
309 static void
310 CheckCallback (Widget ww, XtPointer client_data, XEvent *event, Boolean *b)
311 {
312     int s, data = (intptr_t) client_data;
313     Option *opt = dialogOptions[data >> 8] + (data & 255);
314
315     if(opt->type == Label) { ((ButtonCallback*) opt->target)(data&255); return; }
316
317     GetWidgetState(opt, &s);
318     SetWidgetState(opt, !s);
319 }
320
321 static void
322 SpinCallback (Widget w, XtPointer client_data, XtPointer call_data)
323 {
324     String name, val;
325     Arg args[16];
326     char buf[MSG_SIZ], *p;
327     int j = 0; // Initialisation is necessary because the text value may be non-numeric causing the scanf conversion to fail
328     int data = (intptr_t) client_data;
329     Option *opt = dialogOptions[data >> 8] + (data & 255);
330
331     XtSetArg(args[0], XtNlabel, &name);
332     XtGetValues(w, args, 1);
333
334     GetWidgetText(opt, &val);
335     sscanf(val, "%d", &j);
336     if (strcmp(name, _("browse")) == 0) {
337         char *q=val, *r;
338         for(r = ""; *q; q++) if(*q == '.') r = q; else if(*q == '/') r = ""; // last dot after last slash
339         if(!strcmp(r, "") && !currentCps && opt->type == FileName && opt->textValue)
340                 r = opt->textValue;
341         Browse(data>>8, opt->name, NULL, r, opt->type == PathName, "", &p, (FILE**) opt);
342         return;
343     } else
344     if (strcmp(name, "+") == 0) {
345         if(++j > opt->max) return;
346     } else
347     if (strcmp(name, "-") == 0) {
348         if(--j < opt->min) return;
349     } else return;
350     snprintf(buf, MSG_SIZ,  "%d", j);
351     SetWidgetText(opt, buf, shellUp[TransientDlg] ? TransientDlg : MasterDlg);
352 }
353
354 static void
355 ComboSelect (Widget w, caddr_t addr, caddr_t index) // callback for all combo items
356 {
357     Arg args[16];
358     Option *opt = dialogOptions[((intptr_t)addr)>>24]; // applicable option list
359     int i = ((intptr_t)addr)>>16 & 255; // option number
360     int j = 0xFFFF & (intptr_t) addr;
361
362     values[i] = j; // store selected value in Option struct, for retrieval at OK
363
364     if(opt[i].type == Graph || opt[i].min & COMBO_CALLBACK && (!currentCps || shellUp[BrowserDlg])) {
365         ((ButtonCallback*) opt[i].target)(i);
366         return;
367     }
368
369     if(opt[i].min & NO_GETTEXT)
370       XtSetArg(args[0], XtNlabel, ((char**)opt[i].choice)[j]);
371     else
372       XtSetArg(args[0], XtNlabel, _(((char**)opt[i].choice)[j]));
373
374     XtSetValues(opt[i].handle, args, 1);
375 }
376
377 Widget
378 CreateMenuItem (Widget menu, char *msg, XtCallbackProc CB, int n)
379 {
380     int j=0;
381     Widget entry;
382     Arg args[16];
383     XtSetArg(args[j], XtNleftMargin, 20);   j++;
384     XtSetArg(args[j], XtNrightMargin, 20);  j++;
385     if(!strcmp(msg, "----")) { XtCreateManagedWidget(msg, smeLineObjectClass, menu, args, j); return NULL; }
386     XtSetArg(args[j], XtNlabel, msg);
387     entry = XtCreateManagedWidget("item", smeBSBObjectClass, menu, args, j+1);
388     XtAddCallback(entry, XtNcallback, CB, (caddr_t)(intptr_t) n);
389     return entry;
390 }
391
392 char *
393 format_accel (char *input)
394 {
395   char *output;
396   char *key,*test;
397
398   output = strdup("");
399
400   if( strstr(input, "<Ctrl>") )
401     {
402       output = realloc(output, strlen(output) + strlen(_("Ctrl"))+2);
403       strncat(output, _("Ctrl"), strlen(_("Ctrl")) +1);
404       strncat(output, "+", 1);
405     };
406   if( strstr(input, "<Alt>") )
407     {
408       output = realloc(output, strlen(output) + strlen(_("Alt"))+2);
409       strncat(output, _("Alt"), strlen(_("Alt")) +1);
410       strncat(output, "+", 1);
411     };
412   if( strstr(input, "<Shift>") )
413     {
414       output = realloc(output, strlen(output) + strlen(_("Shift"))+2);
415       strncat(output, _("Shift"), strlen(_("Shift")) +1);
416       strncat(output, "+", 1);
417     };
418
419   test = strrchr(input, '>');
420   if ( test==NULL )
421     key = strdup(input);
422   else
423     key = strdup(++test); // remove ">"
424   if(strlen(key) == 1) key[0] = ToUpper(key[0]);
425
426   output = realloc(output, strlen(output) + strlen(_(key))+2);
427   strncat(output, _(key), strlen(_(key)) +1);
428
429   free(key);
430   return output;
431 }
432
433 int
434 pixlen (char *s)
435 {
436 #if 0
437     int dummy;
438     XCharStruct overall;
439     XTextExtents(messageFontStruct, s, strlen(s), &dummy, &dummy, &dummy, &overall);
440     return overall.width;
441 #else
442     float tot = 0;
443     while(*s) switch(*s++) {
444         case '.': tot += 0.45; break;
445         case ' ': tot += 0.55; break;
446         case 'i': tot += 0.45; break;
447         case 'l': tot += 0.45; break;
448         case 'j': tot += 0.45; break;
449         case 'f': tot += 0.45; break;
450         case 'I': tot += 0.45; break;
451         case 't': tot += 0.45; break;
452         case 'k': tot += 0.83; break;
453         case 's': tot += 0.83; break;
454         case 'x': tot += 0.83; break;
455         case 'z': tot += 0.83; break;
456         case 'r': tot += 0.55; break;
457         case 'w': tot += 1.3; break;
458         case 'm': tot += 1.3; break;
459         case 'A': tot += 1.3; break;
460         case 'C': tot += 1.3; break;
461         case 'D': tot += 1.3; break;
462         case 'G': tot += 1.3; break;
463         case 'H': tot += 1.3; break;
464         case 'N': tot += 1.3; break;
465         case 'V': tot += 1.3; break;
466         case 'X': tot += 1.3; break;
467         case 'Y': tot += 1.3; break;
468         case 'Z': tot += 1.3; break;
469         case 'M': tot += 1.6; break;
470         case 'W': tot += 1.6; break;
471         case 'B': tot += 1.1; break;
472         case 'E': tot += 1.1; break;
473         case 'F': tot += 1.1; break;
474         case 'K': tot += 1.1; break;
475         case 'P': tot += 1.1; break;
476         case 'R': tot += 1.1; break;
477         case 'S': tot += 1.1; break;
478         case 'O': tot += 1.4; break;
479         case 'Q': tot += 1.4; break;
480         default:  tot++;
481     }
482     return tot;
483 #endif
484 }
485
486 static Widget
487 CreateComboPopup (Widget parent, Option *opt, int n, int fromList, int def)
488 {   // fromList determines if the item texts are taken from a list of strings, or from a menu table
489     int i;
490     Widget menu, entry;
491     Arg arg;
492     MenuItem *mb = (MenuItem *) opt->choice;
493     char **list = (char **) opt->choice;
494     int maxlength=0, menuLen[1000];
495
496
497     if(list[0] == NULL) return NULL; // avoid empty menus, as they cause crash
498     menu = XtCreatePopupShell(opt->name, simpleMenuWidgetClass, parent, NULL, 0);
499
500     if(!fromList)
501       for (i=0; mb[i].string; i++) if(mb[i].accel) {
502         int len = pixlen(_(mb[i].string));
503         menuLen[i] = len;
504         if (maxlength < len )
505           maxlength = len;
506       }
507
508     for (i=0; 1; i++)
509       {
510         char *msg = fromList ? list[i] : mb[i].string;
511         char *label=NULL;
512
513         if(!msg) break;
514
515         if(!fromList && mb[i].accel)
516           {
517             char *menuname = opt->min & NO_GETTEXT ? msg : _(msg);
518             char *accel = format_accel(mb[i].accel);
519             size_t len;
520 //          int fill = maxlength - strlen(menuname) +2+strlen(accel);
521             int fill = (maxlength - menuLen[i] + 3)*1.8;
522
523             len = strlen(menuname)+fill+strlen(accel)+1;
524             label = malloc(len);
525
526             snprintf(label,len,"%s%*s%s",menuname,fill," ",accel);
527             free(accel);
528           }
529         else
530           label = strdup(opt->min & NO_GETTEXT ? msg : _(msg));
531
532         entry = CreateMenuItem(menu, label, (XtCallbackProc) ComboSelect, (n<<16)+i);
533         if(!fromList) mb[i].handle = (void*) entry; // save item ID, for enabling / checkmarking
534         if(i==def) {
535             XtSetArg(arg, XtNpopupOnEntry, entry);
536             XtSetValues(menu, &arg, 1);
537         }
538         free(label);
539       }
540       return menu;
541 }
542
543 char moveTypeInTranslations[] =
544     "<Key>Return: TypeInProc(1) \n"
545     "<Key>Escape: TypeInProc(0) \n";
546 extern char filterTranslations[];
547 extern char gameListTranslations[];
548 extern char memoTranslations[];
549
550
551 char *translationTable[] = { // beware: order is essential!
552    historyTranslations, commentTranslations, moveTypeInTranslations, ICSInputTranslations,
553    filterTranslations, gameListTranslations, memoTranslations
554 };
555
556 void
557 AddHandler (Option *opt, DialogClass dlg, int nr)
558 {
559     XtOverrideTranslations(opt->handle, XtParseTranslationTable(translationTable[nr]));
560 }
561
562 //----------------------------Generic dialog --------------------------------------------
563
564 // cloned from Engine Settings dialog (and later merged with it)
565
566 Widget shells[NrOfDialogs];
567 DialogClass parents[NrOfDialogs];
568 WindowPlacement *wp[NrOfDialogs] = { // Beware! Order must correspond to DialogClass enum
569     NULL, &wpComment, &wpTags, NULL, NULL, NULL, NULL, &wpMoveHistory, &wpGameList, &wpEngineOutput, &wpEvalGraph,
570     NULL, NULL, NULL, NULL, /*&wpMain*/ NULL
571 };
572
573 int
574 DialogExists (DialogClass n)
575 {   // accessor for use in back-end
576     return shells[n] != NULL;
577 }
578
579 void
580 RaiseWindow (DialogClass dlg)
581 {
582     static XEvent xev;
583     Window root = RootWindow(xDisplay, DefaultScreen(xDisplay));
584     Atom atom = XInternAtom (xDisplay, "_NET_ACTIVE_WINDOW", False);
585
586     xev.xclient.type = ClientMessage;
587     xev.xclient.serial = 0;
588     xev.xclient.send_event = True;
589     xev.xclient.display = xDisplay;
590     xev.xclient.window = XtWindow(shells[dlg]);
591     xev.xclient.message_type = atom;
592     xev.xclient.format = 32;
593     xev.xclient.data.l[0] = 1;
594     xev.xclient.data.l[1] = CurrentTime;
595
596     XSendEvent (xDisplay,
597           root, False,
598           SubstructureRedirectMask | SubstructureNotifyMask,
599           &xev);
600
601     XFlush(xDisplay);
602     XSync(xDisplay, False);
603 }
604
605 int
606 PopDown (DialogClass n)
607 {   // pops down any dialog created by GenericPopUp (or returns False if it wasn't up), unmarks any associated marked menu
608     int j;
609     Arg args[10];
610     Dimension windowH, windowW; Position windowX, windowY;
611     if (!shellUp[n] || !shells[n]) return 0;
612     if(n && wp[n]) { // remember position
613         j = 0;
614         XtSetArg(args[j], XtNx, &windowX); j++;
615         XtSetArg(args[j], XtNy, &windowY); j++;
616         XtSetArg(args[j], XtNheight, &windowH); j++;
617         XtSetArg(args[j], XtNwidth, &windowW); j++;
618         XtGetValues(shells[n], args, j);
619         wp[n]->x = windowX;
620         wp[n]->x = windowY;
621         wp[n]->width  = windowW;
622         wp[n]->height = windowH;
623     }
624     previous = NULL;
625     XtPopdown(shells[n]);
626     shellUp[n]--; // count rather than clear
627     if(n == 0 || n >= PromoDlg) XtDestroyWidget(shells[n]), shells[n] = NULL;
628     if(marked[n]) {
629         MarkMenuItem(marked[n], False);
630         marked[n] = NULL;
631     }
632     if(!n && n != BrowserDlg) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
633     currentOption = dialogOptions[TransientDlg]; // just in case a transient dialog was up (to allow its check and combo callbacks to work)
634     RaiseWindow(parents[n]);
635     if(parents[n] == BoardWindow) XtSetKeyboardFocus(shellWidget, formWidget);
636     return 1;
637 }
638
639 void
640 GenericPopDown (Widget w, XEvent *event, String *prms, Cardinal *nprms)
641 {   // to cause popdown through a translation (Delete Window button!)
642     int dlg = atoi(prms[0]);
643     Widget sh = shells[dlg];
644     if(shellUp[BrowserDlg] && dlg != BrowserDlg || dialogError || dlg == MasterDlg && shellUp[TransientDlg])
645         return; // prevent closing dialog when it has an open file-browse or transient daughter
646     shells[dlg] = w;
647     PopDown(dlg);
648     shells[dlg] = sh; // restore
649 }
650
651 int
652 AppendText (Option *opt, char *s)
653 {
654     XawTextBlock t;
655     char *v;
656     int len;
657     GetWidgetText(opt, &v);
658     len = strlen(v);
659     t.ptr = s; t.firstPos = 0; t.length = strlen(s); t.format = XawFmt8Bit;
660     XawTextReplace(opt->handle, len, len, &t);
661     return len;
662 }
663
664 void
665 SetColor (char *colorName, Option *box)
666 {       // sets the color of a widget
667         Arg args[5];
668         Pixel buttonColor;
669         XrmValue vFrom, vTo;
670         if (!appData.monoMode) {
671             vFrom.addr = (caddr_t) colorName;
672             vFrom.size = strlen(colorName);
673             XtConvert(shellWidget, XtRString, &vFrom, XtRPixel, &vTo);
674             if (vTo.addr == NULL) {
675                 buttonColor = (Pixel) -1;
676             } else {
677                 buttonColor = *(Pixel *) vTo.addr;
678             }
679         } else buttonColor = timerBackgroundPixel;
680         XtSetArg(args[0], XtNbackground, buttonColor);;
681         XtSetValues(box->handle, args, 1);
682 }
683
684 void
685 ColorChanged (Widget w, XtPointer data, XEvent *event, Boolean *b)
686 {   // for detecting a typed change in color
687     char buf[10];
688     if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
689         RefreshColor((int)(intptr_t) data, 0);
690 }
691
692 static void
693 GraphEventProc(Widget widget, caddr_t client_data, XEvent *event)
694 {   // handle expose and mouse events on Graph widget
695     Dimension w, h;
696     Arg args[16];
697     int j, button=10, f=1, sizing=0;
698     Option *opt, *graph = (Option *) client_data;
699     PointerCallback *userHandler = graph->target;
700
701     if (!XtIsRealized(widget)) return;
702
703     switch(event->type) {
704         case Expose: // make handling of expose events generic, just copying from memory buffer (->choice) to display (->textValue)
705             /* Get window size */
706             j = 0;
707             XtSetArg(args[j], XtNwidth, &w); j++;
708             XtSetArg(args[j], XtNheight, &h); j++;
709             XtGetValues(widget, args, j);
710
711             if(w < graph->max || w > graph->max + 1 || h != graph->value) { // use width fudge of 1 pixel
712                 if(((XExposeEvent*)event)->count >= 0) { // suppress sizing on expose for ordered redraw in response to sizing.
713                     sizing = 1;
714                     graph->max = w; graph->value = h; // note: old values are kept if we we don't exceed width fudge
715                 }
716             } else w = graph->max;
717
718             if(sizing && ((XExposeEvent*)event)->count > 0) { graph->max = 0; return; } // don't bother if further exposure is pending during resize
719             if(!graph->textValue || sizing) { // create surfaces of new size for display widget
720                 if(graph->textValue) cairo_surface_destroy((cairo_surface_t *)graph->textValue);
721                 graph->textValue = (char*) cairo_xlib_surface_create(xDisplay, XtWindow(widget), DefaultVisual(xDisplay, 0), w, h);
722             }
723             if(sizing) { // the memory buffer was already created in GenericPopup(),
724                          // to give drawing routines opportunity to use it before first expose event
725                          // (which are only processed when main gets to the event loop, so after all init!)
726                          // so only change when size is no longer good
727                 cairo_t *cr;
728                 if(graph->choice) cairo_surface_destroy((cairo_surface_t *) graph->choice);
729                 graph->choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, w, h);
730                 // paint white, to prevent weirdness when people maximize window and drag pieces over space next to board
731                 cr = cairo_create ((cairo_surface_t *) graph->choice);
732                 cairo_rectangle (cr, 0, 0, w, h);
733                 cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0);
734                 cairo_fill(cr);
735                 cairo_destroy (cr);
736                 break;
737             }
738             w = ((XExposeEvent*)event)->width;
739             if(((XExposeEvent*)event)->x + w > graph->max) w--; // cut off fudge pixel
740             if(w) ExposeRedraw(graph, ((XExposeEvent*)event)->x, ((XExposeEvent*)event)->y, w, ((XExposeEvent*)event)->height);
741             return;
742         case MotionNotify:
743             f = 0;
744             w = ((XButtonEvent*)event)->x; h = ((XButtonEvent*)event)->y;
745             break;
746         case ButtonRelease:
747             f = -1; // release indicated by negative button numbers
748         case ButtonPress:
749             w = ((XButtonEvent*)event)->x; h = ((XButtonEvent*)event)->y;
750             switch(((XButtonEvent*)event)->button) {
751                 case Button1: button = 1; break;
752                 case Button2: button = 2; break;
753                 case Button3: button = 3; break;
754                 case Button4: button = 4; break;
755                 case Button5: button = 5; break;
756             }
757     }
758     button *= f;
759     opt = userHandler(button, w, h);
760     if(opt) { // user callback specifies a context menu; pop it up
761         XUngrabPointer(xDisplay, CurrentTime);
762         XtCallActionProc(widget, "XawPositionSimpleMenu", event, &(opt->name), 1);
763         XtPopupSpringLoaded(opt->handle);
764     }
765     XSync(xDisplay, False);
766 }
767
768 void
769 GraphExpose (Option *opt, int x, int y, int w, int h)
770 {
771   XExposeEvent e;
772   if(!opt->handle) return;
773   e.x = x; e.y = y; e.width = w; e.height = h; e.count = -1; e.type = Expose; // count = -1: kludge to suppress sizing
774   GraphEventProc(opt->handle, (caddr_t) opt, (XEvent *) &e); // fake expose event
775 }
776
777 static void
778 GenericCallback (Widget w, XtPointer client_data, XtPointer call_data)
779 {   // all Buttons in a dialog (including OK, cancel) invoke this
780     String name;
781     Arg args[16];
782     char buf[MSG_SIZ];
783     int data = (intptr_t) client_data;
784     DialogClass dlg;
785     Widget sh = XtParent(XtParent(XtParent(w))), oldSh;
786
787     currentOption = dialogOptions[dlg=data>>16]; data &= 0xFFFF;
788     oldSh = shells[dlg]; shells[dlg] = sh; // bow to reality
789     if (data == 30000) { // cancel
790         PopDown(dlg);
791     } else
792     if (data == 30001) { // save buttons imply OK
793         if(GenericReadout(currentOption, -1)) PopDown(dlg); // calls OK-proc after full readout, but no popdown if it returns false
794     } else
795
796     if(currentCps && dlg != BrowserDlg) {
797         XtSetArg(args[0], XtNlabel, &name);
798         XtGetValues(w, args, 1);
799         if(currentOption[data].type == SaveButton) GenericReadout(currentOption, -1);
800         snprintf(buf, MSG_SIZ,  "option %s\n", name);
801         SendToProgram(buf, currentCps);
802     } else ((ButtonCallback*) currentOption[data].target)(data);
803
804     shells[dlg] = oldSh; // in case of multiple instances, restore previous (as this one could be popped down now)
805 }
806
807 void
808 TabProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
809 {   // for transfering focus to the next text-edit
810     Option *opt;
811     for(opt = currentOption; opt->type != EndMark; opt++) {
812         if(opt->handle == w) {
813             while(++opt) {
814                 if(opt->type == EndMark) opt = currentOption; // wrap
815                 if(opt->handle == w) return; // full circle
816                 if(opt->type == TextBox || opt->type == Spin || opt->type == Fractional || opt->type == FileName || opt->type == PathName) {
817                     SetFocus(opt->handle, XtParent(XtParent(XtParent(w))), NULL, 0);
818                     return;
819                 }
820             }
821         }
822     }
823 }
824
825 void
826 WheelProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
827 {   // for scrolling a widget seen through a viewport with the mouse wheel (ListBox!)
828     int j=0, n = atoi(prms[0]);
829     static char *params[3] = { "", "Continuous", "Proportional" };
830     Arg args[16];
831     float h, top;
832     Widget v;
833     if(!n) { // transient dialogs also use this for list-selection callback
834         n = prms[1][0]-'0';
835         Option *opt=dialogOptions[prms[2][0]-'A'] + n;
836         if(opt->textValue) ((ListBoxCallback*) opt->textValue)(n, SelectedListBoxItem(opt));
837         return;
838     }
839     v = XtNameToWidget(XtParent(w), "vertical");
840     if(!v) return;
841     XtSetArg(args[j], XtNshown, &h); j++;
842     XtSetArg(args[j], XtNtopOfThumb, &top); j++;
843     XtGetValues(v, args, j);
844     top += 0.1f*h*n; if(top < 0.f) top = 0.;
845     XtCallActionProc(v, "StartScroll", event, params+1, 1);
846     XawScrollbarSetThumb(v, top, -1.0);
847     XtCallActionProc(v, "NotifyThumb", event, params, 0);
848 //    XtCallActionProc(w, "NotifyScroll", event, params+2, 1);
849     XtCallActionProc(v, "EndScroll", event, params, 0);
850 }
851
852 static char *oneLiner  =
853    "<Key>Return: redraw-display() \n \
854     <Key>Tab: TabProc() \n ";
855 static char scrollTranslations[] =
856    "<Btn1Up>(2): WheelProc(0 0 A) \n \
857     <Btn4Down>: WheelProc(-1) \n \
858     <Btn5Down>: WheelProc(1) \n ";
859
860 static void
861 SqueezeIntoBox (Option *opt, int nr, int width)
862 {   // size buttons in bar to fit, clipping button names where necessary
863     int i, wtot = 0;
864     Dimension widths[20], oldWidths[20];
865     Arg arg;
866     for(i=1; i<nr; i++) {
867         XtSetArg(arg, XtNwidth, &widths[i]);
868         XtGetValues(opt[i].handle, &arg, 1);
869         wtot +=  oldWidths[i] = widths[i];
870     }
871     opt->min = wtot;
872     if(width <= 0) return;
873     while(wtot > width) {
874         int wmax=0, imax=0;
875         for(i=1; i<nr; i++) if(widths[i] > wmax) wmax = widths[imax=i];
876         widths[imax]--;
877         wtot--;
878     }
879     for(i=1; i<nr; i++) if(widths[i] != oldWidths[i]) {
880         XtSetArg(arg, XtNwidth, widths[i]);
881         XtSetValues(opt[i].handle, &arg, 1);
882     }
883     opt->min = wtot;
884 }
885
886 int
887 SetPositionAndSize (Arg *args, Widget leftNeigbor, Widget topNeigbor, int b, int w, int h, int chaining)
888 {   // sizing and positioning most widgets have in common
889     int j = 0;
890     // first position the widget w.r.t. earlier ones
891     if(chaining & 1) { // same row: position w.r.t. last (on current row) and lastrow
892         XtSetArg(args[j], XtNfromVert, topNeigbor); j++;
893         XtSetArg(args[j], XtNfromHoriz, leftNeigbor); j++;
894     } else // otherwise it goes at left margin (which is default), below the previous element
895         XtSetArg(args[j], XtNfromVert, leftNeigbor),  j++;
896     // arrange chaining ('2'-bit indicates top and bottom chain the same)
897     if((chaining & 14) == 6) XtSetArg(args[j], XtNtop,    XtChainBottom), j++;
898     if((chaining & 14) == 10) XtSetArg(args[j], XtNbottom, XtChainTop ), j++;
899     if(chaining & 4) XtSetArg(args[j], XtNbottom, XtChainBottom ), j++;
900     if(chaining & 8) XtSetArg(args[j], XtNtop,    XtChainTop), j++;
901     if(chaining & 0x10) XtSetArg(args[j], XtNright, XtChainRight), j++;
902     if(chaining & 0x20) XtSetArg(args[j], XtNleft,  XtChainRight), j++;
903     if(chaining & 0x40) XtSetArg(args[j], XtNright, XtChainLeft ), j++;
904     if(chaining & 0x80) XtSetArg(args[j], XtNleft,  XtChainLeft ), j++;
905     // set size (if given)
906     if(w) XtSetArg(args[j], XtNwidth, w), j++;
907     if(h) XtSetArg(args[j], XtNheight, h),  j++;
908     // color
909     if(!appData.monoMode) {
910         if(!b && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
911         if(b == 3 && appData.buttonColor[0]) XtSetArg(args[j], XtNbackground, buttonColor),  j++;
912     }
913     if(b == 3) b = 1;
914     // border
915     XtSetArg(args[j], XtNborderWidth, b);  j++;
916     return j;
917 }
918
919 int
920 GenericPopUp (Option *option, char *title, DialogClass dlgNr, DialogClass parent, int modal, int top)
921 {
922     Arg args[24];
923     Widget popup, layout, dialog=NULL, edit=NULL, form,  last, b_ok, b_cancel, previousPane = NULL, textField = NULL, oldForm, oldLastRow, oldForeLast;
924     Window root, child;
925     int x, y, i, j, height=999, width=1, h, c, w, shrink=FALSE, stack = 0, box, chain;
926     int win_x, win_y, maxWidth, maxTextWidth;
927     unsigned int mask;
928     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
929     static char pane[6] = "paneX";
930     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL, browse = NULL;
931     Dimension bWidth = 50;
932
933     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
934     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
935         XtPopup(shells[dlgNr], XtGrabNone);
936         shellUp[dlgNr] = True;
937         return 0;
938     }
939     if(dlgNr == TransientDlg && parent == BoardWindow && shellUp[MasterDlg]) parent = MasterDlg; // MasterDlg can always take role of main window
940
941     dialogOptions[dlgNr] = option; // make available to callback
942     // post currentOption globally, so Spin and Combo callbacks can already use it
943     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
944     currentOption = option;
945
946     if(engineDlg) { // Settings popup for engine: format through heuristic
947         int n = currentCps->nrOptions;
948         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
949         height = n / width + 1;
950         if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
951         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
952     }
953      i = 0;
954     XtSetArg(args[i], XtNresizable, True); i++;
955     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
956
957     if(dlgNr == BoardWindow) popup = shellWidget; else
958     popup = shells[dlgNr] =
959       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
960                                                            shells[parent], args, i);
961
962     layout =
963       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
964                             layoutArgs, XtNumber(layoutArgs));
965     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[0], XtNbackground, dialogColor);
966     XtSetValues(layout, args, 1);
967
968   for(c=0; c<width; c++) {
969     pane[4] = 'A'+c;
970     form =
971       XtCreateManagedWidget(pane, formWidgetClass, layout,
972                             formArgs, XtNumber(formArgs));
973     j=0;
974     XtSetArg(args[j], stack ? XtNfromVert : XtNfromHoriz, previousPane);  j++;
975     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
976     XtSetValues(form, args, j);
977     lastrow = forelast = NULL;
978     previousPane = form;
979
980     last = widest = NULL; anchor = lastrow;
981     for(h=0; h<height || c == width-1; h++) {
982         i = h + c*height;
983         if(option[i].type == EndMark) break;
984         if(option[i].type == Skip) continue;
985         lastrow = forelast;
986         forelast = last;
987         switch(option[i].type) {
988           case Fractional:
989             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
990             option[i].value = *(float*)option[i].target;
991             goto tBox;
992           case Spin:
993             if(!engineDlg) option[i].value = *(int*)option[i].target;
994             snprintf(def, MSG_SIZ,  "%d", option[i].value);
995           case TextBox:
996           case FileName:
997           case PathName:
998           tBox:
999             if(option[i].name[0]) { // prefixed by label with option name
1000                 j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1001                                        0 /* w */, textHeight /* h */, 0xC0 /* chain to left edge */);
1002                 XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1003                 XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1004                 texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1005             } else texts[h] = dialog = NULL; // kludge to position from left margin
1006             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1007             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1008             if(squareSize > 33) w += (squareSize - 33)/2;
1009             j = SetPositionAndSize(args, dialog, last, 1 /* border */,
1010                                    w /* w */, option[i].type == TextBox ? option[i].value : 0 /* h */, 0x91 /* chain full width */);
1011             if(option[i].type == TextBox) { // decorations for multi-line text-edits
1012                 if(option[i].min & T_VSCRL) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
1013                 if(option[i].min & T_HSCRL) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
1014                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
1015                 if(option[i].min & T_WRAP)  { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
1016                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1017                     if(!option[i].value) {    XtSetArg(args[j], XtNbottom, XtChainTop); j++;
1018                                               XtSetValues(dialog, args+j-2, 2);
1019                     }
1020                 }
1021             } else shrink = TRUE;
1022             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
1023             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
1024             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
1025             XtSetArg(args[j], XtNresizable, True);  j++;
1026             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
1027             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def :
1028                                 engineDlg ? option[i].textValue : *(char**)option[i].target);  j++;
1029             edit = last;
1030             option[i].handle = (void*)
1031                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
1032             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup); // gets focus on mouse click
1033             if(option[i].min == 0 || option[i].type != TextBox)
1034                 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner)); // standard handler for <Enter> and <Tab>
1035
1036             if(option[i].type == TextBox || option[i].type == Fractional) break;
1037
1038             // add increment and decrement controls for spin
1039             if(option[i].type == FileName || option[i].type == PathName) {
1040                 msg = _("browse"); w = 0; // automatically scale to width of text
1041                 j = textHeight ? textHeight : 0;
1042             } else {
1043                 w = 20; msg = "+"; j = textHeight/2; // spin button
1044             }
1045             j = SetPositionAndSize(args, last, edit, 3 /* border */,
1046                                    w /* w */, j /* h */, 0x31 /* chain to right edge */);
1047             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1048             XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1049             if(w == 0) browse = edit;
1050
1051             if(option[i].type != Spin) break;
1052
1053             j = SetPositionAndSize(args, last, edit, 3 /* border */,
1054                                    20 /* w */, textHeight/2 /* h */, 0x31 /* chain to right edge */);
1055             XtSetArg(args[j], XtNvertDistance, -1);  j++;
1056             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1057             XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1058             break;
1059           case CheckBox:
1060             if(!engineDlg) option[i].value = *(Boolean*)option[i].target; // where checkbox callback uses it
1061             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
1062                                    textHeight/2 /* w */, textHeight/2 /* h */, 0xC0 /* chain both to left edge */);
1063             XtSetArg(args[j], XtNvertDistance, (textHeight+2)/4 + 3);  j++;
1064             XtSetArg(args[j], XtNstate, option[i].value);  j++;
1065             lastrow  = last;
1066             option[i].handle = (void*)
1067                 (last = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1068             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1069                                    option[i].max /* w */, textHeight /* h */, 0xC1 /* chain */);
1070             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1071             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1072             last = XtCreateManagedWidget("label", commandWidgetClass, form, args, j);
1073             // make clicking the text toggle checkbox
1074             XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1075             shrink = TRUE; // following buttons must get text height
1076             break;
1077           case Icon:
1078           case Label:
1079             msg = option[i].name;
1080             if(!msg) break;
1081             chain = option[i].min;
1082             if(chain & SAME_ROW) forelast = lastrow; else shrink = FALSE;
1083             j = SetPositionAndSize(args, last, lastrow, (chain & 2) != 0 /* border */,
1084                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, chain | 2 /* chain */);
1085 #if ENABLE_NLS
1086             if(option[i].choice) XtSetArg(args[j], XtNfontSet, *(XFontSet*)option[i].choice), j++;
1087 #else
1088             if(option[i].choice) XtSetArg(args[j], XtNfont, (XFontStruct*)option[i].choice), j++;
1089 #endif
1090             XtSetArg(args[j], XtNresizable, False);  j++;
1091             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1092             XtSetArg(args[j], XtNlabel, _(msg));  j++;
1093             option[i].handle = (void*) (last = XtCreateManagedWidget("label", labelWidgetClass, form, args, j));
1094             if(option[i].target) // allow user to specify event handler for button presses
1095                 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1096             break;
1097           case SaveButton:
1098           case Button:
1099             if(option[i].min & SAME_ROW) {
1100                 chain = 0x31; // 0011.0001 = both left and right side to right edge
1101                 forelast = lastrow;
1102             } else chain = 0, shrink = FALSE;
1103             j = SetPositionAndSize(args, last, lastrow, 3 /* border */,
1104                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, option[i].min & 0xE | chain /* chain */);
1105             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1106             if(option[i].textValue) { // special for buttons of New Variant dialog
1107                 XtSetArg(args[j], XtNsensitive, option[i].value >= 0 && (appData.noChessProgram
1108                                          || strstr(first.variants, VariantName(option[i].value)))); j++;
1109                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1110             }
1111             option[i].handle = (void*)
1112                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1113             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !engineDlg) { // for the color picker default-reset
1114                 SetColor( *(char**) option[i-1].target, &option[i]);
1115                 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
1116             }
1117             XtAddCallback(last, XtNcallback, GenericCallback, (XtPointer)(intptr_t) i + (dlgNr<<16)); // invokes user callback
1118             if(option[i].textValue) SetColor( option[i].textValue, &option[i]); // for new-variant buttons
1119             break;
1120           case ComboBox:
1121             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1122                                    0 /* w */, textHeight /* h */, 0xC0 /* chain both sides to left edge */);
1123             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1124             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1125             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1126
1127             if(option[i].min & COMBO_CALLBACK) msg = _(option[i].name); else {
1128               if(!engineDlg) SetCurrentComboSelection(option+i);
1129               msg=_(((char**)option[i].choice)[option[i].value]);
1130             }
1131
1132             j = SetPositionAndSize(args, dialog, last, (option[i].min & 2) == 0 /* border */,
1133                                    option[i].max && !engineDlg ? option[i].max : 100 /* w */,
1134                                    textHeight /* h */, 0x91 /* chain */); // same row as its label!
1135             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1136             XtSetArg(args[j], XtNlabel, msg);  j++;
1137             shrink = TRUE;
1138             option[i].handle = (void*)
1139                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1140             CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, -1);
1141             values[i] = option[i].value;
1142             break;
1143           case ListBox:
1144             // Listbox goes in viewport, as needed for game list
1145             if(option[i].min & SAME_ROW) forelast = lastrow;
1146             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
1147                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1148             XtSetArg(args[j], XtNresizable, False);  j++;
1149             XtSetArg(args[j], XtNallowVert, True); j++; // scoll direction
1150             last =
1151               XtCreateManagedWidget("viewport", viewportWidgetClass, form, args, j);
1152             j = 0; // now list itself
1153             XtSetArg(args[j], XtNdefaultColumns, 1);  j++;
1154             XtSetArg(args[j], XtNforceColumns, True);  j++;
1155             XtSetArg(args[j], XtNverticalList, True);  j++;
1156             option[i].handle = (void*)
1157                 (edit = XtCreateManagedWidget("list", listWidgetClass, last, args, j));
1158             XawListChange(option[i].handle, option[i].target, 0, 0, True);
1159             XawListHighlight(option[i].handle, 0);
1160             scrollTranslations[25] = '0' + i;
1161             scrollTranslations[27] = 'A' + dlgNr;
1162             XtOverrideTranslations(edit, XtParseTranslationTable(scrollTranslations)); // for mouse-wheel
1163             break;
1164           case Graph:
1165             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1166                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1167             option[i].handle = (void*)
1168                 (last = XtCreateManagedWidget("graph", widgetClass, form, args, j));
1169             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1170                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1171             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1172             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1173             break;
1174           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1175             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1176             break;
1177           case BarBegin:
1178           case BoxBegin:
1179             if(option[i].min & SAME_ROW) forelast = lastrow;
1180             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1181                                    0 /* w */, 0 /* h */, option[i].min /* chain */);
1182             XtSetArg(args[j], XtNorientation, XtorientHorizontal);  j++;
1183             XtSetArg(args[j], XtNvSpace, 0);                        j++;
1184             option[box=i].handle = (void*)
1185                 (last = XtCreateWidget("box", boxWidgetClass, form, args, j));
1186             oldForm = form; form = last; oldLastRow = lastrow; oldForeLast = forelast;
1187             lastrow = NULL; last = NULL;
1188             break;
1189           case DropDown:
1190             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1191                                    0 /* w */, 0 /* h */, 1 /* chain (always on same row) */);
1192             forelast = lastrow;
1193             msg = _(option[i].name); // write name on the menu button
1194             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1195             XtSetArg(args[j], XtNlabel, msg);  j++;
1196             option[i].handle = (void*)
1197                 (last = XtCreateManagedWidget(option[i].name, menuButtonWidgetClass, form, args, j));
1198             option[i].textValue = (char*) CreateComboPopup(last, option + i, i + 256*dlgNr, FALSE, -1);
1199             break;
1200           case BarEnd:
1201           case BoxEnd:
1202             XtManageChildren(&form, 1);
1203             SqueezeIntoBox(&option[box], i-box, option[box].max);
1204             if(option[i].target) ((ButtonCallback*)option[i].target)(box); // callback that can make sizing decisions
1205             last = form; lastrow = oldLastRow; form = oldForm; forelast = oldForeLast;
1206             break;
1207           case Break:
1208             width++;
1209             height = i+1;
1210             stack = !(option[i].min & SAME_ROW);
1211             break;
1212         default:
1213             printf("GenericPopUp: unexpected case in switch.\n");
1214             break;
1215         }
1216     }
1217
1218     // make an attempt to align all spins and textbox controls
1219     maxWidth = maxTextWidth = 0;
1220     if(browse != NULL) {
1221         j=0;
1222         XtSetArg(args[j], XtNwidth, &bWidth);  j++;
1223         XtGetValues(browse, args, j);
1224     }
1225     for(h=0; h<height || c == width-1; h++) {
1226         i = h + c*height;
1227         if(option[i].type == EndMark) break;
1228         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1229                                   || option[i].type == PathName || option[i].type == FileName) {
1230             Dimension w;
1231             if(!texts[h]) continue;
1232             j=0;
1233             XtSetArg(args[j], XtNwidth, &w);  j++;
1234             XtGetValues(texts[h], args, j);
1235             if(option[i].type == Spin) {
1236                 if(w > maxWidth) maxWidth = w;
1237                 widest = texts[h];
1238             } else {
1239                 if(w > maxTextWidth) maxTextWidth = w;
1240                 if(!widest) widest = texts[h];
1241             }
1242         }
1243     }
1244     if(maxTextWidth + 110 < maxWidth)
1245          maxTextWidth = maxWidth - 110;
1246     else maxWidth = maxTextWidth + 110;
1247     for(h=0; h<height || c == width-1; h++) {
1248         i = h + c*height;
1249         if(option[i].type == EndMark) break;
1250         if(!texts[h]) continue; // Note: texts[h] can be undefined (giving errors in valgrind), but then both if's below will be false.
1251         j=0;
1252         if(option[i].type == Spin) {
1253             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1254             XtSetValues(texts[h], args, j);
1255         } else
1256         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1257             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1258             XtSetValues(texts[h], args, j);
1259             if(bWidth != 50 && (option[i].type == FileName || option[i].type == PathName)) {
1260                 int tWidth = (option[i].max ? option[i].max : 205) - 5 - bWidth;
1261                 j = 0;
1262                 XtSetArg(args[j], XtNwidth, tWidth);  j++;
1263                 XtSetValues(option[i].handle, args, j);
1264             }
1265         }
1266     }
1267   }
1268
1269     if(option[i].min & SAME_ROW) { // even when OK suppressed this EndMark bit can request chaining of last row to bottom
1270         for(j=i-1; option[j+1].min & SAME_ROW; j--) {
1271             XtSetArg(args[0], XtNtop, XtChainBottom);
1272             XtSetArg(args[1], XtNbottom, XtChainBottom);
1273             XtSetValues(option[j].handle, args, 2);
1274         }
1275         if((option[j].type == TextBox || option[j].type == ListBox) && option[j].name[0] == NULLCHAR) {
1276             Widget w = option[j].handle;
1277             if(option[j].type == ListBox) w = XtParent(w); // for listbox we must chain viewport
1278             XtSetArg(args[0], XtNbottom, XtChainBottom);
1279             XtSetValues(w, args, 1);
1280         }
1281         lastrow = forelast;
1282     } else shrink = FALSE, lastrow = last, last = widest ? widest : dialog;
1283     j = SetPositionAndSize(args, last, anchor ? anchor : lastrow, 3 /* border */,
1284                            0 /* w */, shrink ? textHeight : 0 /* h */, 0x37 /* chain: right, bottom and use both neighbors */);
1285
1286   if(!(option[i].min & NO_OK)) {
1287     option[i].handle = b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1288     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30001 + (dlgNr<<16)));
1289     if(!(option[i].min & NO_CANCEL)) {
1290       XtSetArg(args[1], XtNfromHoriz, b_ok); // overwrites!
1291       b_cancel = XtCreateManagedWidget(_("Cancel"), commandWidgetClass, form, args, j);
1292       XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30000 + (dlgNr<<16)));
1293     }
1294   }
1295
1296     XtRealizeWidget(popup);
1297     if(dlgNr != BoardWindow) { // assign close button, and position w.r.t. pointer, if not main window
1298         XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1299         snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1300         XtAugmentTranslations(popup, XtParseTranslationTable(def));
1301         XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1302                         &x, &y, &win_x, &win_y, &mask);
1303
1304         XtSetArg(args[0], XtNx, x - 10);
1305         XtSetArg(args[1], XtNy, y - 30);
1306         XtSetValues(popup, args, 2);
1307     }
1308     XtPopup(popup, modal ? XtGrabExclusive : XtGrabNone);
1309     shellUp[dlgNr]++; // count rather than flag
1310     previous = NULL;
1311     if(textField) SetFocus(textField, popup, (XEvent*) NULL, False);
1312     if(dlgNr && wp[dlgNr]) { // if persistent window-info available, reposition
1313         j = 0;
1314         if(wp[dlgNr]->width > 0 && wp[dlgNr]->height > 0) {
1315           XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1316           XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1317         }
1318         if(wp[dlgNr]->x > 0 && wp[dlgNr]->y > 0) {
1319           XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1320           XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1321         }
1322         if(j) XtSetValues(popup, args, j);
1323     }
1324     RaiseWindow(dlgNr);
1325     return 1; // tells caller he must do initialization (e.g. add specific event handlers)
1326 }
1327
1328
1329 /* function called when the data to Paste is ready */
1330 static void
1331 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1332             Atom *type, XtPointer value, unsigned long *len, int *format)
1333 {
1334   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1335   if (value==NULL || *len==0) return; /* nothing selected, abort */
1336   name[*len]='\0';
1337   strncpy(buf, p, MSG_SIZ);
1338   q = strstr(p, "$name");
1339   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1340   SendString(buf);
1341   XtFree(value);
1342 }
1343
1344 void
1345 SendText (int n)
1346 {
1347     char *p = (char*) textOptions[n].choice;
1348     if(strstr(p, "$name")) {
1349         XtGetSelectionValue(menuBarWidget,
1350           XA_PRIMARY, XA_STRING,
1351           /* (XtSelectionCallbackProc) */ SendTextCB,
1352           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1353           CurrentTime
1354         );
1355     } else SendString(p);
1356 }
1357
1358 void
1359 SetInsertPos (Option *opt, int pos)
1360 {
1361     Arg args[16];
1362     XtSetArg(args[0], XtNinsertPosition, pos);
1363     XtSetValues(opt->handle, args, 1);
1364 //    SetFocus(opt->handle, shells[InputBoxDlg], NULL, False); // No idea why this does not work, and the following is needed:
1365 //    XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1366 }
1367
1368 void
1369 TypeInProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1370 {   // can be used as handler for any text edit in any dialog (from GenericPopUp, that is)
1371     int n = prms[0][0] - '0';
1372     Widget sh = XtParent(XtParent(XtParent(w))); // popup shell
1373
1374     if(n<2) { // Enter or Esc typed from primed text widget: treat as if dialog OK or cancel button hit.
1375         int dlgNr; // figure out what the dialog number is by comparing shells (because we must pass it :( )
1376         for(dlgNr=0; dlgNr<NrOfDialogs; dlgNr++) if(shellUp[dlgNr] && shells[dlgNr] == sh)
1377             GenericCallback (w, (XtPointer)(intptr_t) (30000 + n + (dlgNr<<16)), NULL);
1378     }
1379 }
1380
1381 void
1382 HardSetFocus (Option *opt)
1383 {
1384     XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1385 }
1386
1387 void
1388 FileNamePopUpWrapper (char *label, char *def, char *filter, FileProc proc, Boolean pathFlag, char *openMode, char **openName, FILE **openFP)
1389 {
1390     Browse(BoardWindow, label, (def[0] ? def : NULL), filter, False, openMode, openName, openFP);
1391 }