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