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