Delete emptied front-end files, and move rest to gtk directory
[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 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 = 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     gtk_label_set_text(opt->handle, buf);
248 }
249
250 void
251 SetDialogTitle (DialogClass dlg, char *title)
252 {
253     gtk_window_set_title(GTK_WINDOW(shells[dlg]), title);
254 }
255
256 void
257 SetListBoxItem (GtkListStore *store, int n, char *msg)
258 {
259     GtkTreeIter iter;
260     GtkTreePath *path = gtk_tree_path_new_from_indices(n, -1);
261     gtk_tree_model_get_iter(GTK_TREE_MODEL (store), &iter, path);
262     gtk_tree_path_free(path);
263     gtk_list_store_set(store, &iter, 0, msg, -1);
264 }
265
266 void
267 LoadListBox (Option *opt, char *emptyText, int n1, int n2)
268 {
269     char **data = (char **) (opt->target);
270     GtkWidget *list = (GtkWidget *) (opt->handle);
271     GtkTreeModel *model = gtk_tree_view_get_model(GTK_TREE_VIEW(list));
272     GtkListStore *store = GTK_LIST_STORE(model);
273     GtkTreeIter iter;
274  
275     if(n1 >= 0 && n2 >= 0) {
276         SetListBoxItem(store, n1, data[n1]);
277         SetListBoxItem(store, n2, data[n2]);
278         return;
279     }
280
281     if (gtk_tree_model_get_iter_first(model, &iter)) 
282         gtk_list_store_clear(store);
283
284     while(*data) { // add elements to listbox one by one
285         gtk_list_store_append(store, &iter);
286         gtk_list_store_set(store, &iter, 0, *data++, -1); // 0 = first column
287     }
288 }
289
290 void
291 HighlightItem (Option *opt, int index, int scroll)
292 {
293     char *value, **data = (char **) (opt->target);
294     GtkWidget *list = (GtkWidget *) (opt->handle);
295     GtkTreeSelection *selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(list));
296     GtkTreeModel *model = gtk_tree_view_get_model(GTK_TREE_VIEW(list));
297     GtkListStore *store = GTK_LIST_STORE(model);
298     GtkTreePath *path = gtk_tree_path_new_from_indices(index, -1);
299     GtkTreeIter iter;
300     gtk_tree_selection_select_path(selection, path);
301     if(scroll) gtk_tree_view_scroll_to_cell(list, path, NULL, 0, 0, 0);
302     gtk_tree_path_free(path);
303 }
304
305 void
306 HighlightListBoxItem (Option *opt, int index)
307 {
308     HighlightItem (opt, index, FALSE);
309 }
310
311 void
312 HighlightWithScroll (Option *opt, int index, int max)
313 {
314     HighlightItem (opt, index, TRUE); // ignore max
315 }
316
317 void
318 ScrollToCursor (Option *opt, int caretPos)
319 {
320     static GtkTextIter iter;
321     gtk_text_buffer_get_iter_at_offset((GtkTextBuffer *) opt->handle, &iter, caretPos);
322     gtk_text_view_scroll_to_iter((GtkTextView *) opt->textValue, &iter, 0.0, 0, 0.5, 0.5);
323 }
324
325 int
326 SelectedListBoxItem (Option *opt)
327 {
328     int i;
329     char *value, **data = (char **) (opt->target);
330     GtkWidget *list = (GtkWidget *) (opt->handle);
331     GtkTreeSelection *selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(list));
332
333     GtkTreeModel *model;
334     GtkTreeIter iter;
335     if (!gtk_tree_selection_get_selected(GTK_TREE_SELECTION(selection), &model, &iter)) return -1;
336     gtk_tree_model_get(model, &iter, 0, &value,  -1);
337     for(i=0; data[i]; i++) if(!strcmp(data[i], value)) return i;
338     g_free(value);
339     return -1;
340 }
341
342 void
343 FocusOnWidget (Option *opt, DialogClass dlg)
344 {
345     UnCaret();
346 #ifdef TODO_GTK
347     XtSetKeyboardFocus(shells[dlg], opt->handle);
348 #endif
349     gtk_widget_grab_focus(opt->handle);
350 }
351
352 void
353 SetIconName (DialogClass dlg, char *name)
354 {
355 #ifdef TODO_GTK
356         Arg args[16];
357         int j = 0;
358         XtSetArg(args[j], XtNiconName, (XtArgVal) name);  j++;
359 //      XtSetArg(args[j], XtNtitle, (XtArgVal) name);  j++;
360         XtSetValues(shells[dlg], args, j);
361 #endif
362 }
363
364 void ComboSelect(GtkWidget *widget, gpointer addr)
365 {
366     Option *opt = dialogOptions[((intptr_t)addr)>>8]; // applicable option list
367     gint i = ((intptr_t)addr) & 255; // option number
368     gint g;
369
370     g = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));    
371     values[i] = g; // store in temporary, for transfer at OK
372
373 #if TODO_GTK
374 // Note: setting text on button is probably automatic
375 // Is this still needed? Could be all comboboxes that needed a callbak are now listboxes!
376 #endif
377     if(opt[i].type == Graph || opt[i].min & COMBO_CALLBACK && (!currentCps || shellUp[BrowserDlg])) {
378         ((ButtonCallback*) opt[i].target)(i);
379         return;
380     }
381 }
382
383 #ifdef TODO_GTK
384 Widget
385 CreateMenuItem (Widget menu, char *msg, XtCallbackProc CB, int n)
386 {
387     int j=0;
388     Widget entry;
389     Arg args[16];
390     XtSetArg(args[j], XtNleftMargin, 20);   j++;
391     XtSetArg(args[j], XtNrightMargin, 20);  j++;
392     if(!strcmp(msg, "----")) { XtCreateManagedWidget(msg, smeLineObjectClass, menu, args, j); return NULL; }
393     XtSetArg(args[j], XtNlabel, msg);
394     entry = XtCreateManagedWidget("item", smeBSBObjectClass, menu, args, j+1);
395     XtAddCallback(entry, XtNcallback, CB, (caddr_t)(intptr_t) n);
396     return entry;
397 }
398 #endif
399
400 static void
401 MenuSelect (gpointer addr) // callback for all combo items
402 {
403     Option *opt = dialogOptions[((intptr_t)addr)>>24]; // applicable option list
404     int i = ((intptr_t)addr)>>16 & 255; // option number
405     int j = 0xFFFF & (intptr_t) addr;
406
407     values[i] = j; // store selected value in Option struct, for retrieval at OK
408     ((ButtonCallback*) opt[i].target)(i);
409 }
410
411 static GtkWidget *
412 CreateMenuPopup (Option *opt, int n, int def)
413 {   // fromList determines if the item texts are taken from a list of strings, or from a menu table
414     int i;
415     GtkWidget *menu, *entry;
416     MenuItem *mb = (MenuItem *) opt->choice;
417
418     menu = gtk_menu_new();
419 //    menu = XtCreatePopupShell(opt->name, simpleMenuWidgetClass, parent, NULL, 0);
420     for (i=0; 1; i++) 
421       {
422         char *msg = mb[i].string;
423         if(!msg) break;
424         if(strcmp(msg, "----")) { // 
425           if(!(opt->min & NO_GETTEXT)) msg = _(msg);
426           if(mb[i].handle) {
427             entry = gtk_check_menu_item_new_with_label(msg); // should be used for items that can be checkmarked
428             if(mb[i].handle == RADIO) gtk_check_menu_item_set_draw_as_radio(entry, True);
429           } else
430             entry = gtk_menu_item_new_with_label(msg);
431           gtk_signal_connect_object (GTK_OBJECT (entry), "activate", GTK_SIGNAL_FUNC(MenuSelect), (gpointer) (n<<16)+i);
432           gtk_widget_show(entry);
433         } else entry = gtk_separator_menu_item_new();
434         gtk_menu_append(GTK_MENU (menu), entry);
435 //CreateMenuItem(menu, opt->min & NO_GETTEXT ? msg : _(msg), (XtCallbackProc) ComboSelect, (n<<16)+i);
436         mb[i].handle = (void*) entry; // save item ID, for enabling / checkmarking
437 //      if(i==def) {
438 //          XtSetArg(arg, XtNpopupOnEntry, entry);
439 //          XtSetValues(menu, &arg, 1);
440 //      }
441       }
442       return menu;
443 }
444
445 Option *typeIn; // kludge to distinguish type-in callback from input-box callback
446
447 void
448 CursorAtEnd (Option *opt)
449 {
450     gtk_editable_set_position(opt->handle, -1);
451 }
452
453 static gboolean
454 ICSKeyEvent(GtkWidget *widget, GdkEventKey *event, gpointer g)
455 {
456     Option *opt = (Option *) g;
457     if(opt == typeIn) {
458         if(event->keyval == GDK_Return) {
459             char *val;
460             GetWidgetText(opt, &val);
461             TypeInDoneEvent(val);
462             PopDown(TransientDlg);
463             return TRUE;
464         }
465         return FALSE;
466     }
467
468     switch(event->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 = (int) 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 *opt, *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, x, y;
572
573     if(memo->type == Label) { ((ButtonCallback*) memo->target)(memo->value); return TRUE; } // only clock widgets use this
574
575     switch(event->type) { // figure out what's up
576         case GDK_MOTION_NOTIFY:
577             f = 0;
578             w = mevent->x; h = mevent->y;
579             break;
580         case GDK_BUTTON_RELEASE:
581             f = -1; // release indicated by negative button numbers
582             w = bevent->x; h = bevent->y;
583             button = bevent->button;
584             break;
585         case GDK_BUTTON_PRESS:
586             w = bevent->x; h = bevent->y;
587             button = bevent->button;
588             shiftState = bevent->state & GDK_SHIFT_MASK;
589             controlState = bevent->state & GDK_CONTROL_MASK;
590 // GTK_TODO: is this really the most efficient way to get the character at the mouse cursor???
591             gtk_text_view_window_to_buffer_coords(widget, GTK_TEXT_WINDOW_WIDGET, w, h, &x, &y);
592             gtk_text_view_get_iter_at_location(widget, &start, x, y);
593             gtk_text_buffer_place_cursor(memo->handle, &start);
594             /* get cursor position into index */
595             g_object_get(memo->handle, "cursor-position", &index, NULL);
596             /* get text from textbuffer */
597             gtk_text_buffer_get_start_iter (memo->handle, &start);
598             gtk_text_buffer_get_end_iter (memo->handle, &end);
599             val = gtk_text_buffer_get_text (memo->handle, &start, &end, FALSE); 
600             break;
601         default:
602             return FALSE; // should not happen
603     }
604     button *= f;
605     // hand click parameters as well as text & location to user
606     res = (userHandler) (memo, button, w, h, val, index);
607     if(val) g_free(val);
608     return res;
609 }
610
611 void
612 AddHandler (Option *opt, DialogClass dlg, int nr)
613 {
614     switch(nr) {
615       case 0: // history (now uses generic textview callback)
616       case 1: // comment (likewise)
617         break;
618       case 2: // move type-in
619         typeIn = opt;
620       case 3: // input box
621         g_signal_connect(opt->handle, "key-press-event", G_CALLBACK (ICSKeyEvent), (gpointer) opt);
622         break;
623       case 5: // game list
624         g_signal_connect(opt->handle, "button-press-event", G_CALLBACK (GameListEvent), (gpointer) 0 );
625       case 4: // game-list filter
626         g_signal_connect(opt->handle, "key-press-event", G_CALLBACK (GameListEvent), (gpointer) nr );
627         break;
628       case 6: // engine output (uses generic textview callback)
629         break;
630     }
631 }
632
633 //----------------------------Generic dialog --------------------------------------------
634
635 // cloned from Engine Settings dialog (and later merged with it)
636
637 GtkWidget *shells[NrOfDialogs];
638 DialogClass parents[NrOfDialogs];
639 WindowPlacement *wp[NrOfDialogs] = { // Beware! Order must correspond to DialogClass enum
640     NULL, &wpComment, &wpTags, NULL, NULL, NULL, NULL, &wpMoveHistory, &wpGameList, &wpEngineOutput, &wpEvalGraph,
641     NULL, NULL, NULL, NULL, /*&wpMain*/ NULL
642 };
643
644 int
645 DialogExists (DialogClass n)
646 {   // accessor for use in back-end
647     return shells[n] != NULL;
648 }
649
650 void
651 RaiseWindow (DialogClass dlg)
652 {
653 #ifdef TODO_GTK
654     static XEvent xev;
655     Window root = RootWindow(xDisplay, DefaultScreen(xDisplay));
656     Atom atom = XInternAtom (xDisplay, "_NET_ACTIVE_WINDOW", False);
657
658     xev.xclient.type = ClientMessage;
659     xev.xclient.serial = 0;
660     xev.xclient.send_event = True;
661     xev.xclient.display = xDisplay;
662     xev.xclient.window = XtWindow(shells[dlg]);
663     xev.xclient.message_type = atom;
664     xev.xclient.format = 32;
665     xev.xclient.data.l[0] = 1;
666     xev.xclient.data.l[1] = CurrentTime;
667
668     XSendEvent (xDisplay,
669           root, False,static gboolean
670 MemoEvent(GtkWidget *widget, GdkEvent *event, gpointer gdata)
671
672           SubstructureRedirectMask | SubstructureNotifyMask,
673           &xev);
674
675     XFlush(xDisplay); 
676     XSync(xDisplay, False);
677 #endif
678 }
679
680 int
681 PopDown (DialogClass n)
682 {
683     //Arg args[10];    
684     
685     if (!shellUp[n] || !shells[n]) return 0;    
686 #ifdef TODO_GTK
687 // Not sure this is still used
688     if(n && wp[n]) { // remember position
689         j = 0;
690         XtSetArg(args[j], XtNx, &windowX); j++;
691         XtSetArg(args[j], XtNy, &windowY); j++;
692         XtSetArg(args[j], XtNheight, &windowH); j++;
693         XtSetArg(args[j], XtNwidth, &windowW); j++;
694         XtGetValues(shells[n], args, j);
695         wp[n]->x = windowX;
696         wp[n]->x = windowY;
697         wp[n]->width  = windowW;
698         wp[n]->height = windowH;
699     }
700 #endif
701     
702     gtk_widget_hide(shells[n]);
703     shellUp[n]--; // count rather than clear
704
705     if(n == 0 || n >= PromoDlg) {
706         gtk_widget_destroy(shells[n]);
707         shells[n] = NULL;
708     }
709
710     if(marked[n]) {
711         MarkMenuItem(marked[n], False);
712         marked[n] = NULL;
713     }
714
715     if(!n) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
716     currentOption = dialogOptions[TransientDlg]; // just in case a transient dialog was up (to allow its check and combo callbacks to work)
717 #ifdef TODO_GTK
718     RaiseWindow(parents[n]); // automatic in GTK?
719     if(parents[n] == BoardWindow) XtSetKeyboardFocus(shellWidget, formWidget); // also automatic???
720 #endif
721     return 1;
722 }
723
724 /* GTK callback used when OK/cancel clicked in genericpopup for non-modal dialog */
725 gboolean GenericPopDown(w, resptype, gdata)
726      GtkWidget *w;
727      GtkResponseType  resptype;
728      gpointer  gdata;
729 {
730     DialogClass dlg = (intptr_t) gdata; /* dialog number dlgnr */
731     GtkWidget *sh = shells[dlg];
732
733     currentOption = dialogOptions[dlg];
734
735 #ifdef TODO_GTK
736 // I guess BrowserDlg will be abandoned, as GTK has a better browser of its own
737     if(shellUp[BrowserDlg] && dlg != BrowserDlg || dialogError) return True; // prevent closing dialog when it has an open file-browse daughter
738 #else
739     if(browserUp || dialogError && dlg != FatalDlg) return True; // prevent closing dialog when it has an open file-browse or error-popup daughter
740 #endif
741     shells[dlg] = w; // make sure we pop down the right one in case of multiple instances
742
743     /* OK pressed */    
744     if (resptype == GTK_RESPONSE_ACCEPT) {
745         if (GenericReadout(currentOption, -1)) PopDown(dlg);
746         return TRUE;
747     } else
748     /* cancel pressed */
749     {
750         if(dlg == BoardWindow) ExitEvent(0);
751         PopDown(dlg);
752     }
753     shells[dlg] = sh; // restore
754     return TRUE;
755 }
756
757 int AppendText(Option *opt, char *s)
758 {    
759     char *v;
760     int len;
761     GtkTextIter end;    
762   
763     GetWidgetTextGTK(opt->handle, &v);
764     len = strlen(v);
765     g_free(v);
766     gtk_text_buffer_get_end_iter(GTK_TEXT_BUFFER(opt->handle), &end);
767     gtk_text_buffer_insert(opt->handle, &end, s, -1);
768
769     return len;
770 }
771
772 void
773 SetColor (char *colorName, Option *box)
774 {       // sets the color of a widget
775     GdkColor color;
776
777     /* set the colour of the colour button to the colour that will be used */
778     gdk_color_parse( colorName, &color );
779     gtk_widget_modify_bg ( GTK_WIDGET(box->handle), GTK_STATE_NORMAL, &color );
780 }
781
782 #ifdef TODO_GTK
783 void
784 ColorChanged (Widget w, XtPointer data, XEvent *event, Boolean *b)
785 {   // for detecting a typed change in color
786     char buf[10];
787     if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
788         RefreshColor((int)(intptr_t) data, 0);
789 }
790 #endif
791
792 static void
793 GraphEventProc(GtkWidget *widget, GdkEvent *event, gpointer gdata)
794 {   // handle expose and mouse events on Graph widget
795     int w, h;
796     int j, button=10, f=1, sizing=0;
797     Option *opt, *graph = (Option *) gdata;
798     PointerCallback *userHandler = graph->target;
799     GdkEventExpose *eevent = (GdkEventExpose *) event;
800     GdkEventButton *bevent = (GdkEventButton *) event;
801     GdkEventMotion *mevent = (GdkEventMotion *) event;
802     GtkAllocation a;
803     cairo_t *cr;
804
805 //    if (!XtIsRealized(widget)) return;
806
807     switch(event->type) {
808         case GDK_EXPOSE: // make handling of expose events generic, just copying from memory buffer (->choice) to display (->textValue)
809             /* Get window size */
810             gtk_widget_get_allocation(widget, &a);
811             w = a.width; h = a.height;
812 //printf("expose %dx%d @ (%d,%d)\n", w, h, a.x, a.y);
813 #ifdef TODO_GTK
814             j = 0;
815             XtSetArg(args[j], XtNwidth, &w); j++;
816             XtSetArg(args[j], XtNheight, &h); j++;
817             XtGetValues(widget, args, j);
818 #endif
819             if(w < graph->max || w > graph->max + 1 || h != graph->value) { // use width fudge of 1 pixel
820                 if(eevent->count >= 0) { // suppress sizing on expose for ordered redraw in response to sizing.
821                     sizing = 1;
822                     graph->max = w; graph->value = h; // note: old values are kept if we we don't exceed width fudge
823                 }
824             } else w = graph->max;
825             if(sizing && eevent->count > 0) { graph->max = 0; return; } // don't bother if further exposure is pending during resize
826 #ifdef TODO_GTK
827             if(!graph->textValue || sizing) { // create surfaces of new size for display widget
828                 if(graph->textValue) cairo_surface_destroy((cairo_surface_t *)graph->textValue);
829                 graph->textValue = (char*) cairo_xlib_surface_create(xDisplay, XtWindow(widget), DefaultVisual(xDisplay, 0), w, h);
830             }
831 #endif
832             if(sizing) { // the memory buffer was already created in GenericPopup(),
833                          // to give drawing routines opportunity to use it before first expose event
834                          // (which are only processed when main gets to the event loop, so after all init!)
835                          // so only change when size is no longer good
836 #ifdef TODO_GTK
837                 if(graph->choice) cairo_surface_destroy((cairo_surface_t *) graph->choice);
838                 graph->choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, w, h);
839 #endif
840                 break;
841             }
842             w = eevent->area.width;
843             if(eevent->area.x + w > graph->max) w--; // cut off fudge pixel
844             cr = gdk_cairo_create(((GtkWidget *) (graph->handle))->window);
845             cairo_set_source_surface(cr, (cairo_surface_t *) graph->choice, 0, 0);
846             cairo_set_antialias(cr, CAIRO_ANTIALIAS_NONE);
847             cairo_rectangle(cr, eevent->area.x, eevent->area.y, w, eevent->area.height);
848             cairo_fill(cr);
849             cairo_destroy(cr);
850         default:
851             return;
852         case GDK_MOTION_NOTIFY:
853             f = 0;
854             w = mevent->x; h = mevent->y;
855             break;
856         case GDK_BUTTON_RELEASE:
857             f = -1; // release indicated by negative button numbers
858         case GDK_BUTTON_PRESS:
859             w = bevent->x; h = bevent->y;
860             button = bevent->button;
861             shiftState = bevent->state & GDK_SHIFT_MASK;
862             controlState = bevent->state & GDK_CONTROL_MASK;
863     }
864     button *= f;
865
866     opt = userHandler(button, w, h);
867 #ifdef TODO_GTK
868     if(opt) { // user callback specifies a context menu; pop it up
869         XUngrabPointer(xDisplay, CurrentTime);
870         XtCallActionProc(widget, "XawPositionSimpleMenu", event, &(opt->name), 1);
871         XtPopupSpringLoaded(opt->handle);
872     }
873     XSync(xDisplay, False);
874 #endif
875 }
876
877 void
878 GraphExpose (Option *opt, int x, int y, int w, int h)
879 {
880 #if 0
881   GdkRectangle r;
882   r.x = x; r.y = y; r.width = w; r.height = h;
883   gdk_window_invalidate_rect(((GtkWidget *)(opt->handle))->window, &r, FALSE);
884 #endif
885   GdkEventExpose e;
886   if(!opt->handle) return;
887   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
888   GraphEventProc(opt->handle, (GdkEvent *) &e, (gpointer) opt); // fake expose event
889 }
890
891 void GenericCallback(GtkWidget *widget, gpointer gdata)
892 {
893     const gchar *name;
894     char buf[MSG_SIZ];    
895     int data = (intptr_t) gdata;   
896     DialogClass dlg;
897 #ifdef TODO_GTK
898     GtkWidget *sh = XtParent(XtParent(XtParent(w))), *oldSh;
899 #else
900     GtkWidget *sh, *oldSh;
901 #endif
902
903     currentOption = dialogOptions[dlg=data>>16]; data &= 0xFFFF;
904 #ifndef TODO_GTK
905     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!)
906 #endif
907     oldSh = shells[dlg]; shells[dlg] = sh; // bow to reality
908
909     if (data == 30000) { // cancel
910         PopDown(dlg); 
911     } else
912     if (data == 30001) { // save buttons imply OK
913         if(GenericReadout(currentOption, -1)) PopDown(dlg); // calls OK-proc after full readout, but no popdown if it returns false
914     } else
915
916     if(currentCps) {
917         name = gtk_button_get_label (GTK_BUTTON(widget));         
918         if(currentOption[data].type == SaveButton) GenericReadout(currentOption, -1);
919         snprintf(buf, MSG_SIZ,  "option %s\n", name);
920         SendToProgram(buf, currentCps);
921     } else ((ButtonCallback*) currentOption[data].target)(data);   
922
923     shells[dlg] = oldSh; // in case of multiple instances, restore previous (as this one could be popped down now)
924 }
925
926 void BrowseGTK(GtkWidget *widget, gpointer gdata)
927 {
928     GtkWidget *entry;
929     GtkWidget *dialog;
930     GtkFileFilter *gtkfilter;
931     GtkFileFilter *gtkfilter_all;
932     int opt_i = (intptr_t) gdata;
933     GtkFileChooserAction fc_action;
934   
935     gtkfilter     = gtk_file_filter_new();
936     gtkfilter_all = gtk_file_filter_new();
937
938     char fileext[10] = "*";
939
940     /* select file or folder depending on option_type */
941     if (currentOption[opt_i].type == PathName)
942         fc_action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
943     else
944         fc_action = GTK_FILE_CHOOSER_ACTION_OPEN;
945
946     dialog = gtk_file_chooser_dialog_new ("Open File",
947                       NULL,
948                       fc_action,
949                       GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
950                       GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
951                       NULL);
952
953     /* one filter to show everything */
954     gtk_file_filter_add_pattern(gtkfilter_all, "*");
955     gtk_file_filter_set_name   (gtkfilter_all, "All Files");
956     gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog),gtkfilter_all);
957     
958     /* filter for specific filetypes e.g. pgn or fen */
959     if (currentOption[opt_i].textValue != NULL && (strcmp(currentOption[opt_i].textValue, "") != 0) )    
960       {          
961         strcat(fileext, currentOption[opt_i].textValue);    
962         gtk_file_filter_add_pattern(gtkfilter, fileext);
963         gtk_file_filter_set_name (gtkfilter, currentOption[opt_i].textValue);
964         gtk_file_chooser_add_filter (GTK_FILE_CHOOSER(dialog),gtkfilter);
965         /* activate filter */
966         gtk_file_chooser_set_filter (GTK_FILE_CHOOSER(dialog),gtkfilter);
967       }
968     else
969       gtk_file_chooser_set_filter (GTK_FILE_CHOOSER(dialog),gtkfilter_all);       
970
971     if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
972       {
973         char *filename;
974         filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));             
975         entry = currentOption[opt_i].handle;
976         gtk_entry_set_text (GTK_ENTRY (entry), filename);        
977         g_free (filename);
978
979       }
980     gtk_widget_destroy (dialog);
981     dialog = NULL;
982 }
983
984 gboolean
985 ListCallback (GtkWidget *widget, GdkEventButton *event, gpointer gdata)
986 {
987     int n = (intptr_t) gdata & 0xFFFF;
988     int dlg = (intptr_t) gdata >> 16;
989     Option *opt = dialogOptions[dlg] + n;
990
991     if(event->type != GDK_2BUTTON_PRESS || event->button != 1) return FALSE;
992     ((ListBoxCallback*) opt->textValue)(n, SelectedListBoxItem(opt));
993     return TRUE;
994 }
995
996 static char *oneLiner  =
997    "<Key>Return: redraw-display() \n \
998     <Key>Tab: TabProc() \n ";
999 static char scrollTranslations[] =
1000    "<Btn1Up>(2): WheelProc(0 0 A) \n \
1001     <Btn4Down>: WheelProc(-1) \n \
1002     <Btn5Down>: WheelProc(1) \n ";
1003
1004 static void
1005 SqueezeIntoBox (Option *opt, int nr, int width)
1006 {   // size buttons in bar to fit, clipping button names where necessary
1007 #ifdef TODO_GTK
1008     int i, wtot = 0;
1009     Dimension widths[20], oldWidths[20];
1010     Arg arg;
1011     for(i=1; i<nr; i++) {
1012         XtSetArg(arg, XtNwidth, &widths[i]);
1013         XtGetValues(opt[i].handle, &arg, 1);
1014         wtot +=  oldWidths[i] = widths[i];
1015     }
1016     opt->min = wtot;
1017     if(width <= 0) return;
1018     while(wtot > width) {
1019         int wmax=0, imax=0;
1020         for(i=1; i<nr; i++) if(widths[i] > wmax) wmax = widths[imax=i];
1021         widths[imax]--;
1022         wtot--;
1023     }
1024     for(i=1; i<nr; i++) if(widths[i] != oldWidths[i]) {
1025         XtSetArg(arg, XtNwidth, widths[i]);
1026         XtSetValues(opt[i].handle, &arg, 1);
1027     }
1028     opt->min = wtot;
1029 #endif
1030 }
1031
1032 #ifdef TODO_GTK
1033 int
1034 SetPositionAndSize (Arg *args, Widget leftNeigbor, Widget topNeigbor, int b, int w, int h, int chaining)
1035 {   // sizing and positioning most widgets have in common
1036     int j = 0;
1037     // first position the widget w.r.t. earlier ones
1038     if(chaining & 1) { // same row: position w.r.t. last (on current row) and lastrow
1039         XtSetArg(args[j], XtNfromVert, topNeigbor); j++;
1040         XtSetArg(args[j], XtNfromHoriz, leftNeigbor); j++;
1041     } else // otherwise it goes at left margin (which is default), below the previous element
1042         XtSetArg(args[j], XtNfromVert, leftNeigbor),  j++;
1043     // arrange chaining ('2'-bit indicates top and bottom chain the same)
1044     if((chaining & 14) == 6) XtSetArg(args[j], XtNtop,    XtChainBottom), j++;
1045     if((chaining & 14) == 10) XtSetArg(args[j], XtNbottom, XtChainTop ), j++;
1046     if(chaining & 4) XtSetArg(args[j], XtNbottom, XtChainBottom ), j++;
1047     if(chaining & 8) XtSetArg(args[j], XtNtop,    XtChainTop), j++;
1048     if(chaining & 0x10) XtSetArg(args[j], XtNright, XtChainRight), j++;
1049     if(chaining & 0x20) XtSetArg(args[j], XtNleft,  XtChainRight), j++;
1050     if(chaining & 0x40) XtSetArg(args[j], XtNright, XtChainLeft ), j++;
1051     if(chaining & 0x80) XtSetArg(args[j], XtNleft,  XtChainLeft ), j++;
1052     // set size (if given)
1053     if(w) XtSetArg(args[j], XtNwidth, w), j++;
1054     if(h) XtSetArg(args[j], XtNheight, h),  j++;
1055     // color
1056     if(!appData.monoMode) {
1057         if(!b && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor),  j++;
1058         if(b == 3 && appData.buttonColor[0]) XtSetArg(args[j], XtNbackground, buttonColor),  j++;
1059     }
1060     if(b == 3) b = 1;
1061     // border
1062     XtSetArg(args[j], XtNborderWidth, b);  j++;
1063     return j;
1064 }
1065 #endif
1066
1067 static int
1068 TableWidth (Option *opt)
1069 {   // 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
1070     while(opt->type != EndMark && opt->type != Break)
1071         if(opt->type == FileName || opt->type == PathName || opt++->type == BarBegin) return 3; // This table needs browse button
1072     return 2; // no browse button;
1073 }
1074
1075 static int
1076 SameRow (Option *opt)
1077 {
1078     return (opt->min & SAME_ROW && (opt->type == Button || opt->type == SaveButton || opt->type == Label
1079                                  || opt->type == ListBox || opt->type == BoxBegin || opt->type == Icon));
1080 }
1081
1082 static void
1083 Pack (GtkWidget *hbox, GtkWidget *table, GtkWidget *entry, int left, int right, int top, GtkAttachOptions vExpand)
1084 {
1085     if(hbox) gtk_box_pack_start(GTK_BOX (hbox), entry, TRUE, TRUE, 0);
1086     else     gtk_table_attach(GTK_TABLE(table), entry, left, right, top, top+1,
1087                                 GTK_FILL | GTK_EXPAND, GTK_FILL | vExpand, 2, 1);
1088 }
1089
1090 int
1091 GenericPopUp (Option *option, char *title, DialogClass dlgNr, DialogClass parent, int modal, int topLevel)
1092 {    
1093     GtkWidget *dialog = NULL;
1094     gint       w;
1095     GtkWidget *label;
1096     GtkWidget *box;
1097     GtkWidget *checkbutton;
1098     GtkWidget *entry;
1099     GtkWidget *oldHbox, *hbox = NULL;    
1100     GtkWidget *pane = NULL;
1101     GtkWidget *button;
1102     GtkWidget *table;
1103     GtkWidget *spinner;    
1104     GtkAdjustment *spinner_adj;
1105     GtkWidget *combobox;
1106     GtkWidget *textview;
1107     GtkTextBuffer *textbuffer;           
1108     GdkColor color;     
1109     GtkWidget *actionarea;
1110     GtkWidget *sw;    
1111     GtkWidget *list;    
1112     GtkWidget *graph;    
1113     GtkWidget *menuButton;    
1114     GtkWidget *menuBar;    
1115     GtkWidget *menu;    
1116
1117     int i, j, arraysize, left, top, height=999, width=1, boxStart, breakType = 0, r;    
1118     char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
1119
1120     if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
1121
1122     if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
1123         gtk_widget_show(shells[dlgNr]);
1124         shellUp[dlgNr] = True;
1125         return 0;
1126     }
1127
1128     dialogOptions[dlgNr] = option; // make available to callback
1129     // post currentOption globally, so Spin and Combo callbacks can already use it
1130     // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1131     currentOption = option;
1132
1133     if(engineDlg) { // Settings popup for engine: format through heuristic
1134         int n = currentCps->nrOptions;
1135 //        if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1136         width = n / 20 + 1;
1137         height = n / width + 1;
1138 printf("n=%d, h=%d, w=%d\n",n,height,width);
1139 //      if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1140         currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1141     }    
1142
1143     parents[dlgNr] = parent;
1144 #ifdef TODO_GTK
1145     shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
1146
1147     if(dlgNr == BoardWindow) dialog = shellWidget; else
1148     dialog =
1149       XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
1150                                                            shells[parent], args, i);
1151 #endif
1152     dialog = gtk_dialog_new_with_buttons( title,
1153                                       GTK_WINDOW(shells[parent]),
1154                                       GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR |
1155                                           (modal ? GTK_DIALOG_MODAL : 0),
1156                                       GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1157                                       GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1158                                       NULL );      
1159
1160     shells[dlgNr] = dialog;
1161     box = gtk_dialog_get_content_area( GTK_DIALOG( dialog ) );
1162 //    gtk_box_set_spacing(GTK_BOX(box), 5);    
1163
1164     arraysize = 0;
1165     for (i=0;option[i].type != EndMark;i++) {
1166         arraysize++;   
1167     }
1168
1169     table = gtk_table_new(arraysize, r=TableWidth(option), FALSE);
1170     left = 0;
1171     top = -1;    
1172
1173     for (i=0;option[i].type != EndMark;i++) {
1174         if(option[i].type == -1) continue;
1175         top++;
1176 printf("option =%2d, top =%2d\n", i, top);
1177         if (top >= height) {
1178             gtk_table_resize(GTK_TABLE(table), height, r);
1179             if(!pane) { // multi-column: put tables in intermediate hbox
1180                 if(breakType || engineDlg)
1181                     pane =  gtk_hbox_new (FALSE, 0);
1182                 else
1183                     pane =  gtk_vbox_new (FALSE, 0);
1184                 gtk_box_set_spacing(GTK_BOX(pane), 5 + 5*breakType);
1185                 gtk_box_pack_start (GTK_BOX (/*GTK_DIALOG (dialog)->vbox*/box), pane, TRUE, TRUE, 0);
1186             }
1187             gtk_box_pack_start (GTK_BOX (pane), table, TRUE, TRUE, 0);
1188             table = gtk_table_new(arraysize - i, r=TableWidth(option + i), FALSE);
1189             top = 0;
1190         }                
1191         if(!SameRow(&option[i])) {
1192             if(SameRow(&option[i+1])) {
1193                 GtkAttachOptions x = GTK_FILL;
1194                 // make sure hbox is always available when we have more options on same row
1195                 hbox = gtk_hbox_new (option[i].type == Button && option[i].textValue, 0);
1196                 if(!currentCps && option[i].value > 80) x |= GTK_EXPAND; // only vertically extended widgets should size vertically
1197                 if (strcmp(option[i].name, "") == 0 || option[i].type == Label || option[i].type == Button)
1198                     // for Label and Button name is contained inside option
1199                     gtk_table_attach(GTK_TABLE(table), hbox, left, left+r, top, top+1, GTK_FILL | GTK_EXPAND, x, 2, 1);
1200                 else
1201                     gtk_table_attach(GTK_TABLE(table), hbox, left+1, left+r, top, top+1, GTK_FILL | GTK_EXPAND, x, 2, 1);
1202             } else hbox = NULL; //and also make sure no hbox exists if only singl option on row
1203         } else top--;
1204         switch(option[i].type) {
1205           case Fractional:           
1206             snprintf(def, MSG_SIZ,  "%.2f", *(float*)option[i].target);
1207             option[i].value = *(float*)option[i].target;
1208             goto tBox;
1209           case Spin:
1210             if(!currentCps) option[i].value = *(int*)option[i].target;
1211             snprintf(def, MSG_SIZ,  "%d", option[i].value);
1212           case TextBox:
1213           case FileName:            
1214           case PathName:
1215           tBox:
1216             label = gtk_label_new(option[i].name);
1217             /* Left Justify */
1218             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1219
1220             /* width */
1221             w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1222             if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1223
1224             if (option[i].type==TextBox && option[i].value > 80){                
1225                 textview = gtk_text_view_new();                
1226                 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(textview), option[i].min & T_WRAP ? GTK_WRAP_WORD : GTK_WRAP_NONE);
1227 #ifdef TODO_GTK
1228                 if(option[i].min & T_FILL)  { XtSetArg(args[j], XtNautoFill, True);  j++; }
1229                 if(option[i].min & T_TOP)   { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1230 #endif
1231                 /* add textview to scrolled window so we have vertical scroll bar */
1232                 sw = gtk_scrolled_window_new(NULL, NULL);
1233                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw),
1234                                                option[i].min & T_HSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_AUTOMATIC,
1235                                                option[i].min & T_VSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_NEVER);
1236                 gtk_container_add(GTK_CONTAINER(sw), textview);
1237                 gtk_widget_set_size_request(GTK_WIDGET(sw), w, -1);
1238  
1239                 textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));                
1240                 /* check if label is empty */ 
1241                 if (strcmp(option[i].name,"") != 0) {
1242                     gtk_table_attach(GTK_TABLE(table), label, left, left+1, top, top+1, GTK_FILL, GTK_FILL, 2, 1);
1243                     Pack(hbox, table, sw, left+1, left+r, top, 0);
1244                 }
1245                 else {
1246                     /* no label so let textview occupy all columns */
1247                     Pack(hbox, table, sw, left, left+r, top, GTK_EXPAND);
1248                 } 
1249                 if ( *(char**)option[i].target != NULL )
1250                     gtk_text_buffer_set_text (textbuffer, *(char**)option[i].target, -1);
1251                 else
1252                     gtk_text_buffer_set_text (textbuffer, "", -1); 
1253                 option[i].handle = (void*)textbuffer;
1254                 option[i].textValue = (char*)textview;
1255                 if(option[i].choice) { // textviews can request a handler for mouse events in the choice field
1256                     g_signal_connect(textview, "button-press-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1257                     g_signal_connect(textview, "button-release-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1258                     g_signal_connect(textview, "motion-notify-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1259                 }
1260                 break; 
1261             }
1262
1263             entry = gtk_entry_new();
1264
1265             if (option[i].type==Spin || option[i].type==Fractional)
1266                 gtk_entry_set_text (GTK_ENTRY (entry), def);
1267             else if (currentCps)
1268                 gtk_entry_set_text (GTK_ENTRY (entry), option[i].textValue);
1269             else if ( *(char**)option[i].target != NULL )
1270                 gtk_entry_set_text (GTK_ENTRY (entry), *(char**)option[i].target);            
1271
1272             //gtk_entry_set_width_chars (GTK_ENTRY (entry), 18);
1273             gtk_entry_set_max_length (GTK_ENTRY (entry), w);
1274
1275             // left, right, top, bottom
1276             if (strcmp(option[i].name, "") != 0)
1277                 gtk_table_attach(GTK_TABLE(table), label, left, left+1, top, top+1, GTK_FILL, GTK_FILL, 2, 1); // leading names do not expand
1278
1279             if (option[i].type == Spin) {                
1280                 spinner_adj = (GtkAdjustment *) gtk_adjustment_new (option[i].value, option[i].min, option[i].max, 1.0, 0.0, 0.0);
1281                 spinner = gtk_spin_button_new (spinner_adj, 1.0, 0);
1282                 gtk_table_attach(GTK_TABLE(table), spinner, left+1, left+r, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 1);
1283                 option[i].handle = (void*)spinner;
1284             }
1285             else if (option[i].type == FileName || option[i].type == PathName) {
1286                 gtk_table_attach(GTK_TABLE(table), entry, left+1, left+2, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 1);
1287                 button = gtk_button_new_with_label ("Browse");
1288                 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
1289                 g_signal_connect (button, "clicked", G_CALLBACK (BrowseGTK), (gpointer)(intptr_t) i);
1290                 option[i].handle = (void*)entry;                 
1291             }
1292             else {
1293                 Pack(hbox, table, entry, left + (strcmp(option[i].name, "") != 0), left+r, top, 0);
1294                 option[i].handle = (void*)entry;
1295             }                                   
1296             break;
1297           case CheckBox:
1298             checkbutton = gtk_check_button_new_with_label(option[i].name);            
1299             if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1300             gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbutton), option[i].value);
1301             gtk_table_attach(GTK_TABLE(table), checkbutton, left, left+r, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 0);
1302             option[i].handle = (void *)checkbutton;            
1303             break; 
1304           case Icon:            
1305             option[i].handle = (void *) (label = gtk_image_new_from_pixbuf(NULL));
1306             gtk_widget_set_size_request(label, option[i].max ? option[i].max : -1, -1);
1307             Pack(hbox, table, label, left, left+2, top, 0);
1308             break; 
1309           case Label:            
1310             option[i].handle = (void *) (label = gtk_label_new(option[i].name));
1311             /* Left Justify */
1312             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1313             if(option[i].min & BORDER) {
1314                 GtkWidget *frame = gtk_frame_new(NULL);
1315                 gtk_container_add(GTK_CONTAINER(frame), label);
1316                 label = frame;
1317             }
1318             gtk_widget_set_size_request(label, option[i].max ? option[i].max : -1, -1);
1319             Pack(hbox, table, label, left, left+2, top, 0);
1320             if(option[i].target) { // allow user to specify event handler for button presses
1321                 gtk_widget_add_events(GTK_WIDGET(label), GDK_BUTTON_PRESS_MASK);
1322                 g_signal_connect(label, "button-press-event", G_CALLBACK(MemoEvent), (gpointer) &option[i]);
1323             }
1324             break;
1325           case SaveButton:
1326           case Button:
1327             button = gtk_button_new_with_label (option[i].name);
1328
1329             /* set button color on view board dialog */
1330             if(option[i].choice && ((char*)option[i].choice)[0] == '#' && !currentCps) {
1331                 gdk_color_parse( *(char**) option[i-1].target, &color );
1332                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1333             }
1334
1335             /* set button color on new variant dialog */
1336             if(option[i].textValue) {
1337                 gdk_color_parse( option[i].textValue, &color );
1338                 gtk_widget_modify_bg ( GTK_WIDGET(button), GTK_STATE_NORMAL, &color );
1339                 gtk_widget_set_sensitive(button, appData.noChessProgram || option[i].value < 0
1340                                          || strstr(first.variants, VariantName(option[i].value)));                 
1341             }
1342             
1343             Pack(hbox, table, button, left, left+1, top, 0);
1344             g_signal_connect (button, "clicked", G_CALLBACK (GenericCallback), (gpointer)(intptr_t) i + (dlgNr<<16));           
1345             option[i].handle = (void*)button;            
1346             break;  
1347           case ComboBox:
1348             label = gtk_label_new(option[i].name);
1349             /* Left Justify */
1350             gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1351             gtk_table_attach(GTK_TABLE(table), label, left, left+1, top, top+1, GTK_FILL, GTK_FILL, 2, 1);
1352
1353             combobox = gtk_combo_box_new_text();            
1354
1355             for(j=0;;j++) {
1356                if (  ((char **) option[i].textValue)[j] == NULL) break;
1357                gtk_combo_box_append_text(GTK_COMBO_BOX(combobox), ((char **) option[i].choice)[j]);                          
1358             }
1359
1360             if(currentCps)
1361                 option[i].choice = (char**) option[i].textValue;
1362             else {
1363                 for(j=0; option[i].choice[j]; j++) {                
1364                     if(*(char**)option[i].target && !strcmp(*(char**)option[i].target, ((char**)(option[i].textValue))[j])) break;
1365                 }
1366                 /* If choice is NULL set to first */
1367                 if (option[i].choice[j] == NULL)
1368                    option[i].value = 0;
1369                 else 
1370                    option[i].value = j;
1371             }
1372
1373             //option[i].value = j + (option[i].choice[j] == NULL);            
1374             gtk_combo_box_set_active(GTK_COMBO_BOX(combobox), option[i].value); 
1375             
1376             Pack(hbox, table, combobox, left+1, left+r, top, 0);
1377             g_signal_connect(G_OBJECT(combobox), "changed", G_CALLBACK(ComboSelect), (gpointer) (intptr_t) (i + 256*dlgNr));
1378
1379             option[i].handle = (void*)combobox;
1380             values[i] = option[i].value;            
1381             break;
1382           case ListBox:
1383             {
1384                 GtkCellRenderer *renderer;
1385                 GtkTreeViewColumn *column;
1386                 GtkListStore *store;
1387
1388                 option[i].handle = (void *) (list = gtk_tree_view_new());
1389                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(list), FALSE);
1390                 renderer = gtk_cell_renderer_text_new();
1391                 column = gtk_tree_view_column_new_with_attributes("List Items", renderer, "text", 0, NULL);
1392                 gtk_tree_view_append_column(GTK_TREE_VIEW(list), column);
1393                 store = gtk_list_store_new(1, G_TYPE_STRING); // 1 column of text
1394                 gtk_tree_view_set_model(GTK_TREE_VIEW(list), GTK_TREE_MODEL(store));
1395                 g_object_unref(store);
1396                 LoadListBox(&option[i], "?", -1, -1);
1397                 HighlightListBoxItem(&option[i], 0);
1398
1399                 /* add listbox to scrolled window so we have vertical scroll bar */
1400                 sw = gtk_scrolled_window_new(NULL, NULL);
1401                 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
1402                 gtk_container_add(GTK_CONTAINER(sw), list);
1403                 gtk_widget_set_size_request(GTK_WIDGET(sw), option[i].max ? option[i].max : -1, option[i].value ? option[i].value : -1);
1404  
1405                 if(option[i].textValue) // generic callback for double-clicking listbox item
1406                     g_signal_connect(list, "button-press-event", G_CALLBACK(ListCallback), (gpointer) (dlgNr<<16 | i) );
1407
1408                 /* never has label, so let listbox occupy all columns */
1409                 Pack(hbox, table, sw, left, left+r, top, GTK_EXPAND);
1410             }
1411             break;
1412           case Graph:
1413             option[i].handle = (void*) (graph = gtk_drawing_area_new());
1414             gtk_widget_set_size_request(graph, option[i].max, option[i].value);
1415             Pack(hbox, GTK_TABLE(table), graph, left, left+r, top, GTK_EXPAND);
1416             g_signal_connect (graph, "expose-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1417             gtk_widget_add_events(GTK_WIDGET(graph), GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK);
1418             g_signal_connect (graph, "button-press-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1419             g_signal_connect (graph, "button-release-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1420             g_signal_connect (graph, "motion-notify-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1421
1422 #ifdef TODO_GTK
1423             if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1424 #endif
1425             option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1426             break;
1427 #ifdef TODO_GTK
1428           case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1429             option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1430             break;
1431 #endif
1432           case DropDown:
1433             top--;
1434             msg = _(option[i].name); // write name on the menu button
1435 //          XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name));  j++;
1436 //          XtSetArg(args[j], XtNlabel, msg);  j++;
1437             option[i].handle = (void*)
1438                 (menuButton = gtk_menu_item_new_with_label(msg));
1439             gtk_widget_show(menuButton);
1440             option[i].textValue = (char*) (menu = CreateMenuPopup(option + i, i + 256*dlgNr, -1));
1441             gtk_menu_item_set_submenu(GTK_MENU_ITEM (menuButton), menu);
1442             gtk_menu_bar_append (GTK_MENU_BAR (menuBar), menuButton);
1443
1444             break;
1445           case BarBegin:
1446             menuBar = gtk_menu_bar_new ();
1447             gtk_widget_show (menuBar);
1448             boxStart = i;
1449             break;
1450           case BoxBegin:
1451             option[i+1].min |= SAME_ROW; // kludge to suppress allocation of new hbox
1452             oldHbox = hbox;
1453             option[i].handle = (void*) (hbox = gtk_hbox_new(FALSE, 0)); // hbox to collect buttons
1454             gtk_box_pack_start(GTK_BOX (oldHbox), hbox, FALSE, TRUE, 0); // *** Beware! Assumes button bar always on same row with other! ***
1455 //            gtk_table_attach(GTK_TABLE(table), hbox, left+2, left+3, top, top+1, GTK_FILL | GTK_SHRINK, GTK_FILL, 2, 1);
1456             boxStart = i;
1457             break;
1458           case BarEnd:
1459             top--;
1460             gtk_table_attach(GTK_TABLE(table), menuBar, left, left+r, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 1);
1461             
1462             if(option[i].target) ((ButtonCallback*)option[i].target)(boxStart); // callback that can make sizing decisions
1463             break;
1464           case BoxEnd:
1465 //          XtManageChildren(&form, 1);
1466 //          SqueezeIntoBox(&option[boxStart], i-boxStart, option[boxStart].max);
1467             hbox = oldHbox; top--;
1468             if(option[i].target) ((ButtonCallback*)option[i].target)(boxStart); // callback that can make sizing decisions
1469             break;
1470           case Break:
1471             breakType = option[i].min & SAME_ROW;
1472             top = height; // force next option to start in a new table
1473             break; 
1474
1475           case PopUp:
1476             top--;
1477             break; 
1478         default:
1479             printf("GenericPopUp: unexpected case in switch. i=%d type=%d name=%s.\n", i, option[i].type, option[i].name);
1480             break;
1481         }        
1482     }
1483
1484     if(pane)
1485         gtk_box_pack_start (GTK_BOX (pane), table, TRUE, TRUE, 0);
1486     else
1487         gtk_table_resize(GTK_TABLE(table), top+1, r),
1488         gtk_box_pack_start (GTK_BOX (/*GTK_DIALOG (dialog)->vbox*/box), table, TRUE, TRUE, 0);
1489
1490     option[i].handle = (void *) table; // remember last table in EndMark handle (for hiding Engine-Output pane).
1491
1492     /* Show dialog */
1493     gtk_widget_show_all( dialog );    
1494
1495     /* hide OK/cancel buttons */
1496     if((option[i].min & 2)) {
1497         actionarea = gtk_dialog_get_action_area(GTK_DIALOG(dialog));
1498         gtk_widget_hide(actionarea);
1499     }
1500
1501     g_signal_connect (dialog, "response",
1502                       G_CALLBACK (GenericPopDown),
1503                       (gpointer)(intptr_t) dlgNr);
1504     g_signal_connect (dialog, "delete-event",
1505                       G_CALLBACK (GenericPopDown),
1506                       (gpointer)(intptr_t) dlgNr);
1507     shellUp[dlgNr]++;
1508
1509     return 1; // tells caller he must do initialization (e.g. add specific event handlers)
1510 }
1511
1512 /* function called when the data to Paste is ready */
1513 #ifdef TODO_GTK
1514 static void
1515 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1516             Atom *type, XtPointer value, unsigned long *len, int *format)
1517 {
1518   char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1519   if (value==NULL || *len==0) return; /* nothing selected, abort */
1520   name[*len]='\0';
1521   strncpy(buf, p, MSG_SIZ);
1522   q = strstr(p, "$name");
1523   snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1524   SendString(buf);
1525   XtFree(value);
1526 }
1527 #endif
1528
1529 void
1530 SendText (int n)
1531 {
1532 #ifdef TODO_GTK
1533     char *p = (char*) textOptions[n].choice;
1534     if(strstr(p, "$name")) {
1535         XtGetSelectionValue(menuBarWidget,
1536           XA_PRIMARY, XA_STRING,
1537           /* (XtSelectionCallbackProc) */ SendTextCB,
1538           (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1539           CurrentTime
1540         );
1541     } else SendString(p);
1542 #endif
1543 }
1544
1545 void
1546 SetInsertPos (Option *opt, int pos)
1547 {
1548 #ifdef TODO_GTK
1549     Arg args[16];
1550     XtSetArg(args[0], XtNinsertPosition, pos);
1551     XtSetValues(opt->handle, args, 1);
1552 //    SetFocus(opt->handle, shells[InputBoxDlg], NULL, False); // No idea why this does not work, and the following is needed:
1553 //    XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1554 #endif
1555 }
1556
1557 void
1558 HardSetFocus (Option *opt)
1559 {
1560 #ifdef TODO_GTK
1561     XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1562 #endif
1563 }
1564
1565