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