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