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