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