Update texi file and remove duplicate control
[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     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 int
830 GenericReadout (int selected)
831 {
832     int i, j, res=1;
833     String val;
834     Arg args[16];
835     char buf[MSG_SIZ], **dest;
836     float x;
837         for(i=0; ; i++) { // send all options that had to be OK-ed to engine
838             if(selected >= 0) { if(i < selected) continue; else if(i > selected) break; }
839             switch(currentOption[i].type) {
840                 case TextBox:
841                 case FileName:
842                 case PathName:
843                     XtSetArg(args[0], XtNstring, &val);
844                     XtGetValues(currentOption[i].handle, args, 1);
845                     dest = currentCps ? &(currentOption[i].textValue) : (char**) currentOption[i].target;
846                     if(*dest == NULL || strcmp(*dest, val)) {
847                         if(currentCps) {
848                             snprintf(buf, MSG_SIZ,  "option %s=%s\n", currentOption[i].name, val);
849                             SendToProgram(buf, currentCps);
850                         } else {
851                             if(*dest) free(*dest);
852                             *dest = malloc(strlen(val)+1);
853                         }
854                         safeStrCpy(*dest, val, MSG_SIZ - (*dest - currentOption[i].name)); // copy text there
855                     }
856                     break;
857                 case Spin:
858                 case Fractional:
859                     XtSetArg(args[0], XtNstring, &val);
860                     XtGetValues(currentOption[i].handle, args, 1);
861                     x = 0.0; // Initialise because sscanf() will fail if non-numeric text is entered
862                     sscanf(val, "%f", &x);
863                     if(x > currentOption[i].max) x = currentOption[i].max;
864                     if(x < currentOption[i].min) x = currentOption[i].min;
865                     if(currentOption[i].type == Fractional)
866                         *(float*) currentOption[i].target = x; // engines never have float options!
867                     else if(currentOption[i].value != x) {
868                         currentOption[i].value = x;
869                         if(currentCps) {
870                             snprintf(buf, MSG_SIZ,  "option %s=%.0f\n", currentOption[i].name, x);
871                             SendToProgram(buf, currentCps);
872                         } else *(int*) currentOption[i].target = x;
873                     }
874                     break;
875                 case CheckBox:
876                     j = 0;
877                     XtSetArg(args[0], XtNstate, &j);
878                     XtGetValues(currentOption[i].handle, args, 1);
879                     if(currentOption[i].value != j) {
880                         currentOption[i].value = j;
881                         if(currentCps) {
882                             snprintf(buf, MSG_SIZ,  "option %s=%d\n", currentOption[i].name, j);
883                             SendToProgram(buf, currentCps);
884                         } else *(Boolean*) currentOption[i].target = j;
885                     }
886                     break;
887                 case ComboBox:
888                     val = ((char**)currentOption[i].choice)[values[i]];
889                     if(currentCps) {
890                         if(currentOption[i].value == values[i]) break; // not changed
891                         currentOption[i].value = values[i];
892                         snprintf(buf, MSG_SIZ,  "option %s=%s\n", currentOption[i].name,
893                                 ((char**)currentOption[i].textValue)[values[i]]);
894                         SendToProgram(buf, currentCps);
895                     } else if(val && (*(char**) currentOption[i].target == NULL || strcmp(*(char**) currentOption[i].target, val))) {
896                       if(*(char**) currentOption[i].target) free(*(char**) currentOption[i].target);
897                       *(char**) currentOption[i].target = strdup(val);
898                     }
899                     break;
900                 case EndMark:
901                     if(currentOption[i].target) // callback for implementing necessary actions on OK (like redraw)
902                         res = ((OKCallback*) currentOption[i].target)(i);
903                     break;
904             default:
905                 printf("GenericReadout: unexpected case in switch.\n");
906                 case Button:
907                 case SaveButton:
908                 case Label:
909                 case Break:
910               break;
911             }
912             if(currentOption[i].type == EndMark) break;
913         }
914         return res;
915 }
916
917 void
918 GenericCallback (Widget w, XtPointer client_data, XtPointer call_data)
919 {
920     String name;
921     Arg args[16];
922     char buf[MSG_SIZ];
923     int data = (intptr_t) client_data;
924
925     currentOption = dialogOptions[data>>16]; data &= 0xFFFF;
926
927     XtSetArg(args[0], XtNlabel, &name);
928     XtGetValues(w, args, 1);
929
930     if (strcmp(name, _("cancel")) == 0) {
931         PopDown(data);
932         return;
933     }
934     if (strcmp(name, _("OK")) == 0) { // save buttons imply OK
935         if(GenericReadout(-1)) PopDown(data);
936         return;
937     }
938     if(currentCps) {
939         if(currentOption[data].type == SaveButton) GenericReadout(-1);
940         snprintf(buf, MSG_SIZ,  "option %s\n", name);
941         SendToProgram(buf, currentCps);
942     } else ((ButtonCallback*) currentOption[data].target)(data);
943 }
944
945 static char *oneLiner  = "<Key>Return:  redraw-display()\n";
946
947 int
948 GenericPopUp (Option *option, char *title, int dlgNr)
949 {
950     Arg args[16];
951     Widget popup, layout, dialog=NULL, edit=NULL, form,  last, b_ok, b_cancel, leftMargin = NULL, textField = NULL;
952     Window root, child;
953     int x, y, i, j, height=999, width=1, h, c, w;
954     int win_x, win_y, maxWidth, maxTextWidth;
955     unsigned int mask;
956     char def[MSG_SIZ], *msg;
957     static char pane[6] = "paneX";
958     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL, browse = NULL;
959     Dimension bWidth = 50;
960
961     if(shellUp[dlgNr]) return 0; // already up          
962     if(dlgNr && shells[dlgNr]) {
963         XtPopup(shells[dlgNr], XtGrabNone);
964         shellUp[dlgNr] = True;
965         return 0;
966     }
967
968     dialogOptions[dlgNr] = option; // make available to callback
969     // post currentOption globally, so Spin and Combo callbacks can already use it
970     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
971     currentOption = option;
972
973     if(currentCps) { // Settings popup for engine: format through heuristic
974         int n = currentCps->nrOptions;
975         if(!n) { DisplayNote(_("Engine has no options")); currentCps = NULL; return 0; }
976         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
977         height = n / width + 1;
978         if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
979         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
980     }
981      i = 0;
982     XtSetArg(args[i], XtNresizable, True); i++;
983     popup = shells[dlgNr] =
984       XtCreatePopupShell(title, transientShellWidgetClass,
985                          shellWidget, args, i);
986
987     layout =
988       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
989                             layoutArgs, XtNumber(layoutArgs));
990   for(c=0; c<width; c++) {
991     pane[4] = 'A'+c;
992     form =
993       XtCreateManagedWidget(pane, formWidgetClass, layout,
994                             formArgs, XtNumber(formArgs));
995     j=0;
996     XtSetArg(args[j], XtNfromHoriz, leftMargin);  j++;
997     XtSetValues(form, args, j);
998     leftMargin = form;
999
1000     last = widest = NULL; anchor = lastrow;
1001     for(h=0; h<height; h++) {
1002         i = h + c*height;
1003         if(option[i].type == EndMark) break;
1004         lastrow = forelast;
1005         forelast = last;
1006         switch(option[i].type) {
1007           case Fractional:
1008             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1009             option[i].value = *(float*)option[i].target;
1010             goto tBox;
1011           case Spin:
1012             if(!currentCps) option[i].value = *(int*)option[i].target;
1013             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1014           case TextBox:
1015           case FileName:
1016           case PathName:
1017           tBox:
1018             if(option[i].name[0]) {
1019             j=0;
1020             XtSetArg(args[j], XtNfromVert, last);  j++;
1021             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1022             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1023             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1024             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1025             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1026             texts[h] =
1027             dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1028             } else texts[h] = dialog = NULL;
1029             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1030             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1031             j=0;
1032             XtSetArg(args[j], XtNfromVert, last);  j++;
1033             XtSetArg(args[j], XtNfromHoriz, dialog);  j++;
1034             XtSetArg(args[j], XtNborderWidth, 1); j++;
1035             XtSetArg(args[j], XtNwidth, w); j++;
1036             if(option[i].type == TextBox && option[i].min) {
1037                 XtSetArg(args[j], XtNheight, option[i].min); j++;
1038                 if(option[i].value & 1) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
1039                 if(option[i].value & 2) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
1040                 if(option[i].value & 4) { XtSetArg(args[j], XtNautoFill, True);  j++; }
1041                 if(option[i].value & 8) { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
1042             }
1043             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1044             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
1045             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
1046             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
1047             XtSetArg(args[j], XtNright, XtChainRight);  j++;
1048             XtSetArg(args[j], XtNresizable, True);  j++;
1049             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
1050             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def : 
1051                                 currentCps ? option[i].textValue : *(char**)option[i].target);  j++;
1052             edit = last;
1053             option[i].handle = (void*)
1054                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
1055             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup);
1056             if(option[i].min == 0 || option[i].type != TextBox)
1057                 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner));
1058
1059             if(option[i].type == TextBox || option[i].type == Fractional) break;
1060
1061             // add increment and decrement controls for spin
1062             j=0;
1063             XtSetArg(args[j], XtNfromVert, edit);  j++;
1064             XtSetArg(args[j], XtNfromHoriz, last);  j++;
1065             XtSetArg(args[j], XtNleft, XtChainRight); j++;
1066             XtSetArg(args[j], XtNright, XtChainRight); j++;
1067             if(option[i].type == FileName || option[i].type == PathName) {
1068                 msg = _("browse"); w = 0;
1069                 /* automatically scale to width of text */
1070                 XtSetArg(args[j], XtNwidth, (XtArgVal) NULL );  j++;
1071             } else {
1072                 w = 20; msg = "+";
1073                 XtSetArg(args[j], XtNheight, 10);  j++;
1074                 XtSetArg(args[j], XtNwidth,   w);  j++;
1075             }
1076             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1077             XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1078             if(w == 0) browse = edit;
1079
1080             if(option[i].type != Spin) break;
1081
1082             j=0;
1083             XtSetArg(args[j], XtNfromVert, edit);  j++;
1084             XtSetArg(args[j], XtNfromHoriz, last);  j++;
1085             XtSetArg(args[j], XtNheight, 10);  j++;
1086             XtSetArg(args[j], XtNwidth, 20);  j++;
1087             XtSetArg(args[j], XtNleft, XtChainRight); j++;
1088             XtSetArg(args[j], XtNright, XtChainRight); j++;
1089             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1090             XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i);
1091             break;
1092           case CheckBox:
1093             if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1094             j=0;
1095             XtSetArg(args[j], XtNfromVert, last);  j++;
1096             XtSetArg(args[j], XtNwidth, 10);  j++;
1097             XtSetArg(args[j], XtNheight, 10);  j++;
1098             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1099             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1100             XtSetArg(args[j], XtNstate, option[i].value);  j++;
1101             option[i].handle = (void*)
1102                 (dialog = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1103           case Label:
1104             msg = option[i].name;
1105             if(*msg == NULLCHAR) msg = option[i].textValue;
1106             if(!msg) break;
1107             j=0;
1108             XtSetArg(args[j], XtNfromVert, last);  j++;
1109             XtSetArg(args[j], XtNfromHoriz, option[i].type != Label ? dialog : NULL);  j++;
1110             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1111             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1112             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1113             XtSetArg(args[j], XtNlabel, _(msg));  j++;
1114             last = XtCreateManagedWidget(msg, labelWidgetClass, form, args, j);
1115             if(option[i].type == CheckBox)
1116                 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i);
1117             break;
1118           case SaveButton:
1119           case Button:
1120             j=0;
1121             if(option[i].min & SAME_ROW) {
1122                 XtSetArg(args[j], XtNfromVert, lastrow);  j++;
1123                 XtSetArg(args[j], XtNfromHoriz, last);  j++;
1124             } else {
1125                 XtSetArg(args[j], XtNfromVert, last);  j++;
1126                 XtSetArg(args[j], XtNfromHoriz, NULL);  j++; lastrow = forelast;
1127             }
1128             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1129             if(option[i].max) { XtSetArg(args[j], XtNwidth, option[i].max);  j++; }
1130             if(option[i].textValue) { // special for buttons of New Variant dialog
1131                 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
1132                                          || strstr(first.variants, VariantName(option[i].value))); j++;
1133                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1134             }
1135             option[i].handle = (void*)
1136                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1137             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1138                 SetColor( *(char**) option[i-1].target, &option[i]);
1139                 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
1140             }
1141             XtAddCallback(last, XtNcallback, GenericCallback,
1142                           (XtPointer)(intptr_t) i + (dlgNr<<16));
1143             if(option[i].textValue) SetColor( option[i].textValue, &option[i]);
1144             forelast = lastrow; // next button can go on same row
1145             break;
1146           case ComboBox:
1147             j=0;
1148             XtSetArg(args[j], XtNfromVert, last);  j++;
1149             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1150             XtSetArg(args[j], XtNright, XtChainLeft); j++;
1151             XtSetArg(args[j], XtNborderWidth, 0);  j++;
1152             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1153             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1154             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1155
1156             if(currentCps) option[i].choice = (char**) option[i].textValue; else {
1157               for(j=0; option[i].choice[j]; j++)
1158                 if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, option[i].choice[j])) break;
1159               option[i].value = j + (option[i].choice[j] == NULL);
1160             }
1161
1162             j=0;
1163             XtSetArg(args[j], XtNfromVert, last);  j++;
1164             XtSetArg(args[j], XtNfromHoriz, dialog);  j++;
1165             XtSetArg(args[j], XtNwidth, option[i].max && !currentCps ? option[i].max : 100);  j++;
1166             XtSetArg(args[j], XtNleft, XtChainLeft); j++;
1167             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1168             XtSetArg(args[j], XtNlabel, _(((char**)option[i].textValue)[option[i].value]));  j++;
1169             option[i].handle = (void*)
1170                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1171             CreateComboPopup(last, option + i, i);
1172             values[i] = option[i].value;
1173             break;
1174           case Break:
1175             width++;
1176             height = i+1;
1177             break;
1178         default:
1179             printf("GenericPopUp: unexpected case in switch.\n");
1180             break;
1181         }
1182     }
1183
1184     // make an attempt to align all spins and textbox controls
1185     maxWidth = maxTextWidth = 0;
1186     if(browse != NULL) {
1187         j=0;
1188         XtSetArg(args[j], XtNwidth, &bWidth);  j++;
1189         XtGetValues(browse, args, j);
1190     }
1191     for(h=0; h<height; h++) {
1192         i = h + c*height;
1193         if(option[i].type == EndMark) break;
1194         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1195                                   || option[i].type == PathName || option[i].type == FileName) {
1196             Dimension w;
1197             if(!texts[h]) continue;
1198             j=0;
1199             XtSetArg(args[j], XtNwidth, &w);  j++;
1200             XtGetValues(texts[h], args, j);
1201             if(option[i].type == Spin) {
1202                 if(w > maxWidth) maxWidth = w;
1203                 widest = texts[h];
1204             } else {
1205                 if(w > maxTextWidth) maxTextWidth = w;
1206                 if(!widest) widest = texts[h];
1207             }
1208         }
1209     }
1210     if(maxTextWidth + 110 < maxWidth)
1211          maxTextWidth = maxWidth - 110;
1212     else maxWidth = maxTextWidth + 110;
1213     for(h=0; h<height; h++) {
1214         i = h + c*height;
1215         if(option[i].type == EndMark) break;
1216         if(!texts[h]) continue; // Note: texts[h] can be undefined (giving errors in valgrind), but then both if's below will be false.
1217         j=0;
1218         if(option[i].type == Spin) {
1219             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1220             XtSetValues(texts[h], args, j);
1221         } else
1222         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1223             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1224             XtSetValues(texts[h], args, j);
1225             if(bWidth != 50 && (option[i].type == FileName || option[i].type == PathName)) {
1226                 int tWidth = (option[i].max ? option[i].max : 205) - 5 - bWidth;
1227                 j = 0;
1228                 XtSetArg(args[j], XtNwidth, tWidth);  j++;
1229                 XtSetValues(option[i].handle, args, j);
1230             }
1231         }
1232     }
1233   }
1234
1235   if(!(option[i].min & NO_OK)) {
1236     j=0;
1237     if(option[i].min & SAME_ROW) {
1238         for(j=i-1; option[j+1].min & SAME_ROW && option[j].type == Button; j--) {
1239             XtSetArg(args[0], XtNtop, XtChainBottom);
1240             XtSetArg(args[1], XtNbottom, XtChainBottom);
1241             XtSetValues(option[j].handle, args, 2);
1242         }
1243         if(option[j].type == TextBox && option[j].name[0] == NULLCHAR) {
1244             XtSetArg(args[0], XtNbottom, XtChainBottom);
1245             XtSetValues(option[j].handle, args, 1);
1246         }
1247         j = 0;
1248         XtSetArg(args[j], XtNfromHoriz, last); last = forelast;
1249     } else
1250     XtSetArg(args[j], XtNfromHoriz, widest ? widest : dialog);  j++;
1251     XtSetArg(args[j], XtNfromVert, anchor ? anchor : last);  j++;
1252     XtSetArg(args[j], XtNbottom, XtChainBottom);  j++;
1253     XtSetArg(args[j], XtNtop, XtChainBottom);  j++;
1254     XtSetArg(args[j], XtNleft, XtChainRight);  j++;
1255     XtSetArg(args[j], XtNright, XtChainRight);  j++;
1256     b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1257     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr + (dlgNr<<16));
1258
1259     XtSetArg(args[0], XtNfromHoriz, b_ok);
1260     b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1261     XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) dlgNr);
1262   }
1263
1264     XtRealizeWidget(popup);
1265     XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1266     snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1267     XtAugmentTranslations(popup, XtParseTranslationTable(def));
1268     XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1269                   &x, &y, &win_x, &win_y, &mask);
1270
1271     XtSetArg(args[0], XtNx, x - 10);
1272     XtSetArg(args[1], XtNy, y - 30);
1273     XtSetValues(popup, args, 2);
1274
1275     XtPopup(popup, dlgNr ? XtGrabNone : XtGrabExclusive);
1276     shellUp[dlgNr] = True;
1277     previous = NULL;
1278     if(textField)SetFocus(textField, popup, (XEvent*) NULL, False);
1279     if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1280         j = 0;
1281         XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1282         XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1283         XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1284         XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1285         XtSetValues(popup, args, j);
1286     }
1287     return 1;
1288 }
1289
1290
1291 void
1292 IcsOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1293 {
1294    GenericPopUp(icsOptions, _("ICS Options"), 0);
1295 }
1296
1297 void
1298 LoadOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1299 {
1300    ASSIGN(searchMode, modeValues[appData.searchMode-1]);
1301    GenericPopUp(loadOptions, _("Load Game Options"), 0);
1302 }
1303
1304 void
1305 SaveOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1306 {
1307    GenericPopUp(saveOptions, _("Save Game Options"), 0);
1308 }
1309
1310 void
1311 SoundOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1312 {
1313    free(soundFiles[2]);
1314    soundFiles[2] = strdup("*");
1315    GenericPopUp(soundOptions, _("Sound Options"), 0);
1316 }
1317
1318 void
1319 BoardOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1320 {
1321    GenericPopUp(boardOptions, _("Board Options"), 0);
1322 }
1323
1324 void
1325 EngineMenuProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1326 {
1327    GenericPopUp(adjudicationOptions, _("Adjudicate non-ICS Games"), 0);
1328 }
1329
1330 void
1331 UciMenuProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1332 {
1333    oldCores = appData.smpCores;
1334    oldPonder = appData.ponderNextMove;
1335    GenericPopUp(commonEngineOptions, _("Common Engine Settings"), 0);
1336 }
1337
1338 void
1339 NewVariantProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1340 {
1341    GenericPopUp(variantDescriptors, _("New Variant"), 0);
1342 }
1343
1344 void
1345 OptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1346 {
1347    oldPonder = appData.ponderNextMove;
1348    GenericPopUp(generalOptions, _("General Options"), 0);
1349 }
1350
1351 void
1352 MatchOptionsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1353 {
1354    NamesToList(firstChessProgramNames, engineList, engineMnemonic);
1355    comboCallback = &AddToTourney;
1356    matchOptions[5].min = -(appData.pairingEngine[0] != NULLCHAR); // with pairing engine, allow Swiss
1357    ASSIGN(tfName, appData.tourneyFile[0] ? appData.tourneyFile : MakeName(appData.defName));
1358    ASSIGN(engineName, appData.participants);
1359    GenericPopUp(matchOptions, _("Match Options"), 0);
1360 }
1361
1362 Option textOptions[100];
1363 void PutText P((char *text, int pos));
1364
1365 void
1366 SendString (char *p)
1367 {
1368     char buf[MSG_SIZ], *q;
1369     if(q = strstr(p, "$input")) {
1370         if(!shellUp[4]) return;
1371         strncpy(buf, p, MSG_SIZ);
1372         strncpy(buf + (q-p), q+6, MSG_SIZ-(q-p));
1373         PutText(buf, q-p);
1374         return;
1375     }
1376     snprintf(buf, MSG_SIZ, "%s\n", p);
1377     SendToICS(buf);
1378 }
1379
1380 /* function called when the data to Paste is ready */
1381 static void
1382 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1383             Atom *type, XtPointer value, unsigned long *len, int *format)
1384 {
1385   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1386   if (value==NULL || *len==0) return; /* nothing selected, abort */
1387   name[*len]='\0';
1388   strncpy(buf, p, MSG_SIZ);
1389   q = strstr(p, "$name");
1390   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1391   SendString(buf);
1392   XtFree(value);
1393 }
1394
1395 void
1396 SendText (int n)
1397 {
1398     char *p = (char*) textOptions[n].choice;
1399     if(strstr(p, "$name")) {
1400         XtGetSelectionValue(menuBarWidget,
1401           XA_PRIMARY, XA_STRING,
1402           /* (XtSelectionCallbackProc) */ SendTextCB,
1403           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1404           CurrentTime
1405         );
1406     } else SendString(p);
1407 }
1408
1409 void
1410 IcsTextProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1411 {
1412    int i=0, j;
1413    char *p, *q, *r;
1414    if((p = icsTextMenuString) == NULL) return;
1415    do {
1416         q = r = p; while(*p && *p != ';') p++;
1417         for(j=0; j<p-q; j++) textOptions[i].name[j] = *r++;
1418         textOptions[i].name[j++] = 0;
1419         if(!*p) break;
1420         if(*++p == '\n') p++; // optional linefeed after button-text terminating semicolon
1421         q = p;
1422         textOptions[i].choice = (char**) (r = textOptions[i].name + j);
1423         while(*p && (*p != ';' || p[1] != '\n')) textOptions[i].name[j++] = *p++;
1424         textOptions[i].name[j++] = 0;
1425         if(*p) p += 2;
1426         textOptions[i].max = 135;
1427         textOptions[i].min = i&1;
1428         textOptions[i].handle = NULL;
1429         textOptions[i].target = &SendText;
1430         textOptions[i].textValue = strstr(r, "$input") ? "#80FF80" : strstr(r, "$name") ? "#FF8080" : "#FFFFFF";
1431         textOptions[i].type = Button;
1432    } while(++i < 99 && *p);
1433    if(i == 0) return;
1434    textOptions[i].type = EndMark;
1435    textOptions[i].target = NULL;
1436    textOptions[i].min = 2;
1437    MarkMenu("menuView.ICStex", 3);
1438    GenericPopUp(textOptions, _("ICS text menu"), 3);
1439 }
1440
1441 static char *commentText;
1442 static int commentIndex;
1443 void ClearComment P((int n));
1444 extern char commentTranslations[];
1445
1446 int
1447 NewComCallback (int n)
1448 {
1449     ReplaceComment(commentIndex, commentText);
1450     return 1;
1451 }
1452
1453 void
1454 SaveChanges (int n)
1455 {
1456     GenericReadout(0);
1457     ReplaceComment(commentIndex, commentText);
1458 }
1459
1460 Option commentOptions[] = {
1461 { 0xD, 200, 250, NULL, (void*) &commentText, "", NULL, TextBox, "" },
1462 {   0,  0,   50, NULL, (void*) &ClearComment, NULL, NULL, Button, N_("clear") },
1463 {   0,  1,  100, NULL, (void*) &SaveChanges, NULL, NULL, Button, N_("save changes") },
1464 {   0,  1,    0, NULL, (void*) &NewComCallback, "", NULL, EndMark , "" }
1465 };
1466
1467 void
1468 ClearTextWidget (Option *opt)
1469 {
1470 //    XtCallActionProc(opt->handle, "select-all", NULL, NULL, 0);
1471 //    XtCallActionProc(opt->handle, "kill-selection", NULL, NULL, 0);
1472     Arg arg;
1473     XtSetArg(arg, XtNstring, ""); // clear without disturbing selection!
1474     XtSetValues(opt->handle, &arg, 1);
1475 }
1476
1477 void
1478 ClearComment (int n)
1479 {
1480     ClearTextWidget(&commentOptions[0]);
1481 }
1482
1483 void
1484 NewCommentPopup (char *title, char *text, int index)
1485 {
1486     Arg args[16];
1487
1488     if(shells[1]) { // if already exists, alter title and content
1489         XtSetArg(args[0], XtNtitle, title);
1490         XtSetValues(shells[1], args, 1);
1491         SetWidgetText(&commentOptions[0], text, 1);
1492     }
1493     if(commentText) free(commentText); commentText = strdup(text);
1494     commentIndex = index;
1495     MarkMenu("menuView.Show Comments", 1);
1496     if(GenericPopUp(commentOptions, title, 1))
1497         XtOverrideTranslations(commentOptions[0].handle, XtParseTranslationTable(commentTranslations));
1498 }
1499
1500 static char *tagsText;
1501
1502 int
1503 NewTagsCallback (int n)
1504 {
1505     ReplaceTags(tagsText, &gameInfo);
1506     return 1;
1507 }
1508
1509 void
1510 changeTags (int n)
1511 {
1512     GenericReadout(1);
1513     if(bookUp) SaveToBook(tagsText); else
1514     ReplaceTags(tagsText, &gameInfo);
1515 }
1516
1517 Option tagsOptions[] = {
1518 {   0,  0,    0, NULL, NULL, NULL, NULL, Label,  "" },
1519 { 0xD, 200, 200, NULL, (void*) &tagsText, "", NULL, TextBox, "" },
1520 {   0,  0,  100, NULL, (void*) &changeTags, NULL, NULL, Button, N_("save changes") },
1521 {   0,  1,    0, NULL, (void*) &NewTagsCallback, "", NULL, EndMark , "" }
1522 };
1523
1524 void
1525 NewTagsPopup (char *text, char *msg)
1526 {
1527     Arg args[16];
1528     char *title = bookUp ? _("Edit book") : _("Tags");
1529
1530     if(shells[2]) { // if already exists, alter title and content
1531         SetWidgetText(&tagsOptions[1], text, 2);
1532         XtSetArg(args[0], XtNtitle, title);
1533         XtSetValues(shells[2], args, 1);
1534     }
1535     if(tagsText) free(tagsText); tagsText = strdup(text);
1536     tagsOptions[0].textValue = msg;
1537     MarkMenu("menuView.Show Tags", 2);
1538     GenericPopUp(tagsOptions, title, 2);
1539 }
1540
1541 char *icsText;
1542
1543 Option boxOptions[] = {
1544 {   0, 30,  400, NULL, (void*) &icsText, "", NULL, TextBox, "" },
1545 {   0,  3,    0, NULL, NULL, "", NULL, EndMark , "" }
1546 };
1547
1548 void
1549 PutText (char *text, int pos)
1550 {
1551     Arg args[16];
1552     char buf[MSG_SIZ], *p;
1553
1554     if(strstr(text, "$add ") == text) {
1555         GetWidgetText(&boxOptions[0], &p);
1556         snprintf(buf, MSG_SIZ, "%s%s", p, text+5); text = buf;
1557         pos += strlen(p) - 5;
1558     }
1559     SetWidgetText(&boxOptions[0], text, 4);
1560     XtSetArg(args[0], XtNinsertPosition, pos);
1561     XtSetValues(boxOptions[0].handle, args, 1);
1562 //    SetFocus(boxOptions[0].handle, shells[4], NULL, False); // No idea why this does not work, and the following is needed:
1563     XSetInputFocus(xDisplay, XtWindow(boxOptions[0].handle), RevertToPointerRoot, CurrentTime);
1564 }
1565
1566 void
1567 InputBoxPopup ()
1568 {
1569     MarkMenu("menuView.ICS Input Box", 4);
1570     if(GenericPopUp(boxOptions, _("ICS input box"), 4))
1571         XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(ICSInputTranslations));
1572 }
1573
1574 void
1575 TypeInProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1576 {
1577     char *val;
1578
1579     if(prms[0][0] == '1') {
1580         GetWidgetText(&boxOptions[0], &val);
1581         TypeInDoneEvent(val);
1582     }
1583     PopDown(0);
1584 }
1585
1586 char moveTypeInTranslations[] =
1587     "<Key>Return: TypeInProc(1) \n"
1588     "<Key>Escape: TypeInProc(0) \n";
1589
1590 void
1591 PopUpMoveDialog (char firstchar)
1592 {
1593     static char buf[2];
1594     buf[0] = firstchar; icsText = buf;
1595     if(GenericPopUp(boxOptions, _("Type a move"), 0))
1596         XtOverrideTranslations(boxOptions[0].handle, XtParseTranslationTable(moveTypeInTranslations));
1597 }
1598
1599 void
1600 MoveTypeInProc (Widget widget, caddr_t unused, XEvent *event)
1601 {
1602     char buf[10], keys[32];
1603     KeySym sym;
1604     KeyCode metaL, metaR; //, ctrlL, ctrlR;
1605     int n = XLookupString(&(event->xkey), buf, 10, &sym, NULL);
1606     XQueryKeymap(xDisplay,keys);
1607     metaL = XKeysymToKeycode(xDisplay, XK_Meta_L);
1608     metaR = XKeysymToKeycode(xDisplay, XK_Meta_R);
1609 //    ctrlL = XKeysymToKeycode(xDisplay, XK_Control_L);
1610 //    ctrlR = XKeysymToKeycode(xDisplay, XK_Control_R);
1611     if ( n == 1 && *buf >= 32 // printable
1612          && !(keys[metaL>>3]&1<<(metaL&7)) && !(keys[metaR>>3]&1<<(metaR&7)) // no alt key pressed
1613 //       && !(keys[ctrlL>>3]&1<<(ctrlL&7)) && !(keys[ctrlR>>3]&1<<(ctrlR&7)) // no ctrl key pressed
1614        )
1615       {
1616         if(appData.icsActive) { // text typed to board in ICS mode: divert to ICS input box
1617             if(shells[4]) { // box already exists: append to current contents
1618                 char *p, newText[MSG_SIZ];
1619                 GetWidgetText(&boxOptions[0], &p);
1620                 snprintf(newText, MSG_SIZ, "%s%c", p, *buf);
1621                 SetWidgetText(&boxOptions[0], newText, 4);
1622                 if(shellUp[4]) XSetInputFocus(xDisplay, XtWindow(boxOptions[0].handle), RevertToPointerRoot, CurrentTime); //why???
1623             } else icsText = buf; // box did not exist: make sure it pops up with char in it
1624             InputBoxPopup();
1625         } else PopUpMoveDialog(*buf);
1626     }
1627 }
1628
1629 void
1630 SettingsPopUp (ChessProgramState *cps)
1631 {
1632    currentCps = cps;
1633    GenericPopUp(cps->option, _("Engine Settings"), 0);
1634 }
1635
1636 void
1637 FirstSettingsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1638 {
1639     SettingsPopUp(&first);
1640 }
1641
1642 void
1643 SecondSettingsProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1644 {
1645    if(WaitForEngine(&second, SettingsMenuIfReady)) return;
1646    SettingsPopUp(&second);
1647 }
1648
1649 int
1650 InstallOK (int n)
1651 {
1652     PopDown(0); // early popdown, to allow FreezeUI to instate grab
1653     if(engineChoice[0] == engineNr[0][0])  Load(&first, 0); else Load(&second, 1);
1654     return 1;
1655 }
1656
1657 Option installOptions[] = {
1658 {   0,  NO_GETTEXT, 0, NULL, (void*) &engineLine, (char*) engineMnemonic, engineList, ComboBox, N_("Select engine from list:") },
1659 {   0,  0,    0, NULL, NULL, NULL, NULL, Label, N_("or specify one below:") },
1660 {   0,  0,    0, NULL, (void*) &nickName, NULL, NULL, TextBox, N_("Nickname (optional):") },
1661 {   0,  0,    0, NULL, (void*) &useNick, NULL, NULL, CheckBox, N_("Use nickname in PGN player tags of engine-engine games") },
1662 {   0,  0,    0, NULL, (void*) &engineDir, NULL, NULL, PathName, N_("Engine Directory:") },
1663 {   0,  0,    0, NULL, (void*) &engineName, NULL, NULL, FileName, N_("Engine Command:") },
1664 {   0,  0,    0, NULL, NULL, NULL, NULL, Label, N_("(Directory will be derived from engine path when empty)") },
1665 {   0,  0,    0, NULL, (void*) &isUCI, NULL, NULL, CheckBox, N_("UCI") },
1666 {   0,  0,    0, NULL, (void*) &v1, NULL, NULL, CheckBox, N_("WB protocol v1 (do not wait for engine features)") },
1667 {   0,  0,    0, NULL, (void*) &hasBook, NULL, NULL, CheckBox, N_("Must not use GUI book") },
1668 {   0,  0,    0, NULL, (void*) &addToList, NULL, NULL, CheckBox, N_("Add this engine to the list") },
1669 {   0,  0,    0, NULL, (void*) &storeVariant, NULL, NULL, CheckBox, N_("Force current variant with this engine") },
1670 {   0,  0,    0, NULL, (void*) &engineChoice, (char*) engineNr, engineNr, ComboBox, N_("Load mentioned engine as") },
1671 {   0,  1,    0, NULL, (void*) &InstallOK, "", NULL, EndMark , "" }
1672 };
1673
1674 void
1675 LoadEngineProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1676 {
1677    isUCI = storeVariant = v1 = useNick = False; addToList = hasBook = True; // defaults
1678    if(engineChoice) free(engineChoice); engineChoice = strdup(engineNr[0]);
1679    if(engineLine)   free(engineLine);   engineLine = strdup("");
1680    if(engineDir)    free(engineDir);    engineDir = strdup("");
1681    if(nickName)     free(nickName);     nickName = strdup("");
1682    if(params)       free(params);       params = strdup("");
1683    NamesToList(firstChessProgramNames, engineList, engineMnemonic);
1684    GenericPopUp(installOptions, _("Load engine"), 0);
1685 }
1686
1687 void
1688 EditBookProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1689 {
1690     EditBookEvent();
1691 }
1692
1693 void SetRandom P((int n));
1694
1695 int
1696 ShuffleOK (int n)
1697 {
1698     ResetGameEvent();
1699     return 1;
1700 }
1701
1702 Option shuffleOptions[] = {
1703   {   0,  0,   50, NULL, (void*) &shuffleOpenings, NULL, NULL, CheckBox, N_("shuffle") },
1704   { 0,-1,2000000000, NULL, (void*) &appData.defaultFrcPosition, "", NULL, Spin, N_("Start-position number:") },
1705   {   0,  0,    0, NULL, (void*) &SetRandom, NULL, NULL, Button, N_("randomize") },
1706   {   0,  1,    0, NULL, (void*) &SetRandom, NULL, NULL, Button, N_("pick fixed") },
1707   {   0,  1,    0, NULL, (void*) &ShuffleOK, "", NULL, EndMark , "" }
1708 };
1709
1710 void
1711 SetRandom (int n)
1712 {
1713     int r = n==2 ? -1 : random() & (1<<30)-1;
1714     char buf[MSG_SIZ];
1715     snprintf(buf, MSG_SIZ,  "%d", r);
1716     SetWidgetText(&shuffleOptions[1], buf, 0);
1717     SetWidgetState(&shuffleOptions[0], True);
1718 }
1719
1720 void
1721 ShuffleMenuProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1722 {
1723     GenericPopUp(shuffleOptions, _("New Shuffle Game"), 0);
1724 }
1725
1726 int tmpMoves, tmpTc, tmpInc, tmpOdds1, tmpOdds2, tcType;
1727
1728 void
1729 ShowTC (int n)
1730 {
1731 }
1732
1733 void SetTcType P((int n));
1734
1735 char *
1736 Value (int n)
1737 {
1738         static char buf[MSG_SIZ];
1739         snprintf(buf, MSG_SIZ, "%d", n);
1740         return buf;
1741 }
1742
1743 int
1744 TcOK (int n)
1745 {
1746     char *tc;
1747     if(tcType == 0 && tmpMoves <= 0) return 0;
1748     if(tcType == 2 && tmpInc <= 0) return 0;
1749     GetWidgetText(&currentOption[4], &tc); // get original text, in case it is min:sec
1750     searchTime = 0;
1751     switch(tcType) {
1752       case 0:
1753         if(!ParseTimeControl(tc, -1, tmpMoves)) return 0;
1754         appData.movesPerSession = tmpMoves;
1755         ASSIGN(appData.timeControl, tc);
1756         appData.timeIncrement = -1;
1757         break;
1758       case 1:
1759         if(!ParseTimeControl(tc, tmpInc, 0)) return 0;
1760         ASSIGN(appData.timeControl, tc);
1761         appData.timeIncrement = tmpInc;
1762         break;
1763       case 2:
1764         searchTime = tmpInc;
1765     }
1766     appData.firstTimeOdds = first.timeOdds = tmpOdds1;
1767     appData.secondTimeOdds = second.timeOdds = tmpOdds2;
1768     Reset(True, True);
1769     return 1;
1770 }
1771
1772 Option tcOptions[] = {
1773 {   0,  0,    0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("classical") },
1774 {   0,  1,    0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("incremental") },
1775 {   0,  1,    0, NULL, (void*) &SetTcType, NULL, NULL, Button, N_("fixed max") },
1776 {   0,  0,  200, NULL, (void*) &tmpMoves, NULL, NULL, Spin, N_("Moves per session:") },
1777 {   0,  0,10000, NULL, (void*) &tmpTc, NULL, NULL, Spin, N_("Initial time (min):") },
1778 {   0, 0, 10000, NULL, (void*) &tmpInc, NULL, NULL, Spin, N_("Increment or max (sec/move):") },
1779 {   0,  0,    0, NULL, NULL, NULL, NULL, Label, N_("Time-Odds factors:") },
1780 {   0,  1, 1000, NULL, (void*) &tmpOdds1, NULL, NULL, Spin, N_("Engine #1") },
1781 {   0,  1, 1000, NULL, (void*) &tmpOdds2, NULL, NULL, Spin, N_("Engine #2 / Human") },
1782 {   0,  0,    0, NULL, (void*) &TcOK, "", NULL, EndMark , "" }
1783 };
1784
1785 void
1786 SetTcType (int n)
1787 {
1788     switch(tcType = n) {
1789       case 0:
1790         SetWidgetText(&tcOptions[3], Value(tmpMoves), 0);
1791         SetWidgetText(&tcOptions[4], Value(tmpTc), 0);
1792         SetWidgetText(&tcOptions[5], _("Unused"), 0);
1793         break;
1794       case 1:
1795         SetWidgetText(&tcOptions[3], _("Unused"), 0);
1796         SetWidgetText(&tcOptions[4], Value(tmpTc), 0);
1797         SetWidgetText(&tcOptions[5], Value(tmpInc), 0);
1798         break;
1799       case 2:
1800         SetWidgetText(&tcOptions[3], _("Unused"), 0);
1801         SetWidgetText(&tcOptions[4], _("Unused"), 0);
1802         SetWidgetText(&tcOptions[5], Value(tmpInc), 0);
1803     }
1804 }
1805
1806 void
1807 TimeControlProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1808 {
1809    tmpMoves = appData.movesPerSession;
1810    tmpInc = appData.timeIncrement; if(tmpInc < 0) tmpInc = 0;
1811    tmpOdds1 = tmpOdds2 = 1; tcType = 0;
1812    tmpTc = atoi(appData.timeControl);
1813    GenericPopUp(tcOptions, _("Time Control"), 0);
1814 }
1815
1816 //---------------------------- Chat Windows ----------------------------------------------
1817
1818 void
1819 OutputChatMessage (int partner, char *mess)
1820 {
1821     return; // dummy
1822 }
1823