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