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