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