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