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