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