2 * xoptions.c -- Move list window, part of X front end for XBoard
4 * Copyright 2000, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
5 * ------------------------------------------------------------------------
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.
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.
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/. *
20 *------------------------------------------------------------------------
21 ** See the file ChangeLog for a revision history. */
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.
31 #include <sys/types.h>
36 #else /* not STDC_HEADERS */
37 extern char *getenv();
40 # else /* not HAVE_STRING_H */
42 # endif /* not HAVE_STRING_H */
43 #endif /* not STDC_HEADERS */
50 #include <cairo/cairo.h>
51 #include <cairo/cairo-xlib.h>
53 #include <gdk/gdkkeysyms.h>
64 # define _(s) gettext (s)
65 # define N_(s) gettext_noop (s)
71 // [HGM] the following code for makng menu popups was cloned from the FileNamePopUp routines
74 static Widget previous = NULL;
76 static Option *currentOption;
77 static Boolean browserUp;
86 XtSetArg(args[0], XtNdisplayCaret, False);
87 XtSetValues(previous, args, 1);
95 SetFocus (Widget w, XtPointer data, XEvent *event, Boolean *b)
102 XtSetArg(args[0], XtNstring, &s);
103 XtGetValues(w, args, 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);
117 XtSetKeyboardFocus(shellWidget, formWidget);
121 //--------------------------- Engine-specific options menu ----------------------------------
124 Option *dialogOptions[NrOfDialogs];
127 static Arg layoutArgs[] = {
128 { XtNborderWidth, 0 },
129 { XtNdefaultDistance, 0 },
132 static Arg formArgs[] = {
133 { XtNborderWidth, 0 },
134 { XtNresizable, (XtArgVal) True },
139 MarkMenuItem (char *menuRef, int state)
141 MenuItem *item = MenuNameToItem(menuRef);
144 ((GtkCheckMenuItem *) (item->handle))->active = state;
148 void GetWidgetTextGTK(GtkWidget *w, char **buf)
153 if (GTK_IS_ENTRY(w)) {
154 *buf = (char *) gtk_entry_get_text(GTK_ENTRY (w));
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);
162 printf("error in GetWidgetText, invalid widget\n");
168 GetWidgetText (Option *opt, char **buf)
176 case TextBox: GetWidgetTextGTK((GtkWidget *) opt->handle, buf); break;
178 x = gtk_spin_button_get_value (GTK_SPIN_BUTTON(opt->handle));
179 snprintf(val, 12, "%d", x); *buf = val;
182 printf("unexpected case (%d) in GetWidgetText\n", opt->type);
187 void SetSpinValue(Option *opt, char *val, int n)
189 if (opt->type == Spin)
191 if (!strcmp(val, _("Unused")))
192 gtk_widget_set_sensitive(opt->handle, FALSE);
195 gtk_widget_set_sensitive(opt->handle, TRUE);
196 gtk_spin_button_set_value(opt->handle, atoi(val));
200 printf("error in SetSpinValue, unknown type %d\n", opt->type);
203 void SetWidgetTextGTK(GtkWidget *w, char *text)
205 if (GTK_IS_ENTRY(w)) {
206 gtk_entry_set_text (GTK_ENTRY (w), text);
208 if (GTK_IS_TEXT_BUFFER(w)) {
209 gtk_text_buffer_set_text(GTK_TEXT_BUFFER(w), text, -1);
211 printf("error: SetWidgetTextGTK arg is neitherGtkEntry nor GtkTextBuffer\n");
215 SetWidgetText (Option *opt, char *buf, int n)
221 case TextBox: SetWidgetTextGTK((GtkWidget *) opt->handle, buf); break;
222 case Spin: SetSpinValue(opt, buf, n); break;
224 printf("unexpected case (%d) in GetWidgetText\n", opt->type);
227 // focus is automatic in GTK?
228 if(n >= 0) SetFocus(opt->handle, shells[n], NULL, False);
233 GetWidgetState (Option *opt, int *state)
235 *state = gtk_toggle_button_get_active(opt->handle);
239 SetWidgetState (Option *opt, int state)
241 gtk_toggle_button_set_active(opt->handle, state);
245 SetWidgetLabel (Option *opt, char *buf)
247 if(opt->type == Button) // Chat window uses this routine for changing button labels
248 gtk_button_set_label(opt->handle, buf);
250 gtk_label_set_text(opt->handle, buf);
254 SetDialogTitle (DialogClass dlg, char *title)
256 gtk_window_set_title(GTK_WINDOW(shells[dlg]), title);
260 SetListBoxItem (GtkListStore *store, int n, char *msg)
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);
270 LoadListBox (Option *opt, char *emptyText, int n1, int n2)
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);
278 if(n1 >= 0 && n2 >= 0) {
279 SetListBoxItem(store, n1, data[n1]);
280 SetListBoxItem(store, n2, data[n2]);
284 if (gtk_tree_model_get_iter_first(model, &iter))
285 gtk_list_store_clear(store);
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
294 HighlightItem (Option *opt, int index, int scroll)
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);
305 HighlightListBoxItem (Option *opt, int index)
307 HighlightItem (opt, index, FALSE);
311 HighlightWithScroll (Option *opt, int index, int max)
313 HighlightItem (opt, index, TRUE); // ignore max
317 ScrollToCursor (Option *opt, int caretPos)
319 static GtkTextIter iter;
320 gtk_text_buffer_get_iter_at_offset((GtkTextBuffer *) opt->handle, &iter, caretPos);
321 gtk_text_view_scroll_to_iter((GtkTextView *) opt->textValue, &iter, 0.0, 0, 0.5, 0.5);
325 SelectedListBoxItem (Option *opt)
328 char *value, **data = (char **) (opt->target);
329 GtkWidget *list = (GtkWidget *) (opt->handle);
330 GtkTreeSelection *selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(list));
334 if (!gtk_tree_selection_get_selected(GTK_TREE_SELECTION(selection), &model, &iter)) return -1;
335 gtk_tree_model_get(model, &iter, 0, &value, -1);
336 for(i=0; data[i]; i++) if(!strcmp(data[i], value)) return i;
342 FocusOnWidget (Option *opt, DialogClass dlg)
346 XtSetKeyboardFocus(shells[dlg], opt->handle);
348 gtk_widget_grab_focus(opt->handle);
352 SetIconName (DialogClass dlg, char *name)
357 XtSetArg(args[j], XtNiconName, (XtArgVal) name); j++;
358 // XtSetArg(args[j], XtNtitle, (XtArgVal) name); j++;
359 XtSetValues(shells[dlg], args, j);
363 void ComboSelect(GtkWidget *widget, gpointer addr)
365 Option *opt = dialogOptions[((intptr_t)addr)>>8]; // applicable option list
366 gint i = ((intptr_t)addr) & 255; // option number
369 g = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
370 values[i] = g; // store in temporary, for transfer at OK
373 // Note: setting text on button is probably automatic
374 // Is this still needed? Could be all comboboxes that needed a callbak are now listboxes!
376 if(opt[i].type == Graph || opt[i].min & COMBO_CALLBACK && (!currentCps || shellUp[BrowserDlg])) {
377 ((ButtonCallback*) opt[i].target)(i);
384 CreateMenuItem (Widget menu, char *msg, XtCallbackProc CB, int n)
389 XtSetArg(args[j], XtNleftMargin, 20); j++;
390 XtSetArg(args[j], XtNrightMargin, 20); j++;
391 if(!strcmp(msg, "----")) { XtCreateManagedWidget(msg, smeLineObjectClass, menu, args, j); return NULL; }
392 XtSetArg(args[j], XtNlabel, msg);
393 entry = XtCreateManagedWidget("item", smeBSBObjectClass, menu, args, j+1);
394 XtAddCallback(entry, XtNcallback, CB, (caddr_t)(intptr_t) n);
400 MenuSelect (gpointer addr) // callback for all combo items
402 Option *opt = dialogOptions[((intptr_t)addr)>>24]; // applicable option list
403 int i = ((intptr_t)addr)>>16 & 255; // option number
404 int j = 0xFFFF & (intptr_t) addr;
406 values[i] = j; // store selected value in Option struct, for retrieval at OK
407 ((ButtonCallback*) opt[i].target)(i);
411 CreateMenuPopup (Option *opt, int n, int def)
412 { // fromList determines if the item texts are taken from a list of strings, or from a menu table
414 GtkWidget *menu, *entry;
415 MenuItem *mb = (MenuItem *) opt->choice;
417 menu = gtk_menu_new();
418 // menu = XtCreatePopupShell(opt->name, simpleMenuWidgetClass, parent, NULL, 0);
421 char *msg = mb[i].string;
423 if(strcmp(msg, "----")) { //
424 if(!(opt->min & NO_GETTEXT)) msg = _(msg);
426 entry = gtk_check_menu_item_new_with_label(msg); // should be used for items that can be checkmarked
427 if(mb[i].handle == RADIO) gtk_check_menu_item_set_draw_as_radio(GTK_CHECK_MENU_ITEM(entry), True);
429 entry = gtk_menu_item_new_with_label(msg);
430 gtk_signal_connect_object (GTK_OBJECT (entry), "activate", GTK_SIGNAL_FUNC(MenuSelect), (gpointer) (intptr_t) ((n<<16)+i));
432 guint accelerator_key;
433 GdkModifierType accelerator_mods;
435 gtk_accelerator_parse(mb[i].accel, &accelerator_key, &accelerator_mods);
436 gtk_widget_add_accelerator (GTK_WIDGET(entry), "activate",GtkAccelerators,
437 accelerator_key, accelerator_mods, GTK_ACCEL_VISIBLE);
439 gtk_widget_show(entry);
440 } else entry = gtk_separator_menu_item_new();
441 gtk_menu_append(GTK_MENU (menu), entry);
442 //CreateMenuItem(menu, opt->min & NO_GETTEXT ? msg : _(msg), (XtCallbackProc) ComboSelect, (n<<16)+i);
443 mb[i].handle = (void*) entry; // save item ID, for enabling / checkmarking
445 // XtSetArg(arg, XtNpopupOnEntry, entry);
446 // XtSetValues(menu, &arg, 1);
452 Option *icsBox; // kludge to distinguish type-in callback from input-box callback
455 CursorAtEnd (Option *opt)
457 gtk_editable_set_position(opt->handle, -1);
461 ICSKeyEvent (int keyval)
462 { // TODO_GTK: arrow-handling should really be integrated in type-in proc, and this should be a backe-end OK handler
464 case GDK_Return: IcsKey(0); return TRUE;
465 case GDK_Up: IcsKey(1); return TRUE;
466 case GDK_Down: IcsKey(-1); return TRUE;
467 default: return FALSE;
471 int shiftState, controlState;
474 TypeInProc (GtkWidget *widget, GdkEventKey *event, gpointer gdata)
475 { // This callback catches key presses on text-entries, and uses <Enter> and <Esc> as synonyms for dialog OK or Cancel
476 // *** kludge alert *** If a dialog does want some other action, like sending the line typed in the text-entry to an ICS,
477 // it should define an OK handler that does so, and returns FALSE to suppress the popdown.
478 int n = (intptr_t) gdata;
482 opt = &dialogOptions[dlg][n];
484 if(opt == icsBox) return ICSKeyEvent(event->keyval); // Intercept ICS Input Box, which needs special treatment
486 shiftState = event->state & GDK_SHIFT_MASK;
487 controlState = event->state & GDK_CONTROL_MASK;
488 switch(event->keyval) {
490 if(GenericReadout(dialogOptions[dlg], -1)) PopDown(dlg);
502 HighlightText (Option *opt, int from, int to, Boolean highlight)
505 static GtkTextIter start, end;
507 if(!(opt->min & INIT)) {
508 opt->min |= INIT; // each memo its own init flag!
509 gtk_text_buffer_create_tag(opt->handle, "highlight", "background", "yellow", NULL);
510 gtk_text_buffer_create_tag(opt->handle, "normal", "background", "white", NULL);
512 gtk_text_buffer_get_iter_at_offset(opt->handle, &start, from);
513 gtk_text_buffer_get_iter_at_offset(opt->handle, &end, to);
514 gtk_text_buffer_apply_tag_by_name(opt->handle, highlight ? "highlight" : "normal", &start, &end);
519 { // bassic primitive for determining if modifier keys are pressed
520 return 3*(shiftState != 0) + 0xC*(controlState != 0); // rely on what last mouse button press left us
524 GameListEvent(GtkWidget *widget, GdkEvent *event, gpointer gdata)
526 int n = (intptr_t) gdata;
529 if(((GdkEventKey *) event)->keyval != GDK_Return) return FALSE;
534 if(event->type == GDK_KEY_PRESS) {
535 int ctrl = (((GdkEventKey *) event)->state & GDK_CONTROL_MASK) != 0;
536 switch(((GdkEventKey *) event)->keyval) {
537 case GDK_Up: GameListClicks(-1 - 2*ctrl); return TRUE;
538 case GDK_Left: GameListClicks(-1); return TRUE;
539 case GDK_Down: GameListClicks(1 + 2*ctrl); return TRUE;
540 case GDK_Right: GameListClicks(1); return TRUE;
541 case GDK_Prior: GameListClicks(-4); return TRUE;
542 case GDK_Next: GameListClicks(4); return TRUE;
543 case GDK_Home: GameListClicks(-2); return TRUE;
544 case GDK_End: GameListClicks(2); return TRUE;
545 case GDK_Return: GameListClicks(0); return TRUE;
546 default: return FALSE;
549 if(event->type != GDK_2BUTTON_PRESS || ((GdkEventButton *) event)->button != 1) return FALSE;
555 MemoEvent(GtkWidget *widget, GdkEvent *event, gpointer gdata)
556 { // handle mouse clicks on text widgets that need it
559 Option *memo = (Option *) gdata;
560 MemoCallback *userHandler = (MemoCallback *) memo->choice;
561 GdkEventButton *bevent = (GdkEventButton *) event;
562 GdkEventMotion *mevent = (GdkEventMotion *) event;
563 GtkTextIter start, end;
566 gint index = 0, x, y;
568 switch(event->type) { // figure out what's up
569 case GDK_MOTION_NOTIFY:
571 w = mevent->x; h = mevent->y;
573 case GDK_BUTTON_RELEASE:
574 f = -1; // release indicated by negative button numbers
575 w = bevent->x; h = bevent->y;
576 button = bevent->button;
578 case GDK_BUTTON_PRESS:
579 w = bevent->x; h = bevent->y;
580 button = bevent->button;
581 shiftState = bevent->state & GDK_SHIFT_MASK;
582 controlState = bevent->state & GDK_CONTROL_MASK;
583 if(memo->type == Label) { // only clock widgets use this
584 ((ButtonCallback*) memo->target)(button == 1 ? memo->value : -memo->value);
587 // GTK_TODO: is this really the most efficient way to get the character at the mouse cursor???
588 gtk_text_view_window_to_buffer_coords(GTK_TEXT_VIEW(widget), GTK_TEXT_WINDOW_WIDGET, w, h, &x, &y);
589 gtk_text_view_get_iter_at_location(GTK_TEXT_VIEW(widget), &start, x, y);
590 gtk_text_buffer_place_cursor(memo->handle, &start);
591 /* get cursor position into index */
592 g_object_get(memo->handle, "cursor-position", &index, NULL);
593 /* get text from textbuffer */
594 gtk_text_buffer_get_start_iter (memo->handle, &start);
595 gtk_text_buffer_get_end_iter (memo->handle, &end);
596 val = gtk_text_buffer_get_text (memo->handle, &start, &end, FALSE);
599 return FALSE; // should not happen
602 // hand click parameters as well as text & location to user
603 res = (userHandler) (memo, button, w, h, val, index);
609 AddHandler (Option *opt, DialogClass dlg, int nr)
612 case 0: // history (now uses generic textview callback)
613 case 1: // comment (likewise)
617 case 2: // move type-in
618 g_signal_connect(opt->handle, "key-press-event", G_CALLBACK (TypeInProc), (gpointer) (dlg<<16 | (opt - dialogOptions[dlg])));
621 g_signal_connect(opt->handle, "button-press-event", G_CALLBACK (GameListEvent), (gpointer) 0 );
622 case 4: // game-list filter
623 g_signal_connect(opt->handle, "key-press-event", G_CALLBACK (GameListEvent), (gpointer) (intptr_t) nr );
625 case 6: // engine output (uses generic textview callback)
630 //----------------------------Generic dialog --------------------------------------------
632 // cloned from Engine Settings dialog (and later merged with it)
634 GtkWidget *shells[NrOfDialogs];
635 DialogClass parents[NrOfDialogs];
636 WindowPlacement *wp[NrOfDialogs] = { // Beware! Order must correspond to DialogClass enum
637 NULL, &wpComment, &wpTags, NULL, NULL, NULL, &wpDualBoard, &wpMoveHistory, &wpGameList, &wpEngineOutput, &wpEvalGraph,
638 NULL, NULL, NULL, NULL, &wpMain
642 DialogExists (DialogClass n)
643 { // accessor for use in back-end
644 return shells[n] != NULL;
648 RaiseWindow (DialogClass dlg)
652 Window root = RootWindow(xDisplay, DefaultScreen(xDisplay));
653 Atom atom = XInternAtom (xDisplay, "_NET_ACTIVE_WINDOW", False);
655 xev.xclient.type = ClientMessage;
656 xev.xclient.serial = 0;
657 xev.xclient.send_event = True;
658 xev.xclient.display = xDisplay;
659 xev.xclient.window = XtWindow(shells[dlg]);
660 xev.xclient.message_type = atom;
661 xev.xclient.format = 32;
662 xev.xclient.data.l[0] = 1;
663 xev.xclient.data.l[1] = CurrentTime;
665 XSendEvent (xDisplay,
666 root, False,static gboolean
667 MemoEvent(GtkWidget *widget, GdkEvent *event, gpointer gdata)
669 SubstructureRedirectMask | SubstructureNotifyMask,
673 XSync(xDisplay, False);
678 PopDown (DialogClass n)
682 if (!shellUp[n] || !shells[n]) return 0;
683 if(n && wp[n]) { // remember position
684 GetActualPlacement(shells[n], wp[n]);
687 gtk_widget_hide(shells[n]);
688 shellUp[n]--; // count rather than clear
690 if(n == 0 || n >= PromoDlg) {
691 gtk_widget_destroy(shells[n]);
696 MarkMenuItem(marked[n], False);
700 if(!n) currentCps = NULL; // if an Engine Settings dialog was up, we must be popping it down now
701 currentOption = dialogOptions[TransientDlg]; // just in case a transient dialog was up (to allow its check and combo callbacks to work)
703 RaiseWindow(parents[n]); // automatic in GTK?
704 if(parents[n] == BoardWindow) XtSetKeyboardFocus(shellWidget, formWidget); // also automatic???
709 /* GTK callback used when OK/cancel clicked in genericpopup for non-modal dialog */
710 gboolean GenericPopDown(w, resptype, gdata)
712 GtkResponseType resptype;
715 DialogClass dlg = (intptr_t) gdata; /* dialog number dlgnr */
716 GtkWidget *sh = shells[dlg];
718 currentOption = dialogOptions[dlg];
721 // I guess BrowserDlg will be abandoned, as GTK has a better browser of its own
722 if(shellUp[BrowserDlg] && dlg != BrowserDlg || dialogError) return True; // prevent closing dialog when it has an open file-browse daughter
724 if(browserUp || dialogError && dlg != FatalDlg) return True; // prevent closing dialog when it has an open file-browse or error-popup daughter
726 shells[dlg] = w; // make sure we pop down the right one in case of multiple instances
729 if (resptype == GTK_RESPONSE_ACCEPT) {
730 if (GenericReadout(currentOption, -1)) PopDown(dlg);
735 if(dlg == BoardWindow) ExitEvent(0);
738 shells[dlg] = sh; // restore
742 int AppendText(Option *opt, char *s)
748 GetWidgetTextGTK(opt->handle, &v);
751 gtk_text_buffer_get_end_iter(GTK_TEXT_BUFFER(opt->handle), &end);
752 gtk_text_buffer_insert(opt->handle, &end, s, -1);
758 SetColor (char *colorName, Option *box)
759 { // sets the color of a widget
762 /* set the colour of the colour button to the colour that will be used */
763 gdk_color_parse( colorName, &color );
764 gtk_widget_modify_bg ( GTK_WIDGET(box->handle), GTK_STATE_NORMAL, &color );
769 ColorChanged (Widget w, XtPointer data, XEvent *event, Boolean *b)
770 { // for detecting a typed change in color
772 if ( (XLookupString(&(event->xkey), buf, 2, NULL, NULL) == 1) && *buf == '\r' )
773 RefreshColor((int)(intptr_t) data, 0);
778 GraphEventProc(GtkWidget *widget, GdkEvent *event, gpointer gdata)
779 { // handle expose and mouse events on Graph widget
781 int button=10, f=1, sizing=0;
782 Option *opt, *graph = (Option *) gdata;
783 PointerCallback *userHandler = graph->target;
784 GdkEventExpose *eevent = (GdkEventExpose *) event;
785 GdkEventButton *bevent = (GdkEventButton *) event;
786 GdkEventMotion *mevent = (GdkEventMotion *) event;
790 // if (!XtIsRealized(widget)) return;
792 switch(event->type) {
793 case GDK_EXPOSE: // make handling of expose events generic, just copying from memory buffer (->choice) to display (->textValue)
794 /* Get window size */
795 gtk_widget_get_allocation(widget, &a);
796 w = a.width; h = a.height;
797 //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);
800 XtSetArg(args[j], XtNwidth, &w); j++;
801 XtSetArg(args[j], XtNheight, &h); j++;
802 XtGetValues(widget, args, j);
804 if(w < graph->max || w > graph->max + 1 || h != graph->value) { // use width fudge of 1 pixel
805 if(eevent->count >= 0) { // suppress sizing on expose for ordered redraw in response to sizing.
807 graph->max = w; graph->value = h; // note: old values are kept if we we don't exceed width fudge
809 } else w = graph->max;
810 if(sizing && eevent->count > 0) { graph->max = 0; return; } // don't bother if further exposure is pending during resize
812 if(!graph->textValue || sizing) { // create surfaces of new size for display widget
813 if(graph->textValue) cairo_surface_destroy((cairo_surface_t *)graph->textValue);
814 graph->textValue = (char*) cairo_xlib_surface_create(xDisplay, XtWindow(widget), DefaultVisual(xDisplay, 0), w, h);
817 if(sizing) { // the memory buffer was already created in GenericPopup(),
818 // to give drawing routines opportunity to use it before first expose event
819 // (which are only processed when main gets to the event loop, so after all init!)
820 // so only change when size is no longer good
821 if(graph->choice) cairo_surface_destroy((cairo_surface_t *) graph->choice);
822 graph->choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, w, h);
825 w = eevent->area.width;
826 if(eevent->area.x + w > graph->max) w--; // cut off fudge pixel
827 cr = gdk_cairo_create(((GtkWidget *) (graph->handle))->window);
828 cairo_set_source_surface(cr, (cairo_surface_t *) graph->choice, 0, 0);
829 //cairo_set_source_rgb(cr, 1, 0, 0);
830 cairo_set_antialias(cr, CAIRO_ANTIALIAS_NONE);
831 cairo_rectangle(cr, eevent->area.x, eevent->area.y, w, eevent->area.height);
836 case GDK_MOTION_NOTIFY:
838 w = mevent->x; h = mevent->y;
840 case GDK_BUTTON_RELEASE:
841 f = -1; // release indicated by negative button numbers
842 case GDK_BUTTON_PRESS:
843 w = bevent->x; h = bevent->y;
844 button = bevent->button;
845 shiftState = bevent->state & GDK_SHIFT_MASK;
846 controlState = bevent->state & GDK_CONTROL_MASK;
850 opt = userHandler(button, w, h);
852 if(opt) { // user callback specifies a context menu; pop it up
853 XUngrabPointer(xDisplay, CurrentTime);
854 XtCallActionProc(widget, "XawPositionSimpleMenu", event, &(opt->name), 1);
855 XtPopupSpringLoaded(opt->handle);
857 XSync(xDisplay, False);
862 GraphExpose (Option *opt, int x, int y, int w, int h)
866 r.x = x; r.y = y; r.width = w; r.height = h;
867 gdk_window_invalidate_rect(((GtkWidget *)(opt->handle))->window, &r, FALSE);
870 if(!opt->handle) return;
871 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
872 GraphEventProc(opt->handle, (GdkEvent *) &e, (gpointer) opt); // fake expose event
875 void GenericCallback(GtkWidget *widget, gpointer gdata)
879 int data = (intptr_t) gdata;
882 GtkWidget *sh = XtParent(XtParent(XtParent(w))), *oldSh;
884 GtkWidget *sh, *oldSh;
887 currentOption = dialogOptions[dlg=data>>16]; data &= 0xFFFF;
889 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!)
891 oldSh = shells[dlg]; shells[dlg] = sh; // bow to reality
893 if (data == 30000) { // cancel
896 if (data == 30001) { // save buttons imply OK
897 if(GenericReadout(currentOption, -1)) PopDown(dlg); // calls OK-proc after full readout, but no popdown if it returns false
901 name = gtk_button_get_label (GTK_BUTTON(widget));
902 if(currentOption[data].type == SaveButton) GenericReadout(currentOption, -1);
903 snprintf(buf, MSG_SIZ, "option %s\n", name);
904 SendToProgram(buf, currentCps);
905 } else ((ButtonCallback*) currentOption[data].target)(data);
907 shells[dlg] = oldSh; // in case of multiple instances, restore previous (as this one could be popped down now)
910 void BrowseGTK(GtkWidget *widget, gpointer gdata)
914 GtkFileFilter *gtkfilter;
915 GtkFileFilter *gtkfilter_all;
916 int opt_i = (intptr_t) gdata;
917 GtkFileChooserAction fc_action;
919 gtkfilter = gtk_file_filter_new();
920 gtkfilter_all = gtk_file_filter_new();
922 char fileext[10] = "*";
924 /* select file or folder depending on option_type */
925 if (currentOption[opt_i].type == PathName)
926 fc_action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
928 fc_action = GTK_FILE_CHOOSER_ACTION_OPEN;
930 dialog = gtk_file_chooser_dialog_new ("Open File",
933 GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
934 GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
937 /* one filter to show everything */
938 gtk_file_filter_add_pattern(gtkfilter_all, "*");
939 gtk_file_filter_set_name (gtkfilter_all, "All Files");
940 gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(dialog),gtkfilter_all);
942 /* filter for specific filetypes e.g. pgn or fen */
943 if (currentOption[opt_i].textValue != NULL && (strcmp(currentOption[opt_i].textValue, "") != 0) )
945 strcat(fileext, currentOption[opt_i].textValue);
946 gtk_file_filter_add_pattern(gtkfilter, fileext);
947 gtk_file_filter_set_name (gtkfilter, currentOption[opt_i].textValue);
948 gtk_file_chooser_add_filter (GTK_FILE_CHOOSER(dialog),gtkfilter);
949 /* activate filter */
950 gtk_file_chooser_set_filter (GTK_FILE_CHOOSER(dialog),gtkfilter);
953 gtk_file_chooser_set_filter (GTK_FILE_CHOOSER(dialog),gtkfilter_all);
955 if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
958 filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
959 entry = currentOption[opt_i].handle;
960 gtk_entry_set_text (GTK_ENTRY (entry), filename);
964 gtk_widget_destroy (dialog);
969 ListCallback (GtkWidget *widget, GdkEventButton *event, gpointer gdata)
971 int n = (intptr_t) gdata & 0xFFFF;
972 int dlg = (intptr_t) gdata >> 16;
973 Option *opt = dialogOptions[dlg] + n;
975 if(event->type != GDK_2BUTTON_PRESS || event->button != 1) return FALSE;
976 ((ListBoxCallback*) opt->textValue)(n, SelectedListBoxItem(opt));
981 // This is needed for color pickers?
982 static char *oneLiner =
983 "<Key>Return: redraw-display() \n \
984 <Key>Tab: TabProc() \n ";
989 SqueezeIntoBox (Option *opt, int nr, int width)
990 { // size buttons in bar to fit, clipping button names where necessary
992 Dimension widths[20], oldWidths[20];
994 for(i=1; i<nr; i++) {
995 XtSetArg(arg, XtNwidth, &widths[i]);
996 XtGetValues(opt[i].handle, &arg, 1);
997 wtot += oldWidths[i] = widths[i];
1000 if(width <= 0) return;
1001 while(wtot > width) {
1003 for(i=1; i<nr; i++) if(widths[i] > wmax) wmax = widths[imax=i];
1007 for(i=1; i<nr; i++) if(widths[i] != oldWidths[i]) {
1008 XtSetArg(arg, XtNwidth, widths[i]);
1009 XtSetValues(opt[i].handle, &arg, 1);
1017 SetPositionAndSize (Arg *args, Widget leftNeigbor, Widget topNeigbor, int b, int w, int h, int chaining)
1018 { // sizing and positioning most widgets have in common
1020 // first position the widget w.r.t. earlier ones
1021 if(chaining & 1) { // same row: position w.r.t. last (on current row) and lastrow
1022 XtSetArg(args[j], XtNfromVert, topNeigbor); j++;
1023 XtSetArg(args[j], XtNfromHoriz, leftNeigbor); j++;
1024 } else // otherwise it goes at left margin (which is default), below the previous element
1025 XtSetArg(args[j], XtNfromVert, leftNeigbor), j++;
1026 // arrange chaining ('2'-bit indicates top and bottom chain the same)
1027 if((chaining & 14) == 6) XtSetArg(args[j], XtNtop, XtChainBottom), j++;
1028 if((chaining & 14) == 10) XtSetArg(args[j], XtNbottom, XtChainTop ), j++;
1029 if(chaining & 4) XtSetArg(args[j], XtNbottom, XtChainBottom ), j++;
1030 if(chaining & 8) XtSetArg(args[j], XtNtop, XtChainTop), j++;
1031 if(chaining & 0x10) XtSetArg(args[j], XtNright, XtChainRight), j++;
1032 if(chaining & 0x20) XtSetArg(args[j], XtNleft, XtChainRight), j++;
1033 if(chaining & 0x40) XtSetArg(args[j], XtNright, XtChainLeft ), j++;
1034 if(chaining & 0x80) XtSetArg(args[j], XtNleft, XtChainLeft ), j++;
1035 // set size (if given)
1036 if(w) XtSetArg(args[j], XtNwidth, w), j++;
1037 if(h) XtSetArg(args[j], XtNheight, h), j++;
1039 if(!appData.monoMode) {
1040 if(!b && appData.dialogColor[0]) XtSetArg(args[j], XtNbackground, dialogColor), j++;
1041 if(b == 3 && appData.buttonColor[0]) XtSetArg(args[j], XtNbackground, buttonColor), j++;
1045 XtSetArg(args[j], XtNborderWidth, b); j++;
1051 TableWidth (Option *opt)
1052 { // 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
1053 while(opt->type != EndMark && opt->type != Break)
1054 if(opt->type == FileName || opt->type == PathName || opt++->type == BarBegin) return 3; // This table needs browse button
1055 return 2; // no browse button;
1059 SameRow (Option *opt)
1061 return (opt->min & SAME_ROW && (opt->type == Button || opt->type == SaveButton || opt->type == Label
1062 || opt->type == ListBox || opt->type == BoxBegin || opt->type == Icon || opt->type == Graph));
1066 Pack (GtkWidget *hbox, GtkWidget *table, GtkWidget *entry, int left, int right, int top, GtkAttachOptions vExpand)
1068 if(hbox) gtk_box_pack_start(GTK_BOX (hbox), entry, TRUE, TRUE, 0);
1069 else gtk_table_attach(GTK_TABLE(table), entry, left, right, top, top+1,
1070 GTK_FILL | GTK_EXPAND, GTK_FILL | vExpand, 2, 1);
1074 GenericPopUp (Option *option, char *title, DialogClass dlgNr, DialogClass parent, int modal, int topLevel)
1076 GtkWidget *dialog = NULL;
1080 GtkWidget *checkbutton;
1082 GtkWidget *oldHbox = NULL, *hbox = NULL;
1083 GtkWidget *pane = NULL;
1087 GtkAdjustment *spinner_adj;
1088 GtkWidget *combobox;
1089 GtkWidget *textview;
1090 GtkTextBuffer *textbuffer;
1092 GtkWidget *actionarea;
1096 GtkWidget *menuButton;
1097 GtkWidget *menuBar = NULL;
1100 int i, j, arraysize, left, top, height=999, width=1, boxStart=0, breakType = 0, r;
1101 char def[MSG_SIZ], *msg, engineDlg = (currentCps != NULL && dlgNr != BrowserDlg);
1103 if(dlgNr < PromoDlg && shellUp[dlgNr]) return 0; // already up
1105 if(dlgNr && dlgNr < PromoDlg && shells[dlgNr]) { // reusable, and used before (but popped down)
1106 gtk_widget_show(shells[dlgNr]);
1107 shellUp[dlgNr] = True;
1108 if(wp[dlgNr]) gtk_window_move(GTK_WINDOW(shells[dlgNr]), wp[dlgNr]->x, wp[dlgNr]->y);
1112 dialogOptions[dlgNr] = option; // make available to callback
1113 // post currentOption globally, so Spin and Combo callbacks can already use it
1114 // WARNING: this kludge does not work for persistent dialogs, so that these cannot have spin or combo controls!
1115 currentOption = option;
1117 if(engineDlg) { // Settings popup for engine: format through heuristic
1118 int n = currentCps->nrOptions;
1119 // if(n > 50) width = 4; else if(n>24) width = 2; else width = 1;
1121 height = n / width + 1;
1122 if(appData.debugMode) printf("n=%d, h=%d, w=%d\n",n,height,width);
1123 // if(n && (currentOption[n-1].type == Button || currentOption[n-1].type == SaveButton)) currentOption[n].min = SAME_ROW; // OK on same line
1124 currentOption[n].type = EndMark; currentOption[n].target = NULL; // delimit list by callback-less end mark
1127 parents[dlgNr] = parent;
1129 shells[BoardWindow] = shellWidget; parents[dlgNr] = parent;
1131 if(dlgNr == BoardWindow) dialog = shellWidget; else
1133 XtCreatePopupShell(title, !top || !appData.topLevel ? transientShellWidgetClass : topLevelShellWidgetClass,
1134 shells[parent], args, i);
1139 dialog = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1140 gtk_window_set_title(GTK_WINDOW(dialog), title);
1141 box = gtk_vbox_new(FALSE,0);
1142 gtk_container_add (GTK_CONTAINER (dialog), box);
1146 dialog = gtk_dialog_new_with_buttons( title,
1147 GTK_WINDOW(shells[parent]),
1148 GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR |
1149 (modal ? GTK_DIALOG_MODAL : 0),
1150 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1151 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1153 box = gtk_dialog_get_content_area( GTK_DIALOG( dialog ) );
1156 shells[dlgNr] = dialog;
1157 // gtk_box_set_spacing(GTK_BOX(box), 5);
1160 for (i=0;option[i].type != EndMark;i++) {
1164 table = gtk_table_new(arraysize, r=TableWidth(option), FALSE);
1168 for (i=0;option[i].type != EndMark;i++) {
1169 if(option[i].type == -1) continue;
1171 //printf("option =%2d, top =%2d\n", i, top);
1172 if (top >= height) {
1173 gtk_table_resize(GTK_TABLE(table), height, r);
1174 if(!pane) { // multi-column: put tables in intermediate hbox
1175 if(breakType || engineDlg)
1176 pane = gtk_hbox_new (FALSE, 0);
1178 pane = gtk_vbox_new (FALSE, 0);
1179 gtk_box_set_spacing(GTK_BOX(pane), 5 + 5*breakType);
1180 gtk_box_pack_start (GTK_BOX (/*GTK_DIALOG (dialog)->vbox*/box), pane, TRUE, TRUE, 0);
1182 gtk_box_pack_start (GTK_BOX (pane), table, TRUE, TRUE, 0);
1183 table = gtk_table_new(arraysize - i, r=TableWidth(option + i), FALSE);
1186 if(!SameRow(&option[i])) {
1187 if(SameRow(&option[i+1])) {
1188 GtkAttachOptions x = GTK_FILL;
1189 // make sure hbox is always available when we have more options on same row
1190 hbox = gtk_hbox_new (option[i].type == Button && option[i].textValue || option[i].type == Graph, 0);
1191 if(!currentCps && option[i].value > 80) x |= GTK_EXPAND; // only vertically extended widgets should size vertically
1192 if (strcmp(option[i].name, "") == 0 || option[i].type == Label || option[i].type == Button)
1193 // for Label and Button name is contained inside option
1194 gtk_table_attach(GTK_TABLE(table), hbox, left, left+r, top, top+1, GTK_FILL | GTK_EXPAND, x, 2, 1);
1196 gtk_table_attach(GTK_TABLE(table), hbox, left+1, left+r, top, top+1, GTK_FILL | GTK_EXPAND, x, 2, 1);
1197 } else hbox = NULL; //and also make sure no hbox exists if only singl option on row
1199 switch(option[i].type) {
1201 snprintf(def, MSG_SIZ, "%.2f", *(float*)option[i].target);
1202 option[i].value = *(float*)option[i].target;
1205 if(!currentCps) option[i].value = *(int*)option[i].target;
1206 snprintf(def, MSG_SIZ, "%d", option[i].value);
1211 label = gtk_label_new(option[i].name);
1213 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1216 w = option[i].type == Spin || option[i].type == Fractional ? 70 : option[i].max ? option[i].max : 205;
1217 if(option[i].type == FileName || option[i].type == PathName) w -= 55;
1219 if (option[i].type==TextBox && option[i].value > 80){
1220 textview = gtk_text_view_new();
1221 gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(textview), option[i].min & T_WRAP ? GTK_WRAP_WORD : GTK_WRAP_NONE);
1223 if(option[i].min & T_FILL) { XtSetArg(args[j], XtNautoFill, True); j++; }
1224 if(option[i].min & T_TOP) { XtSetArg(args[j], XtNtop, XtChainTop); j++;
1226 /* add textview to scrolled window so we have vertical scroll bar */
1227 sw = gtk_scrolled_window_new(NULL, NULL);
1228 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(sw),
1229 option[i].min & T_HSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_AUTOMATIC,
1230 option[i].min & T_VSCRL ? GTK_POLICY_ALWAYS : GTK_POLICY_NEVER);
1231 gtk_container_add(GTK_CONTAINER(sw), textview);
1232 gtk_widget_set_size_request(GTK_WIDGET(sw), w, -1);
1233 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_OUT);
1235 textbuffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));
1236 /* check if label is empty */
1237 if (strcmp(option[i].name,"") != 0) {
1238 gtk_table_attach(GTK_TABLE(table), label, left, left+1, top, top+1, GTK_FILL, GTK_FILL, 2, 1);
1239 Pack(hbox, table, sw, left+1, left+r, top, 0);
1242 /* no label so let textview occupy all columns */
1243 Pack(hbox, table, sw, left, left+r, top, GTK_EXPAND);
1245 if ( *(char**)option[i].target != NULL )
1246 gtk_text_buffer_set_text (textbuffer, *(char**)option[i].target, -1);
1248 gtk_text_buffer_set_text (textbuffer, "", -1);
1249 option[i].handle = (void*)textbuffer;
1250 option[i].textValue = (char*)textview;
1251 if(option[i].choice) { // textviews can request a handler for mouse events in the choice field
1252 g_signal_connect(textview, "button-press-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1253 g_signal_connect(textview, "button-release-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1254 g_signal_connect(textview, "motion-notify-event", G_CALLBACK (MemoEvent), (gpointer) &option[i] );
1259 entry = gtk_entry_new();
1261 if (option[i].type==Spin || option[i].type==Fractional)
1262 gtk_entry_set_text (GTK_ENTRY (entry), def);
1263 else if (currentCps)
1264 gtk_entry_set_text (GTK_ENTRY (entry), option[i].textValue);
1265 else if ( *(char**)option[i].target != NULL )
1266 gtk_entry_set_text (GTK_ENTRY (entry), *(char**)option[i].target);
1268 //gtk_entry_set_width_chars (GTK_ENTRY (entry), 18);
1269 gtk_entry_set_max_length (GTK_ENTRY (entry), w);
1271 // left, right, top, bottom
1272 if (strcmp(option[i].name, "") != 0)
1273 gtk_table_attach(GTK_TABLE(table), label, left, left+1, top, top+1, GTK_FILL, GTK_FILL, 2, 1); // leading names do not expand
1275 if (option[i].type == Spin) {
1276 spinner_adj = (GtkAdjustment *) gtk_adjustment_new (option[i].value, option[i].min, option[i].max, 1.0, 0.0, 0.0);
1277 spinner = gtk_spin_button_new (spinner_adj, 1.0, 0);
1278 gtk_table_attach(GTK_TABLE(table), spinner, left+1, left+r, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 1);
1279 option[i].handle = (void*)spinner;
1281 else if (option[i].type == FileName || option[i].type == PathName) {
1282 gtk_table_attach(GTK_TABLE(table), entry, left+1, left+2, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 1);
1283 button = gtk_button_new_with_label ("Browse");
1284 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
1285 g_signal_connect (button, "clicked", G_CALLBACK (BrowseGTK), (gpointer)(intptr_t) i);
1286 option[i].handle = (void*)entry;
1289 Pack(hbox, table, entry, left + (strcmp(option[i].name, "") != 0), left+r, top, 0);
1290 option[i].handle = (void*)entry;
1294 checkbutton = gtk_check_button_new_with_label(option[i].name);
1295 if(!currentCps) option[i].value = *(Boolean*)option[i].target;
1296 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbutton), option[i].value);
1297 gtk_table_attach(GTK_TABLE(table), checkbutton, left, left+r, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 0);
1298 option[i].handle = (void *)checkbutton;
1301 option[i].handle = (void *) (label = gtk_image_new_from_pixbuf(NULL));
1302 gtk_widget_set_size_request(label, option[i].max ? option[i].max : -1, -1);
1303 Pack(hbox, table, label, left, left+2, top, 0);
1306 option[i].handle = (void *) (label = gtk_label_new(option[i].name));
1308 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
1309 if(option[i].min & BORDER) {
1310 GtkWidget *frame = gtk_frame_new(NULL);
1311 gtk_container_add(GTK_CONTAINER(frame), label);
1314 gtk_widget_set_size_request(label, option[i].max ? option[i].max : -1, -1);
1315 if(option[i].target) { // allow user to specify event handler for button presses
1316 button = gtk_event_box_new();
1317 gtk_container_add(GTK_CONTAINER(button), label);
1319 gtk_widget_add_events(GTK_WIDGET(label), GDK_BUTTON_PRESS_MASK);
1320 g_signal_connect(label, "button-press-event", G_CALLBACK(MemoEvent), (gpointer) &option[i]);
1321 gtk_widget_set_sensitive(label, TRUE);
1323 Pack(hbox, table, label, left, left+2, top, 0);
1327 button = gtk_button_new_with_label (option[i].name);
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 );
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)));
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;
1348 label = gtk_label_new(option[i].name);
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);
1353 combobox = gtk_combo_box_new_text();
1356 if ( ((char **) option[i].textValue)[j] == NULL) break;
1357 gtk_combo_box_append_text(GTK_COMBO_BOX(combobox), ((char **) option[i].choice)[j]);
1361 option[i].choice = (char**) option[i].textValue;
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;
1366 /* If choice is NULL set to first */
1367 if (option[i].choice[j] == NULL)
1368 option[i].value = 0;
1370 option[i].value = j;
1373 //option[i].value = j + (option[i].choice[j] == NULL);
1374 gtk_combo_box_set_active(GTK_COMBO_BOX(combobox), option[i].value);
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));
1379 option[i].handle = (void*)combobox;
1380 values[i] = option[i].value;
1384 GtkCellRenderer *renderer;
1385 GtkTreeViewColumn *column;
1386 GtkListStore *store;
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);
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 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(sw), GTK_SHADOW_OUT);
1406 if(option[i].textValue) // generic callback for double-clicking listbox item
1407 g_signal_connect(list, "button-press-event", G_CALLBACK(ListCallback), (gpointer) (intptr_t) (dlgNr<<16 | i) );
1409 /* never has label, so let listbox occupy all columns */
1410 Pack(hbox, table, sw, left, left+r, top, GTK_EXPAND);
1414 option[i].handle = (void*) (graph = gtk_drawing_area_new());
1415 // gtk_widget_set_size_request(graph, option[i].max, option[i].value);
1416 if(0){ GtkAllocation a;
1417 a.x = 0; a.y = 0; a.width = option[i].max, a.height = option[i].value;
1418 gtk_widget_set_allocation(graph, &a);
1420 g_signal_connect (graph, "expose-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1421 gtk_widget_add_events(GTK_WIDGET(graph), GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK);
1422 g_signal_connect (graph, "button-press-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1423 g_signal_connect (graph, "button-release-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1424 g_signal_connect (graph, "motion-notify-event", G_CALLBACK (GraphEventProc), (gpointer) &option[i]);
1425 if(option[i].min & FIX_H) { // logo
1426 GtkWidget *frame = gtk_aspect_frame_new(NULL, 0.5, 0.5, option[i].max/(float)option[i].value, FALSE);
1427 gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_NONE);
1428 gtk_container_add(GTK_CONTAINER(frame), graph);
1431 Pack(hbox, table, graph, left, left+r, top, GTK_EXPAND);
1434 if(option[i].min & SAME_ROW) last = forelast, forelast = lastrow;
1436 option[i].choice = (char**) cairo_image_surface_create (CAIRO_FORMAT_ARGB32, option[i].max, option[i].value); // image buffer
1439 case PopUp: // note: used only after Graph, so 'last' refers to the Graph widget
1440 option[i].handle = (void*) CreateComboPopup(last, option + i, i + 256*dlgNr, TRUE, option[i].value);
1445 msg = _(option[i].name); // write name on the menu button
1446 // XtSetArg(args[j], XtNmenuName, XtNewString(option[i].name)); j++;
1447 // XtSetArg(args[j], XtNlabel, msg); j++;
1448 option[i].handle = (void*)
1449 (menuButton = gtk_menu_item_new_with_label(msg));
1450 gtk_widget_show(menuButton);
1451 option[i].textValue = (char*) (menu = CreateMenuPopup(option + i, i + 256*dlgNr, -1));
1452 gtk_menu_item_set_submenu(GTK_MENU_ITEM (menuButton), menu);
1453 gtk_menu_bar_append (GTK_MENU_BAR (menuBar), menuButton);
1457 menuBar = gtk_menu_bar_new ();
1458 gtk_widget_show (menuBar);
1462 option[i+1].min |= SAME_ROW; // kludge to suppress allocation of new hbox
1464 option[i].handle = (void*) (hbox = gtk_hbox_new(FALSE, 0)); // hbox to collect buttons
1465 gtk_box_pack_start(GTK_BOX (oldHbox), hbox, FALSE, TRUE, 0); // *** Beware! Assumes button bar always on same row with other! ***
1466 // gtk_table_attach(GTK_TABLE(table), hbox, left+2, left+3, top, top+1, GTK_FILL | GTK_SHRINK, GTK_FILL, 2, 1);
1471 gtk_table_attach(GTK_TABLE(table), menuBar, left, left+r, top, top+1, GTK_FILL | GTK_EXPAND, GTK_FILL, 2, 1);
1473 if(option[i].target) ((ButtonCallback*)option[i].target)(boxStart); // callback that can make sizing decisions
1476 // XtManageChildren(&form, 1);
1477 // SqueezeIntoBox(&option[boxStart], i-boxStart, option[boxStart].max);
1478 hbox = oldHbox; top--;
1479 if(option[i].target) ((ButtonCallback*)option[i].target)(boxStart); // callback that can make sizing decisions
1482 breakType = option[i].min & SAME_ROW;
1483 top = height; // force next option to start in a new table
1490 printf("GenericPopUp: unexpected case in switch. i=%d type=%d name=%s.\n", i, option[i].type, option[i].name);
1496 gtk_box_pack_start (GTK_BOX (pane), table, TRUE, TRUE, 0);
1498 gtk_table_resize(GTK_TABLE(table), top+1, r),
1499 gtk_box_pack_start (GTK_BOX (/*GTK_DIALOG (dialog)->vbox*/box), table, TRUE, TRUE, 0);
1501 option[i].handle = (void *) table; // remember last table in EndMark handle (for hiding Engine-Output pane).
1503 gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_NONE);
1506 gtk_widget_show_all( dialog );
1508 /* hide OK/cancel buttons */
1511 if((option[i].min & NO_OK)) {
1512 actionarea = gtk_dialog_get_action_area(GTK_DIALOG(dialog));
1513 gtk_widget_hide(actionarea);
1514 } else if((option[i].min & NO_CANCEL)) {
1515 button = gtk_dialog_get_widget_for_response(GTK_DIALOG(dialog), GTK_RESPONSE_REJECT);
1516 gtk_widget_hide(button);
1518 g_signal_connect (dialog, "response",
1519 G_CALLBACK (GenericPopDown),
1520 (gpointer)(intptr_t) dlgNr);
1523 g_signal_connect (dialog, "delete-event",
1524 G_CALLBACK (GenericPopDown),
1525 (gpointer)(intptr_t) dlgNr);
1528 if(dlgNr && wp[dlgNr]) { // if persistent window-info available, reposition
1529 if(wp[dlgNr]->x > 0 && wp[dlgNr]->y > 0)
1530 gtk_window_move(GTK_WINDOW(dialog), wp[dlgNr]->x, wp[dlgNr]->y);
1531 if(wp[dlgNr]->width > 0 && wp[dlgNr]->height > 0)
1532 gtk_window_resize(GTK_WINDOW(dialog), wp[dlgNr]->width, wp[dlgNr]->height);
1535 return 1; // tells caller he must do initialization (e.g. add specific event handlers)
1538 /* function called when the data to Paste is ready */
1541 SendTextCB (Widget w, XtPointer client_data, Atom *selection,
1542 Atom *type, XtPointer value, unsigned long *len, int *format)
1544 char buf[MSG_SIZ], *p = (char*) textOptions[(int)(intptr_t) client_data].choice, *name = (char*) value, *q;
1545 if (value==NULL || *len==0) return; /* nothing selected, abort */
1547 strncpy(buf, p, MSG_SIZ);
1548 q = strstr(p, "$name");
1549 snprintf(buf + (q-p), MSG_SIZ -(q-p), "%s%s", name, q+5);
1559 char *p = (char*) textOptions[n].choice;
1560 if(strstr(p, "$name")) {
1561 XtGetSelectionValue(menuBarWidget,
1562 XA_PRIMARY, XA_STRING,
1563 /* (XtSelectionCallbackProc) */ SendTextCB,
1564 (XtPointer) (intptr_t) n, /* client_data passed to PastePositionCB */
1567 } else SendString(p);
1572 SetInsertPos (Option *opt, int pos)
1576 XtSetArg(args[0], XtNinsertPosition, pos);
1577 XtSetValues(opt->handle, args, 1);
1578 // SetFocus(opt->handle, shells[InputBoxDlg], NULL, False); // No idea why this does not work, and the following is needed:
1579 // XSetInputFocus(xDisplay, XtWindow(opt->handle), RevertToPointerRoot, CurrentTime);
1584 HardSetFocus (Option *opt)
1586 FocusOnWidget(opt, 0); // second arg not used in GDK