Let file browser filter on extension
[xboard.git] / xoptions.c
1 /*
2  * xoptions.c -- Move list window, part of X front end for XBoard
3  *
4  * Copyright 2000, 2009, 2010, 2011 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
70 #include "common.h"
71 #include "backend.h"
72 #include "xboard.h"
73 #include "gettext.h"
74
75 #ifdef ENABLE_NLS
76 # define  _(s) gettext (s)
77 # define N_(s) gettext_noop (s)
78 #else
79 # define  _(s) (s)
80 # define N_(s)  s
81 #endif
82
83 extern void SendToProgram P((char *message, ChessProgramState *cps));
84 FILE * XsraSelFile P((Widget w, char *prompt, char *ok, char *cancel, char *failed,
85                 char *init_path, char *filter, char *mode, int (*show_entry)(), char **name_return));
86
87 extern Widget formWidget, shellWidget, boardWidget, menuBarWidget;
88 extern Display *xDisplay;
89 extern int squareSize;
90 extern Pixmap xMarkPixmap;
91 extern char *layoutName;
92 extern Window xBoardWindow;
93 extern Arg layoutArgs[2], formArgs[2];
94 Pixel timerForegroundPixel, timerBackgroundPixel;
95 extern int searchTime;
96 extern Atom wm_delete_window;
97 extern int lineGap;
98
99 // [HGM] the following code for makng menu popups was cloned from the FileNamePopUp routines
100
101 static Widget previous = NULL;
102
103 void SetFocus(Widget w, XtPointer data, XEvent *event, Boolean *b)
104 {
105     Arg args[2];
106     char *s;
107
108     if(previous) {
109         XtSetArg(args[0], XtNdisplayCaret, False);
110         XtSetValues(previous, args, 1);
111     }
112     XtSetArg(args[0], XtNstring, &s);
113     XtGetValues(w, args, 1);
114     XtSetArg(args[0], XtNdisplayCaret, True);
115     XtSetArg(args[1], XtNinsertPosition, strlen(s));
116     XtSetValues(w, args, 2);
117     XtSetKeyboardFocus((Widget) data, w);
118     previous = w;
119 }
120
121 //--------------------------- New Shuffle Game --------------------------------------------
122 extern int shuffleOpenings;
123 extern int startedFromPositionFile;
124 int shuffleUp;
125 Widget shuffleShell;
126
127 void ShufflePopDown()
128 {
129     if (!shuffleUp) return;
130     XtPopdown(shuffleShell);
131     XtDestroyWidget(shuffleShell);
132     shuffleUp = False;
133     ModeHighlight();
134 }
135
136 void ShuffleCallback(w, client_data, call_data)
137      Widget w;
138      XtPointer client_data, call_data;
139 {
140     String name;
141     Widget w2;
142     Arg args[16];
143     char buf[MSG_SIZ];
144
145     XtSetArg(args[0], XtNlabel, &name);
146     XtGetValues(w, args, 1);
147
148     if (strcmp(name, _("cancel")) == 0) {
149         ShufflePopDown();
150         return;
151     }
152     if (strcmp(name, _("off")) == 0) {
153         ShufflePopDown();
154         shuffleOpenings = False; // [HGM] should be moved to New Variant menu, once we have it!
155         ResetGameEvent();
156         return;
157     }
158     if (strcmp(name, _("random")) == 0) {
159       snprintf(buf, MSG_SIZ,  "%d", rand());
160         XtSetArg(args[0],XtNvalue, buf); // erase bad (non-numeric) value
161         XtSetValues(XtParent(w), args, 1);
162         return;
163     }
164     if (strcmp(name, _("ok")) == 0) {
165         int nr; String name;
166         name = XawDialogGetValueString(w2 = XtParent(w));
167         if(sscanf(name ,"%d",&nr) != 1) {
168           snprintf(buf, MSG_SIZ,  "%d", appData.defaultFrcPosition);
169             XtSetArg(args[0],XtNvalue, buf); // erase bad (non-numeric) value
170             XtSetValues(w2, args, 1);
171             return;
172         }
173         appData.defaultFrcPosition = nr;
174         shuffleOpenings = True;
175         ShufflePopDown();
176         ResetGameEvent();
177         return;
178     }
179 }
180
181 void ShufflePopUp()
182 {
183     Arg args[16];
184     Widget popup, layout, dialog, edit;
185     Window root, child;
186     int x, y, i;
187     int win_x, win_y;
188     unsigned int mask;
189     char def[MSG_SIZ];
190
191     i = 0;
192     XtSetArg(args[i], XtNresizable, True); i++;
193     XtSetArg(args[i], XtNwidth, DIALOG_SIZE); i++;
194     shuffleShell = popup =
195       XtCreatePopupShell(_("New Shuffle Game"), transientShellWidgetClass,
196                          shellWidget, args, i);
197
198     layout =
199       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
200                             layoutArgs, XtNumber(layoutArgs));
201
202     snprintf(def, MSG_SIZ,  "%d\n", appData.defaultFrcPosition);
203     i = 0;
204     XtSetArg(args[i], XtNlabel, _("Start-position number:")); i++;
205     XtSetArg(args[i], XtNvalue, def); i++;
206     XtSetArg(args[i], XtNborderWidth, 0); i++;
207     dialog = XtCreateManagedWidget(_("Shuffle"), dialogWidgetClass,
208                                    layout, args, i);
209
210 //    XtSetArg(args[0], XtNeditType, XawtextEdit);  // [HGM] can't get edit to work decently
211 //    XtSetArg(args[1], XtNuseStringInPlace, False);
212 //    XtSetValues(dialog, args, 2);
213
214     XawDialogAddButton(dialog, _("ok"), ShuffleCallback, (XtPointer) dialog);
215     XawDialogAddButton(dialog, _("cancel"), ShuffleCallback, (XtPointer) dialog);
216     XawDialogAddButton(dialog, _("random"), ShuffleCallback, (XtPointer) dialog);
217     XawDialogAddButton(dialog, _("off"), ShuffleCallback, (XtPointer) dialog);
218
219     XtRealizeWidget(popup);
220     CatchDeleteWindow(popup, "ShufflePopDown");
221
222     XQueryPointer(xDisplay, xBoardWindow, &root, &child,
223                   &x, &y, &win_x, &win_y, &mask);
224
225     XtSetArg(args[0], XtNx, x - 10);
226     XtSetArg(args[1], XtNy, y - 30);
227     XtSetValues(popup, args, 2);
228
229     XtPopup(popup, XtGrabExclusive);
230     shuffleUp = True;
231
232     edit = XtNameToWidget(dialog, "*value");
233
234     XtSetKeyboardFocus(popup, edit);
235 }
236
237 void ShuffleMenuProc(w, event, prms, nprms)
238      Widget w;
239      XEvent *event;
240      String *prms;
241      Cardinal *nprms;
242 {
243 //    if (gameMode == AnalyzeMode || gameMode == AnalyzeFile) {
244 //      Reset(FALSE, TRUE);
245 //    }
246     ShufflePopUp();
247 }
248
249 //--------------------------- Time-Control Menu Popup ----------------------------------
250 int TimeControlUp;
251 Widget TimeControlShell;
252 int tcInc;
253 Widget tcMess1, tcMess2, tcData, tcTime, tcOdds1, tcOdds2;
254 int tcIncrement, tcMoves;
255
256 void TimeControlPopDown()
257 {
258     if (!TimeControlUp) return;
259     previous = NULL;
260     XtPopdown(TimeControlShell);
261     XtDestroyWidget(TimeControlShell);
262     TimeControlUp = False;
263     ModeHighlight();
264 }
265
266 void TimeControlCallback(w, client_data, call_data)
267      Widget w;
268      XtPointer client_data, call_data;
269 {
270     String name, txt;
271     Arg args[16];
272     char buf[MSG_SIZ];
273     int j;
274
275     XtSetArg(args[0], XtNlabel, &name);
276     XtGetValues(w, args, 1);
277
278     if (strcmp(name, _("classical")) == 0) {
279         if(tcInc == 0) return;
280         j=0;
281         XtSetArg(args[j], XtNlabel, _("minutes for each")); j++;
282         XtSetValues(tcMess1, args, j);
283         j=0;
284         XtSetArg(args[j], XtNlabel, _("moves")); j++;
285         XtSetValues(tcMess2, args, j);
286         if(tcInc == 1) {
287             j=0;
288             XtSetArg(args[j], XtNstring, &name); j++;
289             XtGetValues(tcData, args, j);
290             tcIncrement = 0; sscanf(name, "%d", &tcIncrement);
291         }
292         snprintf(buf, MSG_SIZ,  "%d", tcMoves);
293         j=0;
294         XtSetArg(args[j], XtNstring, buf); j++;
295         XtSetValues(tcData, args, j);
296         tcInc = 0;
297         return;
298     }
299     if (strcmp(name, _("incremental")) == 0) {
300         if(tcInc == 1) return;
301         j=0;
302         XtSetArg(args[j], XtNlabel, _("minutes, plus")); j++;
303         XtSetValues(tcMess1, args, j);
304         j=0;
305         XtSetArg(args[j], XtNlabel, _("sec/move")); j++;
306         XtSetValues(tcMess2, args, j);
307         if(tcInc == 0) {
308             j=0;
309             XtSetArg(args[j], XtNstring, &name); j++;
310             XtGetValues(tcData, args, j);
311             tcMoves = appData.movesPerSession; sscanf(name, "%d", &tcMoves);
312         }
313         snprintf(buf, MSG_SIZ,  "%d", tcIncrement);
314         j=0;
315         XtSetArg(args[j], XtNstring, buf); j++;
316         XtSetValues(tcData, args, j);
317         tcInc = 1;
318         return;
319     }
320     if (strcmp(name, _("fixed time")) == 0) {
321         if(tcInc == 2) return;
322         j=0;
323         XtSetArg(args[j], XtNlabel, _("sec/move (max)")); j++;
324         XtSetValues(tcMess1, args, j);
325         j=0;
326         XtSetArg(args[j], XtNlabel, _("")); j++;
327         XtSetValues(tcMess2, args, j);
328         j=0;
329         XtSetArg(args[j], XtNstring, ""); j++;
330         XtSetValues(tcData, args, j);
331         tcInc = 2;
332         return;
333     }
334     if (strcmp(name, _(" OK ")) == 0) {
335         int inc, mps, ok;
336         XtSetArg(args[0], XtNstring, &txt);
337         XtGetValues(tcData, args, 1);
338         switch(tcInc) {
339           case 1:
340             ok = sscanf(txt, "%d", &inc); mps = 0;
341             if(!ok && txt[0] == 0) { inc = 0; ok = 1; } // accept empty string as zero
342             ok &= (inc >= 0);
343             break;
344           case 0:
345             ok = sscanf(txt, "%d", &mps); inc = -1;
346             ok &= (mps > 0);
347             break;
348           case 2:
349             ok = 1; inc = -1; mps = 40;
350         }
351         if(ok != 1) {
352             XtSetArg(args[0], XtNstring, ""); // erase any offending input
353             XtSetValues(tcData, args, 1);
354             return;
355         }
356         XtSetArg(args[0], XtNstring, &txt);
357         XtGetValues(tcTime, args, 1);
358         if(tcInc == 2) {
359             if(sscanf(txt, "%d", &inc) != 1) {
360                 XtSetArg(args[0], XtNstring, ""); // erase any offending input
361                 XtSetValues(tcTime, args, 1);
362                 DisplayError(_("Bad Time-Control String"), 0);
363                 return;
364             }
365             searchTime = inc;
366         } else {
367             if(!ParseTimeControl(txt, inc, mps)) {
368                 XtSetArg(args[0], XtNstring, ""); // erase any offending input
369                 XtSetValues(tcTime, args, 1);
370                 DisplayError(_("Bad Time-Control String"), 0);
371                 return;
372             }
373             searchTime = 0;
374             appData.movesPerSession = mps;
375             appData.timeIncrement = inc;
376             appData.timeControl = strdup(txt);
377         }
378         XtSetArg(args[0], XtNstring, &txt);
379         XtGetValues(tcOdds1, args, 1);
380         appData.firstTimeOdds = first.timeOdds
381                 = (sscanf(txt, "%d", &j) == 1 && j > 0) ? j : 1;
382         XtGetValues(tcOdds2, args, 1);
383         appData.secondTimeOdds = second.timeOdds
384                 = (sscanf(txt, "%d", &j) == 1 && j > 0) ? j : 1;
385
386         Reset(True, True);
387         TimeControlPopDown();
388         return;
389     }
390 }
391
392 void TimeControlPopUp()
393 {
394     Arg args[16];
395     Widget popup, layout, form,  b_ok, b_cancel, b_clas, b_inc, mess;
396     Window root, child;
397     int x, y, i, j;
398     int win_x, win_y;
399     unsigned int mask;
400     char def[MSG_SIZ];
401
402     tcInc = searchTime > 0 ? 2 : (appData.timeIncrement >= 0);
403     tcMoves = appData.movesPerSession; tcIncrement = appData.timeIncrement;
404     if(!tcInc) tcIncrement = 0;
405     snprintf(def, MSG_SIZ,  "%d", tcInc ? tcIncrement : tcMoves);
406
407     i = 0;
408     XtSetArg(args[i], XtNresizable, True); i++;
409 //    XtSetArg(args[i], XtNwidth, DIALOG_SIZE); i++;
410     TimeControlShell = popup =
411       XtCreatePopupShell(_("TimeControl Menu"), transientShellWidgetClass,
412                          shellWidget, args, i);
413
414     layout =
415       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
416                             layoutArgs, XtNumber(layoutArgs));
417
418     form =
419       XtCreateManagedWidget(layoutName, formWidgetClass, layout,
420                             formArgs, XtNumber(formArgs));
421
422     j = 0;
423 //    XtSetArg(args[j], XtNwidth,     (XtArgVal) 300); j++;
424 //    XtSetArg(args[j], XtNheight,    (XtArgVal) 85); j++;
425     XtSetValues(popup, args, j);
426
427     j= 0;
428     XtSetArg(args[j], XtNborderWidth, 1); j++;
429     XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
430     XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
431     XtSetArg(args[j], XtNstring, appData.timeControl);  j++;
432     XtSetArg(args[j], XtNdisplayCaret, False);  j++;
433     XtSetArg(args[j], XtNtop, XtChainTop);  j++;
434     XtSetArg(args[j], XtNbottom, XtChainTop);  j++;
435     XtSetArg(args[j], XtNleft, XtChainLeft);  j++;
436     XtSetArg(args[j], XtNright, XtChainRight);  j++;
437     XtSetArg(args[j], XtNresizable, True);  j++;
438     XtSetArg(args[j], XtNwidth,  85);  j++;
439     XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
440     tcTime = XtCreateManagedWidget("TC", asciiTextWidgetClass, form, args, j);
441     XtAddEventHandler(tcTime, ButtonPressMask, False, SetFocus, (XtPointer) popup);
442
443     j= 0;
444     XtSetArg(args[j], XtNlabel, tcInc ? tcInc == 2 ? _("sec/move (max)   ") : _("   minutes, plus   ") : _("minutes for each")); j++;
445     XtSetArg(args[j], XtNborderWidth, 0); j++;
446     XtSetArg(args[j], XtNfromHoriz, tcTime); j++;
447     XtSetArg(args[j], XtNtop, XtChainTop);  j++;
448     XtSetArg(args[j], XtNbottom, XtChainTop);  j++;
449     XtSetArg(args[j], XtNleft, XtChainRight);  j++;
450     XtSetArg(args[j], XtNright, XtChainRight);  j++;
451   //  XtSetArg(args[j], XtNwidth,  100);  j++;
452   //  XtSetArg(args[j], XtNheight, 20);  j++;
453     tcMess1 = XtCreateManagedWidget("TCtext", labelWidgetClass, form, args, j);
454
455     j= 0;
456     XtSetArg(args[j], XtNborderWidth, 1); j++;
457     XtSetArg(args[j], XtNfromHoriz, tcMess1); j++;
458     XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
459     XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
460     XtSetArg(args[j], XtNstring, def);  j++;
461     XtSetArg(args[j], XtNdisplayCaret, False);  j++;
462     XtSetArg(args[j], XtNtop, XtChainTop);  j++;
463     XtSetArg(args[j], XtNbottom, XtChainTop);  j++;
464     XtSetArg(args[j], XtNleft, XtChainRight);  j++;
465     XtSetArg(args[j], XtNright, XtChainRight);  j++;
466     XtSetArg(args[j], XtNresizable, True);  j++;
467     XtSetArg(args[j], XtNwidth,  40);  j++;
468 //    XtSetArg(args[j], XtNheight, 20);  j++;
469     tcData = XtCreateManagedWidget("MPS", asciiTextWidgetClass, form, args, j);
470     XtAddEventHandler(tcData, ButtonPressMask, False, SetFocus, (XtPointer) popup);
471
472     j= 0;
473     XtSetArg(args[j], XtNlabel, tcInc ? tcInc == 2 ? _("             ") : _("sec/move") : _("moves     ")); j++;
474     XtSetArg(args[j], XtNjustify, XtJustifyLeft); j++;
475     XtSetArg(args[j], XtNborderWidth, 0); j++;
476     XtSetArg(args[j], XtNfromHoriz, tcData); j++;
477     XtSetArg(args[j], XtNtop, XtChainTop);  j++;
478     XtSetArg(args[j], XtNbottom, XtChainTop);  j++;
479     XtSetArg(args[j], XtNleft, XtChainRight);  j++;
480     XtSetArg(args[j], XtNright, XtChainRight);  j++;
481 //    XtSetArg(args[j], XtNwidth,  80);  j++;
482 //    XtSetArg(args[j], XtNheight, 20);  j++;
483     tcMess2 = XtCreateManagedWidget("MPStext", labelWidgetClass,
484                                    form, args, j);
485
486     j= 0;
487     XtSetArg(args[j], XtNborderWidth, 1); j++;
488     XtSetArg(args[j], XtNfromVert, tcTime); j++;
489     XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
490     XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
491     XtSetArg(args[j], XtNstring, "1");  j++;
492     XtSetArg(args[j], XtNdisplayCaret, False);  j++;
493     XtSetArg(args[j], XtNtop, XtChainTop);  j++;
494     XtSetArg(args[j], XtNbottom, XtChainTop);  j++;
495     XtSetArg(args[j], XtNleft, XtChainLeft);  j++;
496     XtSetArg(args[j], XtNright, XtChainLeft);  j++;
497     XtSetArg(args[j], XtNresizable, True);  j++;
498     XtSetArg(args[j], XtNwidth,  40);  j++;
499 //    XtSetArg(args[j], XtNheight, 20);  j++;
500     tcOdds1 = XtCreateManagedWidget("Odds1", asciiTextWidgetClass, form, args, j);
501     XtAddEventHandler(tcOdds1, ButtonPressMask, False, SetFocus, (XtPointer) popup);
502
503     j= 0;
504     XtSetArg(args[j], XtNborderWidth, 1); j++;
505     XtSetArg(args[j], XtNfromVert, tcTime); j++;
506     XtSetArg(args[j], XtNfromHoriz, tcOdds1); j++;
507     XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
508     XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
509     XtSetArg(args[j], XtNstring, "1");  j++;
510     XtSetArg(args[j], XtNdisplayCaret, False);  j++;
511     XtSetArg(args[j], XtNtop, XtChainTop);  j++;
512     XtSetArg(args[j], XtNbottom, XtChainTop);  j++;
513     XtSetArg(args[j], XtNleft, XtChainLeft);  j++;
514     XtSetArg(args[j], XtNright, XtChainLeft);  j++;
515     XtSetArg(args[j], XtNresizable, True);  j++;
516     XtSetArg(args[j], XtNwidth,  40);  j++;
517 //    XtSetArg(args[j], XtNheight, 20);  j++;
518     tcOdds2 = XtCreateManagedWidget("Odds2", asciiTextWidgetClass, form, args, j);
519     XtAddEventHandler(tcOdds2, ButtonPressMask, False, SetFocus, (XtPointer) popup);
520
521     j= 0;
522     XtSetArg(args[j], XtNlabel, _("Engine #1 and #2 Time-Odds Factors")); j++;
523     XtSetArg(args[j], XtNjustify, XtJustifyLeft); j++;
524     XtSetArg(args[j], XtNborderWidth, 0); j++;
525     XtSetArg(args[j], XtNfromVert, tcTime); j++;
526     XtSetArg(args[j], XtNfromHoriz, tcOdds2); j++;
527     XtSetArg(args[j], XtNtop, XtChainTop);  j++;
528     XtSetArg(args[j], XtNbottom, XtChainTop);  j++;
529     XtSetArg(args[j], XtNleft, XtChainLeft);  j++;
530     XtSetArg(args[j], XtNright, XtChainRight);  j++;
531 //    XtSetArg(args[j], XtNwidth,  200);  j++;
532 //    XtSetArg(args[j], XtNheight, 20);  j++;
533     mess = XtCreateManagedWidget("Oddstext", labelWidgetClass,
534                                    form, args, j);
535     j=0;
536     XtSetArg(args[j], XtNfromVert, tcOdds1);  j++;
537     XtSetArg(args[j], XtNbottom, XtChainBottom);  j++;
538     XtSetArg(args[j], XtNtop, XtChainBottom);  j++;
539     XtSetArg(args[j], XtNleft, XtChainLeft);  j++;
540     XtSetArg(args[j], XtNright, XtChainLeft);  j++;
541     XtSetArg(args[j], XtNstate, tcInc==0); j++;
542     b_clas= XtCreateManagedWidget(_("classical"), toggleWidgetClass,
543                                    form, args, j);
544     XtAddCallback(b_clas, XtNcallback, TimeControlCallback, (XtPointer) 0);
545
546     j=0;
547     XtSetArg(args[j], XtNradioGroup, b_clas); j++;
548     XtSetArg(args[j], XtNfromVert, tcOdds1);  j++;
549     XtSetArg(args[j], XtNfromHoriz, b_clas);  j++;
550     XtSetArg(args[j], XtNbottom, XtChainBottom);  j++;
551     XtSetArg(args[j], XtNtop, XtChainBottom);  j++;
552     XtSetArg(args[j], XtNleft, XtChainLeft);  j++;
553     XtSetArg(args[j], XtNright, XtChainLeft);  j++;
554     XtSetArg(args[j], XtNstate, tcInc==1); j++;
555     b_inc = XtCreateManagedWidget(_("incremental"), toggleWidgetClass,
556                                    form, args, j);
557     XtAddCallback(b_inc, XtNcallback, TimeControlCallback, (XtPointer) 0);
558
559     j=0;
560     XtSetArg(args[j], XtNradioGroup, b_inc); j++;
561     XtSetArg(args[j], XtNfromVert, tcOdds1);  j++;
562     XtSetArg(args[j], XtNfromHoriz, b_inc);  j++;
563     XtSetArg(args[j], XtNbottom, XtChainBottom);  j++;
564     XtSetArg(args[j], XtNtop, XtChainBottom);  j++;
565     XtSetArg(args[j], XtNleft, XtChainLeft);  j++;
566     XtSetArg(args[j], XtNright, XtChainLeft);  j++;
567     XtSetArg(args[j], XtNstate, tcInc==2); j++;
568     b_inc = XtCreateManagedWidget(_("fixed time"), toggleWidgetClass,
569                                    form, args, j);
570     XtAddCallback(b_inc, XtNcallback, TimeControlCallback, (XtPointer) 0);
571
572     j=0;
573     XtSetArg(args[j], XtNfromVert, tcOdds1);  j++;
574     XtSetArg(args[j], XtNfromHoriz, tcData);  j++;
575     XtSetArg(args[j], XtNbottom, XtChainBottom);  j++;
576     XtSetArg(args[j], XtNtop, XtChainBottom);  j++;
577     XtSetArg(args[j], XtNleft, XtChainRight);  j++;
578     XtSetArg(args[j], XtNright, XtChainRight);  j++;
579     b_ok= XtCreateManagedWidget(_(" OK "), commandWidgetClass,
580                                    form, args, j);
581     XtAddCallback(b_ok, XtNcallback, TimeControlCallback, (XtPointer) 0);
582
583     j=0;
584     XtSetArg(args[j], XtNfromVert, tcOdds1);  j++;
585     XtSetArg(args[j], XtNfromHoriz, b_ok);  j++;
586     XtSetArg(args[j], XtNbottom, XtChainBottom);  j++;
587     XtSetArg(args[j], XtNtop, XtChainBottom);  j++;
588     XtSetArg(args[j], XtNleft, XtChainRight);  j++;
589     XtSetArg(args[j], XtNright, XtChainRight);  j++;
590     b_cancel= XtCreateManagedWidget(_("cancel"), commandWidgetClass,
591                                    form, args, j);
592     XtAddCallback(b_cancel, XtNcallback, TimeControlPopDown, (XtPointer) 0);
593
594     XtRealizeWidget(popup);
595     CatchDeleteWindow(popup, "TimeControlPopDown");
596
597     XQueryPointer(xDisplay, xBoardWindow, &root, &child,
598                   &x, &y, &win_x, &win_y, &mask);
599
600     XtSetArg(args[0], XtNx, x - 10);
601     XtSetArg(args[1], XtNy, y - 30);
602     XtSetValues(popup, args, 2);
603
604     XtPopup(popup, XtGrabExclusive);
605     TimeControlUp = True;
606
607     previous = NULL;
608     SetFocus(tcTime, popup, (XEvent*) NULL, False);
609 //    XtSetKeyboardFocus(popup, tcTime);
610 }
611
612 void TimeControlProc(w, event, prms, nprms)
613      Widget w;
614      XEvent *event;
615      String *prms;
616      Cardinal *nprms;
617 {
618    TimeControlPopUp();
619 }
620
621 //--------------------------- Engine-specific options menu ----------------------------------
622
623 int values[MAX_OPTIONS];
624 ChessProgramState *currentCps;
625 static Option *currentOption;
626 extern Widget shells[];
627
628 void SpinCallback(w, client_data, call_data)
629      Widget w;
630      XtPointer client_data, call_data;
631 {
632     String name, val;
633     Arg args[16];
634     char buf[MSG_SIZ], *p;
635     int j;
636     int data = (intptr_t) client_data;
637
638     XtSetArg(args[0], XtNlabel, &name);
639     XtGetValues(w, args, 1);
640
641     j = 0;
642     XtSetArg(args[0], XtNstring, &val);
643     XtGetValues(currentOption[data].handle, args, 1);
644     sscanf(val, "%d", &j);
645     if (strcmp(name, "browse") == 0) {
646         char *q, *r;
647         XtSetArg(args[0], XtNstring, &q);
648         XtGetValues(currentOption[data].handle, args, 1);
649         for(r = ""; *q; q++) if(*q == '.') r = q; else if(*q == '/') r = ""; // last dot after last slash
650         if(XsraSelFile(shells[0], currentOption[data].name, NULL, NULL, "", "", r,
651                                   currentOption[data].type == PathName ? "p" : "f", NULL, &p)) {
652                 int len = strlen(p);
653                 if(len && p[len-1] == '/') p[len-1] = NULLCHAR;
654                 XtSetArg(args[0], XtNstring, p);
655                 XtSetValues(currentOption[data].handle, args, 1);
656         }
657         SetFocus(currentOption[data].handle, shells[0], (XEvent*) NULL, False);
658         return;
659     } else
660     if (strcmp(name, "+") == 0) {
661         if(++j > currentOption[data].max) return;
662     } else
663     if (strcmp(name, "-") == 0) {
664         if(--j < currentOption[data].min) return;
665     } else return;
666     snprintf(buf, MSG_SIZ,  "%d", j);
667     XtSetArg(args[0], XtNstring, buf);
668     XtSetValues(currentOption[data].handle, args, 1);
669 }
670
671 void ComboSelect(w, addr, index) // callback for all combo items
672      Widget w;
673      caddr_t addr;
674      caddr_t index;
675 {
676     Arg args[16];
677     int i = ((intptr_t)addr)>>8;
678     int j = 255 & (intptr_t) addr;
679
680     values[i] = j; // store in temporary, for transfer at OK
681     XtSetArg(args[0], XtNlabel, ((char**)currentOption[i].textValue)[j]);
682     XtSetValues(currentOption[i].handle, args, 1);
683 }
684
685 void CreateComboPopup(parent, name, n, mb)
686      Widget parent;
687      String name;
688      int n;
689      char *mb[];
690 {
691     int i=0, j;
692     Widget menu, entry;
693     Arg args[16];
694
695     menu = XtCreatePopupShell(name, simpleMenuWidgetClass,
696                               parent, NULL, 0);
697     j = 0;
698     XtSetArg(args[j], XtNwidth, 100);  j++;
699 //    XtSetArg(args[j], XtNright, XtChainRight);  j++;
700     while (mb[i] != NULL) {
701             entry = XtCreateManagedWidget(mb[i], smeBSBObjectClass,
702                                           menu, args, j);
703             XtAddCallback(entry, XtNcallback,
704                           (XtCallbackProc) ComboSelect,
705                           (caddr_t)(intptr_t) (256*n+i));
706         i++;
707     }
708 }
709
710
711 //----------------------------Generic dialog --------------------------------------------
712
713 // cloned from Engine Settings dialog (and later merged with it)
714
715 typedef void ButtonCallback(int n);
716
717 char *trialSound;
718 static int oldCores, oldPonder;
719 int MakeColors P((void));
720 void CreateGCs P((int redo));
721 void CreateXPMBoard P((char *s, int kind));
722 void CreateXPMPieces P((void));
723 void GenericReadout();
724 Widget shells[10];
725 Widget marked[10];
726 Boolean shellUp[10];
727 WindowPlacement *wp[10];
728 Option *dialogOptions[10];
729
730 void MarkMenu(char *item, int dlgNr)
731 {
732     Arg args[2];
733     XtSetArg(args[0], XtNleftBitmap, xMarkPixmap);
734     XtSetValues(marked[dlgNr] = XtNameToWidget(menuBarWidget, item), args, 1);
735 }
736
737 int PopDown(int n)
738 {
739     int j;
740     Arg args[10];
741     Dimension windowH, windowW; Position windowX, windowY;
742     if (!shellUp[n]) return 0;
743     if(n && wp[n]) { // remember position
744         j = 0;
745         XtSetArg(args[j], XtNx, &windowX); j++;
746         XtSetArg(args[j], XtNy, &windowY); j++;
747         XtSetArg(args[j], XtNheight, &windowH); j++;
748         XtSetArg(args[j], XtNwidth, &windowW); j++;
749         XtGetValues(shells[n], args, j);
750         wp[n]->x = windowX;
751         wp[n]->x = windowY;
752         wp[n]->width  = windowW;
753         wp[n]->height = windowH;
754     }
755     previous = NULL;
756     XtPopdown(shells[n]);
757     if(n == 0) XtDestroyWidget(shells[n]);
758     shellUp[n] = False;
759     if(marked[n]) {
760         XtSetArg(args[0], XtNleftBitmap, None);
761         XtSetValues(marked[n], args, 1);
762     }
763     if(!n) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
764     return 1;
765 }
766
767 void GenericPopDown(w, event, prms, nprms)
768      Widget w;
769      XEvent *event;
770      String *prms;
771      Cardinal *nprms;
772 {
773     int n;
774     PopDown(prms[0][0] - '0');
775 }
776
777 Option matchOptions[] = {
778 { 0,  2, 1000000000, NULL, (void*) &appData.defaultMatchGames, "", NULL, Spin, _("Default Number of Games in Match:") },
779 { 0,  0, 1000000000, NULL, (void*) &appData.matchPause, "", NULL, Spin, _("Pause between Match Games (msec):") },
780 { 0,  0,          0, NULL, (void*) &appData.loadGameFile, "", NULL, FileName, _("Game File with Opening Lines:") },
781 { 0, -2, 1000000000, NULL, (void*) &appData.loadGameIndex, "", NULL, Spin, _("Game Number (-1 or -2 = Auto-Increment):") },
782 { 0,  0,          0, NULL, (void*) &appData.loadPositionFile, "", NULL, FileName, _("File with Start Positions:") },
783 { 0, -2, 1000000000, NULL, (void*) &appData.loadPositionIndex, "", NULL, Spin, _("Position Number (-1 or -2 = Auto-Increment):") },
784 { 0,  0, 1000000000, NULL, (void*) &appData.rewindIndex, "", NULL, Spin, _("Rewind Index after this many Games (0 = never):") },
785 { 0, 0, 0, NULL, NULL, "", NULL, EndMark , "" }
786 };
787
788 void GeneralOptionsOK(int n)
789 {
790         int newPonder = appData.ponderNextMove;
791         appData.ponderNextMove = oldPonder;
792         PonderNextMoveEvent(newPonder);
793 }
794
795 Option generalOptions[] = {
796 { 0,  0, 0, NULL, (void*) &appData.alwaysPromoteToQueen, "", NULL, CheckBox, _("Always Queen") },
797 { 0,  0, 0, NULL, (void*) &appData.animateDragging, "", NULL, CheckBox, _("Animate Dragging") },
798 { 0,  0, 0, NULL, (void*) &appData.animate, "", NULL, CheckBox, _("Animate Moving") },
799 { 0,  0, 0, NULL, (void*) &appData.autoCallFlag, "", NULL, CheckBox, _("Auto Flag") },
800 { 0,  0, 0, NULL, (void*) &appData.autoFlipView, "", NULL, CheckBox, _("Auto Flip View") },
801 { 0,  0, 0, NULL, (void*) &appData.blindfold, "", NULL, CheckBox, _("Blindfold") },
802 { 0,  0, 0, NULL, (void*) &appData.dropMenu, "", NULL, CheckBox, _("Drop Menu") },
803 { 0,  0, 0, NULL, (void*) &appData.highlightDragging, "", NULL, CheckBox, _("Highlight Dragging (Show Move Targets)") },
804 { 0,  0, 0, NULL, (void*) &appData.highlightLastMove, "", NULL, CheckBox, _("Highlight Last Move") },
805 { 0,  0, 0, NULL, (void*) &appData.highlightMoveWithArrow, "", NULL, CheckBox, _("Highlight with Arrow") },
806 { 0,  0, 0, NULL, (void*) &appData.ringBellAfterMoves, "", NULL, CheckBox, _("Move Sound") },
807 { 0,  0, 0, NULL, (void*) &appData.oneClick, "", NULL, CheckBox, _("One-Click Moving") },
808 { 0,  0, 0, NULL, (void*) &appData.periodicUpdates, "", NULL, CheckBox, _("Periodic Updates (in Analysis Mode)") },
809 { 0,  0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, _("Ponder Next Move") },
810 { 0,  0, 0, NULL, (void*) &appData.popupExitMessage, "", NULL, CheckBox, _("Popup Exit Messages") },
811 { 0,  0, 0, NULL, (void*) &appData.popupMoveErrors, "", NULL, CheckBox, _("Popup Move Errors") },
812 { 0,  0, 0, NULL, (void*) &appData.showCoords, "", NULL, CheckBox, _("Show Coordinates") },
813 { 0,  0, 0, NULL, (void*) &appData.markers, "", NULL, CheckBox, _("Show Target Squares") },
814 { 0,  0, 0, NULL, (void*) &appData.hideThinkingFromHuman, "", NULL, CheckBox, _("Hide Thinking from Human") },
815 { 0,  0, 0, NULL, (void*) &appData.testLegality, "", NULL, CheckBox, _("Test Legality") },
816 { 0, 0, 10, NULL, (void*) &appData.flashCount, "", NULL, Spin, _("Flash Moves (0 = no flashing):") },
817 { 0, 1, 10, NULL, (void*) &appData.flashRate, "", NULL, Spin, _("Flash Rate (high = fast):") },
818 { 0, 5, 100,NULL, (void*) &appData.animSpeed, "", NULL, Spin, _("Animation Speed (high = slow):") },
819 { 0,  0, 0, NULL, (void*) &GeneralOptionsOK, "", NULL, EndMark , "" }
820 };
821
822 void Pick(int n)
823 {
824         VariantClass v = currentOption[n].value;
825         if(!appData.noChessProgram) {
826             char *name = VariantName(v), buf[MSG_SIZ];
827             if (first.protocolVersion > 1 && StrStr(first.variants, name) == NULL) {
828                 /* [HGM] in protocol 2 we check if variant is suported by engine */
829               snprintf(buf, MSG_SIZ,  _("Variant %s not supported by %s"), name, first.tidy);
830                 DisplayError(buf, 0);
831                 return; /* ignore OK if first engine does not support it */
832             } else
833             if (second.initDone && second.protocolVersion > 1 && StrStr(second.variants, name) == NULL) {
834               snprintf(buf, MSG_SIZ,  _("Warning: second engine (%s) does not support this!"), second.tidy);
835                 DisplayError(buf, 0);   /* use of second engine is optional; only warn user */
836             }
837         }
838
839         GenericReadout(); // make sure ranks and file settings are read
840
841         gameInfo.variant = v;
842         appData.variant = VariantName(v);
843
844         shuffleOpenings = FALSE; /* [HGM] shuffle: possible shuffle reset when we switch */
845         startedFromPositionFile = FALSE; /* [HGM] loadPos: no longer valid in new variant */
846         appData.pieceToCharTable = NULL;
847         appData.pieceNickNames = "";
848         appData.colorNickNames = "";
849         Reset(True, True);
850         PopDown(0);
851         return;
852 }
853
854 Option variantDescriptors[] = {
855 { VariantNormal, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("normal")},
856 { VariantFairy, 1, 135, NULL, (void*) &Pick, "#BFBFBF", NULL, Button, N_("fairy")},
857 { VariantFischeRandom, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("FRC")},
858 { VariantSChess, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Seirawan")},
859 { VariantWildCastle, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("wild castle")},
860 { VariantSuper, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Superchess")},
861 { VariantNoCastle, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("no castle")},
862 { VariantCrazyhouse, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("crazyhouse")},
863 { VariantKnightmate, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("knightmate")},
864 { VariantBughouse, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("bughouse")},
865 { VariantBerolina, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("berolina")},
866 { VariantShogi, 1, 135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("shogi (9x9)")},
867 { VariantCylinder, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("cylinder")},
868 { VariantXiangqi, 1, 135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("xiangqi (9x10)")},
869 { VariantShatranj, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("shatranj")},
870 { VariantCourier, 1, 135, NULL, (void*) &Pick, "#BFFFBF", NULL, Button, N_("courier (12x8)")},
871 { VariantMakruk, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("makruk")},
872 { VariantGreat, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Great Shatranj (10x8)")},
873 { VariantAtomic, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("atomic")},
874 { VariantCapablanca, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Capablanca (10x8)")},
875 { VariantTwoKings, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("two kings")},
876 { VariantGothic, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Gothic (10x8)")},
877 { Variant3Check, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("3-checks")},
878 { VariantJanus, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("janus (10x8)")},
879 { VariantSuicide, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("suicide")},
880 { VariantCapaRandom, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("CRC (10x8)")},
881 { VariantGiveaway, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("give-away")},
882 { VariantSpartan, 1, 135, NULL, (void*) &Pick, "#FF0000", NULL, Button, N_("Spartan")},
883 { VariantLosers, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("losers")},
884 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, _("Board size ( -1 = default for selected variant):")},
885 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.NrRanks, "", NULL, Spin, N_("Number of Board Ranks:") },
886 { 0, -1, BOARD_FILES, NULL, (void*) &appData.NrFiles, "", NULL, Spin, N_("Number of Board Files:") },
887 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.holdingsSize, "", NULL, Spin, N_("Holdings Size:") },
888 { 0, 0, 0, NULL, NULL, NULL, NULL, Label,
889                                 _("WARNING: variants with un-orthodox\n"
890                                   "pieces only have built-in bitmaps\n"
891                                   "for -boardSize middling, bulky and\n"
892                                   "petite, and substitute king or amazon\n"
893                                   "for missing bitmaps. (See manual.)")},
894 { 0, 2, 0, NULL, NULL, "", NULL, EndMark , "" }
895 };
896
897 void CommonOptionsOK(int n)
898 {
899         int newPonder = appData.ponderNextMove;
900         // make sure changes are sent to first engine by re-initializing it
901         // if it was already started pre-emptively at end of previous game
902         if(gameMode == BeginningOfGame) Reset(True, True); else {
903             // Some changed setting need immediate sending always.
904             if(oldCores != appData.smpCores)
905                 NewSettingEvent(False, &(first.maxCores), "cores", appData.smpCores);
906             appData.ponderNextMove = oldPonder;
907             PonderNextMoveEvent(newPonder);
908         }
909 }
910
911 Option commonEngineOptions[] = {
912 { 0,     0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, _("Ponder Next Move") },
913 { 0,  0, 1000, NULL, (void*) &appData.smpCores, "", NULL, Spin, _("Maximum Number of CPUs per Engine:") },
914 { 0,     0, 0, NULL, (void*) &appData.polyglotDir, "", NULL, PathName, _("Polygot Directory:") },
915 { 0, 0, 16000, NULL, (void*) &appData.defaultHashSize, "", NULL, Spin, _("Hash-Table Size (MB):") },
916 { 0,     0, 0, NULL, (void*) &appData.defaultPathEGTB, "", NULL, PathName, _("Nalimov EGTB Path:") },
917 { 0,  0, 1000, NULL, (void*) &appData.defaultCacheSizeEGTB, "", NULL, Spin, _("EGTB Cache Size (MB):") },
918 { 0,     0, 0, NULL, (void*) &appData.usePolyglotBook, "", NULL, CheckBox, _("Use GUI Book") },
919 { 0,     0, 0, NULL, (void*) &appData.polyglotBook, "", NULL, FileName, _("Opening-Book Filename:") },
920 { 0,   0, 100, NULL, (void*) &appData.bookDepth, "", NULL, Spin, _("Book Depth (moves):") },
921 { 0,   0, 100, NULL, (void*) &appData.bookStrength, "", NULL, Spin, _("Book Variety (0) vs. Strength (100):") },
922 { 0,     0, 0, NULL, (void*) &appData.firstHasOwnBookUCI, "", NULL, CheckBox, _("Engine #1 Has Own Book") },
923 { 0,     0, 0, NULL, (void*) &appData.secondHasOwnBookUCI, "", NULL, CheckBox, _("Engine #2 Has Own Book          ") },
924 { 0,     1, 0, NULL, (void*) &CommonOptionsOK, "", NULL, EndMark , "" }
925 };
926
927 Option adjudicationOptions[] = {
928 { 0, 0,    0, NULL, (void*) &appData.checkMates, "", NULL, CheckBox, _("Detect all Mates") },
929 { 0, 0,    0, NULL, (void*) &appData.testClaims, "", NULL, CheckBox, _("Verify Engine Result Claims") },
930 { 0, 0,    0, NULL, (void*) &appData.materialDraws, "", NULL, CheckBox, _("Draw if Insufficient Mating Material") },
931 { 0, 0,    0, NULL, (void*) &appData.trivialDraws, "", NULL, CheckBox, _("Adjudicate Trivial Draws (3-Move Delay)") },
932 { 0, 0,  100, NULL, (void*) &appData.ruleMoves, "", NULL, Spin, _("N-Move Rule:") },
933 { 0, 0,    6, NULL, (void*) &appData.drawRepeats, "", NULL, Spin, _("N-fold Repeats:") },
934 { 0, 0, 1000, NULL, (void*) &appData.adjudicateDrawMoves, "", NULL, Spin, _("Draw after N Moves Total:") },
935 { 0,-5000, 0, NULL, (void*) &appData.adjudicateLossThreshold, "", NULL, Spin, _("Win / Loss Threshold:") },
936 { 0, 0,    0, NULL, (void*) &first.scoreIsAbsolute, "", NULL, CheckBox, _("Negate Score of Engine #1") },
937 { 0, 0,    0, NULL, (void*) &second.scoreIsAbsolute, "", NULL, CheckBox, _("Negate Score of Engine #2") },
938 { 0, 1,    0, NULL, NULL, "", NULL, EndMark , "" }
939 };
940
941 void IcsOptionsOK(int n)
942 {
943     ParseIcsTextColors();
944 }
945
946 Option icsOptions[] = {
947 { 0, 0, 0, NULL, (void*) &appData.autoKibitz, "",  NULL, CheckBox, _("Auto-Kibitz") },
948 { 0, 0, 0, NULL, (void*) &appData.autoComment, "", NULL, CheckBox, _("Auto-Comment") },
949 { 0, 0, 0, NULL, (void*) &appData.autoObserve, "", NULL, CheckBox, _("Auto-Observe") },
950 { 0, 0, 0, NULL, (void*) &appData.autoRaiseBoard, "", NULL, CheckBox, _("Auto-Raise Board") },
951 { 0, 0, 0, NULL, (void*) &appData.bgObserve, "",   NULL, CheckBox, _("Background Observe while Playing") },
952 { 0, 0, 0, NULL, (void*) &appData.dualBoard, "",   NULL, CheckBox, _("Dual Board for Background-Observed Game") },
953 { 0, 0, 0, NULL, (void*) &appData.getMoveList, "", NULL, CheckBox, _("Get Move List") },
954 { 0, 0, 0, NULL, (void*) &appData.quietPlay, "",   NULL, CheckBox, _("Quiet Play") },
955 { 0, 0, 0, NULL, (void*) &appData.seekGraph, "",   NULL, CheckBox, _("Seek Graph") },
956 { 0, 0, 0, NULL, (void*) &appData.autoRefresh, "", NULL, CheckBox, _("Auto-Refresh Seek Graph") },
957 { 0, 0, 0, NULL, (void*) &appData.premove, "",     NULL, CheckBox, _("Premove") },
958 { 0, 0, 0, NULL, (void*) &appData.premoveWhite, "", NULL, CheckBox, _("Premove for White") },
959 { 0, 0, 0, NULL, (void*) &appData.premoveWhiteText, "", NULL, TextBox, _("First White Move:") },
960 { 0, 0, 0, NULL, (void*) &appData.premoveBlack, "", NULL, CheckBox, _("Premove for Black") },
961 { 0, 0, 0, NULL, (void*) &appData.premoveBlackText, "", NULL, TextBox, _("First Black Move:") },
962 { 0, 0, 0, NULL, NULL, NULL, NULL, Break, "" },
963 { 0, 0, 0, NULL, (void*) &appData.icsAlarm, "", NULL, CheckBox, _("Alarm") },
964 { 0, 0, 100000000, NULL, (void*) &appData.icsAlarmTime, "", NULL, Spin, _("Alarm Time (msec):") },
965 //{ 0, 0, 0, NULL, (void*) &appData.chatBoxes, "", NULL, TextBox, _("Startup Chat Boxes:") },
966 { 0, 0, 0, NULL, (void*) &appData.colorize, "", NULL, CheckBox, _("Colorize Messages") },
967 { 0, 0, 0, NULL, (void*) &appData.colorShout, "", NULL, TextBox, _("Shout Text Colors:") },
968 { 0, 0, 0, NULL, (void*) &appData.colorSShout, "", NULL, TextBox, _("S-Shout Text Colors:") },
969 { 0, 0, 0, NULL, (void*) &appData.colorChannel1, "", NULL, TextBox, _("Channel #1 Text Colors:") },
970 { 0, 0, 0, NULL, (void*) &appData.colorChannel, "", NULL, TextBox, _("Other Channel Text Colors:") },
971 { 0, 0, 0, NULL, (void*) &appData.colorKibitz, "", NULL, TextBox, _("Kibitz Text Colors:") },
972 { 0, 0, 0, NULL, (void*) &appData.colorTell, "", NULL, TextBox, _("Tell Text Colors:") },
973 { 0, 0, 0, NULL, (void*) &appData.colorChallenge, "", NULL, TextBox, _("Challenge Text Colors:") },
974 { 0, 0, 0, NULL, (void*) &appData.colorRequest, "", NULL, TextBox, _("Request Text Colors:") },
975 { 0, 0, 0, NULL, (void*) &appData.colorSeek, "", NULL, TextBox, _("Seek Text Colors:") },
976 { 0, 0, 0, NULL, (void*) &IcsOptionsOK, "", NULL, EndMark , "" }
977 };
978
979 Option loadOptions[] = {
980 { 0, 0, 0, NULL, (void*) &appData.autoDisplayTags, "", NULL, CheckBox, _("Auto-Display Tags") },
981 { 0, 0, 0, NULL, (void*) &appData.autoDisplayComment, "", NULL, CheckBox, _("Auto-Display Comment") },
982 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, _("Auto-Play speed of loaded games\n(0 = instant, -1 = off):") },
983 { 0, -1, 10000000, NULL, (void*) &appData.timeDelay, "", NULL, Fractional, _("Seconds per Move:") },
984 { 0,  0, 0, NULL, NULL, "", NULL, EndMark , "" }
985 };
986
987 Option saveOptions[] = {
988 { 0, 0, 0, NULL, (void*) &appData.autoSaveGames, "", NULL, CheckBox, _("Auto-Save Games") },
989 { 0, 0, 0, NULL, (void*) &appData.saveGameFile, "", NULL, FileName,  _("Save Games on File:") },
990 { 0, 0, 0, NULL, (void*) &appData.savePositionFile, "", NULL, FileName,  _("Save Final Positions on File:") },
991 { 0, 0, 0, NULL, (void*) &appData.pgnEventHeader, "", NULL, TextBox,  _("PGN Event Header:") },
992 { 0, 0, 0, NULL, (void*) &appData.oldSaveStyle, "", NULL, CheckBox, _("Old Save Style (as opposed to PGN)") },
993 { 0, 0, 0, NULL, (void*) &appData.saveExtendedInfoInPGN, "", NULL, CheckBox, _("Save Score/Depth Info in PGN") },
994 { 0, 0, 0, NULL, (void*) &appData.saveOutOfBookInfo, "", NULL, CheckBox, _("Save Out-of-Book Info in PGN           ") },
995 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
996 };
997
998 char *soundNames[] = {
999         N_("No Sound"),
1000         N_("Default Beep"),
1001         N_("Above WAV File"),
1002         N_("Ching"),
1003         N_("Click"),
1004         N_("Ding"),
1005         N_("Gong"),
1006         N_("Laser"),
1007         N_("Penalty"),
1008         N_("Phone"),
1009         N_("Thud"),
1010         N_("Challenge"),
1011         N_("Tell"),
1012         NULL,
1013         N_("User File")
1014 };
1015
1016 char *soundFiles[] = { // sound files corresponding to above names
1017         "",
1018         "$",
1019         "*", // kludge alert: as first thing in the dialog readout this is replaced with the user-given .WAV filename
1020         "ching.wav",
1021         "click.wav",
1022         "ding1.wav",
1023         "gong.wav",
1024         "laser.wav",
1025         "penalty.wav",
1026         "phone.wav",
1027         "thud.wav",
1028         "challenge.wav",
1029         "tell.wav",
1030         NULL,
1031         NULL
1032 };
1033
1034 void Test(int n)
1035 {
1036     if(soundFiles[values[3]]) PlaySound(soundFiles[values[3]]);
1037 }
1038
1039 Option soundOptions[] = {
1040 { 0, 0, 0, NULL, (void*) &appData.soundProgram, "", NULL, TextBox, _("Sound Program:") },
1041 { 0, 0, 0, NULL, (void*) &appData.soundDirectory, "", NULL, PathName, _("Sounds Directory:") },
1042 { 0, 0, 0, NULL, (void*) (soundFiles+2) /* kludge! */, "", NULL, FileName, _("User WAV File:") },
1043 { 0, 0, 0, NULL, (void*) &trialSound, (char*) soundNames, soundFiles, ComboBox, _("Try-Out Sound:") },
1044 { 0, 1, 0, NULL, (void*) &Test, NULL, NULL, Button, _("Play") },
1045 { 0, 0, 0, NULL, (void*) &appData.soundMove, (char*) soundNames, soundFiles, ComboBox, _("Move:") },
1046 { 0, 0, 0, NULL, (void*) &appData.soundIcsWin, (char*) soundNames, soundFiles, ComboBox, _("Win:") },
1047 { 0, 0, 0, NULL, (void*) &appData.soundIcsLoss, (char*) soundNames, soundFiles, ComboBox, _("Lose:") },
1048 { 0, 0, 0, NULL, (void*) &appData.soundIcsDraw, (char*) soundNames, soundFiles, ComboBox, _("Draw:") },
1049 { 0, 0, 0, NULL, (void*) &appData.soundIcsUnfinished, (char*) soundNames, soundFiles, ComboBox, _("Unfinished:") },
1050 { 0, 0, 0, NULL, (void*) &appData.soundIcsAlarm, (char*) soundNames, soundFiles, ComboBox, _("Alarm:") },
1051 { 0, 0, 0, NULL, (void*) &appData.soundShout, (char*) soundNames, soundFiles, ComboBox, _("Shout:") },
1052 { 0, 0, 0, NULL, (void*) &appData.soundSShout, (char*) soundNames, soundFiles, ComboBox, _("S-Shout:") },
1053 { 0, 0, 0, NULL, (void*) &appData.soundChannel, (char*) soundNames, soundFiles, ComboBox, _("Channel:") },
1054 { 0, 0, 0, NULL, (void*) &appData.soundChannel1, (char*) soundNames, soundFiles, ComboBox, _("Channel 1:") },
1055 { 0, 0, 0, NULL, (void*) &appData.soundTell, (char*) soundNames, soundFiles, ComboBox, _("Tell:") },
1056 { 0, 0, 0, NULL, (void*) &appData.soundKibitz, (char*) soundNames, soundFiles, ComboBox, _("Kibitz:") },
1057 { 0, 0, 0, NULL, (void*) &appData.soundChallenge, (char*) soundNames, soundFiles, ComboBox, _("Challenge:") },
1058 { 0, 0, 0, NULL, (void*) &appData.soundRequest, (char*) soundNames, soundFiles, ComboBox, _("Request:") },
1059 { 0, 0, 0, NULL, (void*) &appData.soundSeek, (char*) soundNames, soundFiles, ComboBox, _("Seek:") },
1060 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
1061 };
1062
1063 void SetColor(char *colorName, Widget box)
1064 {
1065         Arg args[5];
1066         Pixel buttonColor;
1067         XrmValue vFrom, vTo;
1068         if (!appData.monoMode) {
1069             vFrom.addr = (caddr_t) colorName;
1070             vFrom.size = strlen(colorName);
1071             XtConvert(shellWidget, XtRString, &vFrom, XtRPixel, &vTo);
1072             if (vTo.addr == NULL) {
1073                 buttonColor = (Pixel) -1;
1074             } else {
1075                 buttonColor = *(Pixel *) vTo.addr;
1076             }
1077         }
1078         XtSetArg(args[0], XtNbackground, buttonColor);;
1079         XtSetValues(box, args, 1);
1080 }
1081
1082 void AdjustColor(int i)
1083 {
1084     int n = currentOption[i].value, col, j, r, g, b, step = 10;
1085     char *s, buf[MSG_SIZ]; // color string
1086     Arg args[5];
1087     XtSetArg(args[0], XtNstring, &s);
1088     XtGetValues(currentOption[i-n-1].handle, args, 1);
1089     if(sscanf(s, "#%x", &col) != 1) return;   // malformed
1090     b = col & 0xFF; g = col & 0xFF00; r = col & 0xFF0000;
1091     switch(n) {
1092         case 1: g -= 0x100*step; b -= step; break;
1093         case 2: r -= 0x10000*step; b -= step; break;
1094         case 3: g -= 0x100*step; r -= 0x10000*step; break;
1095         case 4: r += 0x10000*step; g += 0x100*step; b += step; break;
1096     }
1097     if(r < 0) r = 0; if(g < 0) g = 0; if(b < 0) b = 0;
1098     if(r > 0xFF0000) r = 0xFF0000; if(g > 0xFF00) g = 0xFF00; if(b > 0xFF) b = 0xFF;
1099     col = r | g | b;
1100     snprintf(buf, MSG_SIZ, "#%06x", col);
1101     for(j=1; j<7; j++) if(buf[j] >= 'a') buf[j] -= 32; // capitalize
1102     SetColor(buf, currentOption[i-n].handle);
1103     XtSetArg(args[0], XtNstring, buf);
1104     XtSetValues(currentOption[i-n-1].handle, args, 1);
1105 }
1106
1107 void BoardOptionsOK(int n)
1108 {
1109     extern int defaultLineGap;
1110     if(appData.overrideLineGap >= 0) lineGap = appData.overrideLineGap; else lineGap = defaultLineGap;
1111     MakeColors(); CreateGCs(True);
1112     CreateXPMPieces();
1113     CreateXPMBoard(appData.liteBackTextureFile, 1);
1114     CreateXPMBoard(appData.darkBackTextureFile, 0);
1115     InitDrawingSizes(-1, 0);
1116     DrawPosition(True, NULL);
1117 }
1118
1119 Option boardOptions[] = {
1120 { 0,   0, 70, NULL, (void*) &appData.whitePieceColor, "", NULL, TextBox, _("White Piece Color:") },
1121 { 1000, 1, 0, NULL, NULL, NULL, NULL, Button, "      " },
1122 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1123 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1124 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1125 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "W" },
1126 { 0,   0, 70, NULL, (void*) &appData.blackPieceColor, "", NULL, TextBox, _("Black Piece Color:") },
1127 { 1000, 1, 0, NULL, NULL, NULL, NULL, Button, "      " },
1128 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1129 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1130 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1131 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "W" },
1132 { 0,   0, 70, NULL, (void*) &appData.lightSquareColor, "", NULL, TextBox, _("Light Square Color:") },
1133 { 1000, 1, 0, NULL, NULL, NULL, NULL, Button, "      " },
1134 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1135 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1136 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1137 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "W" },
1138 { 0,   0, 70, NULL, (void*) &appData.darkSquareColor, "", NULL, TextBox, _("Dark Square Color:") },
1139 { 1000, 1, 0, NULL, NULL, NULL, NULL, Button, "      " },
1140 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1141 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1142 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1143 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "W" },
1144 { 0,   0, 70, NULL, (void*) &appData.highlightSquareColor, "", NULL, TextBox, _("Highlight Color:") },
1145 { 1000, 1, 0, NULL, NULL, NULL, NULL, Button, "      " },
1146 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1147 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1148 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1149 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "W" },
1150 { 0,   0, 70, NULL, (void*) &appData.premoveHighlightColor, "", NULL, TextBox, _("Premove Highlight Color:") },
1151 { 1000, 1, 0, NULL, NULL, NULL, NULL, Button, "      " },
1152 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1153 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1154 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1155 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "W" },
1156 { 0, 0, 0, NULL, (void*) &appData.upsideDown, "", NULL, CheckBox, _("Flip Pieces Shogi Style") },
1157 { 0, 0, 0, NULL, (void*) &appData.allWhite, "", NULL, CheckBox, _("Use Outline Pieces for Black") },
1158 { 0, 0, 0, NULL, (void*) &appData.monoMode, "", NULL, CheckBox, _("Mono Mode") },
1159 { 0,-1, 5, NULL, (void*) &appData.overrideLineGap, "", NULL, Spin, _("Line Gap ( -1 = default for board size):") },
1160 { 0, 0, 0, NULL, (void*) &appData.liteBackTextureFile, "", NULL, FileName, _("Light-Squares Texture File:") },
1161 { 0, 0, 0, NULL, (void*) &appData.darkBackTextureFile, "", NULL, FileName, _("Dark-Squares Texture File:") },
1162 { 0, 0, 0, NULL, (void*) &appData.bitmapDirectory, "", NULL, PathName, _("Directory with Bitmap Pieces:") },
1163 { 0, 0, 0, NULL, (void*) &appData.pixmapDirectory, "", NULL, PathName, _("Directory with Pixmap Pieces:") },
1164 { 0, 0, 0, NULL, (void*) &BoardOptionsOK, "", NULL, EndMark , "" }
1165 };
1166
1167 void GenericReadout()
1168 {
1169     int i, j;
1170     String name, val;
1171     Arg args[16];
1172     char buf[MSG_SIZ], **dest;
1173     float x;
1174         for(i=0; ; i++) { // send all options that had to be OK-ed to engine
1175             switch(currentOption[i].type) {
1176                 case TextBox:
1177                 case FileName:
1178                 case PathName:
1179                     XtSetArg(args[0], XtNstring, &val);
1180                     XtGetValues(currentOption[i].handle, args, 1);
1181                     dest = currentCps ? &(currentOption[i].textValue) : (char**) currentOption[i].target;
1182                     if(*dest == NULL || strcmp(*dest, val)) {
1183                         if(currentCps) {
1184                             snprintf(buf, MSG_SIZ,  "option %s=%s\n", currentOption[i].name, val);
1185                             SendToProgram(buf, currentCps);
1186                         } else *dest = currentOption[i].name + 100; // option gets to point to private storage;
1187                         safeStrCpy(*dest, val, MSG_SIZ - (*dest - currentOption[i].name)); // copy text there
1188                     }
1189                     break;
1190                 case Spin:
1191                 case Fractional:
1192                     XtSetArg(args[0], XtNstring, &val);
1193                     XtGetValues(currentOption[i].handle, args, 1);
1194                     sscanf(val, "%f", &x);
1195                     if(x > currentOption[i].max) x = currentOption[i].max;
1196                     if(x < currentOption[i].min) x = currentOption[i].min;
1197                     if(currentOption[i].value != x) {
1198                         currentOption[i].value = x;
1199                         if(currentCps) { // engines never have float options, so no decimals!
1200                             snprintf(buf, MSG_SIZ,  "option %s=%.0f\n", currentOption[i].name, x);
1201                             SendToProgram(buf, currentCps);
1202                         } else if(currentOption[i].type == Spin) *(int*) currentOption[i].target = x;
1203                         else *(float*) currentOption[i].target = x;
1204                     }
1205                     break;
1206                 case CheckBox:
1207                     j = 0;
1208                     XtSetArg(args[0], XtNstate, &j);
1209                     XtGetValues(currentOption[i].handle, args, 1);
1210                     if(currentOption[i].value != j) {
1211                         currentOption[i].value = j;
1212                         if(currentCps) {
1213                             snprintf(buf, MSG_SIZ,  "option %s=%d\n", currentOption[i].name, j);
1214                             SendToProgram(buf, currentCps);
1215                         } else *(Boolean*) currentOption[i].target = j;
1216                     }
1217                     break;
1218                 case ComboBox:
1219                     val = ((char**)currentOption[i].choice)[values[i]];
1220                     if(currentCps) {
1221                         if(currentOption[i].value == values[i]) break; // not changed
1222                         currentOption[i].value = values[i];
1223                         snprintf(buf, MSG_SIZ,  "option %s=%s\n", currentOption[i].name,
1224                                 ((char**)currentOption[i].textValue)[values[i]]);
1225                         SendToProgram(buf, currentCps);
1226                     } else if(val && (*(char**) currentOption[i].target == NULL || strcmp(*(char**) currentOption[i].target, val))) {
1227                       if(*(char**) currentOption[i].target) free(*(char**) currentOption[i].target);
1228                       *(char**) currentOption[i].target = strdup(val);
1229                     }
1230                     break;
1231                 case EndMark:
1232                     if(currentOption[i].target) // callback for implementing necessary actions on OK (like redraw)
1233                         ((ButtonCallback*) currentOption[i].target)(i);
1234                     break;
1235             default:
1236                 printf("GenericReadout: unexpected case in switch.\n");
1237                 case Button:
1238                 case SaveButton:
1239                 case Label:
1240               break;
1241             }
1242             if(currentOption[i].type == EndMark) break;
1243         }
1244 }
1245
1246 void GenericCallback(w, client_data, call_data)
1247      Widget w;
1248      XtPointer client_data, call_data;
1249 {
1250     String name, val;
1251     Arg args[16];
1252     char buf[MSG_SIZ];
1253     int i, j;
1254     int data = (intptr_t) client_data;
1255
1256     currentOption = dialogOptions[data>>16]; data &= 0xFFFF;
1257
1258     XtSetArg(args[0], XtNlabel, &name);
1259     XtGetValues(w, args, 1);
1260
1261     if (strcmp(name, _("cancel")) == 0) {
1262         PopDown(data);
1263         return;
1264     }
1265     if (strcmp(name, _("OK")) == 0) { // save buttons imply OK
1266         GenericReadout();
1267         PopDown(data);
1268         return;
1269     }
1270     if(currentCps) {
1271         if(currentOption[data].type == SaveButton) GenericReadout();
1272         snprintf(buf, MSG_SIZ,  "option %s\n", name);
1273         SendToProgram(buf, currentCps);
1274     } else ((ButtonCallback*) currentOption[data].target)(data);
1275 }
1276
1277 int
1278 GenericPopUp(Option *option, char *title, int dlgNr)
1279 {
1280     Arg args[16];
1281     Widget popup, layout, dialog, edit=NULL, form,  last, b_ok, b_cancel, leftMargin = NULL, textField = NULL;
1282     Window root, child;
1283     int x, y, i, j, height=999, width=1, h, c, w;
1284     int win_x, win_y, maxWidth, maxTextWidth;
1285     unsigned int mask;
1286     char def[MSG_SIZ], *msg;
1287     static char pane[6] = "paneX";
1288     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL;
1289
1290     if(shellUp[dlgNr]) return 0; // already up
1291     if(dlgNr && shells[dlgNr]) {
1292         XtPopup(shells[dlgNr], XtGrabNone);
1293         shellUp[dlgNr] = True;
1294         return 0;
1295     }
1296
1297     dialogOptions[dlgNr] = option; // make available to callback
1298     // post currentOption globally, so Spin and Combo callbacks can already use it
1299     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1300     currentOption = option;
1301
1302     if(currentCps) { // Settings popup for engine: format through heuristic
1303         int n = currentCps->nrOptions;
1304         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1305         height = n / width + 1;
1306         if(currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton) currentOption[n].min = 1; // OK on same line
1307         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1308     }
1309      i = 0;
1310     XtSetArg(args[i], XtNresizable, True); i++;
1311     popup = shells[dlgNr] =
1312       XtCreatePopupShell(title, transientShellWidgetClass,
1313                          shellWidget, args, i);
1314
1315     layout =
1316       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
1317                             layoutArgs, XtNumber(layoutArgs));
1318   for(c=0; c<width; c++) {
1319     pane[4] = 'A'+c;
1320     form =
1321       XtCreateManagedWidget(pane, formWidgetClass, layout,
1322                             formArgs, XtNumber(formArgs));
1323     j=0;
1324     XtSetArg(args[j], XtNfromHoriz, leftMargin);  j++;
1325     XtSetValues(form, args, j);
1326     leftMargin = form;
1327
1328     last = widest = NULL; anchor = lastrow;
1329     for(h=0; h<height; h++) {
1330         i = h + c*height;
1331         if(option[i].type == EndMark) break;
1332         lastrow = forelast;
1333         forelast = last;
1334         switch(option[i].type) {
1335           case Fractional:
1336             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1337             option[i].value = *(float*)option[i].target;
1338             goto tBox;
1339           case Spin:
1340             if(!currentCps) option[i].value = *(int*)option[i].target;
1341             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1342           case TextBox:
1343           case FileName:
1344           case PathName:
1345           tBox:
1346             if(option[i].name[0]) {
1347             j=0;
1348             XtSetArg(args[j], XtNfromVert, last);  j++;
1349             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1350             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1351             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1352             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1353             texts[h] =
1354             dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1355             } else texts[h] = dialog = NULL;
1356             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1357             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1358             j=0;
1359             XtSetArg(args[j], XtNfromVert, last);  j++;
1360             XtSetArg(args[j], XtNfromHoriz, dialog);  j++;
1361             XtSetArg(args[j], XtNborderWidth, 1); j++;
1362             XtSetArg(args[j], XtNwidth, w); j++;
1363             if(option[i].type == TextBox && option[i].min) {
1364                 XtSetArg(args[j], XtNheight, option[i].min); j++;
1365                 if(option[i].value & 1) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
1366                 if(option[i].value & 2) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
1367                 if(option[i].value & 4) { XtSetArg(args[j], XtNautoFill, True);  j++; }
1368                 if(option[i].value & 8) { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
1369             }
1370             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1371             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
1372             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
1373             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
1374             XtSetArg(args[j], XtNright, XtChainRight);  j++;
1375             XtSetArg(args[j], XtNresizable, True);  j++;
1376             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
1377             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def : 
1378                                 currentCps ? option[i].textValue : *(char**)option[i].target);  j++;
1379             edit = last;
1380             option[i].handle = (void*)
1381                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
1382             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup);
1383
1384             if(option[i].type == TextBox || option[i].type == Fractional) break;
1385
1386             // add increment and decrement controls for spin
1387             j=0;
1388             XtSetArg(args[j], XtNfromVert, edit);  j++;
1389             XtSetArg(args[j], XtNfromHoriz, last);  j++;
1390             XtSetArg(args[j], XtNleft, XtChainRight); j++;
1391             XtSetArg(args[j], XtNright, XtChainRight); j++;
1392             if(option[i].type == FileName || option[i].type == PathName) {
1393                 w = 50; msg = "browse";
1394             } else {
1395                 XtSetArg(args[j], XtNheight, 10);  j++;
1396                 w = 20; msg = "+";
1397             }
1398             XtSetArg(args[j], XtNwidth, w);  j++;
1399             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1400             XtAddCallback(edit, XtNcallback, SpinCallback,
1401                           (XtPointer)(intptr_t) i);
1402
1403             if(option[i].type != Spin) break;
1404
1405             j=0;
1406             XtSetArg(args[j], XtNfromVert, edit);  j++;
1407             XtSetArg(args[j], XtNfromHoriz, last);  j++;
1408             XtSetArg(args[j], XtNheight, 10);  j++;
1409             XtSetArg(args[j], XtNwidth, 20);  j++;
1410             XtSetArg(args[j], XtNleft, XtChainRight); j++;
1411             XtSetArg(args[j], XtNright, XtChainRight); j++;
1412             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1413             XtAddCallback(last, XtNcallback, SpinCallback,
1414                           (XtPointer)(intptr_t) i);
1415             break;
1416           case CheckBox:
1417             if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1418             j=0;
1419             XtSetArg(args[j], XtNfromVert, last);  j++;
1420             XtSetArg(args[j], XtNwidth, 10);  j++;
1421             XtSetArg(args[j], XtNheight, 10);  j++;
1422             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1423             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1424             XtSetArg(args[j], XtNstate, option[i].value);  j++;
1425             option[i].handle = (void*)
1426                 (dialog = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1427           case Label:
1428             msg = option[i].name;
1429             if(*msg == NULLCHAR) msg = option[i].textValue;
1430             if(!msg) break;
1431             j=0;
1432             XtSetArg(args[j], XtNfromVert, last);  j++;
1433             XtSetArg(args[j], XtNfromHoriz, option[i].type != Label ? dialog : NULL);  j++;
1434             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1435             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1436             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1437             last = XtCreateManagedWidget(msg, labelWidgetClass, form, args, j);
1438             break;
1439           case SaveButton:
1440           case Button:
1441             j=0;
1442             XtSetArg(args[j], XtNfromVert, option[i].min & 1 ? lastrow : last);  j++;
1443             if(option[i].min & 1) { XtSetArg(args[j], XtNfromHoriz, last);  j++; }
1444             else  { XtSetArg(args[j], XtNfromHoriz, NULL);  j++; lastrow = forelast; }
1445             if(option[i].max) XtSetArg(args[j], XtNwidth, option[i].max);  j++;
1446             if(option[i].textValue) { // special for buttons of New Variant dialog
1447                 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
1448                                          || strstr(first.variants, VariantName(option[i].value))); j++;
1449                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1450             }
1451             option[i].handle = (void*)
1452                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1453             if(option[i].target == NULL && !currentCps) SetColor( *(char**) option[i-1].target, last); else
1454             XtAddCallback(last, XtNcallback, GenericCallback,
1455                           (XtPointer)(intptr_t) i + (dlgNr<<16));
1456             if(option[i].textValue) SetColor( option[i].textValue, last);
1457             forelast = lastrow; // next button can go on same row
1458             break;
1459           case ComboBox:
1460             j=0;
1461             XtSetArg(args[j], XtNfromVert, last);  j++;
1462             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1463             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1464             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1465             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1466             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1467
1468             if(currentCps) option[i].choice = (char**) option[i].textValue; else {
1469               for(j=0; option[i].choice[j]; j++)
1470                 if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, option[i].choice[j])) break;
1471               option[i].value = j + (option[i].choice[j] == NULL);
1472             }
1473
1474             j=0;
1475             XtSetArg(args[j], XtNfromVert, last);  j++;
1476             XtSetArg(args[j], XtNfromHoriz, dialog);  j++;
1477             XtSetArg(args[j], XtNwidth, option[i].max && !currentCps ? option[i].max : 100);  j++;
1478             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1479             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1480             XtSetArg(args[j], XtNlabel, ((char**)option[i].textValue)[option[i].value]);  j++;
1481             option[i].handle = (void*)
1482                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1483             CreateComboPopup(last, option[i].name, i, (char **) option[i].textValue);
1484             values[i] = option[i].value;
1485             break;
1486           case Break:
1487             width++;
1488             height = i+1;
1489             break;
1490         default:
1491             printf("GenericPopUp: unexpected case in switch.\n");
1492             break;
1493         }
1494     }
1495
1496     // make an attempt to align all spins and textbox controls
1497     maxWidth = maxTextWidth = 0;
1498     for(h=0; h<height; h++) {
1499         i = h + c*height;
1500         if(option[i].type == EndMark) break;
1501         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1502                                   || option[i].type == PathName || option[i].type == FileName) {
1503             Dimension w;
1504             if(!texts[h]) continue;
1505             j=0;
1506             XtSetArg(args[j], XtNwidth, &w);  j++;
1507             XtGetValues(texts[h], args, j);
1508             if(option[i].type == Spin) {
1509                 if(w > maxWidth) maxWidth = w;
1510                 widest = texts[h];
1511             } else {
1512                 if(w > maxTextWidth) maxTextWidth = w;
1513                 if(!widest) widest = texts[h];
1514             }
1515         }
1516     }
1517     if(maxTextWidth + 110 < maxWidth)
1518          maxTextWidth = maxWidth - 110;
1519     else maxWidth = maxTextWidth + 110;
1520     for(h=0; h<height; h++) {
1521         i = h + c*height;
1522         if(option[i].type == EndMark) break;
1523         if(!texts[h]) continue;
1524         j=0;
1525         if(option[i].type == Spin) {
1526             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1527             XtSetValues(texts[h], args, j);
1528         } else
1529         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1530             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1531             XtSetValues(texts[h], args, j);
1532         }
1533     }
1534   }
1535
1536   if(!(option[i].min & 2)) {
1537     j=0;
1538     if(option[i].min & 1) { XtSetArg(args[j], XtNfromHoriz, last); last = forelast; } else
1539     XtSetArg(args[j], XtNfromHoriz, widest ? widest : dialog);  j++;
1540     XtSetArg(args[j], XtNfromVert, anchor ? anchor : last);  j++;
1541     XtSetArg(args[j], XtNbottom, XtChainBottom);  j++;
1542     XtSetArg(args[j], XtNtop, XtChainBottom);  j++;
1543     XtSetArg(args[j], XtNleft, XtChainRight);  j++;
1544     XtSetArg(args[j], XtNright, XtChainRight);  j++;
1545     b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1546     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer) dlgNr);
1547
1548     XtSetArg(args[0], XtNfromHoriz, b_ok);
1549     b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1550     XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer) dlgNr);
1551   }
1552
1553     XtRealizeWidget(popup);
1554     XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1555     snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1556     XtAugmentTranslations(popup, XtParseTranslationTable(def));
1557     XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1558                   &x, &y, &win_x, &win_y, &mask);
1559
1560     XtSetArg(args[0], XtNx, x - 10);
1561     XtSetArg(args[1], XtNy, y - 30);
1562     XtSetValues(popup, args, 2);
1563
1564     XtPopup(popup, dlgNr ? XtGrabNone : XtGrabExclusive);
1565     shellUp[dlgNr] = True;
1566     previous = NULL;
1567     if(textField)SetFocus(textField, popup, (XEvent*) NULL, False);
1568     if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1569         j = 0;
1570         XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1571         XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1572         XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1573         XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1574         XtSetValues(popup, args, j);
1575     }
1576     return 1;
1577 }
1578
1579
1580 void IcsOptionsProc(w, event, prms, nprms)
1581      Widget w;
1582      XEvent *event;
1583      String *prms;
1584      Cardinal *nprms;
1585 {
1586    GenericPopUp(icsOptions, _("ICS Options"), 0);
1587 }
1588
1589 void LoadOptionsProc(w, event, prms, nprms)
1590      Widget w;
1591      XEvent *event;
1592      String *prms;
1593      Cardinal *nprms;
1594 {
1595    GenericPopUp(loadOptions, _("Load Game Options"), 0);
1596 }
1597
1598 void SaveOptionsProc(w, event, prms, nprms)
1599      Widget w;
1600      XEvent *event;
1601      String *prms;
1602      Cardinal *nprms;
1603 {
1604    GenericPopUp(saveOptions, _("Save Game Options"), 0);
1605 }
1606
1607 void SoundOptionsProc(w, event, prms, nprms)
1608      Widget w;
1609      XEvent *event;
1610      String *prms;
1611      Cardinal *nprms;
1612 {
1613    soundFiles[2] = "*";
1614    GenericPopUp(soundOptions, _("Sound Options"), 0);
1615 }
1616
1617 void BoardOptionsProc(w, event, prms, nprms)
1618      Widget w;
1619      XEvent *event;
1620      String *prms;
1621      Cardinal *nprms;
1622 {
1623    GenericPopUp(boardOptions, _("Board Options"), 0);
1624 }
1625
1626 void EngineMenuProc(w, event, prms, nprms)
1627      Widget w;
1628      XEvent *event;
1629      String *prms;
1630      Cardinal *nprms;
1631 {
1632    GenericPopUp(adjudicationOptions, "Adjudicate non-ICS Games", 0);
1633 }
1634
1635 void UciMenuProc(w, event, prms, nprms)
1636      Widget w;
1637      XEvent *event;
1638      String *prms;
1639      Cardinal *nprms;
1640 {
1641    oldCores = appData.smpCores;
1642    oldPonder = appData.ponderNextMove;
1643    GenericPopUp(commonEngineOptions, _("Common Engine Settings"), 0);
1644 }
1645
1646 void NewVariantProc(w, event, prms, nprms)
1647      Widget w;
1648      XEvent *event;
1649      String *prms;
1650      Cardinal *nprms;
1651 {
1652    GenericPopUp(variantDescriptors, _("New Variant"), 0);
1653 }
1654
1655 void OptionsProc(w, event, prms, nprms)
1656      Widget w;
1657      XEvent *event;
1658      String *prms;
1659      Cardinal *nprms;
1660 {
1661    oldPonder = appData.ponderNextMove;
1662    GenericPopUp(generalOptions, _("General Options"), 0);
1663 }
1664
1665 void MatchOptionsProc(w, event, prms, nprms)
1666      Widget w;
1667      XEvent *event;
1668      String *prms;
1669      Cardinal *nprms;
1670 {
1671    GenericPopUp(matchOptions, _("Match Options"), 0);
1672 }
1673
1674 Option textOptions[100];
1675 extern char *icsTextMenuString;
1676 void PutText P((char *text, int pos));
1677
1678 SendString(char *p)
1679 {
1680     char buf[MSG_SIZ], *q;
1681     if(q = strstr(p, "$input")) {
1682         if(!shellUp[4]) return;
1683         strncpy(buf, p, MSG_SIZ);
1684         strncpy(buf + (q-p), q+6, MSG_SIZ-(q-p));
1685         PutText(buf, q-p);
1686         return;
1687     }
1688     snprintf(buf, MSG_SIZ, "%s\n", p);
1689     SendToICS(buf);
1690 }
1691
1692 /* function called when the data to Paste is ready */
1693 static void
1694 SendTextCB(Widget w, XtPointer client_data, Atom *selection,
1695            Atom *type, XtPointer value, unsigned long *len, int *format)
1696 {
1697   char buf[MSG_SIZ], *p = (char*) textOptions[(int) client_data].choice, *name = (char*) value, *q;
1698   if (value==NULL || *len==0) return; /* nothing selected, abort */
1699   name[*len]='\0';
1700   strncpy(buf, p, MSG_SIZ);
1701   q = strstr(p, "$name");
1702   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1703   SendString(buf);
1704   XtFree(value);
1705 }
1706
1707 void SendText(int n)
1708 {
1709     char *p = (char*) textOptions[n].choice;
1710     if(strstr(p, "$name")) {
1711         XtGetSelectionValue(menuBarWidget,
1712           XA_PRIMARY, XA_STRING,
1713           /* (XtSelectionCallbackProc) */ SendTextCB,
1714           (XtPointer) n, /* client_data passed to PastePositionCB */
1715           CurrentTime
1716         );
1717     } else SendString(p);
1718 }
1719
1720 void IcsTextProc(w, event, prms, nprms)
1721      Widget w;
1722      XEvent *event;
1723      String *prms;
1724      Cardinal *nprms;
1725 {
1726    int i=0, j;
1727    char *p, *q, *r;
1728    if((p = icsTextMenuString) == NULL) return;
1729    do {
1730         q = r = p; while(*p && *p != ';') p++;
1731         for(j=0; j<p-q; j++) textOptions[i].name[j] = *r++;
1732         textOptions[i].name[j++] = 0;
1733         if(!*p) break;
1734         if(*++p == '\n') p++; // optional linefeed after button-text terminating semicolon
1735         q = p;
1736         textOptions[i].choice = (char**) (r = textOptions[i].name + j);
1737         while(*p && (*p != ';' || p[1] != '\n')) textOptions[i].name[j++] = *p++;
1738         textOptions[i].name[j++] = 0;
1739         if(*p) p += 2;
1740         textOptions[i].max = 135;
1741         textOptions[i].min = i&1;
1742         textOptions[i].handle = NULL;
1743         textOptions[i].target = &SendText;
1744         textOptions[i].textValue = strstr(r, "$input") ? "#80FF80" : strstr(r, "$name") ? "#FF8080" : "#FFFFFF";
1745         textOptions[i].type = Button;
1746    } while(++i < 99 && *p);
1747    if(i == 0) return;
1748    textOptions[i].type = EndMark;
1749    textOptions[i].target = NULL;
1750    textOptions[i].min = 2;
1751    MarkMenu("menuView.ICStex", 3);
1752    GenericPopUp(textOptions, _("ICS text menu"), 3);
1753 }
1754
1755 extern char ICSInputTranslations[];
1756 char *icsText;
1757
1758 Option boxOptions[] = {
1759 {   0, 20,  400, NULL, (void*) &icsText, "", NULL, TextBox, "" },
1760 {   0,  3,    0, NULL, NULL, "", NULL, EndMark , "" }
1761 };
1762
1763 void PutText(char *text, int pos)
1764 {
1765     Widget edit;
1766     Arg args[16];
1767     char buf[MSG_SIZ], *p;
1768
1769     if(strstr(text, "$add ") == text) {
1770         XtSetArg(args[0], XtNstring, &p);
1771         XtGetValues(boxOptions[0].handle, args, 1);
1772         snprintf(buf, MSG_SIZ, "%s%s", p, text+5); text = buf;
1773         pos += strlen(p) - 5;
1774     }
1775     XtSetArg(args[0], XtNstring, text);
1776     XtSetValues(boxOptions[0].handle, args, 1);
1777     XtSetArg(args[0], XtNinsertPosition, pos);
1778     XtSetValues(boxOptions[0].handle, args, 1);
1779 //    SetFocus(boxOptions[0].handle, shells[4], NULL, False); // No idea why this does not work, and the following is needed:
1780     XSetInputFocus(xDisplay, XtWindow(boxOptions[0].handle), RevertToPointerRoot, CurrentTime);
1781 }
1782
1783 void InputBoxPopup()
1784 {
1785     MarkMenu("menuView.ICS Input Box", 4);
1786     if(GenericPopUp(boxOptions, _("ICS input box"), 4))
1787         XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(ICSInputTranslations));
1788 }
1789
1790 void
1791 SettingsPopUp(ChessProgramState *cps)
1792 {
1793    currentCps = cps;
1794    GenericPopUp(cps->option, _("Engine Settings"), 0);
1795 }
1796
1797 void FirstSettingsProc(w, event, prms, nprms)
1798      Widget w;
1799      XEvent *event;
1800      String *prms;
1801      Cardinal *nprms;
1802 {
1803    SettingsPopUp(&first);
1804 }
1805
1806 void SecondSettingsProc(w, event, prms, nprms)
1807      Widget w;
1808      XEvent *event;
1809      String *prms;
1810      Cardinal *nprms;
1811 {
1812    if(WaitForSecond(SettingsMenuIfReady)) return;
1813    SettingsPopUp(&second);
1814 }
1815
1816 //---------------------------- Chat Windows ----------------------------------------------
1817
1818 void OutputChatMessage(int partner, char *mess)
1819 {
1820     return; // dummy
1821 }
1822