Allow engine to force popup of its settings dialog
[xboard.git] / gtk / xoptions.c
1 /*
2  * xoptions.c -- Move list window, part of X front end for XBoard
3  *
4  * Copyright 2000, 2009, 2010, 2011, 2012, 2013, 2014, 2015 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 #ifdef OSXAPP
55 #  include <gtkmacintegration-gtk2/gtkosxapplication.h>
56 #endif
57
58 #include "common.h"
59 #include "backend.h"
60 #include "xboard.h"
61 #include "xboard2.h"
62 #include "dialogs.h"
63 #include "menus.h"
64 #include "gettext.h"
65
66 #ifdef ENABLE_NLS
67 # define  _(s) gettext (s)
68 # define N_(s) gettext_noop (s)
69 #else
70 # define  _(s) (s)
71 # define N_(s)  s
72 #endif
73
74 // [HGM] the following code for makng menu popups was cloned from the FileNamePopUp routines
75
76 #ifdef TODO_GTK
77 static Widget previous = NULL;
78 #endif
79 static Option *currentOption;
80 static Boolean browserUp;
81
82 void
83 UnCaret ()
84 {
85 #ifdef TODO_GTK
86     Arg args[2];
87
88     if(previous) {
89         XtSetArg(args[0], XtNdisplayCaret, False);
90         XtSetValues(previous, args, 1);
91     }
92     previous = NULL;
93 #endif
94 }
95
96 #ifdef TODO_GTK
97 void
98 SetFocus (Widget w, XtPointer data, XEvent *event, Boolean *b)
99 {
100     Arg args[2];
101     char *s;
102     int j;
103
104     UnCaret();
105     XtSetArg(args[0], XtNstring, &s);
106     XtGetValues(w, args, 1);
107     j = 1;
108     XtSetArg(args[0], XtNdisplayCaret, True);
109     if(!strchr(s, '\n') && strlen(s) < 80) XtSetArg(args[1], XtNinsertPosition, strlen(s)), j++;
110     XtSetValues(w, args, j);
111     XtSetKeyboardFocus((Widget) data, w);
112     previous = w;
113 }
114 #endif
115
116 void
117 BoardFocus ()
118 {
119 #ifdef TODO_GTK
120     XtSetKeyboardFocus(shellWidget, formWidget);
121 #endif
122 }
123
124 //--------------------------- Engine-specific options menu ----------------------------------
125
126 int dialogError;
127 Option *dialogOptions[NrOfDialogs];
128
129 #ifdef TODO_GTK
130 static Arg layoutArgs[] = {
131     { XtNborderWidth, 0 },
132     { XtNdefaultDistance, 0 },
133 };
134
135 static Arg formArgs[] = {
136     { XtNborderWidth, 0 },
137     { XtNresizable, (XtArgVal) True },
138 };
139 #endif
140
141 void GetWidgetTextGTK(GtkWidget *w, char **buf)
142 {
143     GtkTextIter start;
144     GtkTextIter end;
145
146     if (GTK_IS_ENTRY(w)) {
147         *buf = (char *) gtk_entry_get_text(GTK_ENTRY (w));
148     } else
149     if (GTK_IS_TEXT_BUFFER(w)) {
150         gtk_text_buffer_get_start_iter(GTK_TEXT_BUFFER(w), &start);
151         gtk_text_buffer_get_end_iter(GTK_TEXT_BUFFER(w), &end);
152         *buf = gtk_text_buffer_get_text(GTK_TEXT_BUFFER(w), &start, &end, FALSE);
153     }
154     else {
155         printf("error in GetWidgetText, invalid widget\n");
156         *buf = NULL;
157     }
158 }
159
160 void
161 GetWidgetText (Option *opt, char **buf)
162 {
163     int x;
164     static char val[12];
165     switch(opt->type) {
166       case Fractional:
167       case FileName:
168       case PathName:
169       case TextBox: GetWidgetTextGTK((GtkWidget *) opt->handle, buf); break;
170       case Spin:
171         x = gtk_spin_button_get_value (GTK_SPIN_BUTTON(opt->handle));
172         snprintf(val, 12, "%d", x); *buf = val;
173         break;
174       default:
175         printf("unexpected case (%d) in GetWidgetText\n", opt->type);
176         *buf = NULL;
177     }
178 }
179
180 void SetSpinValue(Option *opt, char *val, int n)
181 {
182     if (opt->type == Spin)
183       {
184         if (!strcmp(val, _("Unused")))
185            gtk_widget_set_sensitive(opt->handle, FALSE);
186         else
187           {
188             gtk_widget_set_sensitive(opt->handle, TRUE);
189             gtk_spin_button_set_value(opt->handle, atoi(val));
190           }
191       }
192     else
193       printf("error in SetSpinValue, unknown type %d\n", opt->type);
194 }
195
196 void SetWidgetTextGTK(GtkWidget *w, char *text)
197 {
198     if (GTK_IS_ENTRY(w)) {
199         gtk_entry_set_text (GTK_ENTRY (w), text);
200     } else
201     if (GTK_IS_TEXT_BUFFER(w)) {
202         gtk_text_buffer_set_text(GTK_TEXT_BUFFER(w), text, -1);
203     } else
204         printf("error: SetWidgetTextGTK arg is neitherGtkEntry nor GtkTextBuffer\n");
205 }
206
207 void
208 SetWidgetText (Option *opt, char *buf, int n)
209 {
210     switch(opt->type) {
211       case Fractional:
212       case FileName:
213       case PathName:
214       case TextBox: SetWidgetTextGTK((GtkWidget *) opt->handle, buf); break;
215       case Spin: SetSpinValue(opt, buf, n); break;
216       default:
217         printf("unexpected case (%d) in GetWidgetText\n", opt->type);
218     }
219 #ifdef TODO_GTK
220 // focus is automatic in GTK?
221     if(n >= 0) SetFocus(opt->handle, shells[n], NULL, False);
222 #endif
223 }
224
225 void
226 GetWidgetState (Option *opt, int *state)
227 {
228     *state = gtk_toggle_button_get_active(opt->handle);
229 }
230
231 void
232 SetWidgetState (Option *opt, int state)
233 {
234     gtk_toggle_button_set_active(opt->handle, state);
235 }
236
237 void
238 SetWidgetLabel (Option *opt, char *buf)
239 {
240     if(opt->type == Button) // Chat window uses this routine for changing button labels
241         gtk_button_set_label(opt->handle, buf);
242     else
243         gtk_label_set_text(opt->handle, buf);
244 }
245
246 void
247 SetComboChoice (Option *opt, int n)
248 {
249     gtk_combo_box_set_active(opt->handle, n);
250 }
251
252 void
253 SetDialogTitle (DialogClass dlg, char *title)
254 {
255     gtk_window_set_title(GTK_WINDOW(shells[dlg]), title);
256 }
257
258 void
259 SetWidgetFont (GtkWidget *w, char **s)
260 {
261     PangoFontDescription *pfd;
262     if (!s || !*s || !**s) return; // uses no font, no font spec or empty font spec
263     pfd = pango_font_description_from_string(*s);
264     gtk_widget_modify_font(w, pfd);
265 }
266
267 void
268 SetListBoxItem (GtkListStore *store, int n, char *msg)
269 {
270     GtkTreeIter iter;
271     GtkTreePath *path = gtk_tree_path_new_from_indices(n, -1);
272     gtk_tree_model_get_iter(GTK_TREE_MODEL (store), &iter, path);
273     gtk_tree_path_free(path);
274     gtk_list_store_set(store, &iter, 0, msg, -1);
275 }
276
277 void
278 LoadListBox (Option *opt, char *emptyText, int n1, int n2)
279 {
280     char **data = (char **) (opt->target);
281     GtkWidget *list = (GtkWidget *) (opt->handle);
282     GtkTreeModel *model = gtk_tree_view_get_model(GTK_TREE_VIEW(list));
283     GtkListStore *store = GTK_LIST_STORE(model);
284     GtkTreeIter iter;
285
286     if(n1 >= 0 && n2 >= 0) {
287         SetListBoxItem(store, n1, data[n1]);
288         SetListBoxItem(store, n2, data[n2]);
289         return;
290     }
291
292     if (gtk_tree_model_get_iter_first(model, &iter))
293         gtk_list_store_clear(store);
294
295     while(*data) { // add elements to listbox one by one
296         gtk_list_store_append(store, &iter);
297         gtk_list_store_set(store, &iter, 0, *data++, -1); // 0 = first column
298     }
299 }
300
301 void
302 HighlightItem (Option *opt, int index, int scroll)
303 {
304     GtkWidget *list = (GtkWidget *) (opt->handle);
305     GtkTreeSelection *selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(list));
306     GtkTreePath *path = gtk_tree_path_new_from_indices(index, -1);
307     gtk_tree_selection_select_path(selection, path);
308     if(scroll) gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(list), path, NULL, 0, 0, 0);
309     gtk_tree_path_free(path);
310 }
311
312 void
313 HighlightListBoxItem (Option *opt, int index)
314 {
315     HighlightItem (opt, index, FALSE);
316 }
317
318 void
319 HighlightWithScroll (Option *opt, int index, int max)
320 {
321     HighlightItem (opt, index, TRUE); // ignore max
322 }
323
324 void
325 ScrollToCursor (Option *opt, int caretPos)
326 {
327     static GtkTextIter iter;
328     GtkTextMark *mark = gtk_text_buffer_get_mark((GtkTextBuffer *) opt->handle, "scrollmark");
329     gtk_text_buffer_get_iter_at_offset((GtkTextBuffer *) opt->handle, &iter, caretPos);
330     gtk_text_buffer_move_mark((GtkTextBuffer *) opt->handle, mark, &iter);
331     gtk_text_view_scroll_to_mark((GtkTextView *) opt->textValue, mark, 0.0, 0, 0.5, 0.5);
332 }
333
334 int
335 SelectedListBoxItem (Option *opt)
336 {
337     int i;
338     char *value, **data = (char **) (opt->target);
339     GtkWidget *list = (GtkWidget *) (opt->handle);
340     GtkTreeSelection *selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(list));
341
342     GtkTreeModel *model;
343     GtkTreeIter iter;
344     if (!gtk_tree_selection_get_selected(GTK_TREE_SELECTION(selection), &model, &iter)) return -1;
345     gtk_tree_model_get(model, &iter, 0, &value,  -1);
346     for(i=0; data[i]; i++) if(!strcmp(data[i], value)) return i;
347     g_free(value);
348     return -1;
349 }
350
351 void
352 FocusOnWidget (Option *opt, DialogClass dlg)
353 {
354     UnCaret();
355 #ifdef TODO_GTK
356     XtSetKeyboardFocus(shells[dlg], opt->handle);
357 #endif
358     if(dlg) gtk_window_present(GTK_WINDOW(shells[dlg]));
359     gtk_widget_grab_focus(opt->handle);
360 }
361
362 void
363 SetIconName (DialogClass dlg, char *name)
364 {
365 #ifdef TODO_GTK
366         Arg args[16];
367         int j = 0;
368         XtSetArg(args[j], XtNiconName, (XtArgVal) name);  j++;
369 //      XtSetArg(args[j], XtNtitle, (XtArgVal) name);  j++;
370         XtSetValues(shells[dlg], args, j);
371 #endif
372 }
373
374 void ComboSelect(GtkWidget *widget, gpointer addr)
375 {
376     Option *opt = dialogOptions[((intptr_t)addr)>>8]; // applicable option list
377     gint i = ((intptr_t)addr) & 255; // option number
378     gint g;
379
380     g = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
381     values[i] = g; // store in temporary, for transfer at OK
382
383 #if TODO_GTK
384 // Note: setting text on button is probably automatic
385 // Is this still needed? Could be all comboboxes that needed a callbak are now listboxes!
386 #endif
387     if(opt[i].type == Graph || opt[i].min & COMBO_CALLBACK && (!currentCps || shellUp[BrowserDlg])) {
388         ((ButtonCallback*) opt[i].target)(i);
389         return;
390     }
391 }
392
393 #ifdef TODO_GTK
394 Widget
395 CreateMenuItem (Widget menu, char *msg, XtCallbackProc CB, int n)
396 {
397     int j=0;
398     Widget entry;
399     Arg args[16];
400     XtSetArg(args[j], XtNleftMargin, 20);   j++;
401     XtSetArg(args[j], XtNrightMargin, 20);  j++;
402     if(!strcmp(msg, "----")) { XtCreateManagedWidget(msg, smeLineObjectClass, menu, args, j); return NULL; }
403     XtSetArg(args[j], XtNlabel, msg);
404     entry = XtCreateManagedWidget("item", smeBSBObjectClass, menu, args, j+1);
405     XtAddCallback(entry, XtNcallback, CB, (caddr_t)(intptr_t) n);
406     return entry;
407 }
408 #endif
409
410 static void
411 MenuSelect (gpointer addr) // callback for all combo items
412 {
413     Option *opt = dialogOptions[((intptr_t)addr)>>24]; // applicable option list
414     int i = ((intptr_t)addr)>>16 & 255; // option number
415     int j = 0xFFFF & (intptr_t) addr;
416
417     values[i] = j; // store selected value in Option struct, for retrieval at OK
418     ((ButtonCallback*) opt[i].target)(i);
419 }
420
421 static GtkWidget *
422 CreateMenuPopup (Option *opt, int n, int def)
423 {   // fromList determines if the item texts are taken from a list of strings, or from a menu table
424     int i;
425     GtkWidget *menu, *entry;
426     MenuItem *mb = (MenuItem *) opt->choice;
427
428     menu = gtk_menu_new();
429 //    menu = XtCreatePopupShell(opt->name, simpleMenuWidgetClass, parent, NULL, 0);
430     for (i=0; 1; i++)
431       {
432         char *msg = mb[i].string;
433         if(!msg) break;
434 #ifdef OSXAPP
435         if(!strcmp(msg, "Quit ")) continue;             // Quit item will appear automatically in App menu
436         if(!strcmp(msg, "About XBoard")) msg = "About"; // 'XBoard' will be appended automatically when moved to App menu 1st item
437 #endif
438         if(!strcmp(msg, "ICS Input Box")) { mb[i].handle = NULL; continue; } // suppress ICS Input Box in GTK
439         if(strcmp(msg, "----")) { //
440           if(!(opt->min & NO_GETTEXT)) msg = _(msg);
441           if(mb[i].handle) {
442             entry = gtk_check_menu_item_new_with_label(msg); // should be used for items that can be checkmarked
443             if(mb[i].handle == RADIO) gtk_check_menu_item_set_draw_as_radio(GTK_CHECK_MENU_ITEM(entry), True);
444           } else
445             entry = gtk_menu_item_new_with_label(msg);
446           gtk_signal_connect_object (GTK_OBJECT (entry), "activate", GTK_SIGNAL_FUNC(MenuSelect), (gpointer) (intptr_t) ((n<<16)+i));
447           if(mb[i].accel) {
448             guint accelerator_key;
449             GdkModifierType accelerator_mods;
450
451             gtk_accelerator_parse(mb[i].accel, &accelerator_key, &accelerator_mods);
452 #ifdef OSXAPP
453             if(accelerator_mods & GDK_CONTROL_MASK) {  // in OSX use Meta where Linux uses Ctrl
454                 accelerator_mods &= ~GDK_CONTROL_MASK; // clear Ctrl flag
455                 accelerator_mods |= GDK_META_MASK;     // set Meta flag
456             }
457 #endif
458             gtk_widget_add_accelerator (GTK_WIDGET(entry), "activate",GtkAccelerators,
459                                         accelerator_key, accelerator_mods, GTK_ACCEL_VISIBLE);
460           }
461         } else entry = gtk_separator_menu_item_new();
462         gtk_widget_show(entry);
463         gtk_menu_append(GTK_MENU (menu), entry);
464 //CreateMenuItem(menu, opt->min & NO_GETTEXT ? msg : _(msg), (XtCallbackProc) ComboSelect, (n<<16)+i);
465         mb[i].handle = (void*) entry; // save item ID, for enabling / checkmarking
466 //      if(i==def) {
467 //          XtSetArg(arg, XtNpopupOnEntry, entry);
468 //          XtSetValues(menu, &arg, 1);
469 //      }
470       }
471       return menu;
472 }
473
474 Option *icsBox; // kludge to distinguish type-in callback from input-box callback
475
476 void
477 CursorAtEnd (Option *opt)
478 {
479     gtk_editable_set_position(opt->handle, -1);
480 }
481
482 static gboolean
483 ICSKeyEvent (int keyval)
484 {   // TODO_GTK: arrow-handling should really be integrated in type-in proc, and this should be a backe-end OK handler
485     switch(keyval) {
486       case GDK_Return: IcsKey(0); return TRUE;
487       case GDK_Up:     IcsKey(1); return TRUE;
488       case GDK_Down:  IcsKey(-1); return TRUE;
489       default: return FALSE;
490     }
491 }
492
493 int shiftState, controlState;
494
495 static gboolean
496 TypeInProc (GtkWidget *widget, GdkEventKey *event, gpointer gdata)
497 {   // This callback catches key presses on text-entries, and uses <Enter> and <Esc> as synonyms for dialog OK or Cancel
498     // *** kludge alert *** If a dialog does want some other action, like sending the line typed in the text-entry to an ICS,
499     // it should define an OK handler that does so, and returns FALSE to suppress the popdown.
500     int n = (intptr_t) gdata;
501     int dlg = n >> 16;
502     Option *opt;
503     n &= 0xFFFF;
504     opt = &dialogOptions[dlg][n];
505
506     if(opt == icsBox) return ICSKeyEvent(event->keyval); // Intercept ICS Input Box, which needs special treatment
507
508     shiftState = event->state & GDK_SHIFT_MASK;
509     controlState = event->state & GDK_CONTROL_MASK;
510     switch(event->keyval) {
511       case 'e':       return (controlState && IcsHist( 5, opt, dlg));
512       case 'h':       return (controlState && IcsHist( 8, opt, dlg));
513       case 'n':       return (controlState && IcsHist(14, opt, dlg));
514       case 'o':       return (controlState && IcsHist(15, opt, dlg));
515       case GDK_Tab:   IcsHist(10, opt, dlg); break;
516       case GDK_Up:     IcsHist(1, opt, dlg); break;
517       case GDK_Down:  IcsHist(-1, opt, dlg); break;
518       case GDK_Return:
519         if(GenericReadout(dialogOptions[dlg], -1)) PopDown(dlg);
520         break;
521       case GDK_Escape:
522         if(!IcsHist(33, opt, dlg)) PopDown(dlg);
523         break;
524       default:
525         return FALSE;
526     }
527     return TRUE;
528 }
529
530 void
531 HighlightText (Option *opt, int from, int to, Boolean highlight)
532 {
533 #   define INIT 0x8000
534     static GtkTextIter start, end;
535
536     if(!(opt->min & INIT)) {
537         opt->min |= INIT; // each memo its own init flag!
538         gtk_text_buffer_create_tag(opt->handle, "highlight", "background", "yellow", NULL);
539     }
540     gtk_text_buffer_get_iter_at_offset(opt->handle, &start, from);
541     gtk_text_buffer_get_iter_at_offset(opt->handle, &end, to);
542     if(highlight) gtk_text_buffer_apply_tag_by_name(opt->handle, "highlight", &start, &end);
543     else gtk_text_buffer_remove_tag_by_name(opt->handle, "highlight", &start, &end);
544 }
545
546 static char **names;
547 static int curFG, curBG, curAttr;
548 static GdkColor backgroundColor;
549
550 void
551 SetTextColor(char **cnames, int fg, int bg, int attr)
552 {
553     if(fg < 0) fg = 0; if(bg < 0) bg = 7;
554     names = cnames; curFG = fg; curBG = bg, curAttr = attr;
555     if(attr == -2) { // background color of ICS console.
556         gdk_color_parse(cnames[bg&7], &backgroundColor);
557         curAttr = 0;
558     }
559 }
560
561 void
562 AppendColorized (Option *opt, char *s, int count)
563 {
564     static GtkTextIter end;
565     static GtkTextTag *fgTags[8], *bgTags[8], *font, *bold, *normal, *attr = NULL;
566
567     if(!font) {
568         font = gtk_text_buffer_create_tag(opt->handle, NULL, "font", appData.icsFont, NULL);
569         gtk_widget_modify_base(GTK_WIDGET(opt->textValue), GTK_STATE_NORMAL, &backgroundColor);
570     }
571
572     gtk_text_buffer_get_end_iter(GTK_TEXT_BUFFER(opt->handle), &end);
573
574     if(names) {
575       if(curAttr == 1) {
576         if(!bold) bold = gtk_text_buffer_create_tag(opt->handle, NULL, "weight", PANGO_WEIGHT_BOLD, NULL);
577         attr = bold;
578       } else {
579         if(!normal) normal = gtk_text_buffer_create_tag(opt->handle, NULL, "weight", PANGO_WEIGHT_NORMAL, NULL);
580         attr = normal;
581       }
582       if(!fgTags[curFG]) {
583         fgTags[curFG] = gtk_text_buffer_create_tag(opt->handle, NULL, "foreground", names[curFG], NULL);
584       }
585       if(!bgTags[curBG]) {
586         bgTags[curBG] = gtk_text_buffer_create_tag(opt->handle, NULL, "background", names[curBG], NULL);
587       }
588       gtk_text_buffer_insert_with_tags(opt->handle, &end, s, count, fgTags[curFG], bgTags[curBG], font, attr, NULL);
589     } else
590       gtk_text_buffer_insert_with_tags(opt->handle, &end, s, count, font, NULL);
591
592 }
593
594 void
595 Show (Option *opt, int hide)
596 {
597     if(hide) gtk_widget_hide(opt->handle);
598     else     gtk_widget_show(opt->handle);
599 }
600
601 int
602 ShiftKeys ()
603 {   // bassic primitive for determining if modifier keys are pressed
604     return 3*(shiftState != 0) + 0xC*(controlState != 0); // rely on what last mouse button press left us
605 }
606
607 static gboolean
608 GameListEvent(GtkWidget *widget, GdkEvent *event, gpointer gdata)
609 {
610     int n = (intptr_t) gdata;
611
612     if(n == 4) {
613         if(((GdkEventKey *) event)->keyval != GDK_Return) return FALSE;
614         SetFilter();
615         return TRUE;
616     }
617
618     if(event->type == GDK_KEY_PRESS) {
619         int ctrl = (((GdkEventKey *) event)->state & GDK_CONTROL_MASK) != 0;
620         switch(((GdkEventKey *) event)->keyval) {
621           case GDK_Up: GameListClicks(-1 - 2*ctrl); return TRUE;
622           case GDK_Left: GameListClicks(-1); return TRUE;
623           case GDK_Down: GameListClicks(1 + 2*ctrl); return TRUE;
624           case GDK_Right: GameListClicks(1); return TRUE;
625           case GDK_Prior: GameListClicks(-4); return TRUE;
626           case GDK_Next: GameListClicks(4); return TRUE;
627           case GDK_Home: GameListClicks(-2); return TRUE;
628           case GDK_End: GameListClicks(2); return TRUE;
629           case GDK_Return: GameListClicks(0); return TRUE;
630           default: return FALSE;
631         }
632     }
633     if(event->type != GDK_2BUTTON_PRESS || ((GdkEventButton *) event)->button != 1) return FALSE;
634     GameListClicks(0);
635     return TRUE;
636 }
637
638 static gboolean
639 MemoEvent(GtkWidget *widget, GdkEvent *event, gpointer gdata)
640 {   // handle mouse clicks on text widgets that need it
641     int w, h;
642     int button=10, f=1;
643     Option *memo = (Option *) gdata;
644     MemoCallback *userHandler = (MemoCallback *) memo->choice;
645     GdkEventButton *bevent = (GdkEventButton *) event;
646     GdkEventMotion *mevent = (GdkEventMotion *) event;
647     GtkTextIter start, end;
648     String val = NULL;
649     gboolean res;
650     gint index = 0, x, y;
651
652     switch(event->type) { // figure out what's up
653         case GDK_MOTION_NOTIFY:
654             f = 0;
655             w = mevent->x; h = mevent->y;
656             break;
657         case GDK_BUTTON_RELEASE:
658             f = -1; // release indicated by negative button numbers
659             w = bevent->x; h = bevent->y;
660             button = bevent->button;
661             break;
662         case GDK_BUTTON_PRESS:
663             w = bevent->x; h = bevent->y;
664             button = bevent->button;
665             shiftState = bevent->state & GDK_SHIFT_MASK;
666             controlState = bevent->state & GDK_CONTROL_MASK;
667             if(memo->type == Label) { // only clock widgets use this
668                 ((ButtonCallback*) memo->target)(button == 1 ? memo->value : -memo->value);
669                 return TRUE;
670             }
671             if(memo->value == 250 // kludge to recognize ICS Console and Chat panes
672              && gtk_text_buffer_get_selection_bounds(memo->handle, NULL, NULL) ) {
673 printf("*** selected\n");
674                 gtk_text_buffer_get_selection_bounds(memo->handle, &start, &end); // only return selected text
675                 index = -1; // kludge to indicate omething was selected
676             } else {
677 // GTK_TODO: is this really the most efficient way to get the character at the mouse cursor???
678                 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(widget), GTK_TEXT_WINDOW_WIDGET, w, h, &x, &y);
679                 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(widget), &start, x, y);
680                 gtk_text_buffer_place_cursor(memo->handle, &start);
681                 /* get cursor position into index */
682                 g_object_get(memo->handle, "cursor-position", &index, NULL);
683                 /* take complete contents */
684                 gtk_text_buffer_get_start_iter (memo->handle, &start);
685                 gtk_text_buffer_get_end_iter (memo->handle, &end);
686             }
687             /* get text from textbuffer */
688             val = gtk_text_buffer_get_text (memo->handle, &start, &end, FALSE);
689             break;
690         default:
691             return FALSE; // should not happen
692     }
693     button *= f;
694     // hand click parameters as well as text & location to user
695     res = (userHandler) (memo, button, w, h, val, index);
696     if(val) g_free(val);
697     return res;
698 }
699
700 void
701 AddHandler (Option *opt, DialogClass dlg, int nr)
702 {
703     switch(nr) {
704       case 0: // history (now uses generic textview callback)
705       case 1: // comment (likewise)
706         break;
707       case 3: // input box
708         icsBox = opt;
709       case 2: // move type-in
710         g_signal_connect(opt->handle, "key-press-event", G_CALLBACK (TypeInProc), (gpointer) (dlg<<16 | (opt - dialogOptions[dlg])));
711         break;
712       case 5: // game list
713         g_signal_connect(opt->handle, "button-press-event", G_CALLBACK (GameListEvent), (gpointer) 0 );
714       case 4: // game-list filter
715         g_signal_connect(opt->handle, "key-press-event", G_CALLBACK (GameListEvent), (gpointer) (intptr_t) nr );
716         break;
717       case 6: // engine output (uses generic textview callback)
718         break;
719     }
720 }
721
722 //----------------------------Generic dialog --------------------------------------------
723
724 // cloned from Engine Settings dialog (and later merged with it)
725
726 GtkWidget *shells[NrOfDialogs];
727 DialogClass parents[NrOfDialogs];
728 WindowPlacement *wp[NrOfDialogs] = { // Beware! Order must correspond to DialogClass enum
729     NULL, &wpComment, &wpTags, &wpTextMenu, NULL, &wpConsole, &wpDualBoard, &wpMoveHistory, &wpGameList, &wpEngineOutput, &wpEvalGraph,
730     NULL, NULL, NULL, NULL, &wpMain
731 };
732
733 int
734 DialogExists (DialogClass n)
735 {   // accessor for use in back-end
736     return shells[n] != NULL;
737 }
738
739 void
740 RaiseWindow (DialogClass dlg)
741 {
742 #ifdef TODO_GTK
743     static XEvent xev;
744     Window root = RootWindow(xDisplay, DefaultScreen(xDisplay));
745     Atom atom = XInternAtom (xDisplay, "_NET_ACTIVE_WINDOW", False);
746
747     xev.xclient.type = ClientMessage;
748     xev.xclient.serial = 0;
749     xev.xclient.send_event = True;
750     xev.xclient.display = xDisplay;
751     xev.xclient.window = XtWindow(shells[dlg]);
752     xev.xclient.message_type = atom;
753     xev.xclient.format = 32;
754     xev.xclient.data.l[0] = 1;
755     xev.xclient.data.l[1] = CurrentTime;
756
757     XSendEvent (xDisplay,
758           root, False,static gboolean
759 MemoEvent(GtkWidget *widget, GdkEvent *event, gpointer gdata)
760
761           SubstructureRedirectMask | SubstructureNotifyMask,
762           &xev);
763
764     XFlush(xDisplay);
765     XSync(xDisplay, False);
766 #endif
767 }
768
769 int
770 PopDown (DialogClass n)
771 {
772     //Arg args[10];
773
774     if (!shellUp[n] || !shells[n]) return 0;
775     if(n && wp[n]) { // remember position
776         GetActualPlacement(shells[n], wp[n]);
777     }
778
779     gtk_widget_hide(shells[n]);
780     shellUp[n]--; // count rather than clear
781
782     if(n == 0 || n >= PromoDlg) {
783         gtk_widget_destroy(shells[n]);
784         shells[n] = NULL;
785     }
786
787     if(marked[n]) {
788         MarkMenuItem(marked[n], False);
789         marked[n] = NULL;
790     }
791
792     if(!n) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
793     currentOption = dialogOptions[TransientDlg]; // just in case a transient dialog was up (to allow its check and combo callbacks to work)
794 #ifdef TODO_GTK
795     RaiseWindow(parents[n]); // automatic in GTK?
796     if(parents[n] == BoardWindow) XtSetKeyboardFocus(shellWidget, formWidget); // also automatic???
797 #endif
798     return 1;
799 }
800
801 /* GTK callback used when OK/cancel clicked in genericpopup for non-modal dialog */
802 gboolean GenericPopDown(w, resptype, gdata)
803      GtkWidget *w;
804      GtkResponseType  resptype;
805      gpointer  gdata;
806 {
807     DialogClass dlg = (intptr_t) gdata; /* dialog number dlgnr */
808     GtkWidget *sh = shells[dlg];
809
810     currentOption = dialogOptions[dlg];
811
812 #ifdef TODO_GTK
813 // I guess BrowserDlg will be abandoned, as GTK has a better browser of its own
814     if(shellUp[BrowserDlg] && dlg != BrowserDlg || dialogError) return True; // prevent closing dialog when it has an open file-browse daughter
815 #else
816     if(browserUp || dialogError && dlg != FatalDlg || dlg == MasterDlg && shellUp[TransientDlg])
817         return True; // prevent closing dialog when it has an open file-browse, transient or error-popup daughter
818 #endif
819     shells[dlg] = w; // make sure we pop down the right one in case of multiple instances
820
821     /* OK pressed */
822     if (resptype == GTK_RESPONSE_ACCEPT) {
823         if (GenericReadout(currentOption, -1)) PopDown(dlg);
824         return TRUE;
825     } else
826     /* cancel pressed */
827     {
828         if(dlg == BoardWindow) ExitEvent(0);
829         PopDown(dlg);
830     }
831     shells[dlg] = sh; // restore
832     return TRUE;
833 }
834
835 int AppendText(Option *opt, char *s)
836 {
837     char *v;
838     int len;
839     GtkTextIter end;
840
841     GetWidgetTextGTK(opt->handle, &v);
842     len = strlen(v);
843     g_free(v);
844     gtk_text_buffer_get_end_iter(GTK_TEXT_BUFFER(opt->handle), &end);
845     gtk_text_buffer_insert(opt->handle, &end, s, -1);
846
847     return len;
848 }
849
850 void
851 SetColor (char *colorName, Option *box)
852 {       // sets the color of a widget
853     GdkColor color;
854
855     /* set the colour of the colour button to the colour that will be used */
856     gdk_color_parse( colorName, &color );
857     gtk_widget_modify_bg ( GTK_WIDGET(box->handle), GTK_STATE_NORMAL, &color );
858 }
859
860 #ifdef TODO_GTK
861 void
862 ColorChanged (Widget w, XtPointer data, XEvent *event, Boolean *b)
863 {   // for detecting a typed change in color
864     char buf[10];
865     if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
866         RefreshColor((int)(intptr_t) data, 0);
867 }
868 #endif
869
870 static void
871 GraphEventProc(GtkWidget *widget, GdkEvent *event, gpointer gdata)
872 {   // handle expose and mouse events on Graph widget
873     int w, h;
874     int button=10, f=1, sizing=0;
875     Option *opt, *graph = (Option *) gdata;
876     PointerCallback *userHandler = graph->target;
877     GdkEventExpose *eevent = (GdkEventExpose *) event;
878     GdkEventButton *bevent = (GdkEventButton *) event;
879     GdkEventMotion *mevent = (GdkEventMotion *) event;
880     GdkEventScroll *sevent = (GdkEventScroll *) event;
881     GtkAllocation a;
882     cairo_t *cr;
883
884 //    if (!XtIsRealized(widget)) return;
885
886     switch(event->type) {
887         case GDK_EXPOSE: // make handling of expose events generic, just copying from memory buffer (->choice) to display (->textValue)
888             /* Get window size */
889             gtk_widget_get_allocation(widget, &a);
890             w = a.width; h = a.height;
891 //printf("expose %dx%d @ (%d,%d): %dx%d @(%d,%d)\n", w, h, a.x, a.y, eevent->area.width, eevent->area.height, eevent->area.x, eevent->area.y);
892 #ifdef TODO_GTK
893             j = 0;
894             XtSetArg(args[j], XtNwidth, &w); j++;
895             XtSetArg(args[j], XtNheight, &h); j++;
896             XtGetValues(widget, args, j);
897 #endif
898             if(w < graph->max || w > graph->max + 1 || h != graph->value) { // use width fudge of 1 pixel
899                 if(eevent->count >= 0) { // suppress sizing on expose for ordered redraw in response to sizing.
900                     sizing = 1;
901                     graph->max = w; graph->value = h; // note: old values are kept if we we don't exceed width fudge
902                 }
903             } else w = graph->max;
904             if(sizing && eevent->count > 0) { graph->max = 0; return; } // don't bother if further exposure is pending during resize
905 #ifdef TODO_GTK
906             if(!graph->textValue || sizing) { // create surfaces of new size for display widget
907                 if(graph->textValue) cairo_surface_destroy((cairo_surface_t *)graph->textValue);
908                 graph->textValue = (char*) cairo_xlib_surface_create(xDisplay, XtWindow(widget), DefaultVisual(xDisplay, 0), w, h);
909             }
910 #endif
911             if(sizing) { // the memory buffer was already created in GenericPopup(),
912                          // to give drawing routines opportunity to use it before first expose event
913                          // (which are only processed when main gets to the event loop, so after all init!)
914                          // so only change when size is no longer good
915                 cairo_t *cr;
916                 if(graph->choice) cairo_surface_destroy((cairo_surface_t *) graph->choice);
917                 graph->choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, w, h);
918                 // paint white, to prevent weirdness when people maximize window and drag pieces over space next to board
919                 cr = cairo_create ((cairo_surface_t *) graph->choice);
920                 cairo_rectangle (cr, 0, 0, w, h);
921                 cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0);
922                 cairo_fill(cr);
923                 cairo_destroy (cr);
924                 break;
925             }
926             w = eevent->area.width;
927             if(eevent->area.x + w > graph->max) w--; // cut off fudge pixel
928             cr = gdk_cairo_create(((GtkWidget *) (graph->handle))->window);
929             cairo_set_source_surface(cr, (cairo_surface_t *) graph->choice, 0, 0);
930 //cairo_set_source_rgb(cr, 1, 0, 0);
931             cairo_set_antialias(cr, CAIRO_ANTIALIAS_NONE);
932             cairo_rectangle(cr, eevent->area.x, eevent->area.y, w, eevent->area.height);
933             cairo_fill(cr);
934             cairo_destroy(cr);
935         default:
936             return;
937         case GDK_SCROLL:
938             if(sevent->direction == GDK_SCROLL_UP) button = 4;
939             if(sevent->direction == GDK_SCROLL_DOWN) button = 5;
940             break;
941         case GDK_MOTION_NOTIFY:
942             f = 0;
943             w = mevent->x; h = mevent->y;
944             break;
945         case GDK_BUTTON_RELEASE:
946             f = -1; // release indicated by negative button numbers
947         case GDK_BUTTON_PRESS:
948             w = bevent->x; h = bevent->y;
949             button = bevent->button;
950             shiftState = bevent->state & GDK_SHIFT_MASK;
951             controlState = bevent->state & GDK_CONTROL_MASK;
952     }
953     button *= f;
954
955     opt = userHandler(button, w, h);
956 #ifdef TODO_GTK
957     if(opt) { // user callback specifies a context menu; pop it up
958         XUngrabPointer(xDisplay, CurrentTime);
959         XtCallActionProc(widget, "XawPositionSimpleMenu", event, &(opt->name), 1);
960         XtPopupSpringLoaded(opt->handle);
961     }
962     XSync(xDisplay, False);
963 #endif
964 }
965
966 void
967 GraphExpose (Option *opt, int x, int y, int w, int h)
968 {
969 #if 0
970   GdkRectangle r;
971   r.x = x; r.y = y; r.width = w; r.height = h;
972   gdk_window_invalidate_rect(((GtkWidget *)(opt->handle))->window, &r, FALSE);
973 #endif
974   GdkEventExpose e;
975   if(!opt->handle) return;
976   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
977   GraphEventProc(opt->handle, (GdkEvent *) &e, (gpointer) opt); // fake expose event
978 }
979
980 void GenericCallback(GtkWidget *widget, gpointer gdata)
981 {
982     const gchar *name;
983     char buf[MSG_SIZ];
984     int data = (intptr_t) gdata;
985     DialogClass dlg;
986 #ifdef TODO_GTK
987     GtkWidget *sh = XtParent(XtParent(XtParent(w))), *oldSh;
988 #else
989     GtkWidget *sh, *oldSh;
990 #endif
991
992     currentOption = dialogOptions[dlg=data>>16]; data &= 0xFFFF;
993 #ifndef TODO_GTK
994     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!)
995 #endif
996     oldSh = shells[dlg]; shells[dlg] = sh; // bow to reality
997
998     if (data == 30000) { // cancel
999         PopDown(dlg);
1000     } else
1001     if (data == 30001) { // save buttons imply OK
1002         if(GenericReadout(currentOption, -1)) PopDown(dlg); // calls OK-proc after full readout, but no popdown if it returns false
1003     } else
1004
1005     if(currentCps) {
1006         name = gtk_button_get_label (GTK_BUTTON(widget));
1007         if(currentOption[data].type == SaveButton) GenericReadout(currentOption, -1);
1008         snprintf(buf, MSG_SIZ,  "option %s\n", name);
1009         SendToProgram(buf, currentCps);
1010     } else ((ButtonCallback*) currentOption[data].target)(data);
1011
1012     shells[dlg] = oldSh; // in case of multiple instances, restore previous (as this one could be popped down now)
1013 }
1014
1015 void BrowseGTK(GtkWidget *widget, gpointer gdata)
1016 {
1017     GtkWidget *entry;
1018     GtkWidget *dialog;
1019     GtkFileFilter *gtkfilter;
1020     GtkFileFilter *gtkfilter_all;
1021     int opt_i = (intptr_t) gdata;
1022     GtkFileChooserAction fc_action;
1023
1024     gtkfilter     = gtk_file_filter_new();
1025     gtkfilter_all = gtk_file_filter_new();
1026
1027     char fileext[MSG_SIZ], *filter = currentOption[opt_i].textValue;
1028
1029     StartDir(filter, NULL); // change to start directory for this file type
1030
1031     /* select file or folder depending on option_type */
1032     if (currentOption[opt_i].type == PathName)
1033         fc_action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
1034     else
1035         fc_action = GTK_FILE_CHOOSER_ACTION_OPEN;
1036
1037     dialog = gtk_file_chooser_dialog_new ("Open File",
1038                       NULL,
1039                       fc_action,
1040                       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
1041                       GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
1042                       NULL);
1043
1044     /* one filter to show everything */
1045     gtk_file_filter_add_pattern(gtkfilter_all, "*");
1046     gtk_file_filter_set_name   (gtkfilter_all, "All Files");
1047     gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog),gtkfilter_all);
1048
1049     /* filter for specific filetypes e.g. pgn or fen */
1050     if (currentOption[opt_i].textValue != NULL)
1051       {
1052         char *q, *p = currentOption[opt_i].textValue;
1053         gtk_file_filter_set_name (gtkfilter, p);
1054         while(*p) {
1055           snprintf(fileext, MSG_SIZ, "*%s", p);
1056           while(*p) if(*p++ == ' ')  break;
1057           for(q=fileext; *q; q++) if(*q == ' ') { *q = NULLCHAR; break; }
1058           gtk_file_filter_add_pattern(gtkfilter, fileext);
1059         }
1060         gtk_file_chooser_add_filter (GTK_FILE_CHOOSER(dialog),gtkfilter);
1061         /* activate filter */
1062         gtk_file_chooser_set_filter (GTK_FILE_CHOOSER(dialog),gtkfilter);
1063       }
1064     else
1065       gtk_file_chooser_set_filter (GTK_FILE_CHOOSER(dialog),gtkfilter_all);
1066
1067     if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
1068       {
1069         char *filename;
1070         filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
1071         entry = currentOption[opt_i].handle;
1072         gtk_entry_set_text (GTK_ENTRY (entry), filename);
1073         StartDir(filter, filename); // back to original, and remember this one
1074         g_free (filename);
1075       }
1076     else StartDir(filter, ""); // change back to original directory
1077     gtk_widget_destroy (dialog);
1078     dialog = NULL;
1079 }
1080
1081 gboolean
1082 ListCallback (GtkWidget *widget, GdkEventButton *event, gpointer gdata)
1083 {
1084     int n = (intptr_t) gdata & 0xFFFF;
1085     int dlg = (intptr_t) gdata >> 16;
1086     Option *opt = dialogOptions[dlg] + n;
1087
1088     if(event->type != GDK_2BUTTON_PRESS || event->button != 1) return FALSE;
1089     ((ListBoxCallback*) opt->textValue)(n, SelectedListBoxItem(opt));
1090     return TRUE;
1091 }
1092
1093 #ifdef TODO_GTK
1094 // This is needed for color pickers?
1095 static char *oneLiner  =
1096    "<Key>Return: redraw-display() \n \
1097     <Key>Tab: TabProc() \n ";
1098 #endif
1099
1100 #ifdef TODO_GTK
1101 static void
1102 SqueezeIntoBox (Option *opt, int nr, int width)
1103 {   // size buttons in bar to fit, clipping button names where necessary
1104     int i, wtot = 0;
1105     Dimension widths[20], oldWidths[20];
1106     Arg arg;
1107     for(i=1; i<nr; i++) {
1108         XtSetArg(arg, XtNwidth, &widths[i]);
1109         XtGetValues(opt[i].handle, &arg, 1);
1110         wtot +=  oldWidths[i] = widths[i];
1111     }
1112     opt->min = wtot;
1113     if(width <= 0) return;
1114     while(wtot > width) {
1115         int wmax=0, imax=0;
1116         for(i=1; i<nr; i++) if(widths[i] > wmax) wmax = widths[imax=i];
1117         widths[imax]--;
1118         wtot--;
1119     }
1120     for(i=1; i<nr; i++) if(widths[i] != oldWidths[i]) {
1121         XtSetArg(arg, XtNwidth, widths[i]);
1122         XtSetValues(opt[i].handle, &arg, 1);
1123     }
1124     opt->min = wtot;
1125 }
1126 #endif
1127
1128 #ifdef TODO_GTK
1129 int
1130 SetPositionAndSize (Arg *args, Widget leftNeigbor, Widget topNeigbor, int b, int w, int h, int chaining)
1131 {   // sizing and positioning most widgets have in common
1132     int j = 0;
1133     // first position the widget w.r.t. earlier ones
1134     if(chaining & 1) { // same row: position w.r.t. last (on current row) and lastrow
1135         XtSetArg(args[j], XtNfromVert, topNeigbor); j++;
1136         XtSetArg(args[j], XtNfromHoriz, leftNeigbor); j++;
1137     } else // otherwise it goes at left margin (which is default), below the previous element
1138         XtSetArg(args[j], XtNfromVert, leftNeigbor),  j++;
1139     // arrange chaining ('2'-bit indicates top and bottom chain the same)
1140     if((chaining & 14) == 6) XtSetArg(args[j], XtNtop,    XtChainBottom), j++;
1141     if((chaining & 14) == 10) XtSetArg(args[j], XtNbottom, XtChainTop ), j++;
1142     if(chaining & 4) XtSetArg(args[j], XtNbottom, XtChainBottom ), j++;
1143     if(chaining & 8) XtSetArg(args[j], XtNtop,    XtChainTop), j++;
1144     if(chaining & 0x10) XtSetArg(args[j], XtNright, XtChainRight), j++;
1145     if(chaining & 0x20) XtSetArg(args[j], XtNleft,  XtChainRight), j++;
1146     if(chaining & 0x40) XtSetArg(args[j], XtNright, XtChainLeft ), j++;
1147     if(chaining & 0x80) XtSetArg(args[j], XtNleft,  XtChainLeft ), j++;
1148     // set size (if given)
1149     if(w) XtSetArg(args[j], XtNwidth, w), j++;
1150     if(h) XtSetArg(args[j], XtNheight, h),  j++;
1151     // color
1152     if(!appData.monoMode) {
1153         if(!b && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
1154         if(b == 3 && appData.buttonColor[0]) XtSetArg(args[j], XtNbackground, buttonColor),  j++;
1155     }
1156     if(b == 3) b = 1;
1157     // border
1158     XtSetArg(args[j], XtNborderWidth, b);  j++;
1159     return j;
1160 }
1161 #endif
1162
1163 static int
1164 TableWidth (Option *opt)
1165 {   // Hideous work-around! If the table is 3 columns, but 2 & 3 are always occupied together, the fixing of the width of column 1 does not work
1166     while(opt->type != EndMark && opt->type != Break)
1167         if(opt->type == FileName || opt->type == PathName || opt++->type == BarBegin) return 3; // This table needs browse button
1168     return 2; // no browse button;
1169 }
1170
1171 static int
1172 SameRow (Option *opt)
1173 {
1174     return (opt->min & SAME_ROW && (opt->type == Button || opt->type == SaveButton || opt->type == Label
1175                                  || opt->type == ListBox || opt->type == BoxBegin || opt->type == Icon || opt->type == Graph));
1176 }
1177
1178 static void
1179 Pack (GtkWidget *hbox, GtkWidget *table, GtkWidget *entry, int left, int right, int top, GtkAttachOptions vExpand)
1180 {
1181     if(hbox) gtk_box_pack_start(GTK_BOX (hbox), entry, TRUE, TRUE, 0);
1182     else     gtk_table_attach(GTK_TABLE(table), entry, left, right, top, top+1,
1183                                 GTK_FILL | GTK_EXPAND, GTK_FILL | vExpand, 2, 1);
1184 }
1185
1186 int
1187 GenericPopUp (Option *option, char *title, DialogClass dlgNr, DialogClass parent, int modal, int topLevel)
1188 {
1189     GtkWidget *dialog = NULL;
1190     gint       w;
1191     GtkWidget *label;
1192     GtkWidget *box;
1193     GtkWidget *checkbutton;
1194     GtkWidget *entry;
1195     GtkWidget *oldHbox = NULL, *hbox = NULL;
1196     GtkWidget *pane = NULL;
1197     GtkWidget *button;
1198     GtkWidget *table;
1199     GtkWidget *spinner;
1200     GtkAdjustment *spinner_adj;
1201     GtkWidget *combobox;
1202     GtkWidget *textview;
1203     GtkTextBuffer *textbuffer;
1204     GdkColor color;
1205     GtkWidget *actionarea;
1206     GtkWidget *sw;
1207     GtkWidget *list;
1208     GtkWidget *graph;
1209     GtkWidget *menuButton;
1210     GtkWidget *menuBar = NULL;
1211     GtkWidget *menu;
1212
1213     int i, j, arraysize, left, top, height=999, width=1, boxStart=0, breakType = 0, r;
1214     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
1215     gboolean expandable = FALSE;
1216
1217     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
1218
1219     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
1220         gtk_widget_show(shells[dlgNr]);
1221         shellUp[dlgNr] = True;
1222         if(wp[dlgNr]) gtk_window_move(GTK_WINDOW(shells[dlgNr]), wp[dlgNr]->x, wp[dlgNr]->y);
1223         return 0;
1224     }
1225     if(dlgNr == TransientDlg && parent == BoardWindow && shellUp[MasterDlg]) parent = MasterDlg; // MasterDlg can always take role of main window
1226
1227     dialogOptions[dlgNr] = option; // make available to callback
1228     // post currentOption globally, so Spin and Combo callbacks can already use it
1229     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1230     currentOption = option;
1231
1232     if(engineDlg) { // Settings popup for engine: format through heuristic
1233         int n = currentCps->nrOptions;
1234 //        if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1235         width = n / 20 + 1;
1236         height = n / width + 1;
1237 if(appData.debugMode) printf("n=%d, h=%d, w=%d\n",n,height,width);
1238 //      if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1239         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1240     }
1241
1242     parents[dlgNr] = parent;
1243 #ifdef TODO_GTK
1244     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
1245
1246     if(dlgNr == BoardWindow) dialog = shellWidget; else
1247     dialog =
1248       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
1249                                                            shells[parent], args, i);
1250 #endif
1251
1252     if(topLevel)
1253       {
1254         dialog = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1255         gtk_window_set_title(GTK_WINDOW(dialog), title);
1256         box = gtk_vbox_new(FALSE,0);
1257         gtk_container_add (GTK_CONTAINER (dialog), box);
1258       }
1259     else
1260       {
1261         dialog = gtk_dialog_new_with_buttons( title,
1262                                               GTK_WINDOW(shells[parent]),
1263                                               GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR |
1264                                               (modal ? GTK_DIALOG_MODAL : 0),
1265                                               GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1266                                               GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1267                                               NULL );
1268         box = gtk_dialog_get_content_area( GTK_DIALOG( dialog ) );
1269       }
1270
1271     shells[dlgNr] = dialog;
1272 //    gtk_box_set_spacing(GTK_BOX(box), 5);
1273
1274     arraysize = 0;
1275     for (i=0;option[i].type != EndMark;i++) {
1276         arraysize++;
1277     }
1278
1279     table = gtk_table_new(arraysize, r=TableWidth(option), FALSE);
1280     left = 0;
1281     top = -1;
1282
1283     for (i=0;option[i].type != EndMark;i++) {
1284         if(option[i].type == Skip) continue;
1285         top++;
1286 //printf("option =%2d, top =%2d\n", i, top);
1287         if (top >= height || breakType) {
1288             gtk_table_resize(GTK_TABLE(table), top - (breakType != 0), r);
1289             if(!pane) { // multi-column: put tables in intermediate hbox
1290                 if(breakType & SAME_ROW || engineDlg)
1291                     pane =  gtk_hbox_new (FALSE, 0);
1292                 else
1293                     pane =  gtk_vbox_new (FALSE, 0);
1294                 gtk_box_set_spacing(GTK_BOX(pane), 5 + 5*breakType);
1295                 gtk_box_pack_start (GTK_BOX (/*GTK_DIALOG (dialog)->vbox*/box), pane, TRUE, TRUE, 0);
1296             }
1297             gtk_box_pack_start (GTK_BOX (pane), table, expandable, TRUE, 0);
1298             table = gtk_table_new(arraysize - i, r=TableWidth(option + i), FALSE);
1299             top = breakType = 0; expandable = FALSE;
1300         }
1301         if(!SameRow(&option[i])) {
1302             if(SameRow(&option[i+1])) {
1303                 GtkAttachOptions x = GTK_FILL;
1304                 // make sure hbox is always available when we have more options on same row
1305                 hbox = gtk_hbox_new (option[i].type == Button && option[i].textValue || option[i].type == Graph, 0);
1306                 if(!currentCps && option[i].value > 80) x |= GTK_EXPAND; // only vertically extended widgets should size vertically
1307                 if (strcmp(option[i].name, "") == 0 || option[i].type == Label || option[i].type == Button)
1308                     // for Label and Button name is contained inside option
1309                     gtk_table_attach(GTK_TABLE(table), hbox, left, left+r, top, top+1, GTK_FILL | GTK_EXPAND, x, 2, 1);
1310                 else
1311                     gtk_table_attach(GTK_TABLE(table), hbox, left+1, left+r, top, top+1, GTK_FILL | GTK_EXPAND, x, 2, 1);
1312             } else hbox = NULL; //and also make sure no hbox exists if only singl option on row
1313         } else top--;
1314         switch(option[i].type) {
1315           case Fractional:
1316             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1317             option[i].value = *(float*)option[i].target;
1318             goto tBox;
1319           case Spin:
1320             if(!currentCps) option[i].value = *(int*)option[i].target;
1321             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1322           case TextBox:
1323           case FileName:
1324           case PathName:
1325           tBox:
1326             label = gtk_label_new(option[i].name);
1327             /* Left Justify */
1328             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1329
1330             /* width */
1331             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1332             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1333
1334             if (option[i].type==TextBox && option[i].value > 80){
1335                 GtkTextIter iter;
1336                 expandable = TRUE;
1337                 textview = gtk_text_view_new();
1338                 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(textview), option[i].min & T_WRAP ? GTK_WRAP_WORD : GTK_WRAP_NONE);
1339 #ifdef TODO_GTK
1340                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
1341                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1342 #endif
1343                 /* add textview to scrolled window so we have vertical scroll bar */
1344                 sw = gtk_scrolled_window_new(NULL, NULL);
1345                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw),
1346                                                option[i].min & T_HSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_AUTOMATIC,
1347                                                option[i].min & T_VSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_NEVER);
1348                 gtk_container_add(GTK_CONTAINER(sw), textview);
1349                 gtk_widget_set_size_request(GTK_WIDGET(sw), w, -1);
1350                 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_OUT);
1351
1352                 textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));
1353                 /* check if label is empty */
1354                 if (strcmp(option[i].name,"") != 0) {
1355                     gtk_table_attach(GTK_TABLE(table), label, left, left+1, top, top+1, GTK_FILL, GTK_FILL, 2, 1);
1356                     Pack(hbox, table, sw, left+1, left+r, top, 0);
1357                 }
1358                 else {
1359                     /* no label so let textview occupy all columns */
1360                     Pack(hbox, table, sw, left, left+r, top, GTK_EXPAND);
1361                 }
1362                 SetWidgetFont(textview, option[i].font);
1363                 if ( *(char**)option[i].target != NULL )
1364                     gtk_text_buffer_set_text (textbuffer, *(char**)option[i].target, -1);
1365                 else
1366                     gtk_text_buffer_set_text (textbuffer, "", -1);
1367                 option[i].handle = (void*)textbuffer;
1368                 option[i].textValue = (char*)textview;
1369                 gtk_text_buffer_get_iter_at_offset(textbuffer, &iter, -1);
1370                 gtk_text_buffer_create_mark(textbuffer, "scrollmark", &iter, FALSE); // permanent mark
1371                 if(option[i].choice) { // textviews can request a handler for mouse events in the choice field
1372                     g_signal_connect(textview, "button-press-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1373                     g_signal_connect(textview, "button-release-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1374                     g_signal_connect(textview, "motion-notify-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1375                 }
1376                 break;
1377             }
1378
1379             entry = gtk_entry_new();
1380
1381             if (option[i].type==Spin || option[i].type==Fractional)
1382                 gtk_entry_set_text (GTK_ENTRY (entry), def);
1383             else if (currentCps)
1384                 gtk_entry_set_text (GTK_ENTRY (entry), option[i].textValue);
1385             else if ( *(char**)option[i].target != NULL )
1386                 gtk_entry_set_text (GTK_ENTRY (entry), *(char**)option[i].target);
1387
1388             //gtk_entry_set_width_chars (GTK_ENTRY (entry), 18);
1389             gtk_entry_set_max_length (GTK_ENTRY (entry), w);
1390
1391             // left, right, top, bottom
1392             if (strcmp(option[i].name, "") != 0)
1393                 gtk_table_attach(GTK_TABLE(table), label, left, left+1, top, top+1, GTK_FILL, GTK_FILL, 2, 1); // leading names do not expand
1394
1395             if (option[i].type == Spin) {
1396                 spinner_adj = (GtkAdjustment *) gtk_adjustment_new (option[i].value, option[i].min, option[i].max, 1.0, 0.0, 0.0);
1397                 spinner = gtk_spin_button_new (spinner_adj, 1.0, 0);
1398                 gtk_table_attach(GTK_TABLE(table), spinner, left+1, left+r, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 1);
1399                 option[i].handle = (void*)spinner;
1400             }
1401             else if (option[i].type == FileName || option[i].type == PathName) {
1402                 gtk_table_attach(GTK_TABLE(table), entry, left+1, left+2, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 1);
1403                 button = gtk_button_new_with_label ("Browse");
1404                 gtk_table_attach(GTK_TABLE(table), button, left+2, left+r, top, top+1, GTK_FILL, GTK_FILL, 2, 1); // Browse button does not expand
1405                 g_signal_connect (button, "clicked", G_CALLBACK (BrowseGTK), (gpointer)(intptr_t) i);
1406                 option[i].handle = (void*)entry;
1407             }
1408             else {
1409                 Pack(hbox, table, entry, left + (strcmp(option[i].name, "") != 0), left+r, top, 0);
1410                 option[i].handle = (void*)entry;
1411             }
1412             break;
1413           case CheckBox:
1414             checkbutton = gtk_check_button_new_with_label(option[i].name);
1415             if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1416             gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbutton), option[i].value);
1417             gtk_table_attach(GTK_TABLE(table), checkbutton, left, left+r, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 0);
1418             option[i].handle = (void *)checkbutton;
1419             break;
1420           case Icon:
1421             option[i].handle = (void *) (label = gtk_image_new_from_pixbuf(NULL));
1422             gtk_widget_set_size_request(label, option[i].max ? option[i].max : -1, -1);
1423             Pack(hbox, table, label, left, left+2, top, 0);
1424             break;
1425           case Label:
1426             option[i].handle = (void *) (label = gtk_label_new(option[i].name));
1427             /* Left Justify */
1428             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1429             SetWidgetFont(label, option[i].font);
1430             if(option[i].min & BORDER) {
1431                 GtkWidget *frame = gtk_frame_new(NULL);
1432                 gtk_container_add(GTK_CONTAINER(frame), label);
1433                 label = frame;
1434             }
1435             gtk_widget_set_size_request(label, option[i].max ? option[i].max : -1, -1);
1436             if(option[i].target) { // allow user to specify event handler for button presses
1437                 button = gtk_event_box_new();
1438                 gtk_container_add(GTK_CONTAINER(button), label);
1439                 label = button;
1440                 gtk_widget_add_events(GTK_WIDGET(label), GDK_BUTTON_PRESS_MASK);
1441                 g_signal_connect(label, "button-press-event", G_CALLBACK(MemoEvent), (gpointer) &option[i]);
1442                 gtk_widget_set_sensitive(label, TRUE);
1443             }
1444             Pack(hbox, table, label, left, left+r, top, 0);
1445             break;
1446           case SaveButton:
1447           case Button:
1448             button = gtk_button_new_with_label (option[i].name);
1449             SetWidgetFont(gtk_bin_get_child(GTK_BIN(button)), option[i].font);
1450
1451             /* set button color on view board dialog */
1452             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1453                 gdk_color_parse( *(char**) option[i-1].target, &color );
1454                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1455             }
1456
1457             /* set button color on new variant dialog */
1458             if(option[i].textValue) {
1459                 static char *b = "Bold";
1460                 gdk_color_parse( option[i].textValue, &color );
1461                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1462                 gtk_widget_set_sensitive(button, option[i].value >= 0 && (appData.noChessProgram
1463                                          || strstr(first.variants, VariantName(option[i].value))));
1464                 if(engineVariant[100] ? !strcmp(engineVariant+100, option[i].name) : 
1465                    gameInfo.variant ? option[i].value == gameInfo.variant : !strcmp(option[i].name, "Normal"))
1466                     SetWidgetFont(gtk_bin_get_child(GTK_BIN(button)), &b);
1467             }
1468
1469             Pack(hbox, table, button, left, left+1, top, 0);
1470             g_signal_connect (button, "clicked", G_CALLBACK (GenericCallback), (gpointer)(intptr_t) i + (dlgNr<<16));
1471             option[i].handle = (void*)button;
1472             break;
1473           case ComboBox:
1474             label = gtk_label_new(option[i].name);
1475             /* Left Justify */
1476             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1477             gtk_table_attach(GTK_TABLE(table), label, left, left+1, top, top+1, GTK_FILL, GTK_FILL, 2, 1);
1478
1479             combobox = gtk_combo_box_new_text();
1480
1481             for(j=0;;j++) {
1482                if (  ((char **) option[i].textValue)[j] == NULL) break;
1483                gtk_combo_box_append_text(GTK_COMBO_BOX(combobox), ((char **) option[i].choice)[j]);
1484             }
1485
1486             if(currentCps)
1487                 option[i].choice = (char**) option[i].textValue;
1488             else {
1489                 for(j=0; option[i].choice[j]; j++) {
1490                     if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, ((char**)(option[i].textValue))[j])) break;
1491                 }
1492                 /* If choice is NULL set to first */
1493                 if (option[i].choice[j] == NULL)
1494                    option[i].value = 0;
1495                 else
1496                    option[i].value = j;
1497             }
1498
1499             //option[i].value = j + (option[i].choice[j] == NULL);
1500             gtk_combo_box_set_active(GTK_COMBO_BOX(combobox), option[i].value);
1501
1502             Pack(hbox, table, combobox, left+1, left+r, top, 0);
1503             g_signal_connect(G_OBJECT(combobox), "changed", G_CALLBACK(ComboSelect), (gpointer) (intptr_t) (i + 256*dlgNr));
1504
1505             option[i].handle = (void*)combobox;
1506             values[i] = option[i].value;
1507             break;
1508           case ListBox:
1509             {
1510                 GtkCellRenderer *renderer;
1511                 GtkTreeViewColumn *column;
1512                 GtkListStore *store;
1513
1514                 option[i].handle = (void *) (list = gtk_tree_view_new());
1515                 SetWidgetFont(option[i].handle, option[i].font);
1516                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(list), FALSE);
1517                 renderer = gtk_cell_renderer_text_new();
1518                 column = gtk_tree_view_column_new_with_attributes("List Items", renderer, "text", 0, NULL);
1519                 gtk_tree_view_append_column(GTK_TREE_VIEW(list), column);
1520                 store = gtk_list_store_new(1, G_TYPE_STRING); // 1 column of text
1521                 gtk_tree_view_set_model(GTK_TREE_VIEW(list), GTK_TREE_MODEL(store));
1522                 g_object_unref(store);
1523                 LoadListBox(&option[i], "?", -1, -1);
1524                 HighlightListBoxItem(&option[i], 0);
1525
1526                 /* add listbox to scrolled window so we have vertical scroll bar */
1527                 sw = gtk_scrolled_window_new(NULL, NULL);
1528                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
1529                 gtk_container_add(GTK_CONTAINER(sw), list);
1530                 gtk_widget_set_size_request(GTK_WIDGET(sw), option[i].max ? option[i].max : -1, option[i].value ? option[i].value : -1);
1531                 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_OUT);
1532
1533                 if(option[i].textValue) // generic callback for double-clicking listbox item
1534                     g_signal_connect(list, "button-press-event", G_CALLBACK(ListCallback), (gpointer) (intptr_t) (dlgNr<<16 | i) );
1535
1536                 /* never has label, so let listbox occupy all columns */
1537                 Pack(hbox, table, sw, left, left+r, top, GTK_EXPAND);
1538                 expandable = TRUE;
1539             }
1540             break;
1541           case Graph:
1542             option[i].handle = (void*) (graph = gtk_drawing_area_new());
1543             gtk_widget_set_size_request(graph, option[i].max, option[i].value);
1544             if(0){ GtkAllocation a;
1545                 a.x = 0; a.y = 0; a.width = option[i].max, a.height = option[i].value;
1546                 gtk_widget_set_allocation(graph, &a);
1547             }
1548             g_signal_connect (graph, "expose-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1549             gtk_widget_add_events(GTK_WIDGET(graph), GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK);
1550             g_signal_connect (graph, "button-press-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1551             g_signal_connect (graph, "button-release-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1552             g_signal_connect (graph, "motion-notify-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1553             g_signal_connect (graph, "scroll-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1554             if(option[i].min & FIX_H) { // logo
1555                 GtkWidget *frame = gtk_aspect_frame_new(NULL, 0.5, 0.5, option[i].max/(float)option[i].value, FALSE);
1556                 gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_NONE);
1557                 gtk_container_add(GTK_CONTAINER(frame), graph);
1558                 graph = frame;
1559             }
1560             Pack(hbox, table, graph, left, left+r, top, GTK_EXPAND);
1561             expandable = TRUE;
1562
1563 #ifdef TODO_GTK
1564             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1565 #endif
1566             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1567             break;
1568 #ifdef TODO_GTK
1569           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1570             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1571             break;
1572 #endif
1573           case DropDown:
1574             top--;
1575             msg = _(option[i].name); // write name on the menu button
1576 #ifndef OSXAPP
1577             if(tinyLayout) { // clip menu text to keep menu bar small
1578                 int clip = tinyLayout + 1;
1579                 strcpy(def, msg + (msg[clip-1] == '_'));
1580                 def[clip] = NULLCHAR; msg = def;
1581             }
1582 #endif
1583 //          XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1584 //          XtSetArg(args[j], XtNlabel, msg);  j++;
1585             option[i].handle = (void*)
1586                 (menuButton = gtk_menu_item_new_with_mnemonic(msg));
1587             gtk_widget_show(menuButton);
1588             option[i].textValue = (char*) (menu = CreateMenuPopup(option + i, i + 256*dlgNr, -1));
1589             gtk_menu_item_set_submenu(GTK_MENU_ITEM (menuButton), menu);
1590             gtk_menu_bar_append (GTK_MENU_BAR (menuBar), menuButton);
1591
1592             break;
1593           case BarBegin:
1594             menuBar = gtk_menu_bar_new ();
1595             gtk_widget_show (menuBar);
1596             boxStart = i;
1597             break;
1598           case BoxBegin:
1599             option[i+1].min |= SAME_ROW; // kludge to suppress allocation of new hbox
1600             oldHbox = hbox;
1601             option[i].handle = (void*) (hbox = gtk_hbox_new(FALSE, 0)); // hbox to collect buttons
1602             gtk_box_pack_start(GTK_BOX (oldHbox), hbox, FALSE, TRUE, 0); // *** Beware! Assumes button bar always on same row with other! ***
1603 //            gtk_table_attach(GTK_TABLE(table), hbox, left+2, left+3, top, top+1, GTK_FILL | GTK_SHRINK, GTK_FILL, 2, 1);
1604             boxStart = i;
1605             break;
1606           case BarEnd:
1607             top--;
1608 #ifndef OSXAPP
1609             gtk_table_attach(GTK_TABLE(table), menuBar, left, left+r, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 1);
1610
1611             if(option[i].target) ((ButtonCallback*)option[i].target)(boxStart); // callback that can make sizing decisions
1612 #else
1613             top--; // in OSX menu bar is not put in window, so also don't count it
1614             {   // in stead, offer it to OSX, and move About item to top of App menu
1615                 GtkosxApplication *theApp = g_object_new(GTKOSX_TYPE_APPLICATION, NULL);
1616                 extern MenuItem helpMenu[]; // oh, well... Adding items in help menu breaks this anyway
1617                 gtk_widget_hide (menuBar);
1618                 gtkosx_application_set_menu_bar(theApp, GTK_MENU_SHELL(menuBar));
1619                 gtkosx_application_insert_app_menu_item(theApp, GTK_MENU_ITEM(helpMenu[8].handle), 0); // hack
1620                 gtkosx_application_sync_menubar(theApp);
1621             }
1622 #endif
1623             break;
1624           case BoxEnd:
1625 //          XtManageChildren(&form, 1);
1626 //          SqueezeIntoBox(&option[boxStart], i-boxStart, option[boxStart].max);
1627             hbox = oldHbox; top--;
1628             if(option[i].target) ((ButtonCallback*)option[i].target)(boxStart); // callback that can make sizing decisions
1629             break;
1630           case Break:
1631             breakType = option[i].min & SAME_ROW | BORDER; // kludge to flag we must break
1632             option[i].handle = table;
1633             break;
1634
1635           case PopUp:
1636             top--;
1637             break;
1638         default:
1639             printf("GenericPopUp: unexpected case in switch. i=%d type=%d name=%s.\n", i, option[i].type, option[i].name);
1640             break;
1641         }
1642     }
1643
1644     gtk_table_resize(GTK_TABLE(table), top+1, r);
1645     if(dlgNr == BoardWindow && appData.fixedSize) { // inhibit sizing
1646         GtkWidget *h = gtk_hbox_new(FALSE, 0);
1647         gtk_box_pack_start (GTK_BOX (h), table, TRUE, FALSE, 2);
1648         table = h;
1649     }
1650     if(pane)
1651         gtk_box_pack_start (GTK_BOX (pane), table, expandable, TRUE, 0);
1652     else
1653         gtk_box_pack_start (GTK_BOX (/*GTK_DIALOG (dialog)->vbox*/box), table, TRUE, TRUE, 0);
1654
1655     option[i].handle = (void *) table; // remember last table in EndMark handle (for hiding Engine-Output pane).
1656
1657     gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_NONE);
1658
1659     /* Show dialog */
1660     gtk_widget_show_all( dialog );
1661
1662     /* hide OK/cancel buttons */
1663     if(!topLevel)
1664       {
1665         if((option[i].min & NO_OK)) {
1666           actionarea = gtk_dialog_get_action_area(GTK_DIALOG(dialog));
1667           gtk_widget_hide(actionarea);
1668         } else if((option[i].min & NO_CANCEL)) {
1669           button = gtk_dialog_get_widget_for_response(GTK_DIALOG(dialog), GTK_RESPONSE_REJECT);
1670           gtk_widget_hide(button);
1671         }
1672         g_signal_connect (dialog, "response",
1673                       G_CALLBACK (GenericPopDown),
1674                       (gpointer)(intptr_t) dlgNr);
1675       }
1676
1677     g_signal_connect (dialog, "delete-event",
1678                       G_CALLBACK (GenericPopDown),
1679                       (gpointer)(intptr_t) dlgNr);
1680     shellUp[dlgNr]++;
1681
1682     if(dlgNr && wp[dlgNr]) { // if persistent window-info available, reposition
1683       if(wp[dlgNr]->x > 0 && wp[dlgNr]->y > 0)
1684         gtk_window_move(GTK_WINDOW(dialog), wp[dlgNr]->x, wp[dlgNr]->y);
1685       if(wp[dlgNr]->width > 0 && wp[dlgNr]->height > 0)
1686         gtk_window_resize(GTK_WINDOW(dialog), wp[dlgNr]->width, wp[dlgNr]->height);
1687     }
1688
1689     for(i=0; option[i].type != EndMark; i++) if(option[i].type == Graph)
1690         gtk_widget_set_size_request(option[i].handle, -1, -1); // remove size requests after realization, so user can shrink
1691
1692     return 1; // tells caller he must do initialization (e.g. add specific event handlers)
1693 }
1694
1695 /* function called when the data to Paste is ready */
1696 #ifdef TODO_GTK
1697 static void
1698 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1699             Atom *type, XtPointer value, unsigned long *len, int *format)
1700 {
1701   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1702   if (value==NULL || *len==0) return; /* nothing selected, abort */
1703   name[*len]='\0';
1704   strncpy(buf, p, MSG_SIZ);
1705   q = strstr(p, "$name");
1706   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1707   SendString(buf);
1708   XtFree(value);
1709 }
1710 #endif
1711
1712 void
1713 SendText (int n)
1714 {
1715     char *p = (char*) textOptions[n].choice;
1716 #ifdef TODO_GTK
1717     if(strstr(p, "$name")) {
1718         XtGetSelectionValue(menuBarWidget,
1719           XA_PRIMARY, XA_STRING,
1720           /* (XtSelectionCallbackProc) */ SendTextCB,
1721           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1722           CurrentTime
1723         );
1724     } else
1725 #endif
1726     SendString(p);
1727 }
1728
1729 void
1730 SetInsertPos (Option *opt, int pos)
1731 {
1732     if(opt->value > 80) ScrollToCursor(opt, pos);
1733     else gtk_editable_set_position(GTK_EDITABLE(opt->handle), pos);
1734 }
1735
1736 void
1737 HardSetFocus (Option *opt, DialogClass dlg)
1738 {
1739     FocusOnWidget(opt, dlg);
1740 }