Append recent engines to engine menu
[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 <cairo/cairo.h>
51 #include <cairo/cairo-xlib.h>
52 #include <gtk/gtk.h>
53
54 #include "common.h"
55 #include "backend.h"
56 #include "xboard.h"
57 #include "xboard2.h"
58 #include "dialogs.h"
59 #include "menus.h"
60 #include "gettext.h"
61
62 #ifdef ENABLE_NLS
63 # define  _(s) gettext (s)
64 # define N_(s) gettext_noop (s)
65 #else
66 # define  _(s) (s)
67 # define N_(s)  s
68 #endif
69
70 // [HGM] the following code for makng menu popups was cloned from the FileNamePopUp routines
71
72 #ifdef TODO_GTK
73 static Widget previous = NULL;
74 #endif
75 static Option *currentOption;
76 static Boolean browserUp;
77
78 void
79 UnCaret ()
80 {
81 #ifdef TODO_GTK
82     Arg args[2];
83
84     if(previous) {
85         XtSetArg(args[0], XtNdisplayCaret, False);
86         XtSetValues(previous, args, 1);
87     }
88     previous = NULL;
89 #endif
90 }
91
92 #ifdef TODO_GTK
93 void
94 SetFocus (Widget w, XtPointer data, XEvent *event, Boolean *b)
95 {
96     Arg args[2];
97     char *s;
98     int j;
99
100     UnCaret();
101     XtSetArg(args[0], XtNstring, &s);
102     XtGetValues(w, args, 1);
103     j = 1;
104     XtSetArg(args[0], XtNdisplayCaret, True);
105     if(!strchr(s, '\n') && strlen(s) < 80) XtSetArg(args[1], XtNinsertPosition, strlen(s)), j++;
106     XtSetValues(w, args, j);
107     XtSetKeyboardFocus((Widget) data, w);
108     previous = w;
109 }
110 #endif
111
112 void
113 BoardFocus ()
114 {
115 #ifdef TODO_GTK
116     XtSetKeyboardFocus(shellWidget, formWidget);
117 #endif
118 }
119
120 //--------------------------- Engine-specific options menu ----------------------------------
121
122 int dialogError;
123 Option *dialogOptions[NrOfDialogs];
124
125 #ifdef TODO_GTK
126 static Arg layoutArgs[] = {
127     { XtNborderWidth, 0 },
128     { XtNdefaultDistance, 0 },
129 };
130
131 static Arg formArgs[] = {
132     { XtNborderWidth, 0 },
133     { XtNresizable, (XtArgVal) True },
134 };
135 #endif
136
137 void
138 MarkMenuItem (char *menuRef, int state)
139 {
140     MenuItem *item = MenuNameToItem(menuRef);
141
142     if(item) {
143         ((GtkCheckMenuItem *) (item->handle))->active = state;
144     }
145 }
146
147 void GetWidgetTextGTK(GtkWidget *w, char **buf)
148 {        
149     GtkTextIter start;
150     GtkTextIter end;    
151
152     if (GTK_IS_ENTRY(w)) {
153         *buf = gtk_entry_get_text(GTK_ENTRY (w));
154     } else
155     if (GTK_IS_TEXT_BUFFER(w)) {
156         gtk_text_buffer_get_start_iter(GTK_TEXT_BUFFER(w), &start);
157         gtk_text_buffer_get_end_iter(GTK_TEXT_BUFFER(w), &end);
158         *buf = gtk_text_buffer_get_text(GTK_TEXT_BUFFER(w), &start, &end, FALSE);
159     }
160     else {
161         printf("error in GetWidgetText, invalid widget\n");
162         *buf = NULL; 
163     }
164 }
165
166 void
167 GetWidgetText (Option *opt, char **buf)
168 {
169     int x;
170     static char val[12];
171     switch(opt->type) {
172       case Fractional:
173       case FileName:
174       case PathName:
175       case TextBox: GetWidgetTextGTK((GtkWidget *) opt->handle, buf); break;
176       case Spin:
177         x = gtk_spin_button_get_value (GTK_SPIN_BUTTON(opt->handle));                   
178         snprintf(val, 12, "%d", x); *buf = val;
179         break;
180       default:
181         printf("unexpected case (%d) in GetWidgetText\n", opt->type);
182         *buf = NULL;
183     }
184 }
185
186 void SetSpinValue(Option *opt, char *val, int n)
187 {    
188     if (opt->type == Spin)
189       {
190         if (!strcmp(val, _("Unused")))
191            gtk_widget_set_sensitive(opt->handle, FALSE);
192         else
193           {
194             gtk_widget_set_sensitive(opt->handle, TRUE);      
195             gtk_spin_button_set_value(opt->handle, atoi(val));
196           }
197       }
198     else
199       printf("error in SetSpinValue, unknown type %d\n", opt->type);    
200 }
201
202 void SetWidgetTextGTK(GtkWidget *w, char *text)
203 {
204     if (GTK_IS_ENTRY(w)) {
205         gtk_entry_set_text (GTK_ENTRY (w), text);
206     } else
207     if (GTK_IS_TEXT_BUFFER(w)) {
208         gtk_text_buffer_set_text(GTK_TEXT_BUFFER(w), text, -1);
209     } else
210         printf("error: SetWidgetTextGTK arg is neitherGtkEntry nor GtkTextBuffer\n");
211 }
212
213 void
214 SetWidgetText (Option *opt, char *buf, int n)
215 {
216     switch(opt->type) {
217       case Fractional:
218       case FileName:
219       case PathName:
220       case TextBox: SetWidgetTextGTK((GtkWidget *) opt->handle, buf); break;
221       case Spin: SetSpinValue(opt, buf, n); break;
222       default:
223         printf("unexpected case (%d) in GetWidgetText\n", opt->type);
224     }
225 #ifdef TODO_GTK
226 // focus is automatic in GTK?
227     if(n >= 0) SetFocus(opt->handle, shells[n], NULL, False);
228 #endif
229 }
230
231 void
232 GetWidgetState (Option *opt, int *state)
233 {
234 #ifdef TODO_GTK
235     Arg arg;
236     XtSetArg(arg, XtNstate, state);
237     XtGetValues(opt->handle, &arg, 1);
238 #endif
239 }
240
241 void
242 SetWidgetState (Option *opt, int state)
243 {
244 #ifdef TODO_GTK
245     Arg arg;
246     XtSetArg(arg, XtNstate, state);
247     XtSetValues(opt->handle, &arg, 1);
248 #endif
249 }
250
251 void
252 SetWidgetLabel (Option *opt, char *buf)
253 {
254     gtk_label_set_text(opt->handle, buf);
255 }
256
257 void
258 SetDialogTitle (DialogClass dlg, char *title)
259 {
260     gtk_window_set_title(GTK_WINDOW(shells[dlg]), title);
261 }
262
263 void
264 LoadListBox (Option *opt, char *emptyText, int n1, int n2)
265 {
266 #ifdef TODO_GTK
267     static char *dummyList[2];
268     dummyList[0] = emptyText; // empty listboxes tend to crash X, so display user-supplied warning string instead
269     XawListChange(opt->handle, *(char*)opt->target ? opt->target : dummyList, 0, 0, True);
270 #endif
271 }
272
273 int
274 ReadScroll (Option *opt, float *top, float *bottom)
275 {   // retreives fractions of top and bottom of thumb
276 #ifdef TODO_GTK
277     Arg args[16];
278     Widget w = XtParent(opt->handle); // viewport
279     Widget v = XtNameToWidget(w, "vertical");
280     int j=0;
281     float h;
282     if(!v) return FALSE; // no scroll bar
283     XtSetArg(args[j], XtNshown, &h); j++;
284     XtSetArg(args[j], XtNtopOfThumb, top); j++;
285     XtGetValues(v, args, j);
286     *bottom = *top + h;
287 #endif
288     return TRUE;
289 }
290
291 void
292 SetScroll (Option *opt, float f)
293 {   // sets top of thumb to given fraction
294 #ifdef TODO_GTK
295     static char *params[3] = { "", "Continuous", "Proportional" };
296     static XEvent event;
297     Widget w = XtParent(opt->handle); // viewport
298     Widget v = XtNameToWidget(w, "vertical");
299     if(!v) return; // no scroll bar
300     XtCallActionProc(v, "StartScroll", &event, params+1, 1);
301     XawScrollbarSetThumb(v, f, -1.0);
302     XtCallActionProc(v, "NotifyThumb", &event, params, 0);
303 //    XtCallActionProc(v, "NotifyScroll", &event, params+2, 1);
304     XtCallActionProc(v, "EndScroll", &event, params, 0);
305 #endif
306 }
307
308 void
309 HighlightListBoxItem (Option *opt, int nr)
310 {
311 #ifdef TODO_GTK
312     XawListHighlight(opt->handle, nr);
313 #endif
314 }
315
316 void
317 HighlightWithScroll (Option *opt, int sel, int max)
318 {
319 #ifdef TODO_GTK
320     float top, bottom, f, g;
321     HighlightListBoxItem(opt, sel);
322     if(!ReadScroll(opt, &top, &bottom)) return; // no scroll bar
323     bottom = bottom*max - 1.f;
324     f = g = top;
325     top *= max;
326     if(sel > (top + 3*bottom)/4) f = (sel - 0.75f*(bottom-top))/max; else
327     if(sel < (3*top + bottom)/4) f = (sel - 0.25f*(bottom-top))/max;
328     if(f < 0.f) f = 0.; if(f + 1.f/max > 1.f) f = 1. - 1./max;
329     if(f != g) SetScroll(opt, f);
330 #endif
331 }
332
333 int
334 SelectedListBoxItem (Option *opt)
335 {
336 #ifdef TODO_GTK
337     XawListReturnStruct *rs;
338     rs = XawListShowCurrent(opt->handle);
339     return rs->list_index;
340 #else
341     return 0;
342 #endif
343 }
344
345 void
346 FocusOnWidget (Option *opt, DialogClass dlg)
347 {
348     UnCaret();
349 #ifdef TODO_GTK
350     XtSetKeyboardFocus(shells[dlg], opt->handle);
351 #endif
352 }
353
354 void
355 SetIconName (DialogClass dlg, char *name)
356 {
357 #ifdef TODO_GTK
358         Arg args[16];
359         int j = 0;
360         XtSetArg(args[j], XtNiconName, (XtArgVal) name);  j++;
361 //      XtSetArg(args[j], XtNtitle, (XtArgVal) name);  j++;
362         XtSetValues(shells[dlg], args, j);
363 #endif
364 }
365
366 #ifdef TODO_GTK
367 static void
368 CheckCallback (Widget ww, XtPointer client_data, XEvent *event, Boolean *b)
369 {
370     int s, data = (intptr_t) client_data;
371     Option *opt = dialogOptions[data >> 8] + (data & 255);
372
373     if(opt->type == Label) { ((ButtonCallback*) opt->target)(data&255); return; }
374
375     GetWidgetState(opt, &s);
376     SetWidgetState(opt, !s);
377 }
378 #endif
379
380 #ifdef TODO_GTK
381 static void
382 SpinCallback (Widget w, XtPointer client_data, XtPointer call_data)
383 {
384     String name, val;
385     Arg args[16];
386     char buf[MSG_SIZ], *p;
387     int j = 0; // Initialisation is necessary because the text value may be non-numeric causing the scanf conversion to fail
388     int data = (intptr_t) client_data;
389     Option *opt = dialogOptions[data >> 8] + (data & 255);
390
391     XtSetArg(args[0], XtNlabel, &name);
392     XtGetValues(w, args, 1);
393
394     GetWidgetText(opt, &val);
395     sscanf(val, "%d", &j);
396     if (strcmp(name, _("browse")) == 0) {
397         char *q=val, *r;
398         for(r = ""; *q; q++) if(*q == '.') r = q; else if(*q == '/') r = ""; // last dot after last slash
399         if(!strcmp(r, "") && !currentCps && opt->type == FileName && opt->textValue)
400                 r = opt->textValue;
401         Browse(data>>8, opt->name, NULL, r, opt->type == PathName, "", &p, (FILE**) opt);
402         return;
403     } else
404     if (strcmp(name, "+") == 0) {
405         if(++j > opt->max) return;
406     } else
407     if (strcmp(name, "-") == 0) {
408         if(--j < opt->min) return;
409     } else return;
410     snprintf(buf, MSG_SIZ,  "%d", j);
411     SetWidgetText(opt, buf, TransientDlg);
412 }
413 #endif
414
415 void ComboSelect(GtkWidget *widget, gpointer addr)
416 {
417     Option *opt = dialogOptions[((intptr_t)addr)>>8]; // applicable option list
418     gint i = ((intptr_t)addr) & 255; // option number
419     gint g;
420
421     g = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));    
422     values[i] = g; // store in temporary, for transfer at OK
423
424 #if TODO_GTK
425 // Note: setting text on button is probably automatic
426 // Is this still needed? Could be all comboboxes that needed a callbak are now listboxes!
427 #endif
428     if(opt[i].type == Graph || opt[i].min & COMBO_CALLBACK && (!currentCps || shellUp[BrowserDlg])) {
429         ((ButtonCallback*) opt[i].target)(i);
430         return;
431     }
432 }
433
434 #ifdef TODO_GTK
435 Widget
436 CreateMenuItem (Widget menu, char *msg, XtCallbackProc CB, int n)
437 {
438     int j=0;
439     Widget entry;
440     Arg args[16];
441     XtSetArg(args[j], XtNleftMargin, 20);   j++;
442     XtSetArg(args[j], XtNrightMargin, 20);  j++;
443     if(!strcmp(msg, "----")) { XtCreateManagedWidget(msg, smeLineObjectClass, menu, args, j); return NULL; }
444     XtSetArg(args[j], XtNlabel, msg);
445     entry = XtCreateManagedWidget("item", smeBSBObjectClass, menu, args, j+1);
446     XtAddCallback(entry, XtNcallback, CB, (caddr_t)(intptr_t) n);
447     return entry;
448 }
449 #endif
450
451 #ifdef TODO_GTK
452 static Widget
453 CreateComboPopup (Widget parent, Option *opt, int n, int fromList, int def)
454 {   // fromList determines if the item texts are taken from a list of strings, or from a menu table
455     int i;
456     Widget menu, entry;
457     Arg arg;
458     MenuItem *mb = (MenuItem *) opt->choice;
459     char **list = (char **) opt->choice;
460
461     if(list[0] == NULL) return NULL; // avoid empty menus, as they cause crash
462     menu = XtCreatePopupShell(opt->name, simpleMenuWidgetClass, parent, NULL, 0);
463
464     for (i=0; 1; i++) 
465       {
466         char *msg = fromList ? list[i] : mb[i].string;
467         if(!msg) break;
468         entry = CreateMenuItem(menu, opt->min & NO_GETTEXT ? msg : _(msg), (XtCallbackProc) ComboSelect, (n<<16)+i);
469         if(!fromList) mb[i].handle = (void*) entry; // save item ID, for enabling / checkmarking
470         if(i==def) {
471             XtSetArg(arg, XtNpopupOnEntry, entry);
472             XtSetValues(menu, &arg, 1);
473         }
474       }
475       return menu;
476 }
477 #else
478 static void
479 MenuSelect (gpointer addr) // callback for all combo items
480 {
481     Option *opt = dialogOptions[((intptr_t)addr)>>24]; // applicable option list
482     int i = ((intptr_t)addr)>>16 & 255; // option number
483     int j = 0xFFFF & (intptr_t) addr;
484
485     values[i] = j; // store selected value in Option struct, for retrieval at OK
486     ((ButtonCallback*) opt[i].target)(i);
487 }
488
489 static GtkWidget *
490 CreateMenuPopup (Option *opt, int n, int def)
491 {   // fromList determines if the item texts are taken from a list of strings, or from a menu table
492     int i;
493     GtkWidget *menu, *entry;
494     MenuItem *mb = (MenuItem *) opt->choice;
495
496     menu = gtk_menu_new();
497 //    menu = XtCreatePopupShell(opt->name, simpleMenuWidgetClass, parent, NULL, 0);
498     for (i=0; 1; i++) 
499       {
500         char *msg = mb[i].string;
501         if(!msg) break;
502         if(strcmp(msg, "----")) { // 
503           if(!(opt->min & NO_GETTEXT)) msg = _(msg);
504           if(mb[i].handle) {
505             entry = gtk_check_menu_item_new_with_label(msg); // should be used for items that can be checkmarked
506             if(mb[i].handle == RADIO) gtk_check_menu_item_set_draw_as_radio(entry, True);
507           } else
508             entry = gtk_menu_item_new_with_label(msg);
509           gtk_signal_connect_object (GTK_OBJECT (entry), "activate", GTK_SIGNAL_FUNC(MenuSelect), (gpointer) (n<<16)+i);
510           gtk_widget_show(entry);
511         } else entry = gtk_separator_menu_item_new();
512         gtk_menu_append(GTK_MENU (menu), entry);
513 //CreateMenuItem(menu, opt->min & NO_GETTEXT ? msg : _(msg), (XtCallbackProc) ComboSelect, (n<<16)+i);
514         mb[i].handle = (void*) entry; // save item ID, for enabling / checkmarking
515 //      if(i==def) {
516 //          XtSetArg(arg, XtNpopupOnEntry, entry);
517 //          XtSetValues(menu, &arg, 1);
518 //      }
519       }
520       return menu;
521 }
522 #endif
523
524 char moveTypeInTranslations[] =
525     "<Key>Return: TypeInProc(1) \n"
526     "<Key>Escape: TypeInProc(0) \n";
527 extern char filterTranslations[];
528 extern char gameListTranslations[];
529 extern char memoTranslations[];
530
531
532 char *translationTable[] = { // beware: order is essential!
533    historyTranslations, commentTranslations, moveTypeInTranslations, ICSInputTranslations,
534    filterTranslations, gameListTranslations, memoTranslations
535 };
536
537 void
538 AddHandler (Option *opt, int nr)
539 {
540 #ifdef TODO_GTK
541     switch(nr) {
542       case 
543     }
544     XtOverrideTranslations(opt->handle, XtParseTranslationTable(translationTable[nr]));
545 #endif
546 }
547
548 //----------------------------Generic dialog --------------------------------------------
549
550 // cloned from Engine Settings dialog (and later merged with it)
551
552 GtkWidget *shells[NrOfDialogs];
553 DialogClass parents[NrOfDialogs];
554 WindowPlacement *wp[NrOfDialogs] = { // Beware! Order must correspond to DialogClass enum
555     NULL, &wpComment, &wpTags, NULL, NULL, NULL, NULL, &wpMoveHistory, &wpGameList, &wpEngineOutput, &wpEvalGraph,
556     NULL, NULL, NULL, NULL, /*&wpMain*/ NULL
557 };
558
559 int
560 DialogExists (DialogClass n)
561 {   // accessor for use in back-end
562     return shells[n] != NULL;
563 }
564
565 void
566 RaiseWindow (DialogClass dlg)
567 {
568 #ifdef TODO_GTK
569     static XEvent xev;
570     Window root = RootWindow(xDisplay, DefaultScreen(xDisplay));
571     Atom atom = XInternAtom (xDisplay, "_NET_ACTIVE_WINDOW", False);
572
573     xev.xclient.type = ClientMessage;
574     xev.xclient.serial = 0;
575     xev.xclient.send_event = True;
576     xev.xclient.display = xDisplay;
577     xev.xclient.window = XtWindow(shells[dlg]);
578     xev.xclient.message_type = atom;
579     xev.xclient.format = 32;
580     xev.xclient.data.l[0] = 1;
581     xev.xclient.data.l[1] = CurrentTime;
582
583     XSendEvent (xDisplay,
584           root, False,
585           SubstructureRedirectMask | SubstructureNotifyMask,
586           &xev);
587
588     XFlush(xDisplay); 
589     XSync(xDisplay, False);
590 #endif
591 }
592
593 int
594 PopDown (DialogClass n)
595 {
596     //Arg args[10];    
597     
598     if (!shellUp[n] || !shells[n]) return 0;    
599 #ifdef TODO_GTK
600 // Not sure this is still used
601     if(n && wp[n]) { // remember position
602         j = 0;
603         XtSetArg(args[j], XtNx, &windowX); j++;
604         XtSetArg(args[j], XtNy, &windowY); j++;
605         XtSetArg(args[j], XtNheight, &windowH); j++;
606         XtSetArg(args[j], XtNwidth, &windowW); j++;
607         XtGetValues(shells[n], args, j);
608         wp[n]->x = windowX;
609         wp[n]->x = windowY;
610         wp[n]->width  = windowW;
611         wp[n]->height = windowH;
612     }
613 #endif
614     
615     gtk_widget_hide(shells[n]);
616     shellUp[n]--; // count rather than clear
617     if(n == 0 || n >= PromoDlg) {
618         gtk_widget_destroy(shells[n]);
619         shells[n] = NULL;
620     }    
621
622     if(marked[n]) {
623         MarkMenuItem(marked[n], False);
624         marked[n] = NULL;
625     }
626
627     if(!n) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
628     currentOption = dialogOptions[TransientDlg]; // just in case a transient dialog was up (to allow its check and combo callbacks to work)
629 #ifdef TODO_GTK
630     RaiseWindow(parents[n]); // automatic in GTK?
631     if(parents[n] == BoardWindow) XtSetKeyboardFocus(shellWidget, formWidget); // also automatic???
632 #endif
633     return 1;
634 }
635
636 gboolean GenericPopDown(w, event, gdata)
637      GtkWidget *w;
638      GdkEvent  *event;
639      gpointer  gdata; 
640 {
641     int dlg = (intptr_t) gdata; /* dialog number dlgnr */
642     
643 #ifdef TODO_GTK
644 // I guess BrowserDlg will be abandoned, as GTK has a better browser of its own
645     if(shellUp[BrowserDlg] && dlg != BrowserDlg || dialogError) return; // prevent closing dialog when it has an open file-browse daughter
646 #else
647     if(browserUp || dialogError && dlg != FatalDlg) return True; // prevent closing dialog when it has an open file-browse daughter
648 #endif
649     GtkWidget *sh = shells[dlg];
650 printf("popdown %d\n", dlg);
651     shells[dlg] = w; // make sure we pop down the right one in case of multiple instances
652     PopDown(dlg);
653     shells[dlg] = sh; // restore
654     if(dlg == BoardWindow) ExitEvent(0);
655     return True; /* don't propagate to default handler */
656 }
657
658 int AppendText(Option *opt, char *s)
659 {    
660     char *v;
661     int len;
662     GtkTextIter end;    
663   
664     GetWidgetTextGTK(opt->handle, &v);
665     len = strlen(v);
666     g_free(v);
667     gtk_text_buffer_get_end_iter(GTK_TEXT_BUFFER(opt->handle), &end);
668     gtk_text_buffer_insert(opt->handle, &end, s, -1);
669
670     return len;
671 }
672
673 void
674 SetColor (char *colorName, Option *box)
675 {       // sets the color of a widget
676     GdkColor color;
677
678     /* set the colour of the colour button to the colour that will be used */
679     gdk_color_parse( colorName, &color );
680     gtk_widget_modify_bg ( GTK_WIDGET(box->handle), GTK_STATE_NORMAL, &color );
681 }
682
683 #ifdef TODO_GTK
684 void
685 ColorChanged (Widget w, XtPointer data, XEvent *event, Boolean *b)
686 {   // for detecting a typed change in color
687     char buf[10];
688     if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
689         RefreshColor((int)(intptr_t) data, 0);
690 }
691 #endif
692
693 static void
694 GraphEventProc(GtkWidget *widget, GdkEvent *event, gpointer gdata)
695 {   // handle expose and mouse events on Graph widget
696     int w, h;
697     int j, button=10, f=1, sizing=0;
698     Option *opt, *graph = (Option *) gdata;
699     PointerCallback *userHandler = graph->target;
700     GdkEventExpose *eevent = (GdkEventExpose *) event;
701     GdkEventButton *bevent = (GdkEventButton *) event;
702     GdkEventMotion *mevent = (GdkEventMotion *) event;
703     cairo_t *cr;
704
705 //    if (!XtIsRealized(widget)) return;
706
707     switch(event->type) {
708         case GDK_EXPOSE: // make handling of expose events generic, just copying from memory buffer (->choice) to display (->textValue)
709             /* Get window size */
710 #ifdef TODO_GTK
711             j = 0;
712             XtSetArg(args[j], XtNwidth, &w); j++;
713             XtSetArg(args[j], XtNheight, &h); j++;
714             XtGetValues(widget, args, j);
715
716             if(w < graph->max || w > graph->max + 1 || h != graph->value) { // use width fudge of 1 pixel
717                 if(((XExposeEvent*)event)->count >= 0) { // suppress sizing on expose for ordered redraw in response to sizing.
718                     sizing = 1;
719                     graph->max = w; graph->value = h; // note: old values are kept if we we don't exceed width fudge
720                 }
721             } else w = graph->max;
722
723             if(sizing && ((XExposeEvent*)event)->count > 0) { graph->max = 0; return; } // don't bother if further exposure is pending during resize
724             if(!graph->textValue || sizing) { // create surfaces of new size for display widget
725                 if(graph->textValue) cairo_surface_destroy((cairo_surface_t *)graph->textValue);
726                 graph->textValue = (char*) cairo_xlib_surface_create(xDisplay, XtWindow(widget), DefaultVisual(xDisplay, 0), w, h);
727             }
728             if(sizing) { // the memory buffer was already created in GenericPopup(),
729                          // to give drawing routines opportunity to use it before first expose event
730                          // (which are only processed when main gets to the event loop, so after all init!)
731                          // so only change when size is no longer good
732                 if(graph->choice) cairo_surface_destroy((cairo_surface_t *) graph->choice);
733                 graph->choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, w, h);
734                 break;
735             }
736 #endif
737             w = eevent->area.width;
738             if(eevent->area.x + w > graph->max) w--; // cut off fudge pixel
739             cr = gdk_cairo_create(((GtkWidget *) (graph->handle))->window);
740             cairo_set_source_surface(cr, (cairo_surface_t *) graph->choice, 0, 0);
741             cairo_set_antialias(cr, CAIRO_ANTIALIAS_NONE);
742             cairo_rectangle(cr, eevent->area.x, eevent->area.y, w, eevent->area.height);
743             cairo_fill(cr);
744             cairo_destroy(cr);
745         default:
746             return;
747         case GDK_MOTION_NOTIFY:
748             f = 0;
749             w = mevent->x; h = mevent->y;
750             break;
751         case GDK_BUTTON_RELEASE:
752             f = -1; // release indicated by negative button numbers
753         case GDK_BUTTON_PRESS:
754             w = bevent->x; h = bevent->y;
755             button = bevent->button;
756     }
757     button *= f;
758
759     opt = userHandler(button, w, h);
760 #ifdef TODO_GTK
761     if(opt) { // user callback specifies a context menu; pop it up
762         XUngrabPointer(xDisplay, CurrentTime);
763         XtCallActionProc(widget, "XawPositionSimpleMenu", event, &(opt->name), 1);
764         XtPopupSpringLoaded(opt->handle);
765     }
766     XSync(xDisplay, False);
767 #endif
768 }
769
770 void
771 GraphExpose (Option *opt, int x, int y, int w, int h)
772 {
773   GdkEventExpose e;
774   if(!opt->handle) return;
775   e.area.x = x; e.area.y = y; e.area.width = w; e.area.height = h; e.count = -1; e.type = GDK_EXPOSE; // count = -1: kludge to suppress sizing
776   GraphEventProc(opt->handle, (GdkEvent//        gtk_check_menu_item_set_active((GtkCheckMenuItem *) item->handle, state);
777  *) &e, (gpointer) opt); // fake expose event
778 }
779
780 /* GTK callback used when OK/cancel clicked in genericpopup for non-modal dialog */
781 void GenericPopUpCallback(w, resptype, gdata)
782      GtkWidget *w;
783      GtkResponseType  resptype;
784      gpointer  gdata;
785 {
786     int data = (intptr_t) gdata; /* dialog number dlgnr */
787     DialogClass dlg;
788
789     currentOption = dialogOptions[dlg=data>>16]; data &= 0xFFFF;
790
791     /* OK pressed */    
792     if (resptype == GTK_RESPONSE_ACCEPT) {
793         if (GenericReadout(currentOption, -1)) PopDown(data);
794         return;
795     }
796
797     /* cancel pressed */
798     PopDown(dlg);    
799 }
800
801 void GenericCallback(GtkWidget *widget, gpointer gdata)
802 {
803     const gchar *name;
804     char buf[MSG_SIZ];    
805     int data = (intptr_t) gdata;   
806     DialogClass dlg;
807 #ifdef TODO_GTK
808     GtkWidget *sh = XtParent(XtParent(XtParent(w))), *oldSh;
809 #else
810     GtkWidget *sh, *oldSh;
811 #endif
812
813     currentOption = dialogOptions[dlg=data>>16]; data &= 0xFFFF;
814 #ifndef TODO_GTK
815     sh = shells[dlg]; // make following line a no-op, as we haven't found out what the real shell is yet (breaks multiple popups of same type!)
816 #endif
817     oldSh = shells[dlg]; shells[dlg] = sh; // bow to reality
818     
819 #ifdef TODO_GTK
820     if (data == 30000) { // cancel
821         PopDown(dlg); 
822     } else
823     if (data == 30001) { // save buttons imply OK
824         if(GenericReadout(currentOption, -1)) PopDown(dlg); // calls OK-proc after full readout, but no popdown if it returns false
825     } else
826 #endif
827
828     if(currentCps) {
829         name = gtk_button_get_label (GTK_BUTTON(widget));         
830         if(currentOption[data].type == SaveButton) GenericReadout(currentOption, -1);
831         snprintf(buf, MSG_SIZ,  "option %s\n", name);
832         SendToProgram(buf, currentCps);
833     } else ((ButtonCallback*) currentOption[data].target)(data);   
834
835     shells[dlg] = oldSh; // in case of multiple instances, restore previous (as this one could be popped down now)
836 }
837
838 void BrowseGTK(GtkWidget *widget, gpointer gdata)
839 {
840     GtkWidget *entry;
841     GtkWidget *dialog;
842     GtkFileFilter *gtkfilter;
843     GtkFileFilter *gtkfilter_all;
844     int opt_i = (intptr_t) gdata;
845     GtkFileChooserAction fc_action;
846   
847     gtkfilter     = gtk_file_filter_new();
848     gtkfilter_all = gtk_file_filter_new();
849
850     char fileext[10] = "*";
851
852     /* select file or folder depending on option_type */
853     if (currentOption[opt_i].type == PathName)
854         fc_action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
855     else
856         fc_action = GTK_FILE_CHOOSER_ACTION_OPEN;
857
858     dialog = gtk_file_chooser_dialog_new ("Open File",
859                       NULL,
860                       fc_action,
861                       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
862                       GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
863                       NULL);
864
865     /* one filter to show everything */
866     gtk_file_filter_add_pattern(gtkfilter_all, "*");
867     gtk_file_filter_set_name   (gtkfilter_all, "All Files");
868     gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog),gtkfilter_all);
869     
870     /* filter for specific filetypes e.g. pgn or fen */
871     if (currentOption[opt_i].textValue != NULL && (strcmp(currentOption[opt_i].textValue, "") != 0) )    
872       {          
873         strcat(fileext, currentOption[opt_i].textValue);    
874         gtk_file_filter_add_pattern(gtkfilter, fileext);
875         gtk_file_filter_set_name (gtkfilter, currentOption[opt_i].textValue);
876         gtk_file_chooser_add_filter (GTK_FILE_CHOOSER(dialog),gtkfilter);
877         /* activate filter */
878         gtk_file_chooser_set_filter (GTK_FILE_CHOOSER(dialog),gtkfilter);
879       }
880     else
881       gtk_file_chooser_set_filter (GTK_FILE_CHOOSER(dialog),gtkfilter_all);       
882
883     if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
884       {
885         char *filename;
886         filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));             
887         entry = currentOption[opt_i].handle;
888         gtk_entry_set_text (GTK_ENTRY (entry), filename);        
889         g_free (filename);
890
891       }
892     gtk_widget_destroy (dialog);
893     dialog = NULL;
894 }
895
896 #ifdef TODO_GTK
897 void
898 TabProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
899 {   // for transfering focus to the next text-edit
900     Option *opt;
901     for(opt = currentOption; opt->type != EndMark; opt++) {
902         if(opt->handle == w) {
903             while(++opt) {
904                 if(opt->type == EndMark) opt = currentOption; // wrap
905                 if(opt->handle == w) return; // full circle
906                 if(opt->type == TextBox || opt->type == Spin || opt->type == Fractional || opt->type == FileName || opt->type == PathName) {
907                     SetFocus(opt->handle, XtParent(XtParent(XtParent(w))), NULL, 0);
908                     return;
909                 }
910             }
911         }
912     }
913 }
914 #endif
915
916 #ifdef TODO_GTK
917 void
918 WheelProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
919 {   // for scrolling a widget seen through a viewport with the mouse wheel (ListBox!)
920     int j=0, n = atoi(prms[0]);
921     static char *params[3] = { "", "Continuous", "Proportional" };
922     Arg args[16];
923     float h, top;
924     Widget v;
925     if(!n) { // transient dialogs also use this for list-selection callback
926         n = prms[1][0]-'0';
927         Option *opt=dialogOptions[prms[2][0]-'A'] + n;
928         if(opt->textValue) ((ListBoxCallback*) opt->textValue)(n, SelectedListBoxItem(opt));
929         return;
930     }
931     v = XtNameToWidget(XtParent(w), "vertical");
932     if(!v) return;
933     XtSetArg(args[j], XtNshown, &h); j++;
934     XtSetArg(args[j], XtNtopOfThumb, &top); j++;
935     XtGetValues(v, args, j);
936     top += 0.1f*h*n; if(top < 0.f) top = 0.;
937     XtCallActionProc(v, "StartScroll", event, params+1, 1);
938     XawScrollbarSetThumb(v, top, -1.0);
939     XtCallActionProc(v, "NotifyThumb", event, params, 0);
940 //    XtCallActionProc(w, "NotifyScroll", event, params+2, 1);
941     XtCallActionProc(v, "EndScroll", event, params, 0);
942 }
943 #endif
944
945 static char *oneLiner  =
946    "<Key>Return: redraw-display() \n \
947     <Key>Tab: TabProc() \n ";
948 static char scrollTranslations[] =
949    "<Btn1Up>(2): WheelProc(0 0 A) \n \
950     <Btn4Down>: WheelProc(-1) \n \
951     <Btn5Down>: WheelProc(1) \n ";
952
953 static void
954 SqueezeIntoBox (Option *opt, int nr, int width)
955 {   // size buttons in bar to fit, clipping button names where necessary
956 #ifdef TODO_GTK
957     int i, wtot = 0;
958     Dimension widths[20], oldWidths[20];
959     Arg arg;
960     for(i=1; i<nr; i++) {
961         XtSetArg(arg, XtNwidth, &widths[i]);
962         XtGetValues(opt[i].handle, &arg, 1);
963         wtot +=  oldWidths[i] = widths[i];
964     }
965     opt->min = wtot;
966     if(width <= 0) return;
967     while(wtot > width) {
968         int wmax=0, imax=0;
969         for(i=1; i<nr; i++) if(widths[i] > wmax) wmax = widths[imax=i];
970         widths[imax]--;
971         wtot--;
972     }
973     for(i=1; i<nr; i++) if(widths[i] != oldWidths[i]) {
974         XtSetArg(arg, XtNwidth, widths[i]);
975         XtSetValues(opt[i].handle, &arg, 1);
976     }
977     opt->min = wtot;
978 #endif
979 }
980
981 #ifdef TODO_GTK
982 int
983 SetPositionAndSize (Arg *args, Widget leftNeigbor, Widget topNeigbor, int b, int w, int h, int chaining)
984 {   // sizing and positioning most widgets have in common
985     int j = 0;
986     // first position the widget w.r.t. earlier ones
987     if(chaining & 1) { // same row: position w.r.t. last (on current row) and lastrow
988         XtSetArg(args[j], XtNfromVert, topNeigbor); j++;
989         XtSetArg(args[j], XtNfromHoriz, leftNeigbor); j++;
990     } else // otherwise it goes at left margin (which is default), below the previous element
991         XtSetArg(args[j], XtNfromVert, leftNeigbor),  j++;
992     // arrange chaining ('2'-bit indicates top and bottom chain the same)
993     if((chaining & 14) == 6) XtSetArg(args[j], XtNtop,    XtChainBottom), j++;
994     if((chaining & 14) == 10) XtSetArg(args[j], XtNbottom, XtChainTop ), j++;
995     if(chaining & 4) XtSetArg(args[j], XtNbottom, XtChainBottom ), j++;
996     if(chaining & 8) XtSetArg(args[j], XtNtop,    XtChainTop), j++;
997     if(chaining & 0x10) XtSetArg(args[j], XtNright, XtChainRight), j++;
998     if(chaining & 0x20) XtSetArg(args[j], XtNleft,  XtChainRight), j++;
999     if(chaining & 0x40) XtSetArg(args[j], XtNright, XtChainLeft ), j++;
1000     if(chaining & 0x80) XtSetArg(args[j], XtNleft,  XtChainLeft ), j++;
1001     // set size (if given)
1002     if(w) XtSetArg(args[j], XtNwidth, w), j++;
1003     if(h) XtSetArg(args[j], XtNheight, h),  j++;
1004     // color
1005     if(!appData.monoMode) {
1006         if(!b && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
1007         if(b == 3 && appData.buttonColor[0]) XtSetArg(args[j], XtNbackground, buttonColor),  j++;
1008     }
1009     if(b == 3) b = 1;
1010     // border
1011     XtSetArg(args[j], XtNborderWidth, b);  j++;
1012     return j;
1013 }
1014 #endif
1015
1016 static int
1017 SameRow (Option *opt)
1018 {
1019     return (opt->min & SAME_ROW && (opt->type == Button || opt->type == SaveButton || opt->type == Label || opt->type == ListBox));
1020 }
1021
1022 static void
1023 Pack (GtkWidget *hbox, GtkWidget *table, GtkWidget *entry, int left, int right, int top)
1024 {
1025     if(hbox) gtk_box_pack_start(GTK_BOX (hbox), entry, TRUE, TRUE, 0);
1026     else     gtk_table_attach_defaults(GTK_TABLE(table), entry, left, right, top, top+1);
1027 }
1028
1029 int
1030 GenericPopUp (Option *option, char *title, DialogClass dlgNr, DialogClass parent, int modal, int topLevel)
1031 {    
1032     GtkWidget *dialog = NULL;
1033     gint       w;
1034     GtkWidget *label;
1035     GtkWidget *box;
1036     GtkWidget *checkbutton;
1037     GtkWidget *entry;
1038     GtkWidget *hbox = NULL;    
1039     GtkWidget *button;
1040     GtkWidget *table;
1041     GtkWidget *spinner;    
1042     GtkAdjustment *spinner_adj;
1043     GtkWidget *combobox;
1044     GtkWidget *textview;
1045     GtkTextBuffer *textbuffer;           
1046     GdkColor color;     
1047     GtkWidget *actionarea;
1048     GtkWidget *sw;    
1049     GtkWidget *list;    
1050     GtkWidget *graph;    
1051     GtkWidget *menuButton;    
1052     GtkWidget *menuBar;    
1053     GtkWidget *menu;    
1054
1055     int i, j, arraysize, left, top, height=999, width=1, boxStart;    
1056     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
1057     
1058     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
1059
1060     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
1061         gtk_widget_show(shells[dlgNr]);
1062         shellUp[dlgNr] = True;
1063         return 0;
1064     }
1065
1066     dialogOptions[dlgNr] = option; // make available to callback
1067     // post currentOption globally, so Spin and Combo callbacks can already use it
1068     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1069     currentOption = option;
1070
1071     if(engineDlg) { // Settings popup for engine: format through heuristic
1072         int n = currentCps->nrOptions;
1073         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1074         height = n / width + 1;
1075 //      if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1076         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1077     }    
1078
1079     parents[dlgNr] = parent;
1080 #ifdef TODO_GTK
1081     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
1082
1083     if(dlgNr == BoardWindow) dialog = shellWidget; else
1084     dialog =
1085       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
1086                                                            shells[parent], args, i);
1087 #endif
1088     dialog = gtk_dialog_new_with_buttons( title,
1089                                       GTK_WINDOW(shells[parent]),
1090                                       GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR |
1091                                           (modal ? GTK_DIALOG_MODAL : 0),
1092                                       GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1093                                       GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1094                                       NULL );      
1095
1096     shells[dlgNr] = dialog;
1097     box = gtk_dialog_get_content_area( GTK_DIALOG( dialog ) );
1098     gtk_box_set_spacing(GTK_BOX(box), 5);    
1099
1100     arraysize = 0;
1101     for (i=0;option[i].type != EndMark;i++) {
1102         arraysize++;   
1103     }
1104
1105     table = gtk_table_new(arraysize, 3, FALSE);
1106     gtk_table_set_col_spacings(GTK_TABLE(table), 20);
1107     left = 0;
1108     top = -1;    
1109
1110     for (i=0;option[i].type != EndMark;i++) {
1111         if(option[i].type == -1) continue;
1112         top++;
1113         if (top >= height) {
1114             top = 0;
1115             left = left + 3;
1116             gtk_table_resize(GTK_TABLE(table), height, left + 3);   
1117         }                
1118         if(!SameRow(&option[i])) {
1119             if(SameRow(&option[i+1])) {
1120                 // make sure hbox is always available when we have more options on same row
1121                 hbox = gtk_hbox_new (option[i].type == Button && option[i].textValue, 0);
1122                 if (strcmp(option[i].name, "") == 0 || option[i].type == Label || option[i].type == Button)
1123                     // for Label and Button name is contained inside option
1124                     gtk_table_attach_defaults(GTK_TABLE(table), hbox, left, left+3, top, top+1);
1125                 else
1126                     gtk_table_attach_defaults(GTK_TABLE(table), hbox, left+1, left+3, top, top+1);
1127             } else hbox = NULL; //and also make sure no hbox exists if only singl option on row
1128         }
1129         switch(option[i].type) {
1130           case Fractional:           
1131             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1132             option[i].value = *(float*)option[i].target;
1133             goto tBox;
1134           case Spin:
1135             if(!currentCps) option[i].value = *(int*)option[i].target;
1136             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1137           case TextBox:
1138           case FileName:            
1139           case PathName:
1140           tBox:
1141             label = gtk_label_new(option[i].name);
1142             /* Left Justify */
1143             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1144
1145             /* width */
1146             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1147             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1148
1149             if (option[i].type==TextBox && option[i].value > 80){                
1150                 textview = gtk_text_view_new();                
1151                 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(textview), option[i].min & T_WRAP ? GTK_WRAP_WORD : GTK_WRAP_NONE);
1152 #ifdef TODO_GTK
1153                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
1154                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1155 #endif
1156                 /* add textview to scrolled window so we have vertical scroll bar */
1157                 sw = gtk_scrolled_window_new(NULL, NULL);
1158                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw),
1159                                                option[i].min & T_HSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_AUTOMATIC,
1160                                                option[i].min & T_VSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_NEVER);
1161                 gtk_container_add(GTK_CONTAINER(sw), textview);
1162                 gtk_widget_set_size_request(GTK_WIDGET(sw), w, -1);
1163  
1164                 textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));                
1165                 gtk_widget_set_size_request(textview, -1, option[i].min);
1166                 /* check if label is empty */ 
1167                 if (strcmp(option[i].name,"") != 0) {
1168                     gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+1, top, top+1);
1169                     Pack(hbox, table, sw, left+1, left+3, top);
1170                 }
1171                 else {
1172                     /* no label so let textview occupy all columns */
1173                     Pack(hbox, table, sw, left, left+3, top);
1174                 } 
1175                 if ( *(char**)option[i].target != NULL )
1176                     gtk_text_buffer_set_text (textbuffer, *(char**)option[i].target, -1);
1177                 else
1178                     gtk_text_buffer_set_text (textbuffer, "", -1); 
1179                 option[i].handle = (void*)textbuffer;
1180                 break; 
1181             }
1182
1183             entry = gtk_entry_new();
1184
1185             if (option[i].type==Spin || option[i].type==Fractional)
1186                 gtk_entry_set_text (GTK_ENTRY (entry), def);
1187             else if (currentCps)
1188                 gtk_entry_set_text (GTK_ENTRY (entry), option[i].textValue);
1189             else if ( *(char**)option[i].target != NULL )
1190                 gtk_entry_set_text (GTK_ENTRY (entry), *(char**)option[i].target);            
1191
1192             //gtk_entry_set_width_chars (GTK_ENTRY (entry), 18);
1193             gtk_entry_set_max_length (GTK_ENTRY (entry), w);
1194
1195             // left, right, top, bottom
1196             if (strcmp(option[i].name, "") != 0) gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+1, top, top+1);
1197             //gtk_table_attach_defaults(GTK_TABLE(table), entry, 1, 2, i, i+1);            
1198
1199             if (option[i].type == Spin) {                
1200                 spinner_adj = (GtkAdjustment *) gtk_adjustment_new (option[i].value, option[i].min, option[i].max, 1.0, 0.0, 0.0);
1201                 spinner = gtk_spin_button_new (spinner_adj, 1.0, 0);
1202                 gtk_table_attach_defaults(GTK_TABLE(table), spinner, left+1, left+3, top, top+1);
1203                 option[i].handle = (void*)spinner;
1204             }
1205             else if (option[i].type == FileName || option[i].type == PathName) {
1206                 gtk_table_attach_defaults(GTK_TABLE(table), entry, left+1, left+2, top, top+1);
1207                 button = gtk_button_new_with_label ("Browse");
1208                 gtk_table_attach_defaults(GTK_TABLE(table), button, left+2, left+3, top, top+1);
1209                 g_signal_connect (button, "clicked", G_CALLBACK (BrowseGTK), (gpointer)(intptr_t) i);
1210                 option[i].handle = (void*)entry;                 
1211             }
1212             else {
1213                 Pack(hbox, table, entry, left + (strcmp(option[i].name, "") != 0), left+3, top);
1214                 option[i].handle = (void*)entry;
1215             }                                   
1216             break;
1217           case CheckBox:
1218             checkbutton = gtk_check_button_new_with_label(option[i].name);            
1219             if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1220             gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbutton), option[i].value);
1221             gtk_table_attach_defaults(GTK_TABLE(table), checkbutton, left, left+3, top, top+1);                            
1222             option[i].handle = (void *)checkbutton;            
1223             break; 
1224           case Label:            
1225             option[i].handle = (void *) (label = gtk_label_new(option[i].name));
1226             /* Left Justify */
1227             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1228             if(option[i].min & BORDER) {
1229                 GtkWidget *frame = gtk_frame_new(NULL);
1230                 gtk_container_add(GTK_CONTAINER(frame), label);
1231                 label = frame;
1232             }
1233             Pack(hbox, table, label, left, left+3, top);                       
1234             break;
1235           case SaveButton:
1236           case Button:
1237             button = gtk_button_new_with_label (option[i].name);
1238
1239             /* set button color on view board dialog */
1240             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1241                 gdk_color_parse( *(char**) option[i-1].target, &color );
1242                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1243             }
1244
1245             /* set button color on new variant dialog */
1246             if(option[i].textValue) {
1247                 gdk_color_parse( option[i].textValue, &color );
1248                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1249                 gtk_widget_set_sensitive(button, appData.noChessProgram || option[i].value < 0
1250                                          || strstr(first.variants, VariantName(option[i].value)));                 
1251             }
1252             
1253             Pack(hbox, table, button, left, left+1, top);
1254             g_signal_connect (button, "clicked", G_CALLBACK (GenericCallback), (gpointer)(intptr_t) i + (dlgNr<<16));           
1255             option[i].handle = (void*)button;            
1256             break;  
1257           case ComboBox:
1258             label = gtk_label_new(option[i].name);
1259             /* Left Justify */
1260             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1261             gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+1, top, top+1);
1262
1263             combobox = gtk_combo_box_new_text();            
1264
1265             for(j=0;;j++) {
1266                if (  ((char **) option[i].textValue)[j] == NULL) break;
1267                gtk_combo_box_append_text(GTK_COMBO_BOX(combobox), ((char **) option[i].choice)[j]);                          
1268             }
1269
1270             if(currentCps)
1271                 option[i].choice = (char**) option[i].textValue;
1272             else {
1273                 for(j=0; option[i].choice[j]; j++) {                
1274                     if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, ((char**)(option[i].textValue))[j])) break;
1275                 }
1276                 /* If choice is NULL set to first */
1277                 if (option[i].choice[j] == NULL)
1278                    option[i].value = 0;
1279                 else 
1280                    option[i].value = j;
1281             }
1282
1283             //option[i].value = j + (option[i].choice[j] == NULL);            
1284             gtk_combo_box_set_active(GTK_COMBO_BOX(combobox), option[i].value); 
1285             
1286             Pack(hbox, table, combobox, left+1, left+3, top);
1287             g_signal_connect(G_OBJECT(combobox), "changed", G_CALLBACK(ComboSelect), (gpointer) (intptr_t) (i + 256*dlgNr));
1288
1289             option[i].handle = (void*)combobox;
1290             values[i] = option[i].value;            
1291             break;
1292           case ListBox:
1293             {
1294                 GtkCellRenderer *renderer;
1295                 GtkTreeViewColumn *column;
1296                 GtkListStore *store;
1297
1298                 option[i].handle = (void *) (list = gtk_tree_view_new());
1299                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(list), FALSE);
1300                 renderer = gtk_cell_renderer_text_new();
1301                 column = gtk_tree_view_column_new_with_attributes("List Items", renderer, "text", 0, NULL);
1302                 gtk_tree_view_append_column(GTK_TREE_VIEW(list), column);
1303                 store = gtk_list_store_new(1, G_TYPE_STRING); // 1 column of text
1304                 gtk_tree_view_set_model(GTK_TREE_VIEW(list), GTK_TREE_MODEL(store));
1305                 g_object_unref(store);
1306                 LoadListBox(&option[i], "?", -1, -1);
1307                 HighlightListBoxItem(&option[i], 0);
1308
1309                 /* add listbox to scrolled window so we have vertical scroll bar */
1310                 sw = gtk_scrolled_window_new(NULL, NULL);
1311                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
1312                 gtk_container_add(GTK_CONTAINER(sw), list);
1313                 gtk_widget_set_size_request(GTK_WIDGET(sw), w, 300);
1314  
1315                 /* never has label, so let listbox occupy all columns */
1316                 Pack(hbox, table, sw, left, left+3, top);
1317             }
1318             break;
1319           case Graph:
1320             option[i].handle = (void*) (graph = gtk_drawing_area_new());
1321             gtk_widget_set_size_request(graph, option[i].max, option[i].value);
1322 //          gtk_drawing_area_size(graph, option[i].max, option[i].value);
1323             gtk_table_attach_defaults(GTK_TABLE(table), graph, left, left+3, top, top+1);
1324             g_signal_connect (graph, "expose-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1325             gtk_widget_add_events(GTK_WIDGET(graph), GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK);
1326             g_signal_connect (graph, "button-press-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1327             g_signal_connect (graph, "button-release-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1328             g_signal_connect (graph, "motion-notify-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1329
1330 #ifdef TODO_GTK
1331             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1332                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1333             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1334 #endif
1335             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1336             break;
1337 #ifdef TODO_GTK
1338           case Graph:
1339             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1340                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1341             option[i].handle = (void*)
1342                 (last = XtCreateManagedWidget("graph", widgetClass, form, args, j));
1343             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1344                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1345             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1346             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1347             break;
1348           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1349             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1350             break;
1351           case BoxBegin:
1352             if(option[i].min & SAME_ROW) forelast = lastrow;
1353             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1354                                    0 /* w */, 0 /* h */, option[i].min /* chain */);
1355             XtSetArg(args[j], XtNorientation, XtorientHorizontal);  j++;
1356             XtSetArg(args[j], XtNvSpace, 0);                        j++;
1357             option[box=i].handle = (void*)
1358                 (last = XtCreateWidget("box", boxWidgetClass, form, args, j));
1359             oldForm = form; form = last; oldLastRow = lastrow; oldForeLast = forelast;
1360             lastrow = NULL; last = NULL;
1361             break;
1362 #endif
1363           case DropDown:
1364             msg = _(option[i].name); // write name on the menu button
1365 //          XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1366 //          XtSetArg(args[j], XtNlabel, msg);  j++;
1367             option[i].handle = (void*)
1368                 (menuButton = gtk_menu_item_new_with_label(msg));
1369             gtk_widget_show(menuButton);
1370             option[i].textValue = (char*) (menu = CreateMenuPopup(option + i, i + 256*dlgNr, -1));
1371             gtk_menu_item_set_submenu(GTK_MENU_ITEM (menuButton), menu);
1372             gtk_menu_bar_append (GTK_MENU_BAR (menuBar), menuButton);
1373
1374             break;
1375           case BarBegin:
1376             menuBar = gtk_menu_bar_new ();
1377             gtk_widget_show (menuBar);
1378           case BoxBegin:
1379             boxStart = i;
1380             break;
1381           case BarEnd:
1382             gtk_table_attach_defaults(GTK_TABLE(table), menuBar, left, left+1, top, top+1);
1383           case BoxEnd:
1384 //          XtManageChildren(&form, 1);
1385 //          SqueezeIntoBox(&option[boxStart], i-boxStart, option[boxStart].max);
1386             if(option[i].target) ((ButtonCallback*)option[i].target)(boxStart); // callback that can make sizing decisions
1387             break;
1388           case Break:
1389             if(option[i].min & SAME_ROW) top = height; // force next option to start in a new column
1390             break; 
1391         default:
1392             printf("GenericPopUp: unexpected case in switch. i=%d type=%d name=%s.\n", i, option[i].type, option[i].name);
1393             break;
1394         }        
1395     }
1396
1397     gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox),
1398                         table, TRUE, TRUE, 0);    
1399
1400     /* Show dialog */
1401     gtk_widget_show_all( dialog );    
1402
1403     /* hide OK/cancel buttons */
1404     if((option[i].min & 2)) {
1405         actionarea = gtk_dialog_get_action_area(GTK_DIALOG(dialog));
1406         gtk_widget_hide(actionarea);
1407     }
1408
1409     g_signal_connect (dialog, "response",
1410                       G_CALLBACK (GenericPopUpCallback),
1411                       (gpointer)(intptr_t) (dlgNr<<16 | i));
1412     g_signal_connect (dialog, "delete-event",
1413                       G_CALLBACK (GenericPopDown),
1414                       (gpointer)(intptr_t) dlgNr);
1415     shellUp[dlgNr]++;
1416
1417 #ifdef TODO_GTK
1418     Arg args[24];
1419     Widget popup, layout, dialog=NULL, edit=NULL, form,  last, b_ok, b_cancel, previousPane = NULL, textField = NULL, oldForm, oldLastRow, oldForeLast;
1420     Window root, child;
1421     int x, y, i, j, height=999, width=1, h, c, w, shrink=FALSE, stack = 0, box, chain;
1422     int win_x, win_y, maxWidth, maxTextWidth;
1423     unsigned int mask;
1424     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
1425     static char pane[6] = "paneX";
1426     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL, browse = NULL;
1427     Dimension bWidth = 50;
1428
1429     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
1430     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
1431         XtPopup(shells[dlgNr], XtGrabNone);
1432         shellUp[dlgNr] = True;
1433         return 0;
1434     }
1435
1436     dialogOptions[dlgNr] = option; // make available to callback
1437     // post currentOption globally, so Spin and Combo callbacks can already use it
1438     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1439     currentOption = option;
1440
1441     if(engineDlg) { // Settings popup for engine: format through heuristic
1442         int n = currentCps->nrOptions;
1443         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1444         height = n / width + 1;
1445         if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1446         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1447     }
1448      i = 0;
1449     XtSetArg(args[i], XtNresizable, True); i++;
1450     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
1451
1452     if(dlgNr == BoardWindow) popup = shellWidget; else
1453     popup = shells[dlgNr] =
1454       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
1455                                                            shells[parent], args, i);
1456
1457     layout =
1458       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
1459                             layoutArgs, XtNumber(layoutArgs));
1460     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[0], XtNbackground, dialogColor);
1461     XtSetValues(layout, args, 1);
1462
1463   for(c=0; c<width; c++) {
1464     pane[4] = 'A'+c;
1465     form =
1466       XtCreateManagedWidget(pane, formWidgetClass, layout,
1467                             formArgs, XtNumber(formArgs));
1468     j=0;
1469     XtSetArg(args[j], stack ? XtNfromVert : XtNfromHoriz, previousPane);  j++;
1470     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
1471     XtSetValues(form, args, j);
1472     lastrow = forelast = NULL;
1473     previousPane = form;
1474
1475     last = widest = NULL; anchor = lastrow;
1476     for(h=0; h<height || c == width-1; h++) {
1477         i = h + c*height;
1478         if(option[i].type == EndMark) break;
1479         if(option[i].type == -1) continue;
1480         lastrow = forelast;
1481         forelast = last;
1482         switch(option[i].type) {
1483           case Fractional:
1484             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1485             option[i].value = *(float*)option[i].target;
1486             goto tBox;
1487           case Spin:
1488             if(!engineDlg) option[i].value = *(int*)option[i].target;
1489             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1490           case TextBox:
1491           case FileName:
1492           case PathName:
1493           tBox:
1494             if(option[i].name[0]) { // prefixed by label with option name
1495                 j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1496                                        0 /* w */, textHeight /* h */, 0xC0 /* chain to left edge */);
1497                 XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1498                 XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1499                 texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1500             } else texts[h] = dialog = NULL; // kludge to position from left margin
1501             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1502             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1503             j = SetPositionAndSize(args, dialog, last, 1 /* border */,
1504                                    w /* w */, option[i].type == TextBox ? option[i].value : 0 /* h */, 0x91 /* chain full width */);
1505             if(option[i].type == TextBox) { // decorations for multi-line text-edits
1506                 if(option[i].min & T_VSCRL) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
1507                 if(option[i].min & T_HSCRL) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
1508                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
1509                 if(option[i].min & T_WRAP)  { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
1510                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1511                     if(!option[i].value) {    XtSetArg(args[j], XtNbottom, XtChainTop); j++;
1512                                               XtSetValues(dialog, args+j-2, 2);
1513                     }
1514                 }
1515             } else shrink = TRUE;
1516             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
1517             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
1518             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
1519             XtSetArg(args[j], XtNresizable, True);  j++;
1520             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
1521             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def : 
1522                                 engineDlg ? option[i].textValue : *(char**)option[i].target);  j++;
1523             edit = last;
1524             option[i].handle = (void*)
1525                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
1526             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup); // gets focus on mouse click
1527             if(option[i].min == 0 || option[i].type != TextBox)
1528                 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner)); // standard handler for <Enter> and <Tab>
1529
1530             if(option[i].type == TextBox || option[i].type == Fractional) break;
1531
1532             // add increment and decrement controls for spin
1533             if(option[i].type == FileName || option[i].type == PathName) {
1534                 msg = _("browse"); w = 0; // automatically scale to width of text
1535                 j = textHeight ? textHeight : 0;
1536             } else {
1537                 w = 20; msg = "+"; j = textHeight/2; // spin button
1538             }
1539             j = SetPositionAndSize(args, last, edit, 3 /* border */,
1540                                    w /* w */, j /* h */, 0x31 /* chain to right edge */);
1541             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1542             XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1543             if(w == 0) browse = edit;
1544
1545             if(option[i].type != Spin) break;
1546
1547             j = SetPositionAndSize(args, last, edit, 3 /* border */,
1548                                    20 /* w */, textHeight/2 /* h */, 0x31 /* chain to right edge */);
1549             XtSetArg(args[j], XtNvertDistance, -1);  j++;
1550             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1551             XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1552             break;
1553           case CheckBox:
1554             if(!engineDlg) option[i].value = *(Boolean*)option[i].target; // where checkbox callback uses it
1555             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
1556                                    textHeight/2 /* w */, textHeight/2 /* h */, 0xC0 /* chain both to left edge */);
1557             XtSetArg(args[j], XtNvertDistance, (textHeight+2)/4 + 3);  j++;
1558             XtSetArg(args[j], XtNstate, option[i].value);  j++;
1559             lastrow  = last;
1560             option[i].handle = (void*)
1561                 (last = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1562             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1563                                    option[i].max /* w */, textHeight /* h */, 0xC1 /* chain */);
1564             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1565             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1566             last = XtCreateManagedWidget("label", commandWidgetClass, form, args, j);
1567             // make clicking the text toggle checkbox
1568             XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1569             shrink = TRUE; // following buttons must get text height
1570             break;
1571           case Label:
1572             msg = option[i].name;
1573             if(!msg) break;
1574             chain = option[i].min;
1575             if(chain & SAME_ROW) forelast = lastrow; else shrink = FALSE;
1576             j = SetPositionAndSize(args, last, lastrow, (chain & 2) != 0 /* border */,
1577                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, chain | 2 /* chain */);
1578 #if ENABLE_NLS
1579             if(option[i].choice) XtSetArg(args[j], XtNfontSet, *(XFontSet*)option[i].choice), j++;
1580 #else
1581             if(option[i].choice) XtSetArg(args[j], XtNfont, (XFontStruct*)option[i].choice), j++;
1582 #endif
1583             XtSetArg(args[j], XtNresizable, False);  j++;
1584             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1585             XtSetArg(args[j], XtNlabel, _(msg));  j++;
1586             option[i].handle = (void*) (last = XtCreateManagedWidget("label", labelWidgetClass, form, args, j));
1587             if(option[i].target) // allow user to specify event handler for button presses
1588                 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1589             break;
1590           case SaveButton:
1591           case Button:
1592             if(option[i].min & SAME_ROW) {
1593                 chain = 0x31; // 0011.0001 = both left and right side to right edge
1594                 forelast = lastrow;
1595             } else chain = 0, shrink = FALSE;
1596             j = SetPositionAndSize(args, last, lastrow, 3 /* border */,
1597                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, option[i].min & 0xE | chain /* chain */);
1598             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1599             if(option[i].textValue) { // special for buttons of New Variant dialog
1600                 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
1601                                          || strstr(first.variants, VariantName(option[i].value))); j++;
1602                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1603             }
1604             option[i].handle = (void*)
1605                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1606             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !engineDlg) { // for the color picker default-reset
1607                 SetColor( *(char**) option[i-1].target, &option[i]);
1608                 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
1609             }
1610             XtAddCallback(last, XtNcallback, GenericCallback, (XtPointer)(intptr_t) i + (dlgNr<<16)); // invokes user callback
1611             if(option[i].textValue) SetColor( option[i].textValue, &option[i]); // for new-variant buttons
1612             break;
1613           case ComboBox:
1614             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1615                                    0 /* w */, textHeight /* h */, 0xC0 /* chain both sides to left edge */);
1616             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1617             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1618             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1619
1620             if(option[i].min & COMBO_CALLBACK) msg = _(option[i].name); else {
1621               if(!engineDlg) SetCurrentComboSelection(option+i);
1622               msg=_(((char**)option[i].choice)[option[i].value]);
1623             }
1624
1625             j = SetPositionAndSize(args, dialog, last, (option[i].min & 2) == 0 /* border */,
1626                                    option[i].max && !engineDlg ? option[i].max : 100 /* w */,
1627                                    textHeight /* h */, 0x91 /* chain */); // same row as its label!
1628             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1629             XtSetArg(args[j], XtNlabel, msg);  j++;
1630             shrink = TRUE;
1631             option[i].handle = (void*)
1632                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1633             CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, -1);
1634             values[i] = option[i].value;
1635             break;
1636           case ListBox:
1637             // Listbox goes in viewport, as needed for game list
1638             if(option[i].min & SAME_ROW) forelast = lastrow;
1639             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
1640                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1641             XtSetArg(args[j], XtNresizable, False);  j++;
1642             XtSetArg(args[j], XtNallowVert, True); j++; // scoll direction
1643             last =
1644               XtCreateManagedWidget("viewport", viewportWidgetClass, form, args, j);
1645             j = 0; // now list itself
1646             XtSetArg(args[j], XtNdefaultColumns, 1);  j++;
1647             XtSetArg(args[j], XtNforceColumns, True);  j++;
1648             XtSetArg(args[j], XtNverticalList, True);  j++;
1649             option[i].handle = (void*)
1650                 (edit = XtCreateManagedWidget("list", listWidgetClass, last, args, j));
1651             XawListChange(option[i].handle, option[i].target, 0, 0, True);
1652             XawListHighlight(option[i].handle, 0);
1653             scrollTranslations[25] = '0' + i;
1654             scrollTranslations[27] = 'A' + dlgNr;
1655             XtOverrideTranslations(edit, XtParseTranslationTable(scrollTranslations)); // for mouse-wheel
1656             break;
1657           case Graph:
1658             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1659                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1660             option[i].handle = (void*)
1661                 (last = XtCreateManagedWidget("graph", widgetClass, form, args, j));
1662             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1663                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1664             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1665             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1666             break;
1667           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1668             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1669             break;
1670           case BoxBegin:
1671             if(option[i].min & SAME_ROW) forelast = lastrow;
1672             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1673                                    0 /* w */, 0 /* h */, option[i].min /* chain */);
1674             XtSetArg(args[j], XtNorientation, XtorientHorizontal);  j++;
1675             XtSetArg(args[j], XtNvSpace, 0);                        j++;
1676             option[box=i].handle = (void*)
1677                 (last = XtCreateWidget("box", boxWidgetClass, form, args, j));
1678             oldForm = form; form = last; oldLastRow = lastrow; oldForeLast = forelast;
1679             lastrow = NULL; last = NULL;
1680             break;
1681           case DropDown:
1682             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1683                                    0 /* w */, 0 /* h */, 1 /* chain (always on same row) */);
1684             forelast = lastrow;
1685             msg = _(option[i].name); // write name on the menu button
1686             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1687             XtSetArg(args[j], XtNlabel, msg);  j++;
1688             option[i].handle = (void*)
1689                 (last = XtCreateManagedWidget(option[i].name, menuButtonWidgetClass, form, args, j));
1690             option[i].textValue = (char*) CreateComboPopup(last, option + i, i + 256*dlgNr, FALSE, -1);
1691             break;
1692           case BoxEnd:
1693             XtManageChildren(&form, 1);
1694             SqueezeIntoBox(&option[box], i-box, option[box].max);
1695             if(option[i].target) ((ButtonCallback*)option[i].target)(box); // callback that can make sizing decisions
1696             last = form; lastrow = oldLastRow; form = oldForm; forelast = oldForeLast;
1697             break;
1698           case Break:
1699             width++;
1700             height = i+1;
1701             stack = !(option[i].min & SAME_ROW);
1702             break;
1703         default:
1704             printf("GenericPopUp: unexpected case in switch.\n");
1705             break;
1706         }
1707     }
1708
1709     // make an attempt to align all spins and textbox controls
1710     maxWidth = maxTextWidth = 0;
1711     if(browse != NULL) {
1712         j=0;
1713         XtSetArg(args[j], XtNwidth, &bWidth);  j++;
1714         XtGetValues(browse, args, j);
1715     }
1716     for(h=0; h<height || c == width-1; h++) {
1717         i = h + c*height;
1718         if(option[i].type == EndMark) break;
1719         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1720                                   || option[i].type == PathName || option[i].type == FileName) {
1721             Dimension w;
1722             if(!texts[h]) continue;
1723             j=0;
1724             XtSetArg(args[j], XtNwidth, &w);  j++;
1725             XtGetValues(texts[h], args, j);
1726             if(option[i].type == Spin) {
1727                 if(w > maxWidth) maxWidth = w;
1728                 widest = texts[h];
1729             } else {
1730                 if(w > maxTextWidth) maxTextWidth = w;
1731                 if(!widest) widest = texts[h];
1732             }
1733         }
1734     }
1735     if(maxTextWidth + 110 < maxWidth)
1736          maxTextWidth = maxWidth - 110;
1737     else maxWidth = maxTextWidth + 110;
1738     for(h=0; h<height || c == width-1; h++) {
1739         i = h + c*height;
1740         if(option[i].type == EndMark) break;
1741         if(!texts[h]) continue; // Note: texts[h] can be undefined (giving errors in valgrind), but then both if's below will be false.
1742         j=0;
1743         if(option[i].type == Spin) {
1744             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1745             XtSetValues(texts[h], args, j);
1746         } else
1747         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1748             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1749             XtSetValues(texts[h], args, j);
1750             if(bWidth != 50 && (option[i].type == FileName || option[i].type == PathName)) {
1751                 int tWidth = (option[i].max ? option[i].max : 205) - 5 - bWidth;
1752                 j = 0;
1753                 XtSetArg(args[j], XtNwidth, tWidth);  j++;
1754                 XtSetValues(option[i].handle, args, j);
1755             }
1756         }
1757     }
1758   }
1759
1760     if(option[i].min & SAME_ROW) { // even when OK suppressed this EndMark bit can request chaining of last row to bottom
1761         for(j=i-1; option[j+1].min & SAME_ROW; j--) {
1762             XtSetArg(args[0], XtNtop, XtChainBottom);
1763             XtSetArg(args[1], XtNbottom, XtChainBottom);
1764             XtSetValues(option[j].handle, args, 2);
1765         }
1766         if((option[j].type == TextBox || option[j].type == ListBox) && option[j].name[0] == NULLCHAR) {
1767             Widget w = option[j].handle;
1768             if(option[j].type == ListBox) w = XtParent(w); // for listbox we must chain viewport
1769             XtSetArg(args[0], XtNbottom, XtChainBottom);
1770             XtSetValues(w, args, 1);
1771         }
1772         lastrow = forelast;
1773     } else shrink = FALSE, lastrow = last, last = widest ? widest : dialog;
1774     j = SetPositionAndSize(args, last, anchor ? anchor : lastrow, 3 /* border */,
1775                            0 /* w */, shrink ? textHeight : 0 /* h */, 0x37 /* chain: right, bottom and use both neighbors */);
1776
1777   if(!(option[i].min & NO_OK)) {
1778     option[i].handle = b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1779     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30001 + (dlgNr<<16)));
1780     if(!(option[i].min & NO_CANCEL)) {
1781       XtSetArg(args[1], XtNfromHoriz, b_ok); // overwrites!
1782       b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1783       XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30000 + (dlgNr<<16)));
1784     }
1785   }
1786
1787     XtRealizeWidget(popup);
1788     if(dlgNr != BoardWindow) { // assign close button, and position w.r.t. pointer, if not main window
1789         XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1790         snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1791         XtAugmentTranslations(popup, XtParseTranslationTable(def));
1792         XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1793                         &x, &y, &win_x, &win_y, &mask);
1794
1795         XtSetArg(args[0], XtNx, x - 10);
1796         XtSetArg(args[1], XtNy, y - 30);
1797         XtSetValues(popup, args, 2);
1798     }
1799     XtPopup(popup, modal ? XtGrabExclusive : XtGrabNone);
1800     shellUp[dlgNr]++; // count rather than flag
1801     previous = NULL;
1802     if(textField) SetFocus(textField, popup, (XEvent*) NULL, False);
1803     if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1804         j = 0;
1805         XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1806         XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1807         XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1808         XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1809         XtSetValues(popup, args, j);
1810     }
1811     RaiseWindow(dlgNr);
1812 #endif
1813     return 1; // tells caller he must do initialization (e.g. add specific event handlers)
1814 }
1815
1816 /* function called when the data to Paste is ready */
1817 #ifdef TODO_GTK
1818 static void
1819 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1820             Atom *type, XtPointer value, unsigned long *len, int *format)
1821 {
1822   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1823   if (value==NULL || *len==0) return; /* nothing selected, abort */
1824   name[*len]='\0';
1825   strncpy(buf, p, MSG_SIZ);
1826   q = strstr(p, "$name");
1827   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1828   SendString(buf);
1829   XtFree(value);
1830 }
1831 #endif
1832
1833 void
1834 SendText (int n)
1835 {
1836 #ifdef TODO_GTK
1837     char *p = (char*) textOptions[n].choice;
1838     if(strstr(p, "$name")) {
1839         XtGetSelectionValue(menuBarWidget,
1840           XA_PRIMARY, XA_STRING,
1841           /* (XtSelectionCallbackProc) */ SendTextCB,
1842           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1843           CurrentTime
1844         );
1845     } else SendString(p);
1846 #endif
1847 }
1848
1849 void
1850 SetInsertPos (Option *opt, int pos)
1851 {
1852 #ifdef TODO_GTK
1853     Arg args[16];
1854     XtSetArg(args[0], XtNinsertPosition, pos);
1855     XtSetValues(opt->handle, args, 1);
1856 //    SetFocus(opt->handle, shells[InputBoxDlg], NULL, False); // No idea why this does not work, and the following is needed:
1857 //    XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1858 #endif
1859 }
1860
1861 #ifdef TODO_GTK
1862 void
1863 TypeInProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1864 {   // can be used as handler for any text edit in any dialog (from GenericPopUp, that is)
1865     int n = prms[0][0] - '0';
1866     Widget sh = XtParent(XtParent(XtParent(w))); // popup shell
1867
1868     if(n<2) { // Enter or Esc typed from primed text widget: treat as if dialog OK or cancel button hit.
1869         int dlgNr; // figure out what the dialog number is by comparing shells (because we must pass it :( )
1870         for(dlgNr=0; dlgNr<NrOfDialogs; dlgNr++) if(shellUp[dlgNr] && shells[dlgNr] == sh)
1871             GenericCallback (w, (XtPointer)(intptr_t) (30000 + n + (dlgNr<<16)), NULL);
1872     }
1873 }
1874 #endif
1875
1876 void
1877 HardSetFocus (Option *opt)
1878 {
1879 #ifdef TODO_GTK
1880     XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1881 #endif
1882 }
1883
1884