583ab9dcdd5e9c523813f48eede4319638251594
[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 static char *oneLiner  =
984    "<Key>Return: redraw-display() \n \
985     <Key>Tab: TabProc() \n ";
986 static char scrollTranslations[] =
987    "<Btn1Up>(2): WheelProc(0 0 A) \n \
988     <Btn4Down>: WheelProc(-1) \n \
989     <Btn5Down>: WheelProc(1) \n ";
990
991 static void
992 SqueezeIntoBox (Option *opt, int nr, int width)
993 {   // size buttons in bar to fit, clipping button names where necessary
994 #ifdef TODO_GTK
995     int i, wtot = 0;
996     Dimension widths[20], oldWidths[20];
997     Arg arg;
998     for(i=1; i<nr; i++) {
999         XtSetArg(arg, XtNwidth, &widths[i]);
1000         XtGetValues(opt[i].handle, &arg, 1);
1001         wtot +=  oldWidths[i] = widths[i];
1002     }
1003     opt->min = wtot;
1004     if(width <= 0) return;
1005     while(wtot > width) {
1006         int wmax=0, imax=0;
1007         for(i=1; i<nr; i++) if(widths[i] > wmax) wmax = widths[imax=i];
1008         widths[imax]--;
1009         wtot--;
1010     }
1011     for(i=1; i<nr; i++) if(widths[i] != oldWidths[i]) {
1012         XtSetArg(arg, XtNwidth, widths[i]);
1013         XtSetValues(opt[i].handle, &arg, 1);
1014     }
1015     opt->min = wtot;
1016 #endif
1017 }
1018
1019 #ifdef TODO_GTK
1020 int
1021 SetPositionAndSize (Arg *args, Widget leftNeigbor, Widget topNeigbor, int b, int w, int h, int chaining)
1022 {   // sizing and positioning most widgets have in common
1023     int j = 0;
1024     // first position the widget w.r.t. earlier ones
1025     if(chaining & 1) { // same row: position w.r.t. last (on current row) and lastrow
1026         XtSetArg(args[j], XtNfromVert, topNeigbor); j++;
1027         XtSetArg(args[j], XtNfromHoriz, leftNeigbor); j++;
1028     } else // otherwise it goes at left margin (which is default), below the previous element
1029         XtSetArg(args[j], XtNfromVert, leftNeigbor),  j++;
1030     // arrange chaining ('2'-bit indicates top and bottom chain the same)
1031     if((chaining & 14) == 6) XtSetArg(args[j], XtNtop,    XtChainBottom), j++;
1032     if((chaining & 14) == 10) XtSetArg(args[j], XtNbottom, XtChainTop ), j++;
1033     if(chaining & 4) XtSetArg(args[j], XtNbottom, XtChainBottom ), j++;
1034     if(chaining & 8) XtSetArg(args[j], XtNtop,    XtChainTop), j++;
1035     if(chaining & 0x10) XtSetArg(args[j], XtNright, XtChainRight), j++;
1036     if(chaining & 0x20) XtSetArg(args[j], XtNleft,  XtChainRight), j++;
1037     if(chaining & 0x40) XtSetArg(args[j], XtNright, XtChainLeft ), j++;
1038     if(chaining & 0x80) XtSetArg(args[j], XtNleft,  XtChainLeft ), j++;
1039     // set size (if given)
1040     if(w) XtSetArg(args[j], XtNwidth, w), j++;
1041     if(h) XtSetArg(args[j], XtNheight, h),  j++;
1042     // color
1043     if(!appData.monoMode) {
1044         if(!b && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
1045         if(b == 3 && appData.buttonColor[0]) XtSetArg(args[j], XtNbackground, buttonColor),  j++;
1046     }
1047     if(b == 3) b = 1;
1048     // border
1049     XtSetArg(args[j], XtNborderWidth, b);  j++;
1050     return j;
1051 }
1052 #endif
1053
1054 static int
1055 SameRow (Option *opt)
1056 {
1057     return (opt->min & SAME_ROW && (opt->type == Button || opt->type == SaveButton || opt->type == Label || opt->type == ListBox));
1058 }
1059
1060 static void
1061 Pack (GtkWidget *hbox, GtkWidget *table, GtkWidget *entry, int left, int right, int top)
1062 {
1063     if(hbox) gtk_box_pack_start(GTK_BOX (hbox), entry, TRUE, TRUE, 0);
1064     else     gtk_table_attach_defaults(GTK_TABLE(table), entry, left, right, top, top+1);
1065 }
1066
1067 int
1068 GenericPopUp (Option *option, char *title, DialogClass dlgNr, DialogClass parent, int modal, int topLevel)
1069 {    
1070     GtkWidget *dialog = NULL;
1071     gint       w;
1072     GtkWidget *label;
1073     GtkWidget *box;
1074     GtkWidget *checkbutton;
1075     GtkWidget *entry;
1076     GtkWidget *hbox = NULL;    
1077     GtkWidget *button;
1078     GtkWidget *table;
1079     GtkWidget *spinner;    
1080     GtkAdjustment *spinner_adj;
1081     GtkWidget *combobox;
1082     GtkWidget *textview;
1083     GtkTextBuffer *textbuffer;           
1084     GdkColor color;     
1085     GtkWidget *actionarea;
1086     GtkWidget *sw;    
1087     GtkWidget *list;    
1088     GtkWidget *graph;    
1089     GtkWidget *menuButton;    
1090     GtkWidget *menuBar;    
1091     GtkWidget *menu;    
1092
1093     int i, j, arraysize, left, top, height=999, width=1, boxStart;    
1094     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
1095
1096     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
1097
1098     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
1099         gtk_widget_show(shells[dlgNr]);
1100         shellUp[dlgNr] = True;
1101         return 0;
1102     }
1103
1104     dialogOptions[dlgNr] = option; // make available to callback
1105     // post currentOption globally, so Spin and Combo callbacks can already use it
1106     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1107     currentOption = option;
1108
1109     if(engineDlg) { // Settings popup for engine: format through heuristic
1110         int n = currentCps->nrOptions;
1111         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1112         height = n / width + 1;
1113 //      if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1114         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1115     }    
1116
1117     parents[dlgNr] = parent;
1118 #ifdef TODO_GTK
1119     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
1120
1121     if(dlgNr == BoardWindow) dialog = shellWidget; else
1122     dialog =
1123       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
1124                                                            shells[parent], args, i);
1125 #endif
1126     dialog = gtk_dialog_new_with_buttons( title,
1127                                       GTK_WINDOW(shells[parent]),
1128                                       GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR |
1129                                           (modal ? GTK_DIALOG_MODAL : 0),
1130                                       GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1131                                       GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1132                                       NULL );      
1133
1134     shells[dlgNr] = dialog;
1135     box = gtk_dialog_get_content_area( GTK_DIALOG( dialog ) );
1136     gtk_box_set_spacing(GTK_BOX(box), 5);    
1137
1138     arraysize = 0;
1139     for (i=0;option[i].type != EndMark;i++) {
1140         arraysize++;   
1141     }
1142
1143     table = gtk_table_new(arraysize, 3, FALSE);
1144     gtk_table_set_col_spacings(GTK_TABLE(table), 20);
1145     left = 0;
1146     top = -1;    
1147
1148     for (i=0;option[i].type != EndMark;i++) {
1149         if(option[i].type == -1) continue;
1150         top++;
1151         if (top >= height) {
1152             top = 0;
1153             left = left + 3;
1154             gtk_table_resize(GTK_TABLE(table), height, left + 3);   
1155         }                
1156         if(!SameRow(&option[i])) {
1157             if(SameRow(&option[i+1])) {
1158                 // make sure hbox is always available when we have more options on same row
1159                 hbox = gtk_hbox_new (option[i].type == Button && option[i].textValue, 0);
1160                 if (strcmp(option[i].name, "") == 0 || option[i].type == Label || option[i].type == Button)
1161                     // for Label and Button name is contained inside option
1162                     gtk_table_attach_defaults(GTK_TABLE(table), hbox, left, left+3, top, top+1);
1163                 else
1164                     gtk_table_attach_defaults(GTK_TABLE(table), hbox, left+1, left+3, top, top+1);
1165             } else hbox = NULL; //and also make sure no hbox exists if only singl option on row
1166         }
1167         switch(option[i].type) {
1168           case Fractional:           
1169             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1170             option[i].value = *(float*)option[i].target;
1171             goto tBox;
1172           case Spin:
1173             if(!currentCps) option[i].value = *(int*)option[i].target;
1174             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1175           case TextBox:
1176           case FileName:            
1177           case PathName:
1178           tBox:
1179             label = gtk_label_new(option[i].name);
1180             /* Left Justify */
1181             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1182
1183             /* width */
1184             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1185             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1186
1187             if (option[i].type==TextBox && option[i].value > 80){                
1188                 textview = gtk_text_view_new();                
1189                 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(textview), option[i].min & T_WRAP ? GTK_WRAP_WORD : GTK_WRAP_NONE);
1190 #ifdef TODO_GTK
1191                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
1192                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1193 #endif
1194                 /* add textview to scrolled window so we have vertical scroll bar */
1195                 sw = gtk_scrolled_window_new(NULL, NULL);
1196                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw),
1197                                                option[i].min & T_HSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_AUTOMATIC,
1198                                                option[i].min & T_VSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_NEVER);
1199                 gtk_container_add(GTK_CONTAINER(sw), textview);
1200                 gtk_widget_set_size_request(GTK_WIDGET(sw), w, -1);
1201  
1202                 textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));                
1203                 gtk_widget_set_size_request(textview, -1, option[i].min);
1204                 /* check if label is empty */ 
1205                 if (strcmp(option[i].name,"") != 0) {
1206                     gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+1, top, top+1);
1207                     Pack(hbox, table, sw, left+1, left+3, top);
1208                 }
1209                 else {
1210                     /* no label so let textview occupy all columns */
1211                     Pack(hbox, table, sw, left, left+3, top);
1212                 } 
1213                 if ( *(char**)option[i].target != NULL )
1214                     gtk_text_buffer_set_text (textbuffer, *(char**)option[i].target, -1);
1215                 else
1216                     gtk_text_buffer_set_text (textbuffer, "", -1); 
1217                 option[i].handle = (void*)textbuffer;
1218                 option[i].textValue = (char*)textview;
1219                 if(option[i].choice) { // textviews can request a handler for mouse events in the choice field
1220                     g_signal_connect(textview, "button-press-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1221                     g_signal_connect(textview, "button-release-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1222                     g_signal_connect(textview, "motion-notify-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1223                 }
1224                 break; 
1225             }
1226
1227             entry = gtk_entry_new();
1228
1229             if (option[i].type==Spin || option[i].type==Fractional)
1230                 gtk_entry_set_text (GTK_ENTRY (entry), def);
1231             else if (currentCps)
1232                 gtk_entry_set_text (GTK_ENTRY (entry), option[i].textValue);
1233             else if ( *(char**)option[i].target != NULL )
1234                 gtk_entry_set_text (GTK_ENTRY (entry), *(char**)option[i].target);            
1235
1236             //gtk_entry_set_width_chars (GTK_ENTRY (entry), 18);
1237             gtk_entry_set_max_length (GTK_ENTRY (entry), w);
1238
1239             // left, right, top, bottom
1240             if (strcmp(option[i].name, "") != 0) gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+1, top, top+1);
1241             //gtk_table_attach_defaults(GTK_TABLE(table), entry, 1, 2, i, i+1);            
1242
1243             if (option[i].type == Spin) {                
1244                 spinner_adj = (GtkAdjustment *) gtk_adjustment_new (option[i].value, option[i].min, option[i].max, 1.0, 0.0, 0.0);
1245                 spinner = gtk_spin_button_new (spinner_adj, 1.0, 0);
1246                 gtk_table_attach_defaults(GTK_TABLE(table), spinner, left+1, left+3, top, top+1);
1247                 option[i].handle = (void*)spinner;
1248             }
1249             else if (option[i].type == FileName || option[i].type == PathName) {
1250                 gtk_table_attach_defaults(GTK_TABLE(table), entry, left+1, left+2, top, top+1);
1251                 button = gtk_button_new_with_label ("Browse");
1252                 gtk_table_attach_defaults(GTK_TABLE(table), button, left+2, left+3, top, top+1);
1253                 g_signal_connect (button, "clicked", G_CALLBACK (BrowseGTK), (gpointer)(intptr_t) i);
1254                 option[i].handle = (void*)entry;                 
1255             }
1256             else {
1257                 Pack(hbox, table, entry, left + (strcmp(option[i].name, "") != 0), left+3, top);
1258                 option[i].handle = (void*)entry;
1259             }                                   
1260             break;
1261           case CheckBox:
1262             checkbutton = gtk_check_button_new_with_label(option[i].name);            
1263             if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1264             gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbutton), option[i].value);
1265             gtk_table_attach_defaults(GTK_TABLE(table), checkbutton, left, left+3, top, top+1);                            
1266             option[i].handle = (void *)checkbutton;            
1267             break; 
1268           case Label:            
1269             option[i].handle = (void *) (label = gtk_label_new(option[i].name));
1270             /* Left Justify */
1271             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1272             if(option[i].min & BORDER) {
1273                 GtkWidget *frame = gtk_frame_new(NULL);
1274                 gtk_container_add(GTK_CONTAINER(frame), label);
1275                 label = frame;
1276             }
1277             Pack(hbox, table, label, left, left+3, top);
1278             if(option[i].target) { // allow user to specify event handler for button presses
1279                 gtk_widget_add_events(GTK_WIDGET(label), GDK_BUTTON_PRESS_MASK);
1280                 g_signal_connect(label, "button-press-event", G_CALLBACK(MemoEvent), (gpointer) &option[i]);
1281             }
1282             break;
1283           case SaveButton:
1284           case Button:
1285             button = gtk_button_new_with_label (option[i].name);
1286
1287             /* set button color on view board dialog */
1288             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1289                 gdk_color_parse( *(char**) option[i-1].target, &color );
1290                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1291             }
1292
1293             /* set button color on new variant dialog */
1294             if(option[i].textValue) {
1295                 gdk_color_parse( option[i].textValue, &color );
1296                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1297                 gtk_widget_set_sensitive(button, appData.noChessProgram || option[i].value < 0
1298                                          || strstr(first.variants, VariantName(option[i].value)));                 
1299             }
1300             
1301             Pack(hbox, table, button, left, left+1, top);
1302             g_signal_connect (button, "clicked", G_CALLBACK (GenericCallback), (gpointer)(intptr_t) i + (dlgNr<<16));           
1303             option[i].handle = (void*)button;            
1304             break;  
1305           case ComboBox:
1306             label = gtk_label_new(option[i].name);
1307             /* Left Justify */
1308             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1309             gtk_table_attach_defaults(GTK_TABLE(table), label, left, left+1, top, top+1);
1310
1311             combobox = gtk_combo_box_new_text();            
1312
1313             for(j=0;;j++) {
1314                if (  ((char **) option[i].textValue)[j] == NULL) break;
1315                gtk_combo_box_append_text(GTK_COMBO_BOX(combobox), ((char **) option[i].choice)[j]);                          
1316             }
1317
1318             if(currentCps)
1319                 option[i].choice = (char**) option[i].textValue;
1320             else {
1321                 for(j=0; option[i].choice[j]; j++) {                
1322                     if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, ((char**)(option[i].textValue))[j])) break;
1323                 }
1324                 /* If choice is NULL set to first */
1325                 if (option[i].choice[j] == NULL)
1326                    option[i].value = 0;
1327                 else 
1328                    option[i].value = j;
1329             }
1330
1331             //option[i].value = j + (option[i].choice[j] == NULL);            
1332             gtk_combo_box_set_active(GTK_COMBO_BOX(combobox), option[i].value); 
1333             
1334             Pack(hbox, table, combobox, left+1, left+3, top);
1335             g_signal_connect(G_OBJECT(combobox), "changed", G_CALLBACK(ComboSelect), (gpointer) (intptr_t) (i + 256*dlgNr));
1336
1337             option[i].handle = (void*)combobox;
1338             values[i] = option[i].value;            
1339             break;
1340           case ListBox:
1341             {
1342                 GtkCellRenderer *renderer;
1343                 GtkTreeViewColumn *column;
1344                 GtkListStore *store;
1345
1346                 option[i].handle = (void *) (list = gtk_tree_view_new());
1347                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(list), FALSE);
1348                 renderer = gtk_cell_renderer_text_new();
1349                 column = gtk_tree_view_column_new_with_attributes("List Items", renderer, "text", 0, NULL);
1350                 gtk_tree_view_append_column(GTK_TREE_VIEW(list), column);
1351                 store = gtk_list_store_new(1, G_TYPE_STRING); // 1 column of text
1352                 gtk_tree_view_set_model(GTK_TREE_VIEW(list), GTK_TREE_MODEL(store));
1353                 g_object_unref(store);
1354                 LoadListBox(&option[i], "?", -1, -1);
1355                 HighlightListBoxItem(&option[i], 0);
1356
1357                 /* add listbox to scrolled window so we have vertical scroll bar */
1358                 sw = gtk_scrolled_window_new(NULL, NULL);
1359                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
1360                 gtk_container_add(GTK_CONTAINER(sw), list);
1361                 gtk_widget_set_size_request(GTK_WIDGET(sw), option[i].max ? option[i].max : -1, option[i].value ? option[i].value : -1);
1362  
1363                 /* never has label, so let listbox occupy all columns */
1364                 Pack(hbox, table, sw, left, left+3, top);
1365             }
1366             break;
1367           case Graph:
1368             option[i].handle = (void*) (graph = gtk_drawing_area_new());
1369             gtk_widget_set_size_request(graph, option[i].max, option[i].value);
1370 //          gtk_drawing_area_size(graph, option[i].max, option[i].value);
1371             gtk_table_attach_defaults(GTK_TABLE(table), graph, left, left+3, top, top+1);
1372             g_signal_connect (graph, "expose-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1373             gtk_widget_add_events(GTK_WIDGET(graph), GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK);
1374             g_signal_connect (graph, "button-press-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1375             g_signal_connect (graph, "button-release-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1376             g_signal_connect (graph, "motion-notify-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1377
1378 #ifdef TODO_GTK
1379             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1380                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1381             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1382 #endif
1383             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1384             break;
1385 #ifdef TODO_GTK
1386           case Graph:
1387             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1388                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1389             option[i].handle = (void*)
1390                 (last = XtCreateManagedWidget("graph", widgetClass, form, args, j));
1391             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1392                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1393             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1394             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1395             break;
1396           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1397             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1398             break;
1399           case BoxBegin:
1400             if(option[i].min & SAME_ROW) forelast = lastrow;
1401             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1402                                    0 /* w */, 0 /* h */, option[i].min /* chain */);
1403             XtSetArg(args[j], XtNorientation, XtorientHorizontal);  j++;
1404             XtSetArg(args[j], XtNvSpace, 0);                        j++;
1405             option[box=i].handle = (void*)
1406                 (last = XtCreateWidget("box", boxWidgetClass, form, args, j));
1407             oldForm = form; form = last; oldLastRow = lastrow; oldForeLast = forelast;
1408             lastrow = NULL; last = NULL;
1409             break;
1410 #endif
1411           case DropDown:
1412             msg = _(option[i].name); // write name on the menu button
1413 //          XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1414 //          XtSetArg(args[j], XtNlabel, msg);  j++;
1415             option[i].handle = (void*)
1416                 (menuButton = gtk_menu_item_new_with_label(msg));
1417             gtk_widget_show(menuButton);
1418             option[i].textValue = (char*) (menu = CreateMenuPopup(option + i, i + 256*dlgNr, -1));
1419             gtk_menu_item_set_submenu(GTK_MENU_ITEM (menuButton), menu);
1420             gtk_menu_bar_append (GTK_MENU_BAR (menuBar), menuButton);
1421
1422             break;
1423           case BarBegin:
1424             menuBar = gtk_menu_bar_new ();
1425             gtk_widget_show (menuBar);
1426           case BoxBegin:
1427             boxStart = i;
1428             break;
1429           case BarEnd:
1430             gtk_table_attach_defaults(GTK_TABLE(table), menuBar, left, left+1, top, top+1);
1431           case BoxEnd:
1432 //          XtManageChildren(&form, 1);
1433 //          SqueezeIntoBox(&option[boxStart], i-boxStart, option[boxStart].max);
1434             if(option[i].target) ((ButtonCallback*)option[i].target)(boxStart); // callback that can make sizing decisions
1435             break;
1436           case Break:
1437             if(option[i].min & SAME_ROW) top = height; // force next option to start in a new column
1438             break; 
1439         default:
1440             printf("GenericPopUp: unexpected case in switch. i=%d type=%d name=%s.\n", i, option[i].type, option[i].name);
1441             break;
1442         }        
1443     }
1444
1445     gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox),
1446                         table, TRUE, TRUE, 0);    
1447
1448     /* Show dialog */
1449     gtk_widget_show_all( dialog );    
1450
1451     /* hide OK/cancel buttons */
1452     if((option[i].min & 2)) {
1453         actionarea = gtk_dialog_get_action_area(GTK_DIALOG(dialog));
1454         gtk_widget_hide(actionarea);
1455     }
1456
1457     g_signal_connect (dialog, "response",
1458                       G_CALLBACK (GenericPopDown),
1459                       (gpointer)(intptr_t) dlgNr);
1460     g_signal_connect (dialog, "delete-event",
1461                       G_CALLBACK (GenericPopDown),
1462                       (gpointer)(intptr_t) dlgNr);
1463     shellUp[dlgNr]++;
1464
1465 #ifdef TODO_GTK
1466     Arg args[24];
1467     Widget popup, layout, dialog=NULL, edit=NULL, form,  last, b_ok, b_cancel, previousPane = NULL, textField = NULL, oldForm, oldLastRow, oldForeLast;
1468     Window root, child;
1469     int x, y, i, j, height=999, width=1, h, c, w, shrink=FALSE, stack = 0, box, chain;
1470     int win_x, win_y, maxWidth, maxTextWidth;
1471     unsigned int mask;
1472     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
1473     static char pane[6] = "paneX";
1474     Widget texts[100], forelast = NULL, anchor, widest, lastrow = NULL, browse = NULL;
1475     Dimension bWidth = 50;
1476
1477     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
1478     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
1479         XtPopup(shells[dlgNr], XtGrabNone);
1480         shellUp[dlgNr] = True;
1481         return 0;
1482     }
1483
1484     dialogOptions[dlgNr] = option; // make available to callback
1485     // post currentOption globally, so Spin and Combo callbacks can already use it
1486     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1487     currentOption = option;
1488
1489     if(engineDlg) { // Settings popup for engine: format through heuristic
1490         int n = currentCps->nrOptions;
1491         if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1492         height = n / width + 1;
1493         if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1494         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1495     }
1496      i = 0;
1497     XtSetArg(args[i], XtNresizable, True); i++;
1498     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
1499
1500     if(dlgNr == BoardWindow) popup = shellWidget; else
1501     popup = shells[dlgNr] =
1502       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
1503                                                            shells[parent], args, i);
1504
1505     layout =
1506       XtCreateManagedWidget(layoutName, formWidgetClass, popup,
1507                             layoutArgs, XtNumber(layoutArgs));
1508     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[0], XtNbackground, dialogColor);
1509     XtSetValues(layout, args, 1);
1510
1511   for(c=0; c<width; c++) {
1512     pane[4] = 'A'+c;
1513     form =
1514       XtCreateManagedWidget(pane, formWidgetClass, layout,
1515                             formArgs, XtNumber(formArgs));
1516     j=0;
1517     XtSetArg(args[j], stack ? XtNfromVert : XtNfromHoriz, previousPane);  j++;
1518     if(!appData.monoMode && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
1519     XtSetValues(form, args, j);
1520     lastrow = forelast = NULL;
1521     previousPane = form;
1522
1523     last = widest = NULL; anchor = lastrow;
1524     for(h=0; h<height || c == width-1; h++) {
1525         i = h + c*height;
1526         if(option[i].type == EndMark) break;
1527         if(option[i].type == -1) continue;
1528         lastrow = forelast;
1529         forelast = last;
1530         switch(option[i].type) {
1531           case Fractional:
1532             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1533             option[i].value = *(float*)option[i].target;
1534             goto tBox;
1535           case Spin:
1536             if(!engineDlg) option[i].value = *(int*)option[i].target;
1537             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1538           case TextBox:
1539           case FileName:
1540           case PathName:
1541           tBox:
1542             if(option[i].name[0]) { // prefixed by label with option name
1543                 j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1544                                        0 /* w */, textHeight /* h */, 0xC0 /* chain to left edge */);
1545                 XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1546                 XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1547                 texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1548             } else texts[h] = dialog = NULL; // kludge to position from left margin
1549             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1550             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1551             j = SetPositionAndSize(args, dialog, last, 1 /* border */,
1552                                    w /* w */, option[i].type == TextBox ? option[i].value : 0 /* h */, 0x91 /* chain full width */);
1553             if(option[i].type == TextBox) { // decorations for multi-line text-edits
1554                 if(option[i].min & T_VSCRL) { XtSetArg(args[j], XtNscrollVertical, XawtextScrollAlways);  j++; }
1555                 if(option[i].min & T_HSCRL) { XtSetArg(args[j], XtNscrollHorizontal, XawtextScrollAlways);  j++; }
1556                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
1557                 if(option[i].min & T_WRAP)  { XtSetArg(args[j], XtNwrap, XawtextWrapWord); j++; }
1558                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1559                     if(!option[i].value) {    XtSetArg(args[j], XtNbottom, XtChainTop); j++;
1560                                               XtSetValues(dialog, args+j-2, 2);
1561                     }
1562                 }
1563             } else shrink = TRUE;
1564             XtSetArg(args[j], XtNeditType, XawtextEdit);  j++;
1565             XtSetArg(args[j], XtNuseStringInPlace, False);  j++;
1566             XtSetArg(args[j], XtNdisplayCaret, False);  j++;
1567             XtSetArg(args[j], XtNresizable, True);  j++;
1568             XtSetArg(args[j], XtNinsertPosition, 9999);  j++;
1569             XtSetArg(args[j], XtNstring, option[i].type==Spin || option[i].type==Fractional ? def : 
1570                                 engineDlg ? option[i].textValue : *(char**)option[i].target);  j++;
1571             edit = last;
1572             option[i].handle = (void*)
1573                 (textField = last = XtCreateManagedWidget("text", asciiTextWidgetClass, form, args, j));
1574             XtAddEventHandler(last, ButtonPressMask, False, SetFocus, (XtPointer) popup); // gets focus on mouse click
1575             if(option[i].min == 0 || option[i].type != TextBox)
1576                 XtOverrideTranslations(last, XtParseTranslationTable(oneLiner)); // standard handler for <Enter> and <Tab>
1577
1578             if(option[i].type == TextBox || option[i].type == Fractional) break;
1579
1580             // add increment and decrement controls for spin
1581             if(option[i].type == FileName || option[i].type == PathName) {
1582                 msg = _("browse"); w = 0; // automatically scale to width of text
1583                 j = textHeight ? textHeight : 0;
1584             } else {
1585                 w = 20; msg = "+"; j = textHeight/2; // spin button
1586             }
1587             j = SetPositionAndSize(args, last, edit, 3 /* border */,
1588                                    w /* w */, j /* h */, 0x31 /* chain to right edge */);
1589             edit = XtCreateManagedWidget(msg, commandWidgetClass, form, args, j);
1590             XtAddCallback(edit, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1591             if(w == 0) browse = edit;
1592
1593             if(option[i].type != Spin) break;
1594
1595             j = SetPositionAndSize(args, last, edit, 3 /* border */,
1596                                    20 /* w */, textHeight/2 /* h */, 0x31 /* chain to right edge */);
1597             XtSetArg(args[j], XtNvertDistance, -1);  j++;
1598             last = XtCreateManagedWidget("-", commandWidgetClass, form, args, j);
1599             XtAddCallback(last, XtNcallback, SpinCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1600             break;
1601           case CheckBox:
1602             if(!engineDlg) option[i].value = *(Boolean*)option[i].target; // where checkbox callback uses it
1603             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
1604                                    textHeight/2 /* w */, textHeight/2 /* h */, 0xC0 /* chain both to left edge */);
1605             XtSetArg(args[j], XtNvertDistance, (textHeight+2)/4 + 3);  j++;
1606             XtSetArg(args[j], XtNstate, option[i].value);  j++;
1607             lastrow  = last;
1608             option[i].handle = (void*)
1609                 (last = XtCreateManagedWidget(" ", toggleWidgetClass, form, args, j));
1610             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1611                                    option[i].max /* w */, textHeight /* h */, 0xC1 /* chain */);
1612             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1613             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1614             last = XtCreateManagedWidget("label", commandWidgetClass, form, args, j);
1615             // make clicking the text toggle checkbox
1616             XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1617             shrink = TRUE; // following buttons must get text height
1618             break;
1619           case Label:
1620             msg = option[i].name;
1621             if(!msg) break;
1622             chain = option[i].min;
1623             if(chain & SAME_ROW) forelast = lastrow; else shrink = FALSE;
1624             j = SetPositionAndSize(args, last, lastrow, (chain & 2) != 0 /* border */,
1625                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, chain | 2 /* chain */);
1626 #if ENABLE_NLS
1627             if(option[i].choice) XtSetArg(args[j], XtNfontSet, *(XFontSet*)option[i].choice), j++;
1628 #else
1629             if(option[i].choice) XtSetArg(args[j], XtNfont, (XFontStruct*)option[i].choice), j++;
1630 #endif
1631             XtSetArg(args[j], XtNresizable, False);  j++;
1632             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1633             XtSetArg(args[j], XtNlabel, _(msg));  j++;
1634             option[i].handle = (void*) (last = XtCreateManagedWidget("label", labelWidgetClass, form, args, j));
1635             if(option[i].target) // allow user to specify event handler for button presses
1636                 XtAddEventHandler(last, ButtonPressMask, False, CheckCallback, (XtPointer)(intptr_t) i + 256*dlgNr);
1637             break;
1638           case SaveButton:
1639           case Button:
1640             if(option[i].min & SAME_ROW) {
1641                 chain = 0x31; // 0011.0001 = both left and right side to right edge
1642                 forelast = lastrow;
1643             } else chain = 0, shrink = FALSE;
1644             j = SetPositionAndSize(args, last, lastrow, 3 /* border */,
1645                                    option[i].max /* w */, shrink ? textHeight : 0 /* h */, option[i].min & 0xE | chain /* chain */);
1646             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1647             if(option[i].textValue) { // special for buttons of New Variant dialog
1648                 XtSetArg(args[j], XtNsensitive, appData.noChessProgram || option[i].value < 0
1649                                          || strstr(first.variants, VariantName(option[i].value))); j++;
1650                 XtSetArg(args[j], XtNborderWidth, (gameInfo.variant == option[i].value)+1); j++;
1651             }
1652             option[i].handle = (void*)
1653                 (dialog = last = XtCreateManagedWidget(option[i].name, commandWidgetClass, form, args, j));
1654             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !engineDlg) { // for the color picker default-reset
1655                 SetColor( *(char**) option[i-1].target, &option[i]);
1656                 XtAddEventHandler(option[i-1].handle, KeyReleaseMask, False, ColorChanged, (XtPointer)(intptr_t) i-1);
1657             }
1658             XtAddCallback(last, XtNcallback, GenericCallback, (XtPointer)(intptr_t) i + (dlgNr<<16)); // invokes user callback
1659             if(option[i].textValue) SetColor( option[i].textValue, &option[i]); // for new-variant buttons
1660             break;
1661           case ComboBox:
1662             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1663                                    0 /* w */, textHeight /* h */, 0xC0 /* chain both sides to left edge */);
1664             XtSetArg(args[j], XtNjustify, XtJustifyLeft);  j++;
1665             XtSetArg(args[j], XtNlabel, _(option[i].name));  j++;
1666             texts[h] = dialog = XtCreateManagedWidget(option[i].name, labelWidgetClass, form, args, j);
1667
1668             if(option[i].min & COMBO_CALLBACK) msg = _(option[i].name); else {
1669               if(!engineDlg) SetCurrentComboSelection(option+i);
1670               msg=_(((char**)option[i].choice)[option[i].value]);
1671             }
1672
1673             j = SetPositionAndSize(args, dialog, last, (option[i].min & 2) == 0 /* border */,
1674                                    option[i].max && !engineDlg ? option[i].max : 100 /* w */,
1675                                    textHeight /* h */, 0x91 /* chain */); // same row as its label!
1676             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1677             XtSetArg(args[j], XtNlabel, msg);  j++;
1678             shrink = TRUE;
1679             option[i].handle = (void*)
1680                 (last = XtCreateManagedWidget(" ", menuButtonWidgetClass, form, args, j));
1681             CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, -1);
1682             values[i] = option[i].value;
1683             break;
1684           case ListBox:
1685             // Listbox goes in viewport, as needed for game list
1686             if(option[i].min & SAME_ROW) forelast = lastrow;
1687             j = SetPositionAndSize(args, last, lastrow, 1 /* border */,
1688                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1689             XtSetArg(args[j], XtNresizable, False);  j++;
1690             XtSetArg(args[j], XtNallowVert, True); j++; // scoll direction
1691             last =
1692               XtCreateManagedWidget("viewport", viewportWidgetClass, form, args, j);
1693             j = 0; // now list itself
1694             XtSetArg(args[j], XtNdefaultColumns, 1);  j++;
1695             XtSetArg(args[j], XtNforceColumns, True);  j++;
1696             XtSetArg(args[j], XtNverticalList, True);  j++;
1697             option[i].handle = (void*)
1698                 (edit = XtCreateManagedWidget("list", listWidgetClass, last, args, j));
1699             XawListChange(option[i].handle, option[i].target, 0, 0, True);
1700             XawListHighlight(option[i].handle, 0);
1701             scrollTranslations[25] = '0' + i;
1702             scrollTranslations[27] = 'A' + dlgNr;
1703             XtOverrideTranslations(edit, XtParseTranslationTable(scrollTranslations)); // for mouse-wheel
1704             break;
1705           case Graph:
1706             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1707                                    option[i].max /* w */, option[i].value /* h */, option[i].min /* chain */);
1708             option[i].handle = (void*)
1709                 (last = XtCreateManagedWidget("graph", widgetClass, form, args, j));
1710             XtAddEventHandler(last, ExposureMask | ButtonPressMask | ButtonReleaseMask | PointerMotionMask, False,
1711                       (XtEventHandler) GraphEventProc, &option[i]); // mandatory user-supplied expose handler
1712             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1713             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1714             break;
1715           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1716             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1717             break;
1718           case BoxBegin:
1719             if(option[i].min & SAME_ROW) forelast = lastrow;
1720             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1721                                    0 /* w */, 0 /* h */, option[i].min /* chain */);
1722             XtSetArg(args[j], XtNorientation, XtorientHorizontal);  j++;
1723             XtSetArg(args[j], XtNvSpace, 0);                        j++;
1724             option[box=i].handle = (void*)
1725                 (last = XtCreateWidget("box", boxWidgetClass, form, args, j));
1726             oldForm = form; form = last; oldLastRow = lastrow; oldForeLast = forelast;
1727             lastrow = NULL; last = NULL;
1728             break;
1729           case DropDown:
1730             j = SetPositionAndSize(args, last, lastrow, 0 /* border */,
1731                                    0 /* w */, 0 /* h */, 1 /* chain (always on same row) */);
1732             forelast = lastrow;
1733             msg = _(option[i].name); // write name on the menu button
1734             XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1735             XtSetArg(args[j], XtNlabel, msg);  j++;
1736             option[i].handle = (void*)
1737                 (last = XtCreateManagedWidget(option[i].name, menuButtonWidgetClass, form, args, j));
1738             option[i].textValue = (char*) CreateComboPopup(last, option + i, i + 256*dlgNr, FALSE, -1);
1739             break;
1740           case BoxEnd:
1741             XtManageChildren(&form, 1);
1742             SqueezeIntoBox(&option[box], i-box, option[box].max);
1743             if(option[i].target) ((ButtonCallback*)option[i].target)(box); // callback that can make sizing decisions
1744             last = form; lastrow = oldLastRow; form = oldForm; forelast = oldForeLast;
1745             break;
1746           case Break:
1747             width++;
1748             height = i+1;
1749             stack = !(option[i].min & SAME_ROW);
1750             break;
1751         default:
1752             printf("GenericPopUp: unexpected case in switch.\n");
1753             break;
1754         }
1755     }
1756
1757     // make an attempt to align all spins and textbox controls
1758     maxWidth = maxTextWidth = 0;
1759     if(browse != NULL) {
1760         j=0;
1761         XtSetArg(args[j], XtNwidth, &bWidth);  j++;
1762         XtGetValues(browse, args, j);
1763     }
1764     for(h=0; h<height || c == width-1; h++) {
1765         i = h + c*height;
1766         if(option[i].type == EndMark) break;
1767         if(option[i].type == Spin || option[i].type == TextBox || option[i].type == ComboBox
1768                                   || option[i].type == PathName || option[i].type == FileName) {
1769             Dimension w;
1770             if(!texts[h]) continue;
1771             j=0;
1772             XtSetArg(args[j], XtNwidth, &w);  j++;
1773             XtGetValues(texts[h], args, j);
1774             if(option[i].type == Spin) {
1775                 if(w > maxWidth) maxWidth = w;
1776                 widest = texts[h];
1777             } else {
1778                 if(w > maxTextWidth) maxTextWidth = w;
1779                 if(!widest) widest = texts[h];
1780             }
1781         }
1782     }
1783     if(maxTextWidth + 110 < maxWidth)
1784          maxTextWidth = maxWidth - 110;
1785     else maxWidth = maxTextWidth + 110;
1786     for(h=0; h<height || c == width-1; h++) {
1787         i = h + c*height;
1788         if(option[i].type == EndMark) break;
1789         if(!texts[h]) continue; // Note: texts[h] can be undefined (giving errors in valgrind), but then both if's below will be false.
1790         j=0;
1791         if(option[i].type == Spin) {
1792             XtSetArg(args[j], XtNwidth, maxWidth);  j++;
1793             XtSetValues(texts[h], args, j);
1794         } else
1795         if(option[i].type == TextBox || option[i].type == ComboBox || option[i].type == PathName || option[i].type == FileName) {
1796             XtSetArg(args[j], XtNwidth, maxTextWidth);  j++;
1797             XtSetValues(texts[h], args, j);
1798             if(bWidth != 50 && (option[i].type == FileName || option[i].type == PathName)) {
1799                 int tWidth = (option[i].max ? option[i].max : 205) - 5 - bWidth;
1800                 j = 0;
1801                 XtSetArg(args[j], XtNwidth, tWidth);  j++;
1802                 XtSetValues(option[i].handle, args, j);
1803             }
1804         }
1805     }
1806   }
1807
1808     if(option[i].min & SAME_ROW) { // even when OK suppressed this EndMark bit can request chaining of last row to bottom
1809         for(j=i-1; option[j+1].min & SAME_ROW; j--) {
1810             XtSetArg(args[0], XtNtop, XtChainBottom);
1811             XtSetArg(args[1], XtNbottom, XtChainBottom);
1812             XtSetValues(option[j].handle, args, 2);
1813         }
1814         if((option[j].type == TextBox || option[j].type == ListBox) && option[j].name[0] == NULLCHAR) {
1815             Widget w = option[j].handle;
1816             if(option[j].type == ListBox) w = XtParent(w); // for listbox we must chain viewport
1817             XtSetArg(args[0], XtNbottom, XtChainBottom);
1818             XtSetValues(w, args, 1);
1819         }
1820         lastrow = forelast;
1821     } else shrink = FALSE, lastrow = last, last = widest ? widest : dialog;
1822     j = SetPositionAndSize(args, last, anchor ? anchor : lastrow, 3 /* border */,
1823                            0 /* w */, shrink ? textHeight : 0 /* h */, 0x37 /* chain: right, bottom and use both neighbors */);
1824
1825   if(!(option[i].min & NO_OK)) {
1826     option[i].handle = b_ok = XtCreateManagedWidget(_("OK"), commandWidgetClass, form, args, j);
1827     XtAddCallback(b_ok, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30001 + (dlgNr<<16)));
1828     if(!(option[i].min & NO_CANCEL)) {
1829       XtSetArg(args[1], XtNfromHoriz, b_ok); // overwrites!
1830       b_cancel = XtCreateManagedWidget(_("cancel"), commandWidgetClass, form, args, j);
1831       XtAddCallback(b_cancel, XtNcallback, GenericCallback, (XtPointer)(intptr_t) (30000 + (dlgNr<<16)));
1832     }
1833   }
1834
1835     XtRealizeWidget(popup);
1836     if(dlgNr != BoardWindow) { // assign close button, and position w.r.t. pointer, if not main window
1837         XSetWMProtocols(xDisplay, XtWindow(popup), &wm_delete_window, 1);
1838         snprintf(def, MSG_SIZ, "<Message>WM_PROTOCOLS: GenericPopDown(\"%d\") \n", dlgNr);
1839         XtAugmentTranslations(popup, XtParseTranslationTable(def));
1840         XQueryPointer(xDisplay, xBoardWindow, &root, &child,
1841                         &x, &y, &win_x, &win_y, &mask);
1842
1843         XtSetArg(args[0], XtNx, x - 10);
1844         XtSetArg(args[1], XtNy, y - 30);
1845         XtSetValues(popup, args, 2);
1846     }
1847     XtPopup(popup, modal ? XtGrabExclusive : XtGrabNone);
1848     shellUp[dlgNr]++; // count rather than flag
1849     previous = NULL;
1850     if(textField) SetFocus(textField, popup, (XEvent*) NULL, False);
1851     if(dlgNr && wp[dlgNr] && wp[dlgNr]->width > 0) { // if persistent window-info available, reposition
1852         j = 0;
1853         XtSetArg(args[j], XtNheight, (Dimension) (wp[dlgNr]->height));  j++;
1854         XtSetArg(args[j], XtNwidth,  (Dimension) (wp[dlgNr]->width));  j++;
1855         XtSetArg(args[j], XtNx, (Position) (wp[dlgNr]->x));  j++;
1856         XtSetArg(args[j], XtNy, (Position) (wp[dlgNr]->y));  j++;
1857         XtSetValues(popup, args, j);
1858     }
1859     RaiseWindow(dlgNr);
1860 #endif
1861     return 1; // tells caller he must do initialization (e.g. add specific event handlers)
1862 }
1863
1864 /* function called when the data to Paste is ready */
1865 #ifdef TODO_GTK
1866 static void
1867 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1868             Atom *type, XtPointer value, unsigned long *len, int *format)
1869 {
1870   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1871   if (value==NULL || *len==0) return; /* nothing selected, abort */
1872   name[*len]='\0';
1873   strncpy(buf, p, MSG_SIZ);
1874   q = strstr(p, "$name");
1875   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1876   SendString(buf);
1877   XtFree(value);
1878 }
1879 #endif
1880
1881 void
1882 SendText (int n)
1883 {
1884 #ifdef TODO_GTK
1885     char *p = (char*) textOptions[n].choice;
1886     if(strstr(p, "$name")) {
1887         XtGetSelectionValue(menuBarWidget,
1888           XA_PRIMARY, XA_STRING,
1889           /* (XtSelectionCallbackProc) */ SendTextCB,
1890           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1891           CurrentTime
1892         );
1893     } else SendString(p);
1894 #endif
1895 }
1896
1897 void
1898 SetInsertPos (Option *opt, int pos)
1899 {
1900 #ifdef TODO_GTK
1901     Arg args[16];
1902     XtSetArg(args[0], XtNinsertPosition, pos);
1903     XtSetValues(opt->handle, args, 1);
1904 //    SetFocus(opt->handle, shells[InputBoxDlg], NULL, False); // No idea why this does not work, and the following is needed:
1905 //    XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1906 #endif
1907 }
1908
1909 #ifdef TODO_GTK
1910 void
1911 TypeInProc (Widget w, XEvent *event, String *prms, Cardinal *nprms)
1912 {   // can be used as handler for any text edit in any dialog (from GenericPopUp, that is)
1913     int n = prms[0][0] - '0';
1914     Widget sh = XtParent(XtParent(XtParent(w))); // popup shell
1915
1916     if(n<2) { // Enter or Esc typed from primed text widget: treat as if dialog OK or cancel button hit.
1917         int dlgNr; // figure out what the dialog number is by comparing shells (because we must pass it :( )
1918         for(dlgNr=0; dlgNr<NrOfDialogs; dlgNr++) if(shellUp[dlgNr] && shells[dlgNr] == sh)
1919             GenericCallback (w, (XtPointer)(intptr_t) (30000 + n + (dlgNr<<16)), NULL);
1920     }
1921 }
1922 #endif
1923
1924 void
1925 HardSetFocus (Option *opt)
1926 {
1927 #ifdef TODO_GTK
1928     XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1929 #endif
1930 }
1931
1932