d71d182cfe7dae3ecf3e7aa1f0668be45f6b596a
[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 int
1017 GenericPopUp (Option *option, char *title, DialogClass dlgNr, DialogClass parent, int modal, int topLevel)
1018 {    
1019     GtkWidget *dialog = NULL;
1020     gint       w;
1021     GtkWidget *label;
1022     GtkWidget *box;
1023     GtkWidget *checkbutton;
1024     GtkWidget *entry;
1025     GtkWidget *hbox;    
1026     GtkWidget *button;
1027     GtkWidget *table;
1028     GtkWidget *spinner;    
1029     GtkAdjustment *spinner_adj;
1030     GtkWidget *combobox;
1031     GtkWidget *textview;
1032     GtkTextBuffer *textbuffer;           
1033     GdkColor color;     
1034     GtkWidget *actionarea;
1035     GtkWidget *sw;    
1036     GtkWidget *list;    
1037     GtkWidget *graph;    
1038     GtkWidget *menuButton;    
1039     GtkWidget *menuBar;    
1040     GtkWidget *menu;    
1041
1042     int i, j, arraysize, left, top, height=999, width=1, boxStart;    
1043     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
1044     
1045     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
1046
1047     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
1048         gtk_widget_show(shells[dlgNr]);
1049         shellUp[dlgNr] = True;
1050         return 0;
1051     }
1052
1053     dialogOptions[dlgNr] = option; // make available to callback
1054     // post currentOption globally, so Spin and Combo callbacks can already use it
1055     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1056     currentOption = option;
1057
1058     if(engineDlg) { // Settings popup for engine: format through heuristic
1059         int n = currentCps->nrOptions;
1060         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1061         height = n / width + 1;
1062 //      if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1063         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1064     }    
1065
1066     parents[dlgNr] = parent;
1067 #ifdef TODO_GTK
1068     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
1069
1070     if(dlgNr == BoardWindow) dialog = shellWidget; else
1071     dialog =
1072       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
1073                                                            shells[parent], args, i);
1074 #endif
1075     dialog = gtk_dialog_new_with_buttons( title,
1076                                       GTK_WINDOW(shells[parent]),
1077                                       GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR |
1078                                           (modal ? GTK_DIALOG_MODAL : 0),
1079                                       GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1080                                       GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1081                                       NULL );      
1082
1083     shells[dlgNr] = dialog;
1084     box = gtk_dialog_get_content_area( GTK_DIALOG( dialog ) );
1085     gtk_box_set_spacing(GTK_BOX(box), 5);    
1086
1087     arraysize = 0;
1088     for (i=0;option[i].type != EndMark;i++) {
1089         arraysize++;   
1090     }
1091
1092     table = gtk_table_new(arraysize, 3, FALSE);
1093     gtk_table_set_col_spacings(GTK_TABLE(table), 20);
1094     left = 0;
1095     top = -1;    
1096
1097     for (i=0;option[i].type != EndMark;i++) {
1098         if(option[i].type == -1) continue;
1099         top++;
1100         if (top >= height) {
1101             top = 0;
1102             left = left + 3;
1103             gtk_table_resize(GTK_TABLE(table), height, left + 3);   
1104         }                
1105         switch(option[i].type) {
1106           case Fractional:           
1107             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1108             option[i].value = *(float*)option[i].target;
1109             goto tBox;
1110           case Spin:
1111             if(!currentCps) option[i].value = *(int*)option[i].target;
1112             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1113           case TextBox:
1114           case FileName:            
1115           case PathName:
1116           tBox:
1117             label = gtk_label_new(option[i].name);
1118             /* Left Justify */
1119             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1120
1121             /* width */
1122             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1123             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1124
1125             if (option[i].type==TextBox && option[i].value > 80){                
1126                 textview = gtk_text_view_new();                
1127                 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(textview), option[i].min & T_WRAP ? GTK_WRAP_WORD : GTK_WRAP_NONE);
1128 #ifdef TODO_GTK
1129                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
1130                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1131 #endif
1132                 /* add textview to scrolled window so we have vertical scroll bar */
1133                 sw = gtk_scrolled_window_new(NULL, NULL);
1134                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw),
1135                                                option[i].min & T_HSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_AUTOMATIC,
1136                                                option[i].min & T_VSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_NEVER);
1137                 gtk_container_add(GTK_CONTAINER(sw), textview);
1138                 gtk_widget_set_size_request(GTK_WIDGET(sw), w, -1);
1139  
1140                 textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));                
1141                 gtk_widget_set_size_request(textview, -1, option[i].min);
1142                 /* check if label is empty */ 
1143                 if (strcmp(option[i].name,"") != 0) {
1144                     gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+1, top, top+1);
1145                     gtk_table_attach_defaults(GTK_TABLE(table), sw, left+1, left+3, top, top+1);
1146                 }
1147                 else {
1148                     /* no label so let textview occupy all columns */
1149                     gtk_table_attach_defaults(GTK_TABLE(table), sw, left, left+3, top, top+1);
1150                 } 
1151                 if ( *(char**)option[i].target != NULL )
1152                     gtk_text_buffer_set_text (textbuffer, *(char**)option[i].target, -1);
1153                 else
1154                     gtk_text_buffer_set_text (textbuffer, "", -1); 
1155                 option[i].handle = (void*)textbuffer;
1156                 break; 
1157             }
1158
1159             entry = gtk_entry_new();
1160
1161             if (option[i].type==Spin || option[i].type==Fractional)
1162                 gtk_entry_set_text (GTK_ENTRY (entry), def);
1163             else if (currentCps)
1164                 gtk_entry_set_text (GTK_ENTRY (entry), option[i].textValue);
1165             else if ( *(char**)option[i].target != NULL )
1166                 gtk_entry_set_text (GTK_ENTRY (entry), *(char**)option[i].target);            
1167
1168             //gtk_entry_set_width_chars (GTK_ENTRY (entry), 18);
1169             gtk_entry_set_max_length (GTK_ENTRY (entry), w);
1170
1171             // left, right, top, bottom
1172             if (strcmp(option[i].name, "") != 0) gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+1, top, top+1);
1173             //gtk_table_attach_defaults(GTK_TABLE(table), entry, 1, 2, i, i+1);            
1174
1175             if (option[i].type == Spin) {                
1176                 spinner_adj = (GtkAdjustment *) gtk_adjustment_new (option[i].value, option[i].min, option[i].max, 1.0, 0.0, 0.0);
1177                 spinner = gtk_spin_button_new (spinner_adj, 1.0, 0);
1178                 gtk_table_attach_defaults(GTK_TABLE(table), spinner, left+1, left+3, top, top+1);
1179                 option[i].handle = (void*)spinner;
1180             }
1181             else if (option[i].type == FileName || option[i].type == PathName) {
1182                 gtk_table_attach_defaults(GTK_TABLE(table), entry, left+1, left+2, top, top+1);
1183                 button = gtk_button_new_with_label ("Browse");
1184                 gtk_table_attach_defaults(GTK_TABLE(table), button, left+2, left+3, top, top+1);
1185                 g_signal_connect (button, "clicked", G_CALLBACK (BrowseGTK), (gpointer)(intptr_t) i);
1186                 option[i].handle = (void*)entry;                 
1187             }
1188             else {
1189                 hbox = gtk_hbox_new (FALSE, 0);
1190                 if (strcmp(option[i].name, "") == 0)
1191                     gtk_table_attach_defaults(GTK_TABLE(table), hbox, left, left+3, top, top+1);
1192                 else
1193                     gtk_table_attach_defaults(GTK_TABLE(table), hbox, left+1, left+3, top, top+1);
1194                 gtk_box_pack_start (GTK_BOX (hbox), entry, TRUE, TRUE, 0);
1195                 //gtk_table_attach_defaults(GTK_TABLE(table), entry, left+1, left+3, top, top+1); 
1196                 option[i].handle = (void*)entry;
1197             }                                   
1198             break;
1199           case CheckBox:
1200             checkbutton = gtk_check_button_new_with_label(option[i].name);            
1201             if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1202             gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbutton), option[i].value);
1203             gtk_table_attach_defaults(GTK_TABLE(table), checkbutton, left, left+3, top, top+1);                            
1204             option[i].handle = (void *)checkbutton;            
1205             break; 
1206           case Label:            
1207             option[i].handle = (void *) (label = gtk_label_new(option[i].name));
1208             /* Left Justify */
1209             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1210             if(option[i].min & BORDER) {
1211                 GtkWidget *frame = gtk_frame_new(NULL);
1212                 gtk_container_add(GTK_CONTAINER(frame), label);
1213                 label = frame;
1214             }
1215             gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+3, top, top+1);                       
1216             break;
1217           case SaveButton:
1218           case Button:
1219             button = gtk_button_new_with_label (option[i].name);
1220
1221             /* set button color on view board dialog */
1222             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1223                 gdk_color_parse( *(char**) option[i-1].target, &color );
1224                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1225             }
1226
1227             /* set button color on new variant dialog */
1228             if(option[i].textValue) {
1229                 gdk_color_parse( option[i].textValue, &color );
1230                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1231                 gtk_widget_set_sensitive(button, appData.noChessProgram || option[i].value < 0
1232                                          || strstr(first.variants, VariantName(option[i].value)));                 
1233             }
1234             
1235             if (!(option[i].min & 1)) {
1236                if(option[i].textValue) // for new variant dialog give buttons equal space so they line up nicely
1237                    hbox = gtk_hbox_new (TRUE, 0);
1238                else
1239                    hbox = gtk_hbox_new (FALSE, 0);
1240                // if only 1 button then put it in 1st column of table only
1241                if ( (arraysize >= (i+1)) && option[i+1].type != Button )
1242                    gtk_table_attach_defaults(GTK_TABLE(table), hbox, left, left+1, top, top+1);
1243                else
1244                    gtk_table_attach_defaults(GTK_TABLE(table), hbox, left, left+3, top, top+1);
1245             }            
1246             gtk_box_pack_start (GTK_BOX (hbox), button, TRUE, TRUE, 0);           
1247             g_signal_connect (button, "clicked", G_CALLBACK (GenericCallback), (gpointer)(intptr_t) i + (dlgNr<<16));           
1248             option[i].handle = (void*)button;            
1249             break;  
1250           case ComboBox:
1251             label = gtk_label_new(option[i].name);
1252             /* Left Justify */
1253             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1254             gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+1, top, top+1);
1255
1256             combobox = gtk_combo_box_new_text();            
1257
1258             for(j=0;;j++) {
1259                if (  ((char **) option[i].textValue)[j] == NULL) break;
1260                gtk_combo_box_append_text(GTK_COMBO_BOX(combobox), ((char **) option[i].choice)[j]);                          
1261             }
1262
1263             if(currentCps)
1264                 option[i].choice = (char**) option[i].textValue;
1265             else {
1266                 for(j=0; option[i].choice[j]; j++) {                
1267                     if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, ((char**)(option[i].textValue))[j])) break;
1268                 }
1269                 /* If choice is NULL set to first */
1270                 if (option[i].choice[j] == NULL)
1271                    option[i].value = 0;
1272                 else 
1273                    option[i].value = j;
1274             }
1275
1276             //option[i].value = j + (option[i].choice[j] == NULL);            
1277             gtk_combo_box_set_active(GTK_COMBO_BOX(combobox), option[i].value); 
1278             
1279
1280             hbox = gtk_hbox_new (FALSE, 0);
1281             gtk_table_attach_defaults(GTK_TABLE(table), hbox, left+1, left+3, top, top+1);
1282             gtk_box_pack_start (GTK_BOX (hbox), combobox, TRUE, TRUE, 0);
1283             //gtk_table_attach_defaults(GTK_TABLE(table), combobox, 1, 2, i, i+1);
1284
1285             g_signal_connect(G_OBJECT(combobox), "changed", G_CALLBACK(ComboSelect), (gpointer) (intptr_t) (i + 256*dlgNr));
1286
1287             option[i].handle = (void*)combobox;
1288             values[i] = option[i].value;            
1289             break;
1290           case ListBox:
1291             {
1292                 GtkCellRenderer *renderer;
1293                 GtkTreeViewColumn *column;
1294                 GtkListStore *store;
1295
1296                 option[i].handle = (void *) (list = gtk_tree_view_new());
1297                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(list), FALSE);
1298                 renderer = gtk_cell_renderer_text_new();
1299                 column = gtk_tree_view_column_new_with_attributes("List Items", renderer, "text", 0, NULL);
1300                 gtk_tree_view_append_column(GTK_TREE_VIEW(list), column);
1301                 store = gtk_list_store_new(1, G_TYPE_STRING); // 1 column of text
1302                 gtk_tree_view_set_model(GTK_TREE_VIEW(list), GTK_TREE_MODEL(store));
1303                 g_object_unref(store);
1304                 LoadListBox(&option[i], "?", -1, -1);
1305                 HighlightListBoxItem(&option[i], 0);
1306
1307                 /* add listbox to scrolled window so we have vertical scroll bar */
1308                 sw = gtk_scrolled_window_new(NULL, NULL);
1309                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
1310                 gtk_container_add(GTK_CONTAINER(sw), list);
1311                 gtk_widget_set_size_request(GTK_WIDGET(sw), w, 300);
1312  
1313                 /* never has label, so let listbox occupy all columns */
1314                 gtk_table_attach_defaults(GTK_TABLE(table), sw, left, left+3, top, top+1);
1315             }
1316             break;
1317           case Graph:
1318             option[i].handle = (void*) (graph = gtk_drawing_area_new());
1319             gtk_widget_set_size_request(graph, option[i].max, option[i].value);
1320 //          gtk_drawing_area_size(graph, option[i].max, option[i].value);
1321             gtk_table_attach_defaults(GTK_TABLE(table), graph, left, left+3, top, top+1);
1322             g_signal_connect (graph, "expose-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1323             gtk_widget_add_events(GTK_WIDGET(graph), GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK);
1324             g_signal_connect (graph, "button-press-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1325             g_signal_connect (graph, "button-release-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1326             g_signal_connect (graph, "motion-notify-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1327
1328 #ifdef TODO_GTK
1329             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1330                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1331             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1332 #endif
1333             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1334             break;
1335 #ifdef TODO_GTK
1336           case Graph:
1337             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1338                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1339             option[i].handle = (void*)
1340                 (last = XtCreateManagedWidget("graph", widgetClass, form, args, j));
1341             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1342                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1343             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1344             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1345             break;
1346           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1347             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1348             break;
1349           case BoxBegin:
1350             if(option[i].min & SAME_ROW) forelast = lastrow;
1351             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1352                                    0 /* w */, 0 /* h */, option[i].min /* chain */);
1353             XtSetArg(args[j], XtNorientation, XtorientHorizontal);  j++;
1354             XtSetArg(args[j], XtNvSpace, 0);                        j++;
1355             option[box=i].handle = (void*)
1356                 (last = XtCreateWidget("box", boxWidgetClass, form, args, j));
1357             oldForm = form; form = last; oldLastRow = lastrow; oldForeLast = forelast;
1358             lastrow = NULL; last = NULL;
1359             break;
1360 #endif
1361           case DropDown:
1362             msg = _(option[i].name); // write name on the menu button
1363 //          XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1364 //          XtSetArg(args[j], XtNlabel, msg);  j++;
1365             option[i].handle = (void*)
1366                 (menuButton = gtk_menu_item_new_with_label(msg));
1367             gtk_widget_show(menuButton);
1368             option[i].textValue = (char*) (menu = CreateMenuPopup(option + i, i + 256*dlgNr, -1));
1369             gtk_menu_item_set_submenu(GTK_MENU_ITEM (menuButton), menu);
1370             gtk_menu_bar_append (GTK_MENU_BAR (menuBar), menuButton);
1371
1372             break;
1373           case BarBegin:
1374             menuBar = gtk_menu_bar_new ();
1375             gtk_widget_show (menuBar);
1376           case BoxBegin:
1377             boxStart = i;
1378             break;
1379           case BarEnd:
1380             gtk_table_attach_defaults(GTK_TABLE(table), menuBar, left, left+1, top, top+1);
1381           case BoxEnd:
1382 //          XtManageChildren(&form, 1);
1383 //          SqueezeIntoBox(&option[boxStart], i-boxStart, option[boxStart].max);
1384             if(option[i].target) ((ButtonCallback*)option[i].target)(boxStart); // callback that can make sizing decisions
1385             break;
1386           case Break:
1387             if(option[i].min & SAME_ROW) top = height; // force next option to start in a new column
1388             break; 
1389         default:
1390             printf("GenericPopUp: unexpected case in switch. i=%d type=%d name=%s.\n", i, option[i].type, option[i].name);
1391             break;
1392         }        
1393     }
1394
1395     gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox),
1396                         table, TRUE, TRUE, 0);    
1397
1398     /* Show dialog */
1399     gtk_widget_show_all( dialog );    
1400
1401     /* hide OK/cancel buttons */
1402     if((option[i].min & 2)) {
1403         actionarea = gtk_dialog_get_action_area(GTK_DIALOG(dialog));
1404         gtk_widget_hide(actionarea);
1405     }
1406
1407     g_signal_connect (dialog, "response",
1408                       G_CALLBACK (GenericPopUpCallback),
1409                       (gpointer)(intptr_t) (dlgNr<<16 | i));
1410     g_signal_connect (dialog, "delete-event",
1411                       G_CALLBACK (GenericPopDown),
1412                       (gpointer)(intptr_t) dlgNr);
1413     g_signal_connect (dialog, "destroy-event",
1414                       G_CALLBACK (GenericPopDown),
1415                       (gpointer)(intptr_t) dlgNr);
1416     shellUp[dlgNr]++;
1417
1418 #ifdef TODO_GTK
1419     Arg args[24];
1420     Widget popup, layout, dialog=NULL, edit=NULL, form,  last, b_ok, b_cancel, previousPane = NULL, textField = NULL, oldForm, oldLastRow, oldForeLast;
1421     Window root, child;
1422     int x, y, i, j, height=999, width=1, h, c, w, shrink=FALSE, stack = 0, box, chain;
1423     int win_x, win_y, maxWidth, maxTextWidth;
1424     unsigned int mask;
1425     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
1426     static char pane[6] = "paneX";
1427     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL, browse = NULL;
1428     Dimension bWidth = 50;
1429
1430     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
1431     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
1432         XtPopup(shells[dlgNr], XtGrabNone);
1433         shellUp[dlgNr] = True;
1434         return 0;
1435     }
1436
1437     dialogOptions[dlgNr] = option; // make available to callback
1438     // post currentOption globally, so Spin and Combo callbacks can already use it
1439     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1440     currentOption = option;
1441
1442     if(engineDlg) { // Settings popup for engine: format through heuristic
1443         int n = currentCps->nrOptions;
1444         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1445         height = n / width + 1;
1446         if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1447         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1448     }
1449      i = 0;
1450     XtSetArg(args[i], XtNresizable, True); i++;
1451     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
1452
1453     if(dlgNr == BoardWindow) popup = shellWidget; else
1454     popup = shells[dlgNr] =
1455       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
1456                                                            shells[parent], args, i);
1457
1458     layout =
1459       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
1460                             layoutArgs, XtNumber(layoutArgs));
1461     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[0], XtNbackground, dialogColor);
1462     XtSetValues(layout, args, 1);
1463
1464   for(c=0; c<width; c++) {
1465     pane[4] = 'A'+c;
1466     form =
1467       XtCreateManagedWidget(pane, formWidgetClass, layout,
1468                             formArgs, XtNumber(formArgs));
1469     j=0;
1470     XtSetArg(args[j], stack ? XtNfromVert : XtNfromHoriz, previousPane);  j++;
1471     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
1472     XtSetValues(form, args, j);
1473     lastrow = forelast = NULL;
1474     previousPane = form;
1475
1476     last = widest = NULL; anchor = lastrow;
1477     for(h=0; h<height || c == width-1; h++) {
1478         i = h + c*height;
1479         if(option[i].type == EndMark) break;
1480         if(option[i].type == -1) continue;
1481         lastrow = forelast;
1482         forelast = last;
1483         switch(option[i].type) {
1484           case Fractional:
1485             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1486             option[i].value = *(float*)option[i].target;
1487             goto tBox;
1488           case Spin:
1489             if(!engineDlg) option[i].value = *(int*)option[i].target;
1490             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1491           case TextBox:
1492           case FileName:
1493           case PathName:
1494           tBox:
1495             if(option[i].name[0]) { // prefixed by label with option name
1496                 j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1497                                        0 /* w */, textHeight /* h */, 0xC0 /* chain to left edge */);
1498                 XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1499                 XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1500                 texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1501             } else texts[h] = dialog = NULL; // kludge to position from left margin
1502             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1503             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1504             j = SetPositionAndSize(args, dialog, last, 1 /* border */,
1505                                    w /* w */, option[i].type == TextBox ? option[i].value : 0 /* h */, 0x91 /* chain full width */);
1506             if(option[i].type == TextBox) { // decorations for multi-line text-edits
1507                 if(option[i].min & T_VSCRL) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
1508                 if(option[i].min & T_HSCRL) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
1509                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
1510                 if(option[i].min & T_WRAP)  { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
1511                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1512                     if(!option[i].value) {    XtSetArg(args[j], XtNbottom, XtChainTop); j++;
1513                                               XtSetValues(dialog, args+j-2, 2);
1514                     }
1515                 }
1516             } else shrink = TRUE;
1517             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
1518             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
1519             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
1520             XtSetArg(args[j], XtNresizable, True);  j++;
1521             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
1522             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def : 
1523                                 engineDlg ? option[i].textValue : *(char**)option[i].target);  j++;
1524             edit = last;
1525             option[i].handle = (void*)
1526                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
1527             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup); // gets focus on mouse click
1528             if(option[i].min == 0 || option[i].type != TextBox)
1529                 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner)); // standard handler for <Enter> and <Tab>
1530
1531             if(option[i].type == TextBox || option[i].type == Fractional) break;
1532
1533             // add increment and decrement controls for spin
1534             if(option[i].type == FileName || option[i].type == PathName) {
1535                 msg = _("browse"); w = 0; // automatically scale to width of text
1536                 j = textHeight ? textHeight : 0;
1537             } else {
1538                 w = 20; msg = "+"; j = textHeight/2; // spin button
1539             }
1540             j = SetPositionAndSize(args, last, edit, 3 /* border */,
1541                                    w /* w */, j /* h */, 0x31 /* chain to right edge */);
1542             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1543             XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1544             if(w == 0) browse = edit;
1545
1546             if(option[i].type != Spin) break;
1547
1548             j = SetPositionAndSize(args, last, edit, 3 /* border */,
1549                                    20 /* w */, textHeight/2 /* h */, 0x31 /* chain to right edge */);
1550             XtSetArg(args[j], XtNvertDistance, -1);  j++;
1551             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1552             XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1553             break;
1554           case CheckBox:
1555             if(!engineDlg) option[i].value = *(Boolean*)option[i].target; // where checkbox callback uses it
1556             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
1557                                    textHeight/2 /* w */, textHeight/2 /* h */, 0xC0 /* chain both to left edge */);
1558             XtSetArg(args[j], XtNvertDistance, (textHeight+2)/4 + 3);  j++;
1559             XtSetArg(args[j], XtNstate, option[i].value);  j++;
1560             lastrow  = last;
1561             option[i].handle = (void*)
1562                 (last = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1563             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1564                                    option[i].max /* w */, textHeight /* h */, 0xC1 /* chain */);
1565             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1566             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1567             last = XtCreateManagedWidget("label", commandWidgetClass, form, args, j);
1568             // make clicking the text toggle checkbox
1569             XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1570             shrink = TRUE; // following buttons must get text height
1571             break;
1572           case Label:
1573             msg = option[i].name;
1574             if(!msg) break;
1575             chain = option[i].min;
1576             if(chain & SAME_ROW) forelast = lastrow; else shrink = FALSE;
1577             j = SetPositionAndSize(args, last, lastrow, (chain & 2) != 0 /* border */,
1578                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, chain | 2 /* chain */);
1579 #if ENABLE_NLS
1580             if(option[i].choice) XtSetArg(args[j], XtNfontSet, *(XFontSet*)option[i].choice), j++;
1581 #else
1582             if(option[i].choice) XtSetArg(args[j], XtNfont, (XFontStruct*)option[i].choice), j++;
1583 #endif
1584             XtSetArg(args[j], XtNresizable, False);  j++;
1585             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1586             XtSetArg(args[j], XtNlabel, _(msg));  j++;
1587             option[i].handle = (void*) (last = XtCreateManagedWidget("label", labelWidgetClass, form, args, j));
1588             if(option[i].target) // allow user to specify event handler for button presses
1589                 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1590             break;
1591           case SaveButton:
1592           case Button:
1593             if(option[i].min & SAME_ROW) {
1594                 chain = 0x31; // 0011.0001 = both left and right side to right edge
1595                 forelast = lastrow;
1596             } else chain = 0, shrink = FALSE;
1597             j = SetPositionAndSize(args, last, lastrow, 3 /* border */,
1598                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, option[i].min & 0xE | chain /* chain */);
1599             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1600             if(option[i].textValue) { // special for buttons of New Variant dialog
1601                 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
1602                                          || strstr(first.variants, VariantName(option[i].value))); j++;
1603                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1604             }
1605             option[i].handle = (void*)
1606                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1607             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !engineDlg) { // for the color picker default-reset
1608                 SetColor( *(char**) option[i-1].target, &option[i]);
1609                 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
1610             }
1611             XtAddCallback(last, XtNcallback, GenericCallback, (XtPointer)(intptr_t) i + (dlgNr<<16)); // invokes user callback
1612             if(option[i].textValue) SetColor( option[i].textValue, &option[i]); // for new-variant buttons
1613             break;
1614           case ComboBox:
1615             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1616                                    0 /* w */, textHeight /* h */, 0xC0 /* chain both sides to left edge */);
1617             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1618             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1619             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1620
1621             if(option[i].min & COMBO_CALLBACK) msg = _(option[i].name); else {
1622               if(!engineDlg) SetCurrentComboSelection(option+i);
1623               msg=_(((char**)option[i].choice)[option[i].value]);
1624             }
1625
1626             j = SetPositionAndSize(args, dialog, last, (option[i].min & 2) == 0 /* border */,
1627                                    option[i].max && !engineDlg ? option[i].max : 100 /* w */,
1628                                    textHeight /* h */, 0x91 /* chain */); // same row as its label!
1629             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1630             XtSetArg(args[j], XtNlabel, msg);  j++;
1631             shrink = TRUE;
1632             option[i].handle = (void*)
1633                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1634             CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, -1);
1635             values[i] = option[i].value;
1636             break;
1637           case ListBox:
1638             // Listbox goes in viewport, as needed for game list
1639             if(option[i].min & SAME_ROW) forelast = lastrow;
1640             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
1641                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1642             XtSetArg(args[j], XtNresizable, False);  j++;
1643             XtSetArg(args[j], XtNallowVert, True); j++; // scoll direction
1644             last =
1645               XtCreateManagedWidget("viewport", viewportWidgetClass, form, args, j);
1646             j = 0; // now list itself
1647             XtSetArg(args[j], XtNdefaultColumns, 1);  j++;
1648             XtSetArg(args[j], XtNforceColumns, True);  j++;
1649             XtSetArg(args[j], XtNverticalList, True);  j++;
1650             option[i].handle = (void*)
1651                 (edit = XtCreateManagedWidget("list", listWidgetClass, last, args, j));
1652             XawListChange(option[i].handle, option[i].target, 0, 0, True);
1653             XawListHighlight(option[i].handle, 0);
1654             scrollTranslations[25] = '0' + i;
1655             scrollTranslations[27] = 'A' + dlgNr;
1656             XtOverrideTranslations(edit, XtParseTranslationTable(scrollTranslations)); // for mouse-wheel
1657             break;
1658           case Graph:
1659             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1660                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1661             option[i].handle = (void*)
1662                 (last = XtCreateManagedWidget("graph", widgetClass, form, args, j));
1663             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1664                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1665             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1666             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1667             break;
1668           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1669             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1670             break;
1671           case BoxBegin:
1672             if(option[i].min & SAME_ROW) forelast = lastrow;
1673             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1674                                    0 /* w */, 0 /* h */, option[i].min /* chain */);
1675             XtSetArg(args[j], XtNorientation, XtorientHorizontal);  j++;
1676             XtSetArg(args[j], XtNvSpace, 0);                        j++;
1677             option[box=i].handle = (void*)
1678                 (last = XtCreateWidget("box", boxWidgetClass, form, args, j));
1679             oldForm = form; form = last; oldLastRow = lastrow; oldForeLast = forelast;
1680             lastrow = NULL; last = NULL;
1681             break;
1682           case DropDown:
1683             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1684                                    0 /* w */, 0 /* h */, 1 /* chain (always on same row) */);
1685             forelast = lastrow;
1686             msg = _(option[i].name); // write name on the menu button
1687             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1688             XtSetArg(args[j], XtNlabel, msg);  j++;
1689             option[i].handle = (void*)
1690                 (last = XtCreateManagedWidget(option[i].name, menuButtonWidgetClass, form, args, j));
1691             option[i].textValue = (char*) CreateComboPopup(last, option + i, i + 256*dlgNr, FALSE, -1);
1692             break;
1693           case BoxEnd:
1694             XtManageChildren(&form, 1);
1695             SqueezeIntoBox(&option[box], i-box, option[box].max);
1696             if(option[i].target) ((ButtonCallback*)option[i].target)(box); // callback that can make sizing decisions
1697             last = form; lastrow = oldLastRow; form = oldForm; forelast = oldForeLast;
1698             break;
1699           case Break:
1700             width++;
1701             height = i+1;
1702             stack = !(option[i].min & SAME_ROW);
1703             break;
1704         default:
1705             printf("GenericPopUp: unexpected case in switch.\n");
1706             break;
1707         }
1708     }
1709
1710     // make an attempt to align all spins and textbox controls
1711     maxWidth = maxTextWidth = 0;
1712     if(browse != NULL) {
1713         j=0;
1714         XtSetArg(args[j], XtNwidth, &bWidth);  j++;
1715         XtGetValues(browse, args, j);
1716     }
1717     for(h=0; h<height || c == width-1; h++) {
1718         i = h + c*height;
1719         if(option[i].type == EndMark) break;
1720         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1721                                   || option[i].type == PathName || option[i].type == FileName) {
1722             Dimension w;
1723             if(!texts[h]) continue;
1724             j=0;
1725             XtSetArg(args[j], XtNwidth, &w);  j++;
1726             XtGetValues(texts[h], args, j);
1727             if(option[i].type == Spin) {
1728                 if(w > maxWidth) maxWidth = w;
1729                 widest = texts[h];
1730             } else {
1731                 if(w > maxTextWidth) maxTextWidth = w;
1732                 if(!widest) widest = texts[h];
1733             }
1734         }
1735     }
1736     if(maxTextWidth + 110 < maxWidth)
1737          maxTextWidth = maxWidth - 110;
1738     else maxWidth = maxTextWidth + 110;
1739     for(h=0; h<height || c == width-1; h++) {
1740         i = h + c*height;
1741         if(option[i].type == EndMark) break;
1742         if(!texts[h]) continue; // Note: texts[h] can be undefined (giving errors in valgrind), but then both if's below will be false.
1743         j=0;
1744         if(option[i].type == Spin) {
1745             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1746             XtSetValues(texts[h], args, j);
1747         } else
1748         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1749             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1750             XtSetValues(texts[h], args, j);
1751             if(bWidth != 50 && (option[i].type == FileName || option[i].type == PathName)) {
1752                 int tWidth = (option[i].max ? option[i].max : 205) - 5 - bWidth;
1753                 j = 0;
1754                 XtSetArg(args[j], XtNwidth, tWidth);  j++;
1755                 XtSetValues(option[i].handle, args, j);
1756             }
1757         }
1758     }
1759   }
1760
1761     if(option[i].min & SAME_ROW) { // even when OK suppressed this EndMark bit can request chaining of last row to bottom
1762         for(j=i-1; option[j+1].min & SAME_ROW; j--) {
1763             XtSetArg(args[0], XtNtop, XtChainBottom);
1764             XtSetArg(args[1], XtNbottom, XtChainBottom);
1765             XtSetValues(option[j].handle, args, 2);
1766         }
1767         if((option[j].type == TextBox || option[j].type == ListBox) && option[j].name[0] == NULLCHAR) {
1768             Widget w = option[j].handle;
1769             if(option[j].type == ListBox) w = XtParent(w); // for listbox we must chain viewport
1770             XtSetArg(args[0], XtNbottom, XtChainBottom);
1771             XtSetValues(w, args, 1);
1772         }
1773         lastrow = forelast;
1774     } else shrink = FALSE, lastrow = last, last = widest ? widest : dialog;
1775     j = SetPositionAndSize(args, last, anchor ? anchor : lastrow, 3 /* border */,
1776                            0 /* w */, shrink ? textHeight : 0 /* h */, 0x37 /* chain: right, bottom and use both neighbors */);
1777
1778   if(!(option[i].min & NO_OK)) {
1779     option[i].handle = b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1780     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30001 + (dlgNr<<16)));
1781     if(!(option[i].min & NO_CANCEL)) {
1782       XtSetArg(args[1], XtNfromHoriz, b_ok); // overwrites!
1783       b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1784       XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30000 + (dlgNr<<16)));
1785     }
1786   }
1787
1788     XtRealizeWidget(popup);
1789     if(dlgNr != BoardWindow) { // assign close button, and position w.r.t. pointer, if not main window
1790         XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1791         snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1792         XtAugmentTranslations(popup, XtParseTranslationTable(def));
1793         XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1794                         &x, &y, &win_x, &win_y, &mask);
1795
1796         XtSetArg(args[0], XtNx, x - 10);
1797         XtSetArg(args[1], XtNy, y - 30);
1798         XtSetValues(popup, args, 2);
1799     }
1800     XtPopup(popup, modal ? XtGrabExclusive : XtGrabNone);
1801     shellUp[dlgNr]++; // count rather than flag
1802     previous = NULL;
1803     if(textField) SetFocus(textField, popup, (XEvent*) NULL, False);
1804     if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1805         j = 0;
1806         XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1807         XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1808         XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1809         XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1810         XtSetValues(popup, args, j);
1811     }
1812     RaiseWindow(dlgNr);
1813 #endif
1814     return 1; // tells caller he must do initialization (e.g. add specific event handlers)
1815 }
1816
1817 /* function called when the data to Paste is ready */
1818 #ifdef TODO_GTK
1819 static void
1820 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1821             Atom *type, XtPointer value, unsigned long *len, int *format)
1822 {
1823   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1824   if (value==NULL || *len==0) return; /* nothing selected, abort */
1825   name[*len]='\0';
1826   strncpy(buf, p, MSG_SIZ);
1827   q = strstr(p, "$name");
1828   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1829   SendString(buf);
1830   XtFree(value);
1831 }
1832 #endif
1833
1834 void
1835 SendText (int n)
1836 {
1837 #ifdef TODO_GTK
1838     char *p = (char*) textOptions[n].choice;
1839     if(strstr(p, "$name")) {
1840         XtGetSelectionValue(menuBarWidget,
1841           XA_PRIMARY, XA_STRING,
1842           /* (XtSelectionCallbackProc) */ SendTextCB,
1843           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1844           CurrentTime
1845         );
1846     } else SendString(p);
1847 #endif
1848 }
1849
1850 void
1851 SetInsertPos (Option *opt, int pos)
1852 {
1853 #ifdef TODO_GTK
1854     Arg args[16];
1855     XtSetArg(args[0], XtNinsertPosition, pos);
1856     XtSetValues(opt->handle, args, 1);
1857 //    SetFocus(opt->handle, shells[InputBoxDlg], NULL, False); // No idea why this does not work, and the following is needed:
1858 //    XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1859 #endif
1860 }
1861
1862 #ifdef TODO_GTK
1863 void
1864 TypeInProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1865 {   // can be used as handler for any text edit in any dialog (from GenericPopUp, that is)
1866     int n = prms[0][0] - '0';
1867     Widget sh = XtParent(XtParent(XtParent(w))); // popup shell
1868
1869     if(n<2) { // Enter or Esc typed from primed text widget: treat as if dialog OK or cancel button hit.
1870         int dlgNr; // figure out what the dialog number is by comparing shells (because we must pass it :( )
1871         for(dlgNr=0; dlgNr<NrOfDialogs; dlgNr++) if(shellUp[dlgNr] && shells[dlgNr] == sh)
1872             GenericCallback (w, (XtPointer)(intptr_t) (30000 + n + (dlgNr<<16)), NULL);
1873     }
1874 }
1875 #endif
1876
1877 void
1878 HardSetFocus (Option *opt)
1879 {
1880 #ifdef TODO_GTK
1881     XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1882 #endif
1883 }
1884
1885