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