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