Refactor move type-in code
[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 CheckCallback(Widget ww, XtPointer data, XEvent *event, Boolean *b)
629 {
630     Widget w = currentOption[(int)(intptr_t)data].handle;
631     Boolean s;
632     Arg args[16];
633
634     XtSetArg(args[0], XtNstate, &s);
635     XtGetValues(w, args, 1);
636     XtSetArg(args[0], XtNstate, !s);
637     XtSetValues(w, args, 1);
638 }
639
640 void SpinCallback(w, client_data, call_data)
641      Widget w;
642      XtPointer client_data, call_data;
643 {
644     String name, val;
645     Arg args[16];
646     char buf[MSG_SIZ], *p;
647     int j;
648     int data = (intptr_t) client_data;
649
650     XtSetArg(args[0], XtNlabel, &name);
651     XtGetValues(w, args, 1);
652
653     j = 0;
654     XtSetArg(args[0], XtNstring, &val);
655     XtGetValues(currentOption[data].handle, args, 1);
656     sscanf(val, "%d", &j);
657     if (strcmp(name, "browse") == 0) {
658         char *q, *r;
659         XtSetArg(args[0], XtNstring, &q);
660         XtGetValues(currentOption[data].handle, args, 1);
661         for(r = ""; *q; q++) if(*q == '.') r = q; else if(*q == '/') r = ""; // last dot after last slash
662         if(XsraSelFile(shells[0], currentOption[data].name, NULL, NULL, "", "", r,
663                                   currentOption[data].type == PathName ? "p" : "f", NULL, &p)) {
664                 int len = strlen(p);
665                 if(len && p[len-1] == '/') p[len-1] = NULLCHAR;
666                 XtSetArg(args[0], XtNstring, p);
667                 XtSetValues(currentOption[data].handle, args, 1);
668         }
669         SetFocus(currentOption[data].handle, shells[0], (XEvent*) NULL, False);
670         return;
671     } else
672     if (strcmp(name, "+") == 0) {
673         if(++j > currentOption[data].max) return;
674     } else
675     if (strcmp(name, "-") == 0) {
676         if(--j < currentOption[data].min) return;
677     } else return;
678     snprintf(buf, MSG_SIZ,  "%d", j);
679     XtSetArg(args[0], XtNstring, buf);
680     XtSetValues(currentOption[data].handle, args, 1);
681     SetFocus(currentOption[data].handle, shells[0], NULL, False);
682 }
683
684 void ComboSelect(w, addr, index) // callback for all combo items
685      Widget w;
686      caddr_t addr;
687      caddr_t index;
688 {
689     Arg args[16];
690     int i = ((intptr_t)addr)>>8;
691     int j = 255 & (intptr_t) addr;
692
693     values[i] = j; // store in temporary, for transfer at OK
694     XtSetArg(args[0], XtNlabel, ((char**)currentOption[i].textValue)[j]);
695     XtSetValues(currentOption[i].handle, args, 1);
696 }
697
698 void CreateComboPopup(parent, name, n, mb)
699      Widget parent;
700      String name;
701      int n;
702      char *mb[];
703 {
704     int i=0, j;
705     Widget menu, entry;
706     Arg args[16];
707
708     menu = XtCreatePopupShell(name, simpleMenuWidgetClass,
709                               parent, NULL, 0);
710     j = 0;
711     XtSetArg(args[j], XtNwidth, 100);  j++;
712 //    XtSetArg(args[j], XtNright, XtChainRight);  j++;
713     while (mb[i] != NULL) {
714             entry = XtCreateManagedWidget(mb[i], smeBSBObjectClass,
715                                           menu, args, j);
716             XtAddCallback(entry, XtNcallback,
717                           (XtCallbackProc) ComboSelect,
718                           (caddr_t)(intptr_t) (256*n+i));
719         i++;
720     }
721 }
722
723
724 //----------------------------Generic dialog --------------------------------------------
725
726 // cloned from Engine Settings dialog (and later merged with it)
727
728 typedef void ButtonCallback(int n);
729
730 extern WindowPlacement wpComment, wpTags;
731 char *trialSound;
732 static int oldCores, oldPonder;
733 int MakeColors P((void));
734 void CreateGCs P((int redo));
735 void CreateXPMBoard P((char *s, int kind));
736 void CreateXPMPieces P((void));
737 void GenericReadout();
738 Widget shells[10];
739 Widget marked[10];
740 Boolean shellUp[10];
741 WindowPlacement *wp[10] = { NULL, &wpComment, &wpTags };
742 Option *dialogOptions[10];
743
744 void MarkMenu(char *item, int dlgNr)
745 {
746     Arg args[2];
747     XtSetArg(args[0], XtNleftBitmap, xMarkPixmap);
748     XtSetValues(marked[dlgNr] = XtNameToWidget(menuBarWidget, item), args, 1);
749 }
750
751 int PopDown(int n)
752 {
753     int j;
754     Arg args[10];
755     Dimension windowH, windowW; Position windowX, windowY;
756     if (!shellUp[n]) return 0;
757     if(n && wp[n]) { // remember position
758         j = 0;
759         XtSetArg(args[j], XtNx, &windowX); j++;
760         XtSetArg(args[j], XtNy, &windowY); j++;
761         XtSetArg(args[j], XtNheight, &windowH); j++;
762         XtSetArg(args[j], XtNwidth, &windowW); j++;
763         XtGetValues(shells[n], args, j);
764         wp[n]->x = windowX;
765         wp[n]->x = windowY;
766         wp[n]->width  = windowW;
767         wp[n]->height = windowH;
768     }
769     previous = NULL;
770     XtPopdown(shells[n]);
771     if(n == 0) XtDestroyWidget(shells[n]);
772     shellUp[n] = False;
773     if(marked[n]) {
774         XtSetArg(args[0], XtNleftBitmap, None);
775         XtSetValues(marked[n], args, 1);
776     }
777     if(!n) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
778     return 1;
779 }
780
781 void GenericPopDown(w, event, prms, nprms)
782      Widget w;
783      XEvent *event;
784      String *prms;
785      Cardinal *nprms;
786 {
787     int n;
788     PopDown(prms[0][0] - '0');
789 }
790
791 Option matchOptions[] = {
792 { 0,  2, 1000000000, NULL, (void*) &appData.defaultMatchGames, "", NULL, Spin, _("Default Number of Games in Match:") },
793 { 0,  0, 1000000000, NULL, (void*) &appData.matchPause, "", NULL, Spin, _("Pause between Match Games (msec):") },
794 { 0,  0,          0, NULL, (void*) &appData.loadGameFile, "", NULL, FileName, _("Game File with Opening Lines:") },
795 { 0, -2, 1000000000, NULL, (void*) &appData.loadGameIndex, "", NULL, Spin, _("Game Number (-1 or -2 = Auto-Increment):") },
796 { 0,  0,          0, NULL, (void*) &appData.loadPositionFile, "", NULL, FileName, _("File with Start Positions:") },
797 { 0, -2, 1000000000, NULL, (void*) &appData.loadPositionIndex, "", NULL, Spin, _("Position Number (-1 or -2 = Auto-Increment):") },
798 { 0,  0, 1000000000, NULL, (void*) &appData.rewindIndex, "", NULL, Spin, _("Rewind Index after this many Games (0 = never):") },
799 { 0, 0, 0, NULL, NULL, "", NULL, EndMark , "" }
800 };
801
802 void GeneralOptionsOK(int n)
803 {
804         int newPonder = appData.ponderNextMove;
805         appData.ponderNextMove = oldPonder;
806         PonderNextMoveEvent(newPonder);
807 }
808
809 Option generalOptions[] = {
810 { 0,  0, 0, NULL, (void*) &appData.sweepSelect, "", NULL, CheckBox, _("Almost Always Queen (Detour Under-Promote)") },
811 { 0,  0, 0, NULL, (void*) &appData.animateDragging, "", NULL, CheckBox, _("Animate Dragging") },
812 { 0,  0, 0, NULL, (void*) &appData.animate, "", NULL, CheckBox, _("Animate Moving") },
813 { 0,  0, 0, NULL, (void*) &appData.autoCallFlag, "", NULL, CheckBox, _("Auto Flag") },
814 { 0,  0, 0, NULL, (void*) &appData.autoFlipView, "", NULL, CheckBox, _("Auto Flip View") },
815 { 0,  0, 0, NULL, (void*) &appData.blindfold, "", NULL, CheckBox, _("Blindfold") },
816 { 0,  0, 0, NULL, (void*) &appData.dropMenu, "", NULL, CheckBox, _("Drop Menu") },
817 { 0,  0, 0, NULL, (void*) &appData.highlightDragging, "", NULL, CheckBox, _("Highlight Dragging (Show Move Targets)") },
818 { 0,  0, 0, NULL, (void*) &appData.highlightLastMove, "", NULL, CheckBox, _("Highlight Last Move") },
819 { 0,  0, 0, NULL, (void*) &appData.highlightMoveWithArrow, "", NULL, CheckBox, _("Highlight with Arrow") },
820 { 0,  0, 0, NULL, (void*) &appData.ringBellAfterMoves, "", NULL, CheckBox, _("Move Sound") },
821 { 0,  0, 0, NULL, (void*) &appData.oneClick, "", NULL, CheckBox, _("One-Click Moving") },
822 { 0,  0, 0, NULL, (void*) &appData.periodicUpdates, "", NULL, CheckBox, _("Periodic Updates (in Analysis Mode)") },
823 { 0,  0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, _("Ponder Next Move") },
824 { 0,  0, 0, NULL, (void*) &appData.popupExitMessage, "", NULL, CheckBox, _("Popup Exit Messages") },
825 { 0,  0, 0, NULL, (void*) &appData.popupMoveErrors, "", NULL, CheckBox, _("Popup Move Errors") },
826 { 0,  0, 0, NULL, (void*) &appData.showCoords, "", NULL, CheckBox, _("Show Coordinates") },
827 { 0,  0, 0, NULL, (void*) &appData.markers, "", NULL, CheckBox, _("Show Target Squares") },
828 { 0,  0, 0, NULL, (void*) &appData.hideThinkingFromHuman, "", NULL, CheckBox, _("Hide Thinking from Human") },
829 { 0,  0, 0, NULL, (void*) &appData.testLegality, "", NULL, CheckBox, _("Test Legality") },
830 { 0, 0, 10, NULL, (void*) &appData.flashCount, "", NULL, Spin, _("Flash Moves (0 = no flashing):") },
831 { 0, 1, 10, NULL, (void*) &appData.flashRate, "", NULL, Spin, _("Flash Rate (high = fast):") },
832 { 0, 5, 100,NULL, (void*) &appData.animSpeed, "", NULL, Spin, _("Animation Speed (high = slow):") },
833 { 0,  0, 0, NULL, (void*) &GeneralOptionsOK, "", NULL, EndMark , "" }
834 };
835
836 void Pick(int n)
837 {
838         VariantClass v = currentOption[n].value;
839         if(!appData.noChessProgram) {
840             char *name = VariantName(v), buf[MSG_SIZ];
841             if (first.protocolVersion > 1 && StrStr(first.variants, name) == NULL) {
842                 /* [HGM] in protocol 2 we check if variant is suported by engine */
843               snprintf(buf, MSG_SIZ,  _("Variant %s not supported by %s"), name, first.tidy);
844                 DisplayError(buf, 0);
845                 return; /* ignore OK if first engine does not support it */
846             } else
847             if (second.initDone && second.protocolVersion > 1 && StrStr(second.variants, name) == NULL) {
848               snprintf(buf, MSG_SIZ,  _("Warning: second engine (%s) does not support this!"), second.tidy);
849                 DisplayError(buf, 0);   /* use of second engine is optional; only warn user */
850             }
851         }
852
853         GenericReadout(); // make sure ranks and file settings are read
854
855         gameInfo.variant = v;
856         appData.variant = VariantName(v);
857
858         shuffleOpenings = FALSE; /* [HGM] shuffle: possible shuffle reset when we switch */
859         startedFromPositionFile = FALSE; /* [HGM] loadPos: no longer valid in new variant */
860         appData.pieceToCharTable = NULL;
861         appData.pieceNickNames = "";
862         appData.colorNickNames = "";
863         Reset(True, True);
864         PopDown(0);
865         return;
866 }
867
868 Option variantDescriptors[] = {
869 { VariantNormal, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("normal")},
870 { VariantFairy, 1, 135, NULL, (void*) &Pick, "#BFBFBF", NULL, Button, N_("fairy")},
871 { VariantFischeRandom, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("FRC")},
872 { VariantSChess, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Seirawan")},
873 { VariantWildCastle, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("wild castle")},
874 { VariantSuper, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("Superchess")},
875 { VariantNoCastle, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("no castle")},
876 { VariantCrazyhouse, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("crazyhouse")},
877 { VariantKnightmate, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("knightmate")},
878 { VariantBughouse, 1, 135, NULL, (void*) &Pick, "#FFBFBF", NULL, Button, N_("bughouse")},
879 { VariantBerolina, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("berolina")},
880 { VariantShogi, 1, 135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("shogi (9x9)")},
881 { VariantCylinder, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("cylinder")},
882 { VariantXiangqi, 1, 135, NULL, (void*) &Pick, "#BFFFFF", NULL, Button, N_("xiangqi (9x10)")},
883 { VariantShatranj, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("shatranj")},
884 { VariantCourier, 1, 135, NULL, (void*) &Pick, "#BFFFBF", NULL, Button, N_("courier (12x8)")},
885 { VariantMakruk, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("makruk")},
886 { VariantGreat, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Great Shatranj (10x8)")},
887 { VariantAtomic, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("atomic")},
888 { VariantCapablanca, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Capablanca (10x8)")},
889 { VariantTwoKings, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("two kings")},
890 { VariantGothic, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("Gothic (10x8)")},
891 { Variant3Check, 0, 135, NULL, (void*) &Pick, "#FFFFFF", NULL, Button, N_("3-checks")},
892 { VariantJanus, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("janus (10x8)")},
893 { VariantSuicide, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("suicide")},
894 { VariantCapaRandom, 1, 135, NULL, (void*) &Pick, "#BFBFFF", NULL, Button, N_("CRC (10x8)")},
895 { VariantGiveaway, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("give-away")},
896 { VariantSpartan, 1, 135, NULL, (void*) &Pick, "#FF0000", NULL, Button, N_("Spartan")},
897 { VariantLosers, 0, 135, NULL, (void*) &Pick, "#FFFFBF", NULL, Button, N_("losers")},
898 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, _("Board size ( -1 = default for selected variant):")},
899 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.NrRanks, "", NULL, Spin, N_("Number of Board Ranks:") },
900 { 0, -1, BOARD_FILES, NULL, (void*) &appData.NrFiles, "", NULL, Spin, N_("Number of Board Files:") },
901 { 0, -1, BOARD_RANKS-1, NULL, (void*) &appData.holdingsSize, "", NULL, Spin, N_("Holdings Size:") },
902 { 0, 0, 0, NULL, NULL, NULL, NULL, Label,
903                                 _("WARNING: variants with un-orthodox\n"
904                                   "pieces only have built-in bitmaps\n"
905                                   "for -boardSize middling, bulky and\n"
906                                   "petite, and substitute king or amazon\n"
907                                   "for missing bitmaps. (See manual.)")},
908 { 0, 2, 0, NULL, NULL, "", NULL, EndMark , "" }
909 };
910
911 void CommonOptionsOK(int n)
912 {
913         int newPonder = appData.ponderNextMove;
914         // make sure changes are sent to first engine by re-initializing it
915         // if it was already started pre-emptively at end of previous game
916         if(gameMode == BeginningOfGame) Reset(True, True); else {
917             // Some changed setting need immediate sending always.
918             if(oldCores != appData.smpCores)
919                 NewSettingEvent(False, &(first.maxCores), "cores", appData.smpCores);
920             appData.ponderNextMove = oldPonder;
921             PonderNextMoveEvent(newPonder);
922         }
923 }
924
925 Option commonEngineOptions[] = {
926 { 0,     0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, _("Ponder Next Move") },
927 { 0,  0, 1000, NULL, (void*) &appData.smpCores, "", NULL, Spin, _("Maximum Number of CPUs per Engine:") },
928 { 0,     0, 0, NULL, (void*) &appData.polyglotDir, "", NULL, PathName, _("Polygot Directory:") },
929 { 0, 0, 16000, NULL, (void*) &appData.defaultHashSize, "", NULL, Spin, _("Hash-Table Size (MB):") },
930 { 0,     0, 0, NULL, (void*) &appData.defaultPathEGTB, "", NULL, PathName, _("Nalimov EGTB Path:") },
931 { 0,  0, 1000, NULL, (void*) &appData.defaultCacheSizeEGTB, "", NULL, Spin, _("EGTB Cache Size (MB):") },
932 { 0,     0, 0, NULL, (void*) &appData.usePolyglotBook, "", NULL, CheckBox, _("Use GUI Book") },
933 { 0,     0, 0, NULL, (void*) &appData.polyglotBook, "", NULL, FileName, _("Opening-Book Filename:") },
934 { 0,   0, 100, NULL, (void*) &appData.bookDepth, "", NULL, Spin, _("Book Depth (moves):") },
935 { 0,   0, 100, NULL, (void*) &appData.bookStrength, "", NULL, Spin, _("Book Variety (0) vs. Strength (100):") },
936 { 0,     0, 0, NULL, (void*) &appData.firstHasOwnBookUCI, "", NULL, CheckBox, _("Engine #1 Has Own Book") },
937 { 0,     0, 0, NULL, (void*) &appData.secondHasOwnBookUCI, "", NULL, CheckBox, _("Engine #2 Has Own Book          ") },
938 { 0,     1, 0, NULL, (void*) &CommonOptionsOK, "", NULL, EndMark , "" }
939 };
940
941 Option adjudicationOptions[] = {
942 { 0, 0,    0, NULL, (void*) &appData.checkMates, "", NULL, CheckBox, _("Detect all Mates") },
943 { 0, 0,    0, NULL, (void*) &appData.testClaims, "", NULL, CheckBox, _("Verify Engine Result Claims") },
944 { 0, 0,    0, NULL, (void*) &appData.materialDraws, "", NULL, CheckBox, _("Draw if Insufficient Mating Material") },
945 { 0, 0,    0, NULL, (void*) &appData.trivialDraws, "", NULL, CheckBox, _("Adjudicate Trivial Draws (3-Move Delay)") },
946 { 0, 0,  100, NULL, (void*) &appData.ruleMoves, "", NULL, Spin, _("N-Move Rule:") },
947 { 0, 0,    6, NULL, (void*) &appData.drawRepeats, "", NULL, Spin, _("N-fold Repeats:") },
948 { 0, 0, 1000, NULL, (void*) &appData.adjudicateDrawMoves, "", NULL, Spin, _("Draw after N Moves Total:") },
949 { 0,-5000, 0, NULL, (void*) &appData.adjudicateLossThreshold, "", NULL, Spin, _("Win / Loss Threshold:") },
950 { 0, 0,    0, NULL, (void*) &first.scoreIsAbsolute, "", NULL, CheckBox, _("Negate Score of Engine #1") },
951 { 0, 0,    0, NULL, (void*) &second.scoreIsAbsolute, "", NULL, CheckBox, _("Negate Score of Engine #2") },
952 { 0, 1,    0, NULL, NULL, "", NULL, EndMark , "" }
953 };
954
955 void IcsOptionsOK(int n)
956 {
957     ParseIcsTextColors();
958 }
959
960 Option icsOptions[] = {
961 { 0, 0, 0, NULL, (void*) &appData.autoKibitz, "",  NULL, CheckBox, _("Auto-Kibitz") },
962 { 0, 0, 0, NULL, (void*) &appData.autoComment, "", NULL, CheckBox, _("Auto-Comment") },
963 { 0, 0, 0, NULL, (void*) &appData.autoObserve, "", NULL, CheckBox, _("Auto-Observe") },
964 { 0, 0, 0, NULL, (void*) &appData.autoRaiseBoard, "", NULL, CheckBox, _("Auto-Raise Board") },
965 { 0, 0, 0, NULL, (void*) &appData.bgObserve, "",   NULL, CheckBox, _("Background Observe while Playing") },
966 { 0, 0, 0, NULL, (void*) &appData.dualBoard, "",   NULL, CheckBox, _("Dual Board for Background-Observed Game") },
967 { 0, 0, 0, NULL, (void*) &appData.getMoveList, "", NULL, CheckBox, _("Get Move List") },
968 { 0, 0, 0, NULL, (void*) &appData.quietPlay, "",   NULL, CheckBox, _("Quiet Play") },
969 { 0, 0, 0, NULL, (void*) &appData.seekGraph, "",   NULL, CheckBox, _("Seek Graph") },
970 { 0, 0, 0, NULL, (void*) &appData.autoRefresh, "", NULL, CheckBox, _("Auto-Refresh Seek Graph") },
971 { 0, 0, 0, NULL, (void*) &appData.premove, "",     NULL, CheckBox, _("Premove") },
972 { 0, 0, 0, NULL, (void*) &appData.premoveWhite, "", NULL, CheckBox, _("Premove for White") },
973 { 0, 0, 0, NULL, (void*) &appData.premoveWhiteText, "", NULL, TextBox, _("First White Move:") },
974 { 0, 0, 0, NULL, (void*) &appData.premoveBlack, "", NULL, CheckBox, _("Premove for Black") },
975 { 0, 0, 0, NULL, (void*) &appData.premoveBlackText, "", NULL, TextBox, _("First Black Move:") },
976 { 0, 0, 0, NULL, NULL, NULL, NULL, Break, "" },
977 { 0, 0, 0, NULL, (void*) &appData.icsAlarm, "", NULL, CheckBox, _("Alarm") },
978 { 0, 0, 100000000, NULL, (void*) &appData.icsAlarmTime, "", NULL, Spin, _("Alarm Time (msec):") },
979 //{ 0, 0, 0, NULL, (void*) &appData.chatBoxes, "", NULL, TextBox, _("Startup Chat Boxes:") },
980 { 0, 0, 0, NULL, (void*) &appData.colorize, "", NULL, CheckBox, _("Colorize Messages") },
981 { 0, 0, 0, NULL, (void*) &appData.colorShout, "", NULL, TextBox, _("Shout Text Colors:") },
982 { 0, 0, 0, NULL, (void*) &appData.colorSShout, "", NULL, TextBox, _("S-Shout Text Colors:") },
983 { 0, 0, 0, NULL, (void*) &appData.colorChannel1, "", NULL, TextBox, _("Channel #1 Text Colors:") },
984 { 0, 0, 0, NULL, (void*) &appData.colorChannel, "", NULL, TextBox, _("Other Channel Text Colors:") },
985 { 0, 0, 0, NULL, (void*) &appData.colorKibitz, "", NULL, TextBox, _("Kibitz Text Colors:") },
986 { 0, 0, 0, NULL, (void*) &appData.colorTell, "", NULL, TextBox, _("Tell Text Colors:") },
987 { 0, 0, 0, NULL, (void*) &appData.colorChallenge, "", NULL, TextBox, _("Challenge Text Colors:") },
988 { 0, 0, 0, NULL, (void*) &appData.colorRequest, "", NULL, TextBox, _("Request Text Colors:") },
989 { 0, 0, 0, NULL, (void*) &appData.colorSeek, "", NULL, TextBox, _("Seek Text Colors:") },
990 { 0, 0, 0, NULL, (void*) &IcsOptionsOK, "", NULL, EndMark , "" }
991 };
992
993 Option loadOptions[] = {
994 { 0, 0, 0, NULL, (void*) &appData.autoDisplayTags, "", NULL, CheckBox, _("Auto-Display Tags") },
995 { 0, 0, 0, NULL, (void*) &appData.autoDisplayComment, "", NULL, CheckBox, _("Auto-Display Comment") },
996 { 0, 0, 0, NULL, NULL, NULL, NULL, Label, _("Auto-Play speed of loaded games\n(0 = instant, -1 = off):") },
997 { 0, -1, 10000000, NULL, (void*) &appData.timeDelay, "", NULL, Fractional, _("Seconds per Move:") },
998 { 0,  0, 0, NULL, NULL, "", NULL, EndMark , "" }
999 };
1000
1001 Option saveOptions[] = {
1002 { 0, 0, 0, NULL, (void*) &appData.autoSaveGames, "", NULL, CheckBox, _("Auto-Save Games") },
1003 { 0, 0, 0, NULL, (void*) &appData.saveGameFile, "", NULL, FileName,  _("Save Games on File:") },
1004 { 0, 0, 0, NULL, (void*) &appData.savePositionFile, "", NULL, FileName,  _("Save Final Positions on File:") },
1005 { 0, 0, 0, NULL, (void*) &appData.pgnEventHeader, "", NULL, TextBox,  _("PGN Event Header:") },
1006 { 0, 0, 0, NULL, (void*) &appData.oldSaveStyle, "", NULL, CheckBox, _("Old Save Style (as opposed to PGN)") },
1007 { 0, 0, 0, NULL, (void*) &appData.saveExtendedInfoInPGN, "", NULL, CheckBox, _("Save Score/Depth Info in PGN") },
1008 { 0, 0, 0, NULL, (void*) &appData.saveOutOfBookInfo, "", NULL, CheckBox, _("Save Out-of-Book Info in PGN           ") },
1009 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
1010 };
1011
1012 char *soundNames[] = {
1013         N_("No Sound"),
1014         N_("Default Beep"),
1015         N_("Above WAV File"),
1016         N_("Ching"),
1017         N_("Click"),
1018         N_("Ding"),
1019         N_("Gong"),
1020         N_("Laser"),
1021         N_("Penalty"),
1022         N_("Phone"),
1023         N_("Thud"),
1024         N_("Challenge"),
1025         N_("Tell"),
1026         NULL,
1027         N_("User File")
1028 };
1029
1030 char *soundFiles[] = { // sound files corresponding to above names
1031         "",
1032         "$",
1033         "*", // kludge alert: as first thing in the dialog readout this is replaced with the user-given .WAV filename
1034         "ching.wav",
1035         "click.wav",
1036         "ding1.wav",
1037         "gong.wav",
1038         "laser.wav",
1039         "penalty.wav",
1040         "phone.wav",
1041         "thud.wav",
1042         "challenge.wav",
1043         "tell.wav",
1044         NULL,
1045         NULL
1046 };
1047
1048 void Test(int n)
1049 {
1050     if(soundFiles[values[3]]) PlaySound(soundFiles[values[3]]);
1051 }
1052
1053 Option soundOptions[] = {
1054 { 0, 0, 0, NULL, (void*) &appData.soundProgram, "", NULL, TextBox, _("Sound Program:") },
1055 { 0, 0, 0, NULL, (void*) &appData.soundDirectory, "", NULL, PathName, _("Sounds Directory:") },
1056 { 0, 0, 0, NULL, (void*) (soundFiles+2) /* kludge! */, "", NULL, FileName, _("User WAV File:") },
1057 { 0, 0, 0, NULL, (void*) &trialSound, (char*) soundNames, soundFiles, ComboBox, _("Try-Out Sound:") },
1058 { 0, 1, 0, NULL, (void*) &Test, NULL, NULL, Button, _("Play") },
1059 { 0, 0, 0, NULL, (void*) &appData.soundMove, (char*) soundNames, soundFiles, ComboBox, _("Move:") },
1060 { 0, 0, 0, NULL, (void*) &appData.soundIcsWin, (char*) soundNames, soundFiles, ComboBox, _("Win:") },
1061 { 0, 0, 0, NULL, (void*) &appData.soundIcsLoss, (char*) soundNames, soundFiles, ComboBox, _("Lose:") },
1062 { 0, 0, 0, NULL, (void*) &appData.soundIcsDraw, (char*) soundNames, soundFiles, ComboBox, _("Draw:") },
1063 { 0, 0, 0, NULL, (void*) &appData.soundIcsUnfinished, (char*) soundNames, soundFiles, ComboBox, _("Unfinished:") },
1064 { 0, 0, 0, NULL, (void*) &appData.soundIcsAlarm, (char*) soundNames, soundFiles, ComboBox, _("Alarm:") },
1065 { 0, 0, 0, NULL, (void*) &appData.soundShout, (char*) soundNames, soundFiles, ComboBox, _("Shout:") },
1066 { 0, 0, 0, NULL, (void*) &appData.soundSShout, (char*) soundNames, soundFiles, ComboBox, _("S-Shout:") },
1067 { 0, 0, 0, NULL, (void*) &appData.soundChannel, (char*) soundNames, soundFiles, ComboBox, _("Channel:") },
1068 { 0, 0, 0, NULL, (void*) &appData.soundChannel1, (char*) soundNames, soundFiles, ComboBox, _("Channel 1:") },
1069 { 0, 0, 0, NULL, (void*) &appData.soundTell, (char*) soundNames, soundFiles, ComboBox, _("Tell:") },
1070 { 0, 0, 0, NULL, (void*) &appData.soundKibitz, (char*) soundNames, soundFiles, ComboBox, _("Kibitz:") },
1071 { 0, 0, 0, NULL, (void*) &appData.soundChallenge, (char*) soundNames, soundFiles, ComboBox, _("Challenge:") },
1072 { 0, 0, 0, NULL, (void*) &appData.soundRequest, (char*) soundNames, soundFiles, ComboBox, _("Request:") },
1073 { 0, 0, 0, NULL, (void*) &appData.soundSeek, (char*) soundNames, soundFiles, ComboBox, _("Seek:") },
1074 { 0, 1, 0, NULL, NULL, "", NULL, EndMark , "" }
1075 };
1076
1077 void SetColor(char *colorName, Widget box)
1078 {
1079         Arg args[5];
1080         Pixel buttonColor;
1081         XrmValue vFrom, vTo;
1082         if (!appData.monoMode) {
1083             vFrom.addr = (caddr_t) colorName;
1084             vFrom.size = strlen(colorName);
1085             XtConvert(shellWidget, XtRString, &vFrom, XtRPixel, &vTo);
1086             if (vTo.addr == NULL) {
1087                 buttonColor = (Pixel) -1;
1088             } else {
1089                 buttonColor = *(Pixel *) vTo.addr;
1090             }
1091         }
1092         XtSetArg(args[0], XtNbackground, buttonColor);;
1093         XtSetValues(box, args, 1);
1094 }
1095
1096 void SetColorText(int n, char *buf)
1097 {
1098     Arg args[5];
1099     XtSetArg(args[0], XtNstring, buf);
1100     XtSetValues(currentOption[n-1].handle, args, 1);
1101     SetFocus(currentOption[n-1].handle, shells[0], NULL, False);
1102     SetColor(buf, currentOption[n].handle);
1103 }
1104
1105 void DefColor(int n)
1106 {
1107     SetColorText(n, (char*) currentOption[n].choice);
1108 }
1109
1110 void RefreshColor(int source, int n)
1111 {
1112     int col, j, r, g, b, step = 10;
1113     char *s, buf[MSG_SIZ]; // color string
1114     Arg args[5];
1115     XtSetArg(args[0], XtNstring, &s);
1116     XtGetValues(currentOption[source].handle, args, 1);
1117     if(sscanf(s, "#%x", &col) != 1) return;   // malformed
1118     b = col & 0xFF; g = col & 0xFF00; r = col & 0xFF0000;
1119     switch(n) {
1120         case 1: r += 0x10000*step;break;
1121         case 2: g += 0x100*step;  break;
1122         case 3: b += step;        break;
1123         case 4: r -= 0x10000*step; g -= 0x100*step; b -= step; break;
1124     }
1125     if(r < 0) r = 0; if(g < 0) g = 0; if(b < 0) b = 0;
1126     if(r > 0xFF0000) r = 0xFF0000; if(g > 0xFF00) g = 0xFF00; if(b > 0xFF) b = 0xFF;
1127     col = r | g | b;
1128     snprintf(buf, MSG_SIZ, "#%06x", col);
1129     for(j=1; j<7; j++) if(buf[j] >= 'a') buf[j] -= 32; // capitalize
1130     SetColorText(source+1, buf);
1131 }
1132
1133 void ColorChanged(Widget w, XtPointer data, XEvent *event, Boolean *b)
1134 {
1135     char buf[10];
1136     if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
1137         RefreshColor((int)(intptr_t) data, 0);
1138 }
1139
1140 void AdjustColor(int i)
1141 {
1142     int n = currentOption[i].value;
1143     RefreshColor(i-n-1, n);
1144 }
1145
1146 void BoardOptionsOK(int n)
1147 {
1148     extern int defaultLineGap;
1149     if(appData.overrideLineGap >= 0) lineGap = appData.overrideLineGap; else lineGap = defaultLineGap;
1150     MakeColors(); CreateGCs(True);
1151     CreateXPMPieces();
1152     CreateXPMBoard(appData.liteBackTextureFile, 1);
1153     CreateXPMBoard(appData.darkBackTextureFile, 0);
1154     InitDrawingSizes(-1, 0);
1155     DrawPosition(True, NULL);
1156 }
1157
1158 Option boardOptions[] = {
1159 { 0,   0, 70, NULL, (void*) &appData.whitePieceColor, "", NULL, TextBox, _("White Piece Color:") },
1160 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFFCC", Button, "      " },
1161 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1162 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1163 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1164 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
1165 { 0,   0, 70, NULL, (void*) &appData.blackPieceColor, "", NULL, TextBox, _("Black Piece Color:") },
1166 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#202020", Button, "      " },
1167 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1168 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1169 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1170 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
1171 { 0,   0, 70, NULL, (void*) &appData.lightSquareColor, "", NULL, TextBox, _("Light Square Color:") },
1172 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#C8C365", Button, "      " },
1173 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1174 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1175 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1176 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
1177 { 0,   0, 70, NULL, (void*) &appData.darkSquareColor, "", NULL, TextBox, _("Dark Square Color:") },
1178 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#77A26D", Button, "      " },
1179 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1180 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1181 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1182 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
1183 { 0,   0, 70, NULL, (void*) &appData.highlightSquareColor, "", NULL, TextBox, _("Highlight Color:") },
1184 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFF00", Button, "      " },
1185 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1186 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1187 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1188 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
1189 { 0,   0, 70, NULL, (void*) &appData.premoveHighlightColor, "", NULL, TextBox, _("Premove Highlight Color:") },
1190 { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FF0000", Button, "      " },
1191 {    1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "R" },
1192 {    2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "G" },
1193 {    3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "B" },
1194 {    4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, "D" },
1195 { 0, 0, 0, NULL, (void*) &appData.upsideDown, "", NULL, CheckBox, _("Flip Pieces Shogi Style        (Colored buttons restore default)") },
1196 { 0, 0, 0, NULL, (void*) &appData.allWhite, "", NULL, CheckBox, _("Use Outline Pieces for Black") },
1197 { 0, 0, 0, NULL, (void*) &appData.monoMode, "", NULL, CheckBox, _("Mono Mode") },
1198 { 0,-1, 5, NULL, (void*) &appData.overrideLineGap, "", NULL, Spin, _("Line Gap ( -1 = default for board size):") },
1199 { 0, 0, 0, NULL, (void*) &appData.liteBackTextureFile, "", NULL, FileName, _("Light-Squares Texture File:") },
1200 { 0, 0, 0, NULL, (void*) &appData.darkBackTextureFile, "", NULL, FileName, _("Dark-Squares Texture File:") },
1201 { 0, 0, 0, NULL, (void*) &appData.bitmapDirectory, "", NULL, PathName, _("Directory with Bitmap Pieces:") },
1202 { 0, 0, 0, NULL, (void*) &appData.pixmapDirectory, "", NULL, PathName, _("Directory with Pixmap Pieces:") },
1203 { 0, 0, 0, NULL, (void*) &BoardOptionsOK, "", NULL, EndMark , "" }
1204 };
1205
1206 void GenericReadout()
1207 {
1208     int i, j;
1209     String name, val;
1210     Arg args[16];
1211     char buf[MSG_SIZ], **dest;
1212     float x;
1213         for(i=0; ; i++) { // send all options that had to be OK-ed to engine
1214             switch(currentOption[i].type) {
1215                 case TextBox:
1216                 case FileName:
1217                 case PathName:
1218                     XtSetArg(args[0], XtNstring, &val);
1219                     XtGetValues(currentOption[i].handle, args, 1);
1220                     dest = currentCps ? &(currentOption[i].textValue) : (char**) currentOption[i].target;
1221                     if(*dest == NULL || strcmp(*dest, val)) {
1222                         if(currentCps) {
1223                             snprintf(buf, MSG_SIZ,  "option %s=%s\n", currentOption[i].name, val);
1224                             SendToProgram(buf, currentCps);
1225                         } else *dest = currentOption[i].name + 100; // option gets to point to private storage;
1226                         safeStrCpy(*dest, val, MSG_SIZ - (*dest - currentOption[i].name)); // copy text there
1227                     }
1228                     break;
1229                 case Spin:
1230                 case Fractional:
1231                     XtSetArg(args[0], XtNstring, &val);
1232                     XtGetValues(currentOption[i].handle, args, 1);
1233                     sscanf(val, "%f", &x);
1234                     if(x > currentOption[i].max) x = currentOption[i].max;
1235                     if(x < currentOption[i].min) x = currentOption[i].min;
1236                     if(currentOption[i].value != x) {
1237                         currentOption[i].value = x;
1238                         if(currentCps) { // engines never have float options, so no decimals!
1239                             snprintf(buf, MSG_SIZ,  "option %s=%.0f\n", currentOption[i].name, x);
1240                             SendToProgram(buf, currentCps);
1241                         } else if(currentOption[i].type == Spin) *(int*) currentOption[i].target = x;
1242                         else *(float*) currentOption[i].target = x;
1243                     }
1244                     break;
1245                 case CheckBox:
1246                     j = 0;
1247                     XtSetArg(args[0], XtNstate, &j);
1248                     XtGetValues(currentOption[i].handle, args, 1);
1249                     if(currentOption[i].value != j) {
1250                         currentOption[i].value = j;
1251                         if(currentCps) {
1252                             snprintf(buf, MSG_SIZ,  "option %s=%d\n", currentOption[i].name, j);
1253                             SendToProgram(buf, currentCps);
1254                         } else *(Boolean*) currentOption[i].target = j;
1255                     }
1256                     break;
1257                 case ComboBox:
1258                     val = ((char**)currentOption[i].choice)[values[i]];
1259                     if(currentCps) {
1260                         if(currentOption[i].value == values[i]) break; // not changed
1261                         currentOption[i].value = values[i];
1262                         snprintf(buf, MSG_SIZ,  "option %s=%s\n", currentOption[i].name,
1263                                 ((char**)currentOption[i].textValue)[values[i]]);
1264                         SendToProgram(buf, currentCps);
1265                     } else if(val && (*(char**) currentOption[i].target == NULL || strcmp(*(char**) currentOption[i].target, val))) {
1266                       if(*(char**) currentOption[i].target) free(*(char**) currentOption[i].target);
1267                       *(char**) currentOption[i].target = strdup(val);
1268                     }
1269                     break;
1270                 case EndMark:
1271                     if(currentOption[i].target) // callback for implementing necessary actions on OK (like redraw)
1272                         ((ButtonCallback*) currentOption[i].target)(i);
1273                     break;
1274             default:
1275                 printf("GenericReadout: unexpected case in switch.\n");
1276                 case Button:
1277                 case SaveButton:
1278                 case Label:
1279                 case Break:
1280               break;
1281             }
1282             if(currentOption[i].type == EndMark) break;
1283         }
1284 }
1285
1286 void GenericCallback(w, client_data, call_data)
1287      Widget w;
1288      XtPointer client_data, call_data;
1289 {
1290     String name, val;
1291     Arg args[16];
1292     char buf[MSG_SIZ];
1293     int i, j;
1294     int data = (intptr_t) client_data;
1295
1296     currentOption = dialogOptions[data>>16]; data &= 0xFFFF;
1297
1298     XtSetArg(args[0], XtNlabel, &name);
1299     XtGetValues(w, args, 1);
1300
1301     if (strcmp(name, _("cancel")) == 0) {
1302         PopDown(data);
1303         return;
1304     }
1305     if (strcmp(name, _("OK")) == 0) { // save buttons imply OK
1306         GenericReadout();
1307         PopDown(data);
1308         return;
1309     }
1310     if(currentCps) {
1311         if(currentOption[data].type == SaveButton) GenericReadout();
1312         snprintf(buf, MSG_SIZ,  "option %s\n", name);
1313         SendToProgram(buf, currentCps);
1314     } else ((ButtonCallback*) currentOption[data].target)(data);
1315 }
1316
1317 static char *oneLiner  = "<Key>Return:  redraw-display()\n";
1318
1319 int
1320 GenericPopUp(Option *option, char *title, int dlgNr)
1321 {
1322     Arg args[16];
1323     Widget popup, layout, dialog, edit=NULL, form,  last, b_ok, b_cancel, leftMargin = NULL, textField = NULL;
1324     Window root, child;
1325     int x, y, i, j, height=999, width=1, h, c, w;
1326     int win_x, win_y, maxWidth, maxTextWidth;
1327     unsigned int mask;
1328     char def[MSG_SIZ], *msg;
1329     static char pane[6] = "paneX";
1330     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL;
1331
1332     if(shellUp[dlgNr]) return 0; // already up          
1333     if(dlgNr && shells[dlgNr]) {
1334         XtPopup(shells[dlgNr], XtGrabNone);
1335         shellUp[dlgNr] = True;
1336         return 0;
1337     }
1338
1339     dialogOptions[dlgNr] = option; // make available to callback
1340     // post currentOption globally, so Spin and Combo callbacks can already use it
1341     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1342     currentOption = option;
1343
1344     if(currentCps) { // Settings popup for engine: format through heuristic
1345         int n = currentCps->nrOptions;
1346         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1347         height = n / width + 1;
1348         if(currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton) currentOption[n].min = 1; // OK on same line
1349         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1350     }
1351      i = 0;
1352     XtSetArg(args[i], XtNresizable, True); i++;
1353     popup = shells[dlgNr] =
1354       XtCreatePopupShell(title, transientShellWidgetClass,
1355                          shellWidget, args, i);
1356
1357     layout =
1358       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
1359                             layoutArgs, XtNumber(layoutArgs));
1360   for(c=0; c<width; c++) {
1361     pane[4] = 'A'+c;
1362     form =
1363       XtCreateManagedWidget(pane, formWidgetClass, layout,
1364                             formArgs, XtNumber(formArgs));
1365     j=0;
1366     XtSetArg(args[j], XtNfromHoriz, leftMargin);  j++;
1367     XtSetValues(form, args, j);
1368     leftMargin = form;
1369
1370     last = widest = NULL; anchor = lastrow;
1371     for(h=0; h<height; h++) {
1372         i = h + c*height;
1373         if(option[i].type == EndMark) break;
1374         lastrow = forelast;
1375         forelast = last;
1376         switch(option[i].type) {
1377           case Fractional:
1378             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1379             option[i].value = *(float*)option[i].target;
1380             goto tBox;
1381           case Spin:
1382             if(!currentCps) option[i].value = *(int*)option[i].target;
1383             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1384           case TextBox:
1385           case FileName:
1386           case PathName:
1387           tBox:
1388             if(option[i].name[0]) {
1389             j=0;
1390             XtSetArg(args[j], XtNfromVert, last);  j++;
1391             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1392             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1393             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1394             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1395             texts[h] =
1396             dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1397             } else texts[h] = dialog = NULL;
1398             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1399             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1400             j=0;
1401             XtSetArg(args[j], XtNfromVert, last);  j++;
1402             XtSetArg(args[j], XtNfromHoriz, dialog);  j++;
1403             XtSetArg(args[j], XtNborderWidth, 1); j++;
1404             XtSetArg(args[j], XtNwidth, w); j++;
1405             if(option[i].type == TextBox && option[i].min) {
1406                 XtSetArg(args[j], XtNheight, option[i].min); j++;
1407                 if(option[i].value & 1) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
1408                 if(option[i].value & 2) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
1409                 if(option[i].value & 4) { XtSetArg(args[j], XtNautoFill, True);  j++; }
1410                 if(option[i].value & 8) { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
1411             }
1412             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1413             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
1414             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
1415             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
1416             XtSetArg(args[j], XtNright, XtChainRight);  j++;
1417             XtSetArg(args[j], XtNresizable, True);  j++;
1418             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
1419             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def : 
1420                                 currentCps ? option[i].textValue : *(char**)option[i].target);  j++;
1421             edit = last;
1422             option[i].handle = (void*)
1423                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
1424             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup);
1425             if(option[i].min == 0 || option[i].type != TextBox)
1426                 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner));
1427
1428             if(option[i].type == TextBox || option[i].type == Fractional) break;
1429
1430             // add increment and decrement controls for spin
1431             j=0;
1432             XtSetArg(args[j], XtNfromVert, edit);  j++;
1433             XtSetArg(args[j], XtNfromHoriz, last);  j++;
1434             XtSetArg(args[j], XtNleft, XtChainRight); j++;
1435             XtSetArg(args[j], XtNright, XtChainRight); j++;
1436             if(option[i].type == FileName || option[i].type == PathName) {
1437                 w = 50; msg = "browse";
1438             } else {
1439                 XtSetArg(args[j], XtNheight, 10);  j++;
1440                 w = 20; msg = "+";
1441             }
1442             XtSetArg(args[j], XtNwidth, w);  j++;
1443             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1444             XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1445
1446             if(option[i].type != Spin) break;
1447
1448             j=0;
1449             XtSetArg(args[j], XtNfromVert, edit);  j++;
1450             XtSetArg(args[j], XtNfromHoriz, last);  j++;
1451             XtSetArg(args[j], XtNheight, 10);  j++;
1452             XtSetArg(args[j], XtNwidth, 20);  j++;
1453             XtSetArg(args[j], XtNleft, XtChainRight); j++;
1454             XtSetArg(args[j], XtNright, XtChainRight); j++;
1455             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1456             XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1457             break;
1458           case CheckBox:
1459             if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1460             j=0;
1461             XtSetArg(args[j], XtNfromVert, last);  j++;
1462             XtSetArg(args[j], XtNwidth, 10);  j++;
1463             XtSetArg(args[j], XtNheight, 10);  j++;
1464             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1465             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1466             XtSetArg(args[j], XtNstate, option[i].value);  j++;
1467             option[i].handle = (void*)
1468                 (dialog = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1469           case Label:
1470             msg = option[i].name;
1471             if(*msg == NULLCHAR) msg = option[i].textValue;
1472             if(!msg) break;
1473             j=0;
1474             XtSetArg(args[j], XtNfromVert, last);  j++;
1475             XtSetArg(args[j], XtNfromHoriz, option[i].type != Label ? dialog : NULL);  j++;
1476             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1477             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1478             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1479             last = XtCreateManagedWidget(msg, labelWidgetClass, form, args, j);
1480             if(option[i].type == CheckBox)
1481                 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i);
1482             break;
1483           case SaveButton:
1484           case Button:
1485             j=0;
1486             XtSetArg(args[j], XtNfromVert, option[i].min & 1 ? lastrow : last);  j++;
1487             if(option[i].min & 1) { XtSetArg(args[j], XtNfromHoriz, last);  j++; }
1488             else  { XtSetArg(args[j], XtNfromHoriz, NULL);  j++; lastrow = forelast; }
1489             if(option[i].max) XtSetArg(args[j], XtNwidth, option[i].max);  j++;
1490             if(option[i].textValue) { // special for buttons of New Variant dialog
1491                 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
1492                                          || strstr(first.variants, VariantName(option[i].value))); j++;
1493                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1494             }
1495             option[i].handle = (void*)
1496                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1497             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1498                 SetColor( *(char**) option[i-1].target, last);
1499                 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
1500             }
1501             XtAddCallback(last, XtNcallback, GenericCallback,
1502                           (XtPointer)(intptr_t) i + (dlgNr<<16));
1503             if(option[i].textValue) SetColor( option[i].textValue, last);
1504             forelast = lastrow; // next button can go on same row
1505             break;
1506           case ComboBox:
1507             j=0;
1508             XtSetArg(args[j], XtNfromVert, last);  j++;
1509             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1510             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1511             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1512             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1513             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1514
1515             if(currentCps) option[i].choice = (char**) option[i].textValue; else {
1516               for(j=0; option[i].choice[j]; j++)
1517                 if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, option[i].choice[j])) break;
1518               option[i].value = j + (option[i].choice[j] == NULL);
1519             }
1520
1521             j=0;
1522             XtSetArg(args[j], XtNfromVert, last);  j++;
1523             XtSetArg(args[j], XtNfromHoriz, dialog);  j++;
1524             XtSetArg(args[j], XtNwidth, option[i].max && !currentCps ? option[i].max : 100);  j++;
1525             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1526             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1527             XtSetArg(args[j], XtNlabel, ((char**)option[i].textValue)[option[i].value]);  j++;
1528             option[i].handle = (void*)
1529                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1530             CreateComboPopup(last, option[i].name, i, (char **) option[i].textValue);
1531             values[i] = option[i].value;
1532             break;
1533           case Break:
1534             width++;
1535             height = i+1;
1536             break;
1537         default:
1538             printf("GenericPopUp: unexpected case in switch.\n");
1539             break;
1540         }
1541     }
1542
1543     // make an attempt to align all spins and textbox controls
1544     maxWidth = maxTextWidth = 0;
1545     for(h=0; h<height; h++) {
1546         i = h + c*height;
1547         if(option[i].type == EndMark) break;
1548         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1549                                   || option[i].type == PathName || option[i].type == FileName) {
1550             Dimension w;
1551             if(!texts[h]) continue;
1552             j=0;
1553             XtSetArg(args[j], XtNwidth, &w);  j++;
1554             XtGetValues(texts[h], args, j);
1555             if(option[i].type == Spin) {
1556                 if(w > maxWidth) maxWidth = w;
1557                 widest = texts[h];
1558             } else {
1559                 if(w > maxTextWidth) maxTextWidth = w;
1560                 if(!widest) widest = texts[h];
1561             }
1562         }
1563     }
1564     if(maxTextWidth + 110 < maxWidth)
1565          maxTextWidth = maxWidth - 110;
1566     else maxWidth = maxTextWidth + 110;
1567     for(h=0; h<height; h++) {
1568         i = h + c*height;
1569         if(option[i].type == EndMark) break;
1570         if(!texts[h]) continue;
1571         j=0;
1572         if(option[i].type == Spin) {
1573             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1574             XtSetValues(texts[h], args, j);
1575         } else
1576         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1577             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1578             XtSetValues(texts[h], args, j);
1579         }
1580     }
1581   }
1582
1583   if(!(option[i].min & 2)) {
1584     j=0;
1585     if(option[i].min & 1) { XtSetArg(args[j], XtNfromHoriz, last); last = forelast; } else
1586     XtSetArg(args[j], XtNfromHoriz, widest ? widest : dialog);  j++;
1587     XtSetArg(args[j], XtNfromVert, anchor ? anchor : last);  j++;
1588     XtSetArg(args[j], XtNbottom, XtChainBottom);  j++;
1589     XtSetArg(args[j], XtNtop, XtChainBottom);  j++;
1590     XtSetArg(args[j], XtNleft, XtChainRight);  j++;
1591     XtSetArg(args[j], XtNright, XtChainRight);  j++;
1592     b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1593     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr + (dlgNr<<16));
1594
1595     XtSetArg(args[0], XtNfromHoriz, b_ok);
1596     b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1597     XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr);
1598   }
1599
1600     XtRealizeWidget(popup);
1601     XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1602     snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1603     XtAugmentTranslations(popup, XtParseTranslationTable(def));
1604     XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1605                   &x, &y, &win_x, &win_y, &mask);
1606
1607     XtSetArg(args[0], XtNx, x - 10);
1608     XtSetArg(args[1], XtNy, y - 30);
1609     XtSetValues(popup, args, 2);
1610
1611     XtPopup(popup, dlgNr ? XtGrabNone : XtGrabExclusive);
1612     shellUp[dlgNr] = True;
1613     previous = NULL;
1614     if(textField)SetFocus(textField, popup, (XEvent*) NULL, False);
1615     if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1616         j = 0;
1617         XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1618         XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1619         XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1620         XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1621         XtSetValues(popup, args, j);
1622     }
1623     return 1;
1624 }
1625
1626
1627 void IcsOptionsProc(w, event, prms, nprms)
1628      Widget w;
1629      XEvent *event;
1630      String *prms;
1631      Cardinal *nprms;
1632 {
1633    GenericPopUp(icsOptions, _("ICS Options"), 0);
1634 }
1635
1636 void LoadOptionsProc(w, event, prms, nprms)
1637      Widget w;
1638      XEvent *event;
1639      String *prms;
1640      Cardinal *nprms;
1641 {
1642    GenericPopUp(loadOptions, _("Load Game Options"), 0);
1643 }
1644
1645 void SaveOptionsProc(w, event, prms, nprms)
1646      Widget w;
1647      XEvent *event;
1648      String *prms;
1649      Cardinal *nprms;
1650 {
1651    GenericPopUp(saveOptions, _("Save Game Options"), 0);
1652 }
1653
1654 void SoundOptionsProc(w, event, prms, nprms)
1655      Widget w;
1656      XEvent *event;
1657      String *prms;
1658      Cardinal *nprms;
1659 {
1660    soundFiles[2] = "*";
1661    GenericPopUp(soundOptions, _("Sound Options"), 0);
1662 }
1663
1664 void BoardOptionsProc(w, event, prms, nprms)
1665      Widget w;
1666      XEvent *event;
1667      String *prms;
1668      Cardinal *nprms;
1669 {
1670    GenericPopUp(boardOptions, _("Board Options"), 0);
1671 }
1672
1673 void EngineMenuProc(w, event, prms, nprms)
1674      Widget w;
1675      XEvent *event;
1676      String *prms;
1677      Cardinal *nprms;
1678 {
1679    GenericPopUp(adjudicationOptions, "Adjudicate non-ICS Games", 0);
1680 }
1681
1682 void UciMenuProc(w, event, prms, nprms)
1683      Widget w;
1684      XEvent *event;
1685      String *prms;
1686      Cardinal *nprms;
1687 {
1688    oldCores = appData.smpCores;
1689    oldPonder = appData.ponderNextMove;
1690    GenericPopUp(commonEngineOptions, _("Common Engine Settings"), 0);
1691 }
1692
1693 void NewVariantProc(w, event, prms, nprms)
1694      Widget w;
1695      XEvent *event;
1696      String *prms;
1697      Cardinal *nprms;
1698 {
1699    GenericPopUp(variantDescriptors, _("New Variant"), 0);
1700 }
1701
1702 void OptionsProc(w, event, prms, nprms)
1703      Widget w;
1704      XEvent *event;
1705      String *prms;
1706      Cardinal *nprms;
1707 {
1708    oldPonder = appData.ponderNextMove;
1709    GenericPopUp(generalOptions, _("General Options"), 0);
1710 }
1711
1712 void MatchOptionsProc(w, event, prms, nprms)
1713      Widget w;
1714      XEvent *event;
1715      String *prms;
1716      Cardinal *nprms;
1717 {
1718    GenericPopUp(matchOptions, _("Match Options"), 0);
1719 }
1720
1721 Option textOptions[100];
1722 extern char *icsTextMenuString;
1723 void PutText P((char *text, int pos));
1724
1725 SendString(char *p)
1726 {
1727     char buf[MSG_SIZ], *q;
1728     if(q = strstr(p, "$input")) {
1729         if(!shellUp[4]) return;
1730         strncpy(buf, p, MSG_SIZ);
1731         strncpy(buf + (q-p), q+6, MSG_SIZ-(q-p));
1732         PutText(buf, q-p);
1733         return;
1734     }
1735     snprintf(buf, MSG_SIZ, "%s\n", p);
1736     SendToICS(buf);
1737 }
1738
1739 /* function called when the data to Paste is ready */
1740 static void
1741 SendTextCB(Widget w, XtPointer client_data, Atom *selection,
1742            Atom *type, XtPointer value, unsigned long *len, int *format)
1743 {
1744   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1745   if (value==NULL || *len==0) return; /* nothing selected, abort */
1746   name[*len]='\0';
1747   strncpy(buf, p, MSG_SIZ);
1748   q = strstr(p, "$name");
1749   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1750   SendString(buf);
1751   XtFree(value);
1752 }
1753
1754 void SendText(int n)
1755 {
1756     char *p = (char*) textOptions[n].choice;
1757     if(strstr(p, "$name")) {
1758         XtGetSelectionValue(menuBarWidget,
1759           XA_PRIMARY, XA_STRING,
1760           /* (XtSelectionCallbackProc) */ SendTextCB,
1761           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1762           CurrentTime
1763         );
1764     } else SendString(p);
1765 }
1766
1767 void IcsTextProc(w, event, prms, nprms)
1768      Widget w;
1769      XEvent *event;
1770      String *prms;
1771      Cardinal *nprms;
1772 {
1773    int i=0, j;
1774    char *p, *q, *r;
1775    if((p = icsTextMenuString) == NULL) return;
1776    do {
1777         q = r = p; while(*p && *p != ';') p++;
1778         for(j=0; j<p-q; j++) textOptions[i].name[j] = *r++;
1779         textOptions[i].name[j++] = 0;
1780         if(!*p) break;
1781         if(*++p == '\n') p++; // optional linefeed after button-text terminating semicolon
1782         q = p;
1783         textOptions[i].choice = (char**) (r = textOptions[i].name + j);
1784         while(*p && (*p != ';' || p[1] != '\n')) textOptions[i].name[j++] = *p++;
1785         textOptions[i].name[j++] = 0;
1786         if(*p) p += 2;
1787         textOptions[i].max = 135;
1788         textOptions[i].min = i&1;
1789         textOptions[i].handle = NULL;
1790         textOptions[i].target = &SendText;
1791         textOptions[i].textValue = strstr(r, "$input") ? "#80FF80" : strstr(r, "$name") ? "#FF8080" : "#FFFFFF";
1792         textOptions[i].type = Button;
1793    } while(++i < 99 && *p);
1794    if(i == 0) return;
1795    textOptions[i].type = EndMark;
1796    textOptions[i].target = NULL;
1797    textOptions[i].min = 2;
1798    MarkMenu("menuView.ICStex", 3);
1799    GenericPopUp(textOptions, _("ICS text menu"), 3);
1800 }
1801
1802 static char *commentText;
1803 static int commentIndex;
1804 void ClearComment P((int n));
1805 extern char commentTranslations[];
1806
1807 void NewComCallback(int n)
1808 {
1809     ReplaceComment(commentIndex, commentText);
1810 }
1811
1812 void SaveChanges(int n)
1813 {
1814     Arg args[16];
1815     XtSetArg(args[0], XtNstring, &commentText);
1816     XtGetValues(currentOption[0].handle, args, 1);
1817     ReplaceComment(commentIndex, commentText);
1818 }
1819
1820 Option commentOptions[] = {
1821 { 0xD, 200, 300, NULL, (void*) &commentText, "", NULL, TextBox, "" },
1822 {   0,  0,    0, NULL, (void*) &ClearComment, NULL, NULL, Button, "clear" },
1823 {   0,  1,    0, NULL, (void*) &SaveChanges, NULL, NULL, Button, "save changes" },
1824 {   0,  1,    0, NULL, (void*) &NewComCallback, "", NULL, EndMark , "" }
1825 };
1826
1827 void ClearComment(int n)
1828 {
1829     XtCallActionProc(commentOptions[0].handle, "select-all", NULL, NULL, 0);
1830     XtCallActionProc(commentOptions[0].handle, "kill-selection", NULL, NULL, 0);
1831 }
1832
1833 void NewCommentPopup(char *title, char *text, int index)
1834 {
1835     Widget edit;
1836     Arg args[16];
1837
1838     if(shells[1]) { // if already exists, alter title and content
1839         XtSetArg(args[0], XtNtitle, title);
1840         XtSetValues(shells[1], args, 1);
1841         XtSetArg(args[0], XtNstring, text);
1842         XtSetValues(commentOptions[0].handle, args, 1);
1843     }
1844     commentText = text;
1845     commentIndex = index;
1846     MarkMenu("menuView.Show Comments", 1);
1847     if(GenericPopUp(commentOptions, title, 1))
1848         XtOverrideTranslations(commentOptions[0].handle, XtParseTranslationTable(commentTranslations));
1849 }
1850
1851 static char *tagsText, *msgText;
1852
1853 void NewTagsCallback(int n)
1854 {
1855     ReplaceTags(tagsText, &gameInfo);
1856 }
1857
1858 void changeTags(int n)
1859 {
1860     Arg args[16];
1861     XtSetArg(args[0], XtNstring, &tagsText);
1862     XtGetValues(currentOption[0].handle, args, 1);
1863     ReplaceTags(tagsText, &gameInfo);
1864 }
1865
1866 Option tagsOptions[] = {
1867 { 0xD, 200, 250, NULL, (void*) &tagsText, "", NULL, TextBox, "" },
1868 {   0,  0,    0, NULL, NULL, NULL, NULL, Label,  "" },
1869 {   0,  0,    0, NULL, (void*) &changeTags, NULL, NULL, Button, "save changes" },
1870 {   0,  1,    0, NULL, (void*) &NewTagsCallback, "", NULL, EndMark , "" }
1871 };
1872
1873 void NewTagsPopup(char *text, char *msg)
1874 {
1875     Widget edit;
1876     Arg args[16];
1877
1878     if(shells[2]) { // if already exists, alter title and content
1879         XtSetArg(args[0], XtNstring, text);
1880         XtSetValues(tagsOptions[0].handle, args, 1);
1881     }
1882     tagsText = text;
1883     tagsOptions[1].textValue = msg;
1884     MarkMenu("menuView.Show Tags", 2);
1885     GenericPopUp(tagsOptions, _("Tags"), 2);
1886 }
1887
1888 extern char ICSInputTranslations[];
1889 char *icsText;
1890
1891 Option boxOptions[] = {
1892 {   0, 30,  400, NULL, (void*) &icsText, "", NULL, TextBox, "" },
1893 {   0,  3,    0, NULL, NULL, "", NULL, EndMark , "" }
1894 };
1895
1896 void PutText(char *text, int pos)
1897 {
1898     Widget edit;
1899     Arg args[16];
1900     char buf[MSG_SIZ], *p;
1901
1902     if(strstr(text, "$add ") == text) {
1903         XtSetArg(args[0], XtNstring, &p);
1904         XtGetValues(boxOptions[0].handle, args, 1);
1905         snprintf(buf, MSG_SIZ, "%s%s", p, text+5); text = buf;
1906         pos += strlen(p) - 5;
1907     }
1908     XtSetArg(args[0], XtNstring, text);
1909     XtSetValues(boxOptions[0].handle, args, 1);
1910     XtSetArg(args[0], XtNinsertPosition, pos);
1911     XtSetValues(boxOptions[0].handle, args, 1);
1912 //    SetFocus(boxOptions[0].handle, shells[4], NULL, False); // No idea why this does not work, and the following is needed:
1913     XSetInputFocus(xDisplay, XtWindow(boxOptions[0].handle), RevertToPointerRoot, CurrentTime);
1914 }
1915
1916 void InputBoxPopup()
1917 {
1918     MarkMenu("menuView.ICS Input Box", 4);
1919     if(GenericPopUp(boxOptions, _("ICS input box"), 4))
1920         XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(ICSInputTranslations));
1921 }
1922
1923 void TypeInProc(w, event, prms, nprms)
1924      Widget w;
1925      XEvent *event;
1926      String *prms;
1927      Cardinal *nprms;
1928 {
1929     Arg args[2];
1930     String val;
1931
1932     if(prms[0][0] == '1') {
1933         XtSetArg(args[0], XtNstring, &val);
1934         XtGetValues(boxOptions[0].handle, args, 1);
1935         TypeInDoneEvent((char*)val);
1936     }
1937     PopDown(0);\r
1938 }
1939
1940 char moveTypeInTranslations[] =
1941     "<Key>Return: TypeInProc(1) \n"
1942     "<Key>Escape: TypeInProc(0) \n";
1943
1944 void PopUpMoveDialog(char firstchar)
1945 {
1946     static char buf[2];
1947     buf[0] = firstchar; icsText = buf;
1948     if(GenericPopUp(boxOptions, _("Type a move"), 0))
1949         XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(moveTypeInTranslations));
1950 }
1951
1952 void MoveTypeInProc(Widget widget, caddr_t unused, XEvent *event)
1953 {
1954     char buf[10], keys[32];
1955     KeySym sym;
1956     KeyCode metaL, metaR;
1957     int n = XLookupString(&(event->xkey), buf, 10, &sym, NULL);
1958     XQueryKeymap(xDisplay,keys);
1959     metaL = XKeysymToKeycode(xDisplay, XK_Meta_L);
1960     metaR = XKeysymToKeycode(xDisplay, XK_Meta_R);
1961     if ( n == 1 && *buf > 32 && !(keys[metaL>>3]&1<<(metaL&7)) && !(keys[metaR>>3]&1<<(metaR&7))) // printable, no alt
1962         PopUpMoveDialog(*buf);
1963
1964 }
1965
1966 void
1967 SettingsPopUp(ChessProgramState *cps)
1968 {
1969    currentCps = cps;
1970    GenericPopUp(cps->option, _("Engine Settings"), 0);
1971 }
1972
1973 void FirstSettingsProc(w, event, prms, nprms)
1974      Widget w;
1975      XEvent *event;
1976      String *prms;
1977      Cardinal *nprms;
1978 {
1979    SettingsPopUp(&first);
1980 }
1981
1982 void SecondSettingsProc(w, event, prms, nprms)
1983      Widget w;
1984      XEvent *event;
1985      String *prms;
1986      Cardinal *nprms;
1987 {
1988    if(WaitForSecond(SettingsMenuIfReady)) return;
1989    SettingsPopUp(&second);
1990 }
1991
1992 //---------------------------- Chat Windows ----------------------------------------------
1993
1994 void OutputChatMessage(int partner, char *mess)
1995 {
1996     return; // dummy
1997 }
1998