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