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