1994-01-18 23:47:41 +00:00
|
|
|
|
/* The lwlib interface to Motif widgets.
|
2011-01-26 08:36:39 +00:00
|
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
|
Copyright (C) 1994-1997, 1999-2024 Free Software Foundation, Inc.
|
2011-01-26 08:36:39 +00:00
|
|
|
|
Copyright (C) 1992 Lucid, Inc.
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
This file is part of the Lucid Widget Library.
|
|
|
|
|
|
2003-02-04 14:56:31 +00:00
|
|
|
|
The Lucid Widget Library is free software; you can redistribute it and/or
|
1994-01-18 23:47:41 +00:00
|
|
|
|
modify it under the terms of the GNU General Public License as published by
|
2007-02-28 03:52:45 +00:00
|
|
|
|
the Free Software Foundation; either version 1, or (at your option)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
The Lucid Widget Library is distributed in the hope that it will be useful,
|
2003-02-04 14:56:31 +00:00
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
1994-01-18 23:47:41 +00:00
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
Add support for large files, plus some locale improvements.
* dispatch.c, lwlib-Xaw.c, lwlib-Xlw.c, lwlib-Xm.c, lwlib.c, xlwmenu.c,
xrdb-cpp.c, xrdb.c:
Include <config.h> before any system include files.
* lwlib-Xm.c, lwlib.c:
Do not include <stdlib.h> or <string.h>, as <config.h> does this.
1999-10-19 07:21:16 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <stdio.h>
|
2009-10-19 04:27:09 +00:00
|
|
|
|
#include <setjmp.h>
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
#include <X11/StringDefs.h>
|
|
|
|
|
#include <X11/IntrinsicP.h>
|
|
|
|
|
#include <X11/ObjectP.h>
|
|
|
|
|
#include <X11/CoreP.h>
|
|
|
|
|
#include <X11/CompositeP.h>
|
|
|
|
|
|
2011-02-10 05:03:29 +00:00
|
|
|
|
#include <lisp.h>
|
2001-12-02 05:00:27 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include "lwlib-Xm.h"
|
|
|
|
|
#include "lwlib-utils.h"
|
|
|
|
|
|
|
|
|
|
#include <Xm/BulletinB.h>
|
|
|
|
|
#include <Xm/CascadeB.h>
|
1996-04-03 17:22:57 +00:00
|
|
|
|
#include <Xm/CascadeBG.h>
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <Xm/DrawingA.h>
|
|
|
|
|
#include <Xm/FileSB.h>
|
|
|
|
|
#include <Xm/Label.h>
|
|
|
|
|
#include <Xm/List.h>
|
1994-09-16 17:37:03 +00:00
|
|
|
|
#include <Xm/MainW.h>
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <Xm/MenuShell.h>
|
|
|
|
|
#include <Xm/MessageB.h>
|
1994-09-16 17:37:03 +00:00
|
|
|
|
#include <Xm/PanedW.h>
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <Xm/PushB.h>
|
|
|
|
|
#include <Xm/PushBG.h>
|
|
|
|
|
#include <Xm/ArrowB.h>
|
|
|
|
|
#include <Xm/SelectioB.h>
|
|
|
|
|
#include <Xm/Text.h>
|
|
|
|
|
#include <Xm/TextF.h>
|
|
|
|
|
#include <Xm/ToggleB.h>
|
|
|
|
|
#include <Xm/ToggleBG.h>
|
|
|
|
|
#include <Xm/RowColumn.h>
|
|
|
|
|
#include <Xm/ScrolledW.h>
|
|
|
|
|
#include <Xm/Separator.h>
|
|
|
|
|
#include <Xm/DialogS.h>
|
|
|
|
|
#include <Xm/Form.h>
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
enum do_call_type { pre_activate, selection, no_selection, post_activate };
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Structures to keep destroyed instances */
|
2003-02-04 14:56:31 +00:00
|
|
|
|
typedef struct _destroyed_instance
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
char* name;
|
|
|
|
|
char* type;
|
|
|
|
|
Widget widget;
|
|
|
|
|
Widget parent;
|
|
|
|
|
Boolean pop_up_p;
|
|
|
|
|
struct _destroyed_instance* next;
|
|
|
|
|
} destroyed_instance;
|
|
|
|
|
|
2010-07-02 12:19:53 +00:00
|
|
|
|
static destroyed_instance *make_destroyed_instance (char *, char *,
|
|
|
|
|
Widget, Widget,
|
|
|
|
|
Boolean);
|
|
|
|
|
static void free_destroyed_instance (destroyed_instance*);
|
|
|
|
|
Widget first_child (Widget);
|
|
|
|
|
static XmString resource_motif_string (Widget, char *);
|
|
|
|
|
static void destroy_all_children (Widget, int);
|
|
|
|
|
static void xm_update_label (widget_instance *, Widget, widget_value *);
|
|
|
|
|
static void xm_update_list (widget_instance *, Widget, widget_value *);
|
|
|
|
|
static void xm_update_pushbutton (widget_instance *, Widget,
|
|
|
|
|
widget_value *);
|
|
|
|
|
static void xm_update_cascadebutton (widget_instance *, Widget,
|
|
|
|
|
widget_value *);
|
|
|
|
|
static void xm_update_toggle (widget_instance *, Widget, widget_value *);
|
|
|
|
|
static void xm_update_radiobox (widget_instance *, Widget, widget_value *);
|
|
|
|
|
static void make_menu_in_widget (widget_instance *, Widget,
|
|
|
|
|
widget_value *, int);
|
|
|
|
|
static void update_one_menu_entry (widget_instance *, Widget,
|
|
|
|
|
widget_value *, Boolean);
|
|
|
|
|
static void xm_update_menu (widget_instance *, Widget, widget_value *,
|
|
|
|
|
Boolean);
|
|
|
|
|
static void xm_update_text (widget_instance *, Widget, widget_value *);
|
|
|
|
|
static void xm_update_text_field (widget_instance *, Widget,
|
|
|
|
|
widget_value *);
|
|
|
|
|
static void activate_button (Widget, XtPointer, XtPointer);
|
|
|
|
|
static Widget make_dialog (char *, Widget, Boolean, char *, char *,
|
|
|
|
|
Boolean, Boolean, Boolean, int, int);
|
|
|
|
|
static destroyed_instance* find_matching_instance (widget_instance*);
|
|
|
|
|
static void mark_dead_instance_destroyed (Widget, XtPointer, XtPointer);
|
|
|
|
|
static void recenter_widget (Widget);
|
|
|
|
|
static Widget recycle_instance (destroyed_instance*);
|
|
|
|
|
static Widget make_menubar (widget_instance*);
|
|
|
|
|
static void remove_grabs (Widget, XtPointer, XtPointer);
|
|
|
|
|
static Widget make_popup_menu (widget_instance*);
|
|
|
|
|
static Widget make_main (widget_instance*);
|
|
|
|
|
static void set_min_dialog_size (Widget);
|
|
|
|
|
static void do_call (Widget, XtPointer, enum do_call_type);
|
|
|
|
|
static void xm_generic_callback (Widget, XtPointer, XtPointer);
|
|
|
|
|
static void xm_nosel_callback (Widget, XtPointer, XtPointer);
|
|
|
|
|
static void xm_pull_down_callback (Widget, XtPointer, XtPointer);
|
|
|
|
|
static void xm_pop_down_callback (Widget, XtPointer, XtPointer);
|
2022-03-05 01:35:44 +00:00
|
|
|
|
static void xm_pop_up_callback (Widget, XtPointer, XtPointer);
|
2010-07-02 12:19:53 +00:00
|
|
|
|
static void xm_internal_update_other_instances (Widget, XtPointer,
|
|
|
|
|
XtPointer);
|
|
|
|
|
static void xm_arm_callback (Widget, XtPointer, XtPointer);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
#if 0
|
2010-07-02 12:19:53 +00:00
|
|
|
|
void xm_update_one_widget (widget_instance *, Widget, widget_value *,
|
|
|
|
|
Boolean);
|
|
|
|
|
void xm_pop_instance (widget_instance*, Boolean);
|
|
|
|
|
void xm_manage_resizing (Widget, Boolean);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
2001-03-22 19:11:33 +00:00
|
|
|
|
#if 0
|
|
|
|
|
|
|
|
|
|
/* Print the complete X resource name of widget WIDGET to stderr.
|
|
|
|
|
This is sometimes handy to have available. */
|
|
|
|
|
|
|
|
|
|
void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
x_print_complete_resource_name (Widget widget)
|
2001-03-22 19:11:33 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
String names[100];
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 100 && widget != NULL; ++i)
|
|
|
|
|
{
|
|
|
|
|
names[i] = XtName (widget);
|
|
|
|
|
widget = XtParent (widget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (--i; i >= 1; --i)
|
|
|
|
|
fprintf (stderr, "%s.", names[i]);
|
|
|
|
|
fprintf (stderr, "%s\n", names[0]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* 0 */
|
|
|
|
|
|
|
|
|
|
|
2000-01-17 09:09:08 +00:00
|
|
|
|
static destroyed_instance *all_destroyed_instances = NULL;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
static destroyed_instance*
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
make_destroyed_instance (char* name,
|
|
|
|
|
char* type,
|
|
|
|
|
Widget widget,
|
|
|
|
|
Widget parent,
|
|
|
|
|
Boolean pop_up_p)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
destroyed_instance* instance =
|
2011-01-31 06:44:05 +00:00
|
|
|
|
(destroyed_instance*) xmalloc (sizeof (destroyed_instance));
|
2014-05-30 13:22:29 +00:00
|
|
|
|
instance->name = xstrdup (name);
|
|
|
|
|
instance->type = xstrdup (type);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
instance->widget = widget;
|
|
|
|
|
instance->parent = parent;
|
|
|
|
|
instance->pop_up_p = pop_up_p;
|
|
|
|
|
instance->next = NULL;
|
|
|
|
|
return instance;
|
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
free_destroyed_instance (destroyed_instance* instance)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2011-10-13 14:55:46 +00:00
|
|
|
|
xfree (instance->name);
|
|
|
|
|
xfree (instance->type);
|
|
|
|
|
xfree (instance);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* motif utility functions */
|
|
|
|
|
Widget
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
first_child (Widget widget)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
return ((CompositeWidget)widget)->composite.children [0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Boolean
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
lw_motif_widget_p (Widget widget)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2003-02-04 14:56:31 +00:00
|
|
|
|
return
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtClass (widget) == xmDialogShellWidgetClass
|
|
|
|
|
|| XmIsPrimitive (widget) || XmIsManager (widget) || XmIsGadget (widget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static XmString
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
resource_motif_string (Widget widget,
|
|
|
|
|
char* name)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XtResource resource;
|
|
|
|
|
XmString result = 0;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
resource.resource_name = name;
|
|
|
|
|
resource.resource_class = XmCXmString;
|
|
|
|
|
resource.resource_type = XmRXmString;
|
|
|
|
|
resource.resource_size = sizeof (XmString);
|
|
|
|
|
resource.resource_offset = 0;
|
|
|
|
|
resource.default_type = XtRImmediate;
|
|
|
|
|
resource.default_addr = 0;
|
|
|
|
|
|
|
|
|
|
XtGetSubresources (widget, (XtPointer)&result, "dialogString",
|
|
|
|
|
"DialogString", &resource, 1, NULL, 0);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
1996-03-25 01:46:16 +00:00
|
|
|
|
/* Destroy all of the children of WIDGET
|
|
|
|
|
starting with number FIRST_CHILD_TO_DESTROY. */
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
destroy_all_children (Widget widget,
|
|
|
|
|
int first_child_to_destroy)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget* children;
|
|
|
|
|
unsigned int number;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
children = XtCompositeChildren (widget, &number);
|
|
|
|
|
if (children)
|
|
|
|
|
{
|
1996-03-25 01:46:16 +00:00
|
|
|
|
XtUnmanageChildren (children + first_child_to_destroy,
|
|
|
|
|
number - first_child_to_destroy);
|
|
|
|
|
|
2003-02-04 14:56:31 +00:00
|
|
|
|
/* Unmanage all children and destroy them. They will only be
|
1996-03-25 01:46:16 +00:00
|
|
|
|
really destroyed when we get out of DispatchEvent. */
|
|
|
|
|
for (i = first_child_to_destroy; i < number; i++)
|
1996-04-03 17:22:57 +00:00
|
|
|
|
{
|
|
|
|
|
Arg al[2];
|
|
|
|
|
Widget submenu = 0;
|
|
|
|
|
/* Cascade buttons have submenus,and these submenus
|
|
|
|
|
need to be freed. But they are not included in
|
|
|
|
|
XtCompositeChildren. So get it out of the cascade button
|
|
|
|
|
and free it. If this child is not a cascade button,
|
|
|
|
|
then submenu should remain unchanged. */
|
2003-02-04 14:56:31 +00:00
|
|
|
|
XtSetArg (al[0], XmNsubMenuId, &submenu);
|
1996-04-03 17:22:57 +00:00
|
|
|
|
XtGetValues (children[i], al, 1);
|
|
|
|
|
if (submenu)
|
2003-01-26 13:06:48 +00:00
|
|
|
|
{
|
|
|
|
|
destroy_all_children (submenu, 0);
|
|
|
|
|
XtDestroyWidget (submenu);
|
|
|
|
|
}
|
1996-04-03 17:22:57 +00:00
|
|
|
|
XtDestroyWidget (children[i]);
|
|
|
|
|
}
|
1996-03-25 01:46:16 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtFree ((char *) children);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-17 09:09:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Callback XmNarmCallback and XmNdisarmCallback for buttons in a
|
|
|
|
|
menu. CLIENT_DATA contains a pointer to the widget_value
|
|
|
|
|
corresponding to widget W. CALL_DATA contains a
|
|
|
|
|
XmPushButtonCallbackStruct containing the reason why the callback
|
|
|
|
|
is called. */
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_arm_callback (Widget w, XtPointer client_data, XtPointer call_data)
|
2000-01-17 09:09:08 +00:00
|
|
|
|
{
|
|
|
|
|
XmPushButtonCallbackStruct *cbs = (XmPushButtonCallbackStruct *) call_data;
|
2022-03-01 03:30:52 +00:00
|
|
|
|
widget_value *wv = NULL;
|
|
|
|
|
widget_instance *instance = client_data;
|
|
|
|
|
XtPointer user_data;
|
|
|
|
|
Arg al[2];
|
|
|
|
|
int ac = 0;
|
2000-01-17 09:09:08 +00:00
|
|
|
|
|
2022-03-01 03:30:52 +00:00
|
|
|
|
XtSetArg (al[ac], XmNuserData, &user_data); ac++;
|
|
|
|
|
XtGetValues (w, al, ac);
|
|
|
|
|
wv = user_data;
|
2000-12-07 12:33:32 +00:00
|
|
|
|
|
2022-03-01 03:30:52 +00:00
|
|
|
|
if (wv != NULL)
|
2000-12-07 12:33:32 +00:00
|
|
|
|
{
|
2022-03-01 03:30:52 +00:00
|
|
|
|
if (instance->info->highlight_cb
|
2022-02-27 11:33:16 +00:00
|
|
|
|
&& (cbs->reason == XmCR_DISARM
|
|
|
|
|
|| (cbs->event
|
|
|
|
|
&& (cbs->event->type == EnterNotify
|
|
|
|
|
|| cbs->event->type == MotionNotify))))
|
2000-11-30 12:50:08 +00:00
|
|
|
|
{
|
|
|
|
|
call_data = cbs->reason == XmCR_DISARM ? NULL : wv;
|
|
|
|
|
instance->info->highlight_cb (w, instance->info->id, call_data);
|
|
|
|
|
}
|
2000-01-17 09:09:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
/* Update the label of widget WIDGET. WIDGET must be a Label widget
|
|
|
|
|
or a subclass of Label. WIDGET_INSTANCE is unused. VAL contains
|
|
|
|
|
the value to update.
|
|
|
|
|
|
|
|
|
|
Menus:
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Emacs fills VAL->name with the text to display in the menu, and
|
|
|
|
|
sets VAL->value to null. Function make_menu_in_widget creates
|
|
|
|
|
widgets with VAL->name as resource name. This works because the
|
|
|
|
|
Label widget uses its resource name for display if no
|
|
|
|
|
XmNlabelString is set.
|
|
|
|
|
|
|
|
|
|
Dialogs:
|
|
|
|
|
|
|
|
|
|
VAL->name is again set to the resource name, but VAL->value is
|
|
|
|
|
not null, and contains the label string to display. */
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_label (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XmString res_string = 0;
|
|
|
|
|
XmString built_string = 0;
|
|
|
|
|
XmString key_string = 0;
|
|
|
|
|
Arg al [256];
|
|
|
|
|
int ac;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ac = 0;
|
|
|
|
|
|
|
|
|
|
if (val->value)
|
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* A label string is specified, i.e. we are in a dialog. First
|
|
|
|
|
see if it is overridden by something from the resource file. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
res_string = resource_motif_string (widget, val->value);
|
|
|
|
|
|
|
|
|
|
if (res_string)
|
|
|
|
|
{
|
|
|
|
|
XtSetArg (al [ac], XmNlabelString, res_string); ac++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
built_string =
|
2005-03-17 19:03:16 +00:00
|
|
|
|
XmStringCreateLocalized (val->value);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtSetArg (al [ac], XmNlabelString, built_string); ac++;
|
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtSetArg (al [ac], XmNlabelType, XmSTRING); ac++;
|
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (val->key)
|
|
|
|
|
{
|
2005-03-17 19:03:16 +00:00
|
|
|
|
key_string = XmStringCreateLocalized (val->key);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtSetArg (al [ac], XmNacceleratorText, key_string); ac++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ac)
|
|
|
|
|
XtSetValues (widget, al, ac);
|
|
|
|
|
|
|
|
|
|
if (built_string)
|
|
|
|
|
XmStringFree (built_string);
|
|
|
|
|
|
|
|
|
|
if (key_string)
|
|
|
|
|
XmStringFree (key_string);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* update of list */
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_list (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value* cur;
|
|
|
|
|
int i;
|
|
|
|
|
XtRemoveAllCallbacks (widget, XmNsingleSelectionCallback);
|
|
|
|
|
XtAddCallback (widget, XmNsingleSelectionCallback, xm_generic_callback,
|
|
|
|
|
instance);
|
|
|
|
|
for (cur = val->contents, i = 0; cur; cur = cur->next)
|
|
|
|
|
if (cur->value)
|
|
|
|
|
{
|
2005-03-17 19:03:16 +00:00
|
|
|
|
XmString xmstr = XmStringCreateLocalized (cur->value);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
i += 1;
|
|
|
|
|
XmListAddItem (widget, xmstr, 0);
|
|
|
|
|
if (cur->selected)
|
|
|
|
|
XmListSelectPos (widget, i, False);
|
|
|
|
|
XmStringFree (xmstr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* update of buttons */
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_pushbutton (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaSetValues (widget, XmNalignment, XmALIGNMENT_CENTER, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtRemoveAllCallbacks (widget, XmNactivateCallback);
|
|
|
|
|
XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_cascadebutton (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
/* Should also rebuild the menu by calling ...update_menu... */
|
|
|
|
|
XtRemoveAllCallbacks (widget, XmNcascadingCallback);
|
|
|
|
|
XtAddCallback (widget, XmNcascadingCallback, xm_pull_down_callback,
|
|
|
|
|
instance);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* update toggle and radiobox */
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_toggle (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XtRemoveAllCallbacks (widget, XmNvalueChangedCallback);
|
|
|
|
|
XtAddCallback (widget, XmNvalueChangedCallback,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
xm_generic_callback, instance);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtVaSetValues (widget, XmNset, val->selected,
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XmNalignment, XmALIGNMENT_BEGINNING, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_radiobox (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val)
|
1995-04-08 18:01:09 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget toggle;
|
|
|
|
|
widget_value* cur;
|
|
|
|
|
|
|
|
|
|
/* update the callback */
|
|
|
|
|
XtRemoveAllCallbacks (widget, XmNentryCallback);
|
|
|
|
|
XtAddCallback (widget, XmNentryCallback, xm_generic_callback, instance);
|
|
|
|
|
|
|
|
|
|
/* first update all the toggles */
|
|
|
|
|
/* Energize kernel interface is currently bad. It sets the selected widget
|
|
|
|
|
with the selected flag but returns it by its name. So we currently
|
|
|
|
|
have to support both setting the selection with the selected slot
|
|
|
|
|
of val contents and setting it with the "value" slot of val. The latter
|
|
|
|
|
has a higher priority. This to be removed when the kernel is fixed. */
|
|
|
|
|
for (cur = val->contents; cur; cur = cur->next)
|
|
|
|
|
{
|
|
|
|
|
toggle = XtNameToWidget (widget, cur->value);
|
|
|
|
|
if (toggle)
|
|
|
|
|
{
|
2001-02-28 14:54:54 +00:00
|
|
|
|
XtSetSensitive (toggle, cur->enabled);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (!val->value && cur->selected)
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaSetValues (toggle, XmNset, cur->selected, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (val->value && strcmp (val->value, cur->value))
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaSetValues (toggle, XmNset, False, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The selected was specified by the value slot */
|
|
|
|
|
if (val->value)
|
|
|
|
|
{
|
|
|
|
|
toggle = XtNameToWidget (widget, val->value);
|
|
|
|
|
if (toggle)
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaSetValues (toggle, XmNset, True, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
/* update a popup menu, pulldown menu or a menubar */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1996-03-25 01:46:16 +00:00
|
|
|
|
/* KEEP_FIRST_CHILDREN gives the number of initial children to keep. */
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
make_menu_in_widget (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val,
|
|
|
|
|
int keep_first_children)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget* children = 0;
|
|
|
|
|
int num_children;
|
|
|
|
|
int child_index;
|
|
|
|
|
widget_value* cur;
|
|
|
|
|
Widget button = 0;
|
|
|
|
|
Widget menu;
|
|
|
|
|
Arg al [256];
|
|
|
|
|
int ac;
|
|
|
|
|
Boolean menubar_p;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
unsigned char type;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1996-03-25 01:46:16 +00:00
|
|
|
|
Widget* old_children;
|
|
|
|
|
unsigned int old_num_children;
|
|
|
|
|
|
2005-07-19 09:06:47 +00:00
|
|
|
|
/* Disable drag and drop for labels in menu bar. */
|
|
|
|
|
static char overrideTrans[] = "<Btn2Down>: Noop()";
|
|
|
|
|
XtTranslations override = XtParseTranslationTable (overrideTrans);
|
|
|
|
|
|
1996-03-25 01:46:16 +00:00
|
|
|
|
old_children = XtCompositeChildren (widget, &old_num_children);
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Allocate the children array */
|
2001-03-13 16:51:13 +00:00
|
|
|
|
for (num_children = 0, cur = val; cur; num_children++, cur = cur->next)
|
|
|
|
|
;
|
2011-04-16 21:22:40 +00:00
|
|
|
|
children = (Widget*)(void*)XtMalloc (num_children * sizeof (Widget));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2022-03-01 11:15:46 +00:00
|
|
|
|
#ifndef LESSTIF_VERSION
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* WIDGET should be a RowColumn. */
|
|
|
|
|
if (!XmIsRowColumn (widget))
|
Tweak X toolkit code to pacify modern GCC
* lwlib/lwlib-Xaw.c, lwlib/lwlib-Xm.c, lwlib/lwlib.c:
Don’t include <stdlib.h>, since this code now calls emacs_abort
rather than abort.
* lwlib/lwlib-Xaw.c (make_dialog, xaw_generic_callback)
(wm_delete_window):
* lwlib/lwlib-Xm.c (make_menu_in_widget, do_call):
* lwlib/lwlib.c (instantiate_widget_instance, lw_make_widget):
* lwlib/xlwmenu.c (abort_gracefully, draw_separator)
(separator_height, XlwMenuInitialize):
Use emacs_abort, not abort. Without this change, some calls
to ‘abort’ were invalid, as stdlib.h was not always included.
* src/widget.c (resources, emacsFrameClassRec):
* src/xfns.c (x_window) [USE_X_TOOLKIT]:
* src/xmenu.c (create_and_show_popup_menu) [USE_X_TOOLKIT]:
* src/xterm.c (emacs_options) [USE_X_TOOLKIT}:
(x_term_init) [USE_X_TOOLKIT]:
Cast string constants to char * to pacify --enable-gcc-warnings.
2017-03-10 17:30:30 +00:00
|
|
|
|
emacs_abort ();
|
2022-03-01 11:15:46 +00:00
|
|
|
|
#endif
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
/* Determine whether WIDGET is a menu bar. */
|
|
|
|
|
type = -1;
|
|
|
|
|
XtSetArg (al[0], XmNrowColumnType, &type);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtGetValues (widget, al, 1);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (type != XmMENU_BAR && type != XmMENU_PULLDOWN && type != XmMENU_POPUP)
|
Tweak X toolkit code to pacify modern GCC
* lwlib/lwlib-Xaw.c, lwlib/lwlib-Xm.c, lwlib/lwlib.c:
Don’t include <stdlib.h>, since this code now calls emacs_abort
rather than abort.
* lwlib/lwlib-Xaw.c (make_dialog, xaw_generic_callback)
(wm_delete_window):
* lwlib/lwlib-Xm.c (make_menu_in_widget, do_call):
* lwlib/lwlib.c (instantiate_widget_instance, lw_make_widget):
* lwlib/xlwmenu.c (abort_gracefully, draw_separator)
(separator_height, XlwMenuInitialize):
Use emacs_abort, not abort. Without this change, some calls
to ‘abort’ were invalid, as stdlib.h was not always included.
* src/widget.c (resources, emacsFrameClassRec):
* src/xfns.c (x_window) [USE_X_TOOLKIT]:
* src/xmenu.c (create_and_show_popup_menu) [USE_X_TOOLKIT]:
* src/xterm.c (emacs_options) [USE_X_TOOLKIT}:
(x_term_init) [USE_X_TOOLKIT]:
Cast string constants to char * to pacify --enable-gcc-warnings.
2017-03-10 17:30:30 +00:00
|
|
|
|
emacs_abort ();
|
1999-07-21 21:43:52 +00:00
|
|
|
|
menubar_p = type == XmMENU_BAR;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* Add a callback to popups and pulldowns that is called when
|
|
|
|
|
it is made invisible again. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (!menubar_p)
|
2022-03-05 01:35:44 +00:00
|
|
|
|
{
|
|
|
|
|
XtAddCallback (XtParent (widget), XmNpopdownCallback,
|
|
|
|
|
xm_pop_down_callback, (XtPointer) instance);
|
|
|
|
|
XtAddCallback (XtParent (widget), XmNpopupCallback,
|
|
|
|
|
xm_pop_up_callback, (XtPointer) instance);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1996-03-25 01:46:16 +00:00
|
|
|
|
/* Preserve the first KEEP_FIRST_CHILDREN old children. */
|
|
|
|
|
for (child_index = 0, cur = val; child_index < keep_first_children;
|
|
|
|
|
child_index++, cur = cur->next)
|
|
|
|
|
children[child_index] = old_children[child_index];
|
|
|
|
|
|
|
|
|
|
/* Check that those are all we have
|
|
|
|
|
(the caller should have deleted the rest). */
|
|
|
|
|
if (old_num_children != keep_first_children)
|
Tweak X toolkit code to pacify modern GCC
* lwlib/lwlib-Xaw.c, lwlib/lwlib-Xm.c, lwlib/lwlib.c:
Don’t include <stdlib.h>, since this code now calls emacs_abort
rather than abort.
* lwlib/lwlib-Xaw.c (make_dialog, xaw_generic_callback)
(wm_delete_window):
* lwlib/lwlib-Xm.c (make_menu_in_widget, do_call):
* lwlib/lwlib.c (instantiate_widget_instance, lw_make_widget):
* lwlib/xlwmenu.c (abort_gracefully, draw_separator)
(separator_height, XlwMenuInitialize):
Use emacs_abort, not abort. Without this change, some calls
to ‘abort’ were invalid, as stdlib.h was not always included.
* src/widget.c (resources, emacsFrameClassRec):
* src/xfns.c (x_window) [USE_X_TOOLKIT]:
* src/xmenu.c (create_and_show_popup_menu) [USE_X_TOOLKIT]:
* src/xterm.c (emacs_options) [USE_X_TOOLKIT}:
(x_term_init) [USE_X_TOOLKIT]:
Cast string constants to char * to pacify --enable-gcc-warnings.
2017-03-10 17:30:30 +00:00
|
|
|
|
emacs_abort ();
|
1996-03-25 01:46:16 +00:00
|
|
|
|
|
|
|
|
|
/* Create the rest. */
|
|
|
|
|
for (child_index = keep_first_children; cur; child_index++, cur = cur->next)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
enum menu_separator separator;
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ac = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
XtSetArg (al[ac], XmNsensitive, cur->enabled); ac++;
|
|
|
|
|
XtSetArg (al[ac], XmNalignment, XmALIGNMENT_BEGINNING); ac++;
|
2022-03-01 03:30:52 +00:00
|
|
|
|
XtSetArg (al[ac], XmNuserData, cur); ac++;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-11-08 13:06:07 +00:00
|
|
|
|
if (instance->pop_up_p && !cur->contents && !cur->call_data
|
1999-07-21 21:43:52 +00:00
|
|
|
|
&& !lw_separator_p (cur->name, &separator, 1))
|
1994-10-02 11:48:42 +00:00
|
|
|
|
{
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg (al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++;
|
2012-07-31 11:37:38 +00:00
|
|
|
|
button = XmCreateLabel (widget, cur->name, al, ac);
|
1994-10-02 11:48:42 +00:00
|
|
|
|
}
|
1999-07-21 21:43:52 +00:00
|
|
|
|
else if (lw_separator_p (cur->name, &separator, 1))
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg (al[ac], XmNseparatorType, separator); ++ac;
|
|
|
|
|
button = XmCreateSeparator (widget, cur->name, al, ac);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
else if (!cur->contents)
|
|
|
|
|
{
|
|
|
|
|
if (menubar_p)
|
|
|
|
|
button = XmCreateCascadeButton (widget, cur->name, al, ac);
|
|
|
|
|
else if (!cur->call_data)
|
|
|
|
|
button = XmCreateLabel (widget, cur->name, al, ac);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
else if (cur->button_type == BUTTON_TYPE_TOGGLE
|
|
|
|
|
|| cur->button_type == BUTTON_TYPE_RADIO)
|
|
|
|
|
{
|
|
|
|
|
XtSetArg (al[ac], XmNset, cur->selected); ++ac;
|
|
|
|
|
XtSetArg (al[ac], XmNvisibleWhenOff, True); ++ac;
|
|
|
|
|
XtSetArg (al[ac], XmNindicatorType,
|
|
|
|
|
(cur->button_type == BUTTON_TYPE_TOGGLE
|
|
|
|
|
? XmN_OF_MANY : XmONE_OF_MANY));
|
|
|
|
|
++ac;
|
1999-10-06 23:25:07 +00:00
|
|
|
|
button = XmCreateToggleButton (widget, cur->name, al, ac);
|
2022-03-01 03:30:52 +00:00
|
|
|
|
XtAddCallback (button, XmNarmCallback, xm_arm_callback,
|
|
|
|
|
(XtPointer) instance);
|
|
|
|
|
XtAddCallback (button, XmNdisarmCallback, xm_arm_callback,
|
|
|
|
|
(XtPointer) instance);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
2000-01-17 09:09:08 +00:00
|
|
|
|
{
|
|
|
|
|
button = XmCreatePushButton (widget, cur->name, al, ac);
|
2022-03-01 03:30:52 +00:00
|
|
|
|
XtAddCallback (button, XmNarmCallback, xm_arm_callback,
|
|
|
|
|
(XtPointer) instance);
|
|
|
|
|
XtAddCallback (button, XmNdisarmCallback, xm_arm_callback,
|
|
|
|
|
(XtPointer) instance);
|
2000-01-17 09:09:08 +00:00
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xm_update_label (instance, button, cur);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* Add a callback that is called when the button is
|
|
|
|
|
selected. Toggle buttons don't support
|
|
|
|
|
XmNactivateCallback, we use XmNvalueChangedCallback in
|
|
|
|
|
that case. Don't add a callback to a simple label. */
|
|
|
|
|
if (cur->button_type)
|
|
|
|
|
xm_update_toggle (instance, button, cur);
|
|
|
|
|
else if (cur->call_data)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtAddCallback (button, XmNactivateCallback, xm_generic_callback,
|
|
|
|
|
(XtPointer)instance);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1995-04-14 03:51:10 +00:00
|
|
|
|
menu = XmCreatePulldownMenu (widget, cur->name, NULL, 0);
|
2000-01-25 15:50:53 +00:00
|
|
|
|
|
1996-03-25 01:46:16 +00:00
|
|
|
|
make_menu_in_widget (instance, menu, cur->contents, 0);
|
2000-01-25 15:50:53 +00:00
|
|
|
|
XtSetArg (al[ac], XmNsubMenuId, menu); ac++;
|
1999-10-06 23:25:07 +00:00
|
|
|
|
button = XmCreateCascadeButton (widget, cur->name, al, ac);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
xm_update_label (instance, button, cur);
|
|
|
|
|
|
|
|
|
|
XtAddCallback (button, XmNcascadingCallback, xm_pull_down_callback,
|
|
|
|
|
(XtPointer)instance);
|
2005-07-19 09:06:47 +00:00
|
|
|
|
XtOverrideTranslations (button, override);
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
children[child_index] = button;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* Last entry is the help button. The original comment read "Has to
|
|
|
|
|
be done after managing the buttons otherwise the menubar is only
|
|
|
|
|
4 pixels high." This is no longer true, and to make
|
|
|
|
|
XmNmenuHelpWidget work, we need to set it before managing the
|
|
|
|
|
children.. --gerd. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (button)
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaSetValues (widget, XmNmenuHelpWidget, button, NULL);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
if (num_children)
|
|
|
|
|
XtManageChildren (children, num_children);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
XtFree ((char *) children);
|
1996-03-25 01:46:16 +00:00
|
|
|
|
if (old_children)
|
|
|
|
|
XtFree ((char *) old_children);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
update_one_menu_entry (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val,
|
|
|
|
|
Boolean deep_p)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Arg al [256];
|
|
|
|
|
int ac;
|
|
|
|
|
Widget menu;
|
|
|
|
|
widget_value* contents;
|
|
|
|
|
|
1996-03-25 01:46:16 +00:00
|
|
|
|
if (val->this_one_change == NO_CHANGE)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* update the sensitivity and userdata */
|
|
|
|
|
/* Common to all widget types */
|
2001-02-28 14:54:54 +00:00
|
|
|
|
XtSetSensitive (widget, val->enabled);
|
2022-03-01 03:30:52 +00:00
|
|
|
|
XtVaSetValues (widget, XmNuserData, val, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
/* update the menu button as a label. */
|
1996-03-25 01:46:16 +00:00
|
|
|
|
if (val->this_one_change >= VISIBLE_CHANGE)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
xm_update_label (instance, widget, val);
|
|
|
|
|
if (val->button_type)
|
|
|
|
|
xm_update_toggle (instance, widget, val);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
/* update the pulldown/pullaside as needed */
|
|
|
|
|
ac = 0;
|
|
|
|
|
menu = NULL;
|
|
|
|
|
XtSetArg (al [ac], XmNsubMenuId, &menu); ac++;
|
|
|
|
|
XtGetValues (widget, al, ac);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
contents = val->contents;
|
|
|
|
|
|
|
|
|
|
if (!menu)
|
|
|
|
|
{
|
|
|
|
|
if (contents)
|
|
|
|
|
{
|
1996-08-10 18:48:18 +00:00
|
|
|
|
unsigned int old_num_children, i;
|
1996-08-12 18:57:08 +00:00
|
|
|
|
Widget parent;
|
1996-08-10 18:48:18 +00:00
|
|
|
|
Widget *widget_list;
|
|
|
|
|
|
|
|
|
|
parent = XtParent (widget);
|
|
|
|
|
widget_list = XtCompositeChildren (parent, &old_num_children);
|
|
|
|
|
|
|
|
|
|
/* Find the widget position within the parent's widget list. */
|
|
|
|
|
for (i = 0; i < old_num_children; i++)
|
|
|
|
|
if (strcmp (XtName (widget_list[i]), XtName (widget)) == 0)
|
|
|
|
|
break;
|
|
|
|
|
if (i == old_num_children)
|
Tweak X toolkit code to pacify modern GCC
* lwlib/lwlib-Xaw.c, lwlib/lwlib-Xm.c, lwlib/lwlib.c:
Don’t include <stdlib.h>, since this code now calls emacs_abort
rather than abort.
* lwlib/lwlib-Xaw.c (make_dialog, xaw_generic_callback)
(wm_delete_window):
* lwlib/lwlib-Xm.c (make_menu_in_widget, do_call):
* lwlib/lwlib.c (instantiate_widget_instance, lw_make_widget):
* lwlib/xlwmenu.c (abort_gracefully, draw_separator)
(separator_height, XlwMenuInitialize):
Use emacs_abort, not abort. Without this change, some calls
to ‘abort’ were invalid, as stdlib.h was not always included.
* src/widget.c (resources, emacsFrameClassRec):
* src/xfns.c (x_window) [USE_X_TOOLKIT]:
* src/xmenu.c (create_and_show_popup_menu) [USE_X_TOOLKIT]:
* src/xterm.c (emacs_options) [USE_X_TOOLKIT}:
(x_term_init) [USE_X_TOOLKIT]:
Cast string constants to char * to pacify --enable-gcc-warnings.
2017-03-10 17:30:30 +00:00
|
|
|
|
emacs_abort ();
|
1996-08-12 18:57:08 +00:00
|
|
|
|
if (XmIsCascadeButton (widget_list[i]))
|
|
|
|
|
{
|
|
|
|
|
menu = XmCreatePulldownMenu (parent, XtName(widget), NULL, 0);
|
|
|
|
|
make_menu_in_widget (instance, menu, contents, 0);
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg (al [ac], XmNsubMenuId, menu); ac++;
|
|
|
|
|
XtSetValues (widget, al, ac);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Widget button;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
|
|
|
|
/* The current menuitem is a XmPushButtonGadget, it
|
1996-08-12 18:57:08 +00:00
|
|
|
|
needs to be replaced by a CascadeButtonGadget */
|
|
|
|
|
XtDestroyWidget (widget_list[i]);
|
|
|
|
|
menu = XmCreatePulldownMenu (parent, val->name, NULL, 0);
|
|
|
|
|
make_menu_in_widget (instance, menu, contents, 0);
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg (al [ac], XmNsubMenuId, menu); ac++;
|
|
|
|
|
/* Non-zero values don't work reliably in
|
2024-07-25 01:35:04 +00:00
|
|
|
|
conjunction with Emacs's event loop */
|
1996-08-12 18:57:08 +00:00
|
|
|
|
XtSetArg (al [ac], XmNmappingDelay, 0); ac++;
|
1997-12-20 23:12:09 +00:00
|
|
|
|
#ifdef XmNpositionIndex /* This is undefined on SCO ODT 2.0. */
|
1996-08-12 18:57:08 +00:00
|
|
|
|
/* Tell Motif to put it in the right place */
|
1997-12-20 23:12:09 +00:00
|
|
|
|
XtSetArg (al [ac], XmNpositionIndex , i); ac++;
|
|
|
|
|
#endif
|
1999-10-06 23:25:07 +00:00
|
|
|
|
button = XmCreateCascadeButton (parent, val->name, al, ac);
|
1996-08-12 18:57:08 +00:00
|
|
|
|
xm_update_label (instance, button, val);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1996-08-12 18:57:08 +00:00
|
|
|
|
XtAddCallback (button, XmNcascadingCallback, xm_pull_down_callback,
|
|
|
|
|
(XtPointer)instance);
|
|
|
|
|
XtManageChild (button);
|
|
|
|
|
}
|
2003-01-26 13:06:48 +00:00
|
|
|
|
|
|
|
|
|
if (widget_list)
|
|
|
|
|
XtFree ((char*) widget_list);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (!contents)
|
|
|
|
|
{
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg (al [ac], XmNsubMenuId, NULL); ac++;
|
|
|
|
|
XtSetValues (widget, al, ac);
|
|
|
|
|
XtDestroyWidget (menu);
|
|
|
|
|
}
|
|
|
|
|
else if (deep_p && contents->change != NO_CHANGE)
|
|
|
|
|
xm_update_menu (instance, menu, val, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_menu (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val,
|
|
|
|
|
Boolean deep_p)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1996-03-25 01:46:16 +00:00
|
|
|
|
Widget* children;
|
|
|
|
|
unsigned int num_children;
|
|
|
|
|
int num_children_to_keep = 0;
|
|
|
|
|
int i;
|
|
|
|
|
widget_value* cur;
|
|
|
|
|
|
|
|
|
|
children = XtCompositeChildren (widget, &num_children);
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Widget is a RowColumn widget whose contents have to be updated
|
|
|
|
|
* to reflect the list of items in val->contents */
|
|
|
|
|
|
1996-03-25 01:46:16 +00:00
|
|
|
|
/* See how many buttons we can keep, and how many we
|
|
|
|
|
must completely replace. */
|
|
|
|
|
if (val->contents == 0)
|
|
|
|
|
num_children_to_keep = 0;
|
|
|
|
|
else if (val->contents->change == STRUCTURAL_CHANGE)
|
|
|
|
|
{
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (children)
|
|
|
|
|
{
|
2003-02-04 14:56:31 +00:00
|
|
|
|
for (i = 0, cur = val->contents;
|
1996-07-13 18:51:11 +00:00
|
|
|
|
(i < num_children
|
|
|
|
|
&& cur); /* how else to ditch unwanted children ?? - mgd */
|
1996-03-25 01:46:16 +00:00
|
|
|
|
i++, cur = cur->next)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1996-03-25 01:46:16 +00:00
|
|
|
|
if (cur->this_one_change == STRUCTURAL_CHANGE)
|
|
|
|
|
break;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
1996-03-25 01:46:16 +00:00
|
|
|
|
|
|
|
|
|
num_children_to_keep = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
num_children_to_keep = num_children;
|
|
|
|
|
|
|
|
|
|
/* Update all the buttons of the RowColumn, in order,
|
|
|
|
|
except for those we are going to replace entirely. */
|
|
|
|
|
if (children)
|
|
|
|
|
{
|
|
|
|
|
for (i = 0, cur = val->contents; i < num_children_to_keep; i++)
|
|
|
|
|
{
|
|
|
|
|
if (!cur)
|
1996-08-10 18:48:18 +00:00
|
|
|
|
{
|
|
|
|
|
num_children_to_keep = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
1996-03-25 01:46:16 +00:00
|
|
|
|
if (children [i]->core.being_destroyed
|
|
|
|
|
|| strcmp (XtName (children [i]), cur->name))
|
|
|
|
|
continue;
|
|
|
|
|
update_one_menu_entry (instance, children [i], cur, deep_p);
|
|
|
|
|
cur = cur->next;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1996-03-25 01:46:16 +00:00
|
|
|
|
|
|
|
|
|
/* Now replace from scratch all the buttons after the last
|
|
|
|
|
place that the top-level structure changed. */
|
2011-01-23 21:39:37 +00:00
|
|
|
|
if (val->contents && val->contents->change == STRUCTURAL_CHANGE)
|
1996-03-25 01:46:16 +00:00
|
|
|
|
{
|
|
|
|
|
destroy_all_children (widget, num_children_to_keep);
|
|
|
|
|
make_menu_in_widget (instance, widget, val->contents,
|
2003-01-26 13:06:48 +00:00
|
|
|
|
num_children_to_keep);
|
1996-03-25 01:46:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XtFree ((char *) children);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* update text widgets */
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_text (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XmTextSetString (widget, val->value ? val->value : "");
|
|
|
|
|
XtRemoveAllCallbacks (widget, XmNactivateCallback);
|
|
|
|
|
XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance);
|
|
|
|
|
XtRemoveAllCallbacks (widget, XmNvalueChangedCallback);
|
|
|
|
|
XtAddCallback (widget, XmNvalueChangedCallback,
|
|
|
|
|
xm_internal_update_other_instances, instance);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_text_field (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XmTextFieldSetString (widget, val->value ? val->value : "");
|
|
|
|
|
XtRemoveAllCallbacks (widget, XmNactivateCallback);
|
|
|
|
|
XtAddCallback (widget, XmNactivateCallback, xm_generic_callback, instance);
|
|
|
|
|
XtRemoveAllCallbacks (widget, XmNvalueChangedCallback);
|
|
|
|
|
XtAddCallback (widget, XmNvalueChangedCallback,
|
|
|
|
|
xm_internal_update_other_instances, instance);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* update a motif widget */
|
|
|
|
|
|
|
|
|
|
void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_one_widget (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val,
|
|
|
|
|
Boolean deep_p)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
WidgetClass class;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Mark as not edited */
|
|
|
|
|
val->edited = False;
|
|
|
|
|
|
|
|
|
|
/* Common to all widget types */
|
2001-02-28 14:54:54 +00:00
|
|
|
|
XtSetSensitive (widget, val->enabled);
|
2022-03-01 03:30:52 +00:00
|
|
|
|
XtVaSetValues (widget, XmNuserData, val, NULL);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Common to all label like widgets */
|
|
|
|
|
if (XtIsSubclass (widget, xmLabelWidgetClass))
|
|
|
|
|
xm_update_label (instance, widget, val);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
class = XtClass (widget);
|
|
|
|
|
/* Class specific things */
|
|
|
|
|
if (class == xmPushButtonWidgetClass ||
|
|
|
|
|
class == xmArrowButtonWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
xm_update_pushbutton (instance, widget, val);
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmCascadeButtonWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
xm_update_cascadebutton (instance, widget, val);
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmToggleButtonWidgetClass
|
|
|
|
|
|| class == xmToggleButtonGadgetClass)
|
|
|
|
|
{
|
|
|
|
|
xm_update_toggle (instance, widget, val);
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmRowColumnWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
Boolean radiobox = 0;
|
|
|
|
|
int ac = 0;
|
|
|
|
|
Arg al [1];
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtSetArg (al [ac], XmNradioBehavior, &radiobox); ac++;
|
|
|
|
|
XtGetValues (widget, al, ac);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (radiobox)
|
|
|
|
|
xm_update_radiobox (instance, widget, val);
|
|
|
|
|
else
|
|
|
|
|
xm_update_menu (instance, widget, val, deep_p);
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmTextWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
xm_update_text (instance, widget, val);
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmTextFieldWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
xm_update_text_field (instance, widget, val);
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmListWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
xm_update_list (instance, widget, val);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* getting the value back */
|
|
|
|
|
void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_update_one_value (widget_instance* instance,
|
|
|
|
|
Widget widget,
|
|
|
|
|
widget_value* val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
WidgetClass class = XtClass (widget);
|
|
|
|
|
widget_value *old_wv;
|
|
|
|
|
|
|
|
|
|
/* copy the call_data slot into the "return" widget_value */
|
|
|
|
|
for (old_wv = instance->info->val->contents; old_wv; old_wv = old_wv->next)
|
|
|
|
|
if (!strcmp (val->name, old_wv->name))
|
|
|
|
|
{
|
|
|
|
|
val->call_data = old_wv->call_data;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (class == xmToggleButtonWidgetClass || class == xmToggleButtonGadgetClass)
|
|
|
|
|
{
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaGetValues (widget, XmNset, &val->selected, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
val->edited = True;
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmTextWidgetClass)
|
|
|
|
|
{
|
2011-10-13 14:55:46 +00:00
|
|
|
|
xfree (val->value);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
val->value = XmTextGetString (widget);
|
|
|
|
|
val->edited = True;
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmTextFieldWidgetClass)
|
|
|
|
|
{
|
2011-10-13 14:55:46 +00:00
|
|
|
|
xfree (val->value);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
val->value = XmTextFieldGetString (widget);
|
|
|
|
|
val->edited = True;
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmRowColumnWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
Boolean radiobox = 0;
|
|
|
|
|
int ac = 0;
|
|
|
|
|
Arg al [1];
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtSetArg (al [ac], XmNradioBehavior, &radiobox); ac++;
|
|
|
|
|
XtGetValues (widget, al, ac);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (radiobox)
|
|
|
|
|
{
|
|
|
|
|
CompositeWidget radio = (CompositeWidget)widget;
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < radio->composite.num_children; i++)
|
|
|
|
|
{
|
|
|
|
|
int set = False;
|
|
|
|
|
Widget toggle = radio->composite.children [i];
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaGetValues (toggle, XmNset, &set, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (set)
|
2014-05-30 13:22:29 +00:00
|
|
|
|
dupstring (&val->value, XtName (toggle));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
val->edited = True;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (class == xmListWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
int pos_cnt;
|
|
|
|
|
int* pos_list;
|
|
|
|
|
if (XmListGetSelectedPos (widget, &pos_list, &pos_cnt))
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
widget_value* cur;
|
|
|
|
|
for (cur = val->contents, i = 0; cur; cur = cur->next)
|
|
|
|
|
if (cur->value)
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
cur->selected = False;
|
|
|
|
|
i += 1;
|
|
|
|
|
for (j = 0; j < pos_cnt; j++)
|
|
|
|
|
if (pos_list [j] == i)
|
|
|
|
|
{
|
|
|
|
|
cur->selected = True;
|
2014-05-30 13:22:29 +00:00
|
|
|
|
val->value = xstrdup (cur->name);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
val->edited = 1;
|
|
|
|
|
XtFree ((char *) pos_list);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* This function is for activating a button from a program. It's wrong because
|
|
|
|
|
we pass a NULL argument in the call_data which is not Motif compatible.
|
|
|
|
|
This is used from the XmNdefaultAction callback of the List widgets to
|
2003-02-04 14:56:31 +00:00
|
|
|
|
have a double-click put down a dialog box like the button would do.
|
1994-01-18 23:47:41 +00:00
|
|
|
|
I could not find a way to do that with accelerators.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
activate_button (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XtPointer call_data)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget button = (Widget)closure;
|
|
|
|
|
XtCallCallbacks (button, XmNactivateCallback, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* creation functions */
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
/* Called for key press in dialogs. Used to pop down dialog on ESC. */
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
dialog_key_cb (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XEvent *event,
|
|
|
|
|
Boolean *continue_to_dispatch)
|
2004-01-12 01:45:22 +00:00
|
|
|
|
{
|
|
|
|
|
KeySym sym = 0;
|
|
|
|
|
Modifiers modif_ret;
|
2011-04-16 21:22:40 +00:00
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
XtTranslateKeycode (event->xkey.display, event->xkey.keycode, 0,
|
|
|
|
|
&modif_ret, &sym);
|
2011-04-16 21:22:40 +00:00
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (sym == osfXK_Cancel)
|
|
|
|
|
{
|
|
|
|
|
Widget w = *((Widget *) closure);
|
|
|
|
|
|
|
|
|
|
while (w && ! XtIsShell (w))
|
|
|
|
|
w = XtParent (w);
|
|
|
|
|
|
|
|
|
|
if (XtIsShell (w)) XtPopdown (w);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*continue_to_dispatch = TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* dialogs */
|
|
|
|
|
static Widget
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
make_dialog (char* name,
|
|
|
|
|
Widget parent,
|
|
|
|
|
Boolean pop_up_p,
|
|
|
|
|
char* shell_title,
|
|
|
|
|
char* icon_name,
|
|
|
|
|
Boolean text_input_slot,
|
|
|
|
|
Boolean radio_box,
|
|
|
|
|
Boolean list,
|
|
|
|
|
int left_buttons,
|
|
|
|
|
int right_buttons)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget result;
|
|
|
|
|
Widget form;
|
|
|
|
|
Widget row;
|
|
|
|
|
Widget icon;
|
|
|
|
|
Widget icon_separator;
|
2011-04-16 21:22:40 +00:00
|
|
|
|
Widget message_label;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
Widget value = 0;
|
|
|
|
|
Widget separator;
|
|
|
|
|
Widget button = 0;
|
|
|
|
|
Widget children [16]; /* for the final XtManageChildren */
|
|
|
|
|
int n_children;
|
|
|
|
|
Arg al[64]; /* Arg List */
|
|
|
|
|
int ac; /* Arg Count */
|
|
|
|
|
int i;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (pop_up_p)
|
|
|
|
|
{
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNtitle, shell_title); ac++;
|
|
|
|
|
XtSetArg(al[ac], XtNallowShellResize, True); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNdeleteResponse, XmUNMAP); ac++;
|
|
|
|
|
result = XmCreateDialogShell (parent, "dialog", al, ac);
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNautoUnmanage, FALSE); ac++;
|
|
|
|
|
/* XtSetArg(al[ac], XmNautoUnmanage, TRUE); ac++; */ /* ####is this ok? */
|
|
|
|
|
XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++;
|
|
|
|
|
form = XmCreateForm (result, shell_title, al, ac);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNautoUnmanage, FALSE); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++;
|
|
|
|
|
form = XmCreateForm (parent, shell_title, al, ac);
|
|
|
|
|
result = form;
|
|
|
|
|
}
|
|
|
|
|
|
1994-09-18 19:54:50 +00:00
|
|
|
|
n_children = left_buttons + right_buttons + 1;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ac = 0;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
XtSetArg(al[ac], XmNpacking, n_children == 3?
|
1994-09-18 19:54:50 +00:00
|
|
|
|
XmPACK_COLUMN: XmPACK_TIGHT); ac++;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
XtSetArg(al[ac], XmNorientation, n_children == 3?
|
1994-09-18 19:54:50 +00:00
|
|
|
|
XmVERTICAL: XmHORIZONTAL); ac++;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtSetArg(al[ac], XmNnumColumns, left_buttons + right_buttons + 1); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNmarginWidth, 0); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNmarginHeight, 0); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNspacing, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNadjustLast, False); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNisAligned, True); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
|
|
|
|
|
row = XmCreateRowColumn (form, "row", al, ac);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
n_children = 0;
|
|
|
|
|
for (i = 0; i < left_buttons; i++)
|
|
|
|
|
{
|
|
|
|
|
char button_name [16];
|
|
|
|
|
sprintf (button_name, "button%d", i + 1);
|
|
|
|
|
ac = 0;
|
|
|
|
|
if (i == 0)
|
|
|
|
|
{
|
|
|
|
|
XtSetArg(al[ac], XmNhighlightThickness, 1); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNshowAsDefault, TRUE); ac++;
|
|
|
|
|
}
|
1994-09-18 19:54:50 +00:00
|
|
|
|
XtSetArg(al[ac], XmNmarginWidth, 10); ac++;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++;
|
|
|
|
|
children [n_children] = XmCreatePushButton (row, button_name, al, ac);
|
2004-01-12 01:45:22 +00:00
|
|
|
|
XtAddEventHandler (children [n_children],
|
|
|
|
|
KeyPressMask, False, dialog_key_cb, result);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (i == 0)
|
|
|
|
|
{
|
|
|
|
|
button = children [n_children];
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNdefaultButton, button); ac++;
|
|
|
|
|
XtSetValues (row, al, ac);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
n_children++;
|
|
|
|
|
}
|
|
|
|
|
|
1996-01-05 00:45:43 +00:00
|
|
|
|
/* invisible separator button */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg (al[ac], XmNmappedWhenManaged, FALSE); ac++;
|
|
|
|
|
children [n_children] = XmCreateLabel (row, "separator_button", al, ac);
|
|
|
|
|
n_children++;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
for (i = 0; i < right_buttons; i++)
|
|
|
|
|
{
|
|
|
|
|
char button_name [16];
|
|
|
|
|
sprintf (button_name, "button%d", left_buttons + i + 1);
|
|
|
|
|
ac = 0;
|
1994-09-18 19:54:50 +00:00
|
|
|
|
XtSetArg(al[ac], XmNmarginWidth, 10); ac++;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtSetArg(al[ac], XmNnavigationType, XmTAB_GROUP); ac++;
|
|
|
|
|
children [n_children] = XmCreatePushButton (row, button_name, al, ac);
|
2004-01-12 01:45:22 +00:00
|
|
|
|
XtAddEventHandler (children [n_children],
|
|
|
|
|
KeyPressMask, False, dialog_key_cb, result);
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (! button) button = children [n_children];
|
|
|
|
|
n_children++;
|
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtManageChildren (children, n_children);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomWidget, row); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftOffset, 0); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightOffset, 0); ac++;
|
|
|
|
|
separator = XmCreateSeparator (form, "", al, ac);
|
|
|
|
|
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNlabelType, XmPIXMAP); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_NONE); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_NONE); ac++;
|
|
|
|
|
icon = XmCreateLabel (form, icon_name, al, ac);
|
|
|
|
|
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNmappedWhenManaged, FALSE); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopOffset, 6); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopWidget, icon); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomOffset, 6); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomWidget, separator); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_NONE); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_NONE); ac++;
|
|
|
|
|
icon_separator = XmCreateLabel (form, "", al, ac);
|
|
|
|
|
|
|
|
|
|
if (text_input_slot)
|
|
|
|
|
{
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNcolumns, 50); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomWidget, separator); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftWidget, icon); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
|
|
|
|
|
value = XmCreateTextField (form, "value", al, ac);
|
|
|
|
|
}
|
|
|
|
|
else if (radio_box)
|
|
|
|
|
{
|
|
|
|
|
Widget radio_butt;
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNmarginWidth, 0); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNmarginHeight, 0); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNspacing, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNalignment, XmALIGNMENT_CENTER); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNorientation, XmHORIZONTAL); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomWidget, separator); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftWidget, icon); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
|
|
|
|
|
value = XmCreateRadioBox (form, "radiobutton1", al, ac);
|
|
|
|
|
ac = 0;
|
|
|
|
|
i = 0;
|
|
|
|
|
radio_butt = XmCreateToggleButtonGadget (value, "radio1", al, ac);
|
|
|
|
|
children [i++] = radio_butt;
|
|
|
|
|
radio_butt = XmCreateToggleButtonGadget (value, "radio2", al, ac);
|
|
|
|
|
children [i++] = radio_butt;
|
|
|
|
|
radio_butt = XmCreateToggleButtonGadget (value, "radio3", al, ac);
|
|
|
|
|
children [i++] = radio_butt;
|
|
|
|
|
XtManageChildren (children, i);
|
|
|
|
|
}
|
|
|
|
|
else if (list)
|
|
|
|
|
{
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNvisibleItemCount, 5); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_NONE); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomWidget, separator); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftWidget, icon); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
|
|
|
|
|
value = XmCreateScrolledList (form, "list", al, ac);
|
|
|
|
|
|
|
|
|
|
/* this is the easiest way I found to have the dble click in the
|
|
|
|
|
list activate the default button */
|
|
|
|
|
XtAddCallback (value, XmNdefaultActionCallback, activate_button, button);
|
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg(al[ac], XmNalignment, XmALIGNMENT_BEGINNING); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNtopOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNbottomWidget,
|
|
|
|
|
text_input_slot || radio_box || list ? value : separator); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftAttachment, XmATTACH_WIDGET); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftOffset, 13); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNleftWidget, icon); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM); ac++;
|
|
|
|
|
XtSetArg(al[ac], XmNrightOffset, 13); ac++;
|
2011-04-16 21:22:40 +00:00
|
|
|
|
message_label = XmCreateLabel (form, "message", al, ac);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (list)
|
|
|
|
|
XtManageChild (value);
|
|
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
children [i] = row; i++;
|
|
|
|
|
children [i] = separator; i++;
|
|
|
|
|
if (text_input_slot || radio_box)
|
|
|
|
|
{
|
|
|
|
|
children [i] = value; i++;
|
|
|
|
|
}
|
2011-04-16 21:22:40 +00:00
|
|
|
|
children [i] = message_label; i++;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
children [i] = icon; i++;
|
|
|
|
|
children [i] = icon_separator; i++;
|
|
|
|
|
XtManageChildren (children, i);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (text_input_slot || list)
|
|
|
|
|
{
|
|
|
|
|
XtInstallAccelerators (value, button);
|
|
|
|
|
XtSetKeyboardFocus (result, value);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
XtInstallAccelerators (form, button);
|
|
|
|
|
XtSetKeyboardFocus (result, button);
|
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static destroyed_instance*
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
find_matching_instance (widget_instance* instance)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
destroyed_instance* cur;
|
|
|
|
|
destroyed_instance* prev;
|
|
|
|
|
char* type = instance->info->type;
|
|
|
|
|
char* name = instance->info->name;
|
|
|
|
|
|
|
|
|
|
for (prev = NULL, cur = all_destroyed_instances;
|
|
|
|
|
cur;
|
|
|
|
|
prev = cur, cur = cur->next)
|
|
|
|
|
{
|
|
|
|
|
if (!strcmp (cur->name, name)
|
|
|
|
|
&& !strcmp (cur->type, type)
|
|
|
|
|
&& cur->parent == instance->parent
|
|
|
|
|
&& cur->pop_up_p == instance->pop_up_p)
|
|
|
|
|
{
|
|
|
|
|
if (prev)
|
|
|
|
|
prev->next = cur->next;
|
|
|
|
|
else
|
|
|
|
|
all_destroyed_instances = cur->next;
|
|
|
|
|
return cur;
|
|
|
|
|
}
|
|
|
|
|
/* do some cleanup */
|
|
|
|
|
else if (!cur->widget)
|
|
|
|
|
{
|
|
|
|
|
if (prev)
|
|
|
|
|
prev->next = cur->next;
|
|
|
|
|
else
|
|
|
|
|
all_destroyed_instances = cur->next;
|
|
|
|
|
free_destroyed_instance (cur);
|
|
|
|
|
cur = prev ? prev : all_destroyed_instances;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
mark_dead_instance_destroyed (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XtPointer call_data)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
destroyed_instance* instance = (destroyed_instance*)closure;
|
|
|
|
|
instance->widget = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
recenter_widget (Widget widget)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget parent = XtParent (widget);
|
|
|
|
|
Screen* screen = XtScreen (widget);
|
|
|
|
|
Dimension screen_width = WidthOfScreen (screen);
|
|
|
|
|
Dimension screen_height = HeightOfScreen (screen);
|
|
|
|
|
Dimension parent_width = 0;
|
|
|
|
|
Dimension parent_height = 0;
|
|
|
|
|
Dimension child_width = 0;
|
|
|
|
|
Dimension child_height = 0;
|
|
|
|
|
Position x;
|
|
|
|
|
Position y;
|
|
|
|
|
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaGetValues (widget, XtNwidth, &child_width, XtNheight, &child_height, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtVaGetValues (parent, XtNwidth, &parent_width, XtNheight, &parent_height,
|
2000-08-03 20:09:56 +00:00
|
|
|
|
NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
x = (((Position)parent_width) - ((Position)child_width)) / 2;
|
|
|
|
|
y = (((Position)parent_height) - ((Position)child_height)) / 2;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtTranslateCoords (parent, x, y, &x, &y);
|
|
|
|
|
|
|
|
|
|
if (x + child_width > screen_width)
|
|
|
|
|
x = screen_width - child_width;
|
|
|
|
|
if (x < 0)
|
|
|
|
|
x = 0;
|
|
|
|
|
|
|
|
|
|
if (y + child_height > screen_height)
|
|
|
|
|
y = screen_height - child_height;
|
|
|
|
|
if (y < 0)
|
|
|
|
|
y = 0;
|
|
|
|
|
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaSetValues (widget, XtNx, x, XtNy, y, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
recycle_instance (destroyed_instance* instance)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget widget = instance->widget;
|
|
|
|
|
|
|
|
|
|
/* widget is NULL if the parent was destroyed. */
|
|
|
|
|
if (widget)
|
|
|
|
|
{
|
|
|
|
|
Widget focus;
|
|
|
|
|
Widget separator;
|
|
|
|
|
|
|
|
|
|
/* Remove the destroy callback as the instance is not in the list
|
|
|
|
|
anymore */
|
|
|
|
|
XtRemoveCallback (instance->parent, XtNdestroyCallback,
|
|
|
|
|
mark_dead_instance_destroyed,
|
|
|
|
|
(XtPointer)instance);
|
|
|
|
|
|
|
|
|
|
/* Give the focus to the initial item */
|
|
|
|
|
focus = XtNameToWidget (widget, "*value");
|
|
|
|
|
if (!focus)
|
|
|
|
|
focus = XtNameToWidget (widget, "*button1");
|
|
|
|
|
if (focus)
|
|
|
|
|
XtSetKeyboardFocus (widget, focus);
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* shrink the separator label back to their original size */
|
|
|
|
|
separator = XtNameToWidget (widget, "*separator_button");
|
|
|
|
|
if (separator)
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaSetValues (separator, XtNwidth, 5, XtNheight, 5, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
/* Center the dialog in its parent */
|
|
|
|
|
recenter_widget (widget);
|
|
|
|
|
}
|
|
|
|
|
free_destroyed_instance (instance);
|
|
|
|
|
return widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Widget
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_create_dialog (widget_instance* instance)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
char* name = instance->info->type;
|
|
|
|
|
Widget parent = instance->parent;
|
|
|
|
|
Widget widget;
|
|
|
|
|
Boolean pop_up_p = instance->pop_up_p;
|
|
|
|
|
char* shell_name = 0;
|
2001-02-28 14:54:54 +00:00
|
|
|
|
char* icon_name = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
Boolean text_input_slot = False;
|
|
|
|
|
Boolean radio_box = False;
|
|
|
|
|
Boolean list = False;
|
|
|
|
|
int total_buttons;
|
|
|
|
|
int left_buttons = 0;
|
|
|
|
|
int right_buttons = 1;
|
|
|
|
|
destroyed_instance* dead_one;
|
|
|
|
|
|
|
|
|
|
/* try to find a widget to recycle */
|
|
|
|
|
dead_one = find_matching_instance (instance);
|
|
|
|
|
if (dead_one)
|
|
|
|
|
{
|
|
|
|
|
Widget recycled_widget = recycle_instance (dead_one);
|
|
|
|
|
if (recycled_widget)
|
|
|
|
|
return recycled_widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (name [0]){
|
|
|
|
|
case 'E': case 'e':
|
|
|
|
|
icon_name = "dbox-error";
|
|
|
|
|
shell_name = "Error";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'I': case 'i':
|
|
|
|
|
icon_name = "dbox-info";
|
|
|
|
|
shell_name = "Information";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'L': case 'l':
|
|
|
|
|
list = True;
|
|
|
|
|
icon_name = "dbox-question";
|
|
|
|
|
shell_name = "Prompt";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'P': case 'p':
|
|
|
|
|
text_input_slot = True;
|
|
|
|
|
icon_name = "dbox-question";
|
|
|
|
|
shell_name = "Prompt";
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'Q': case 'q':
|
|
|
|
|
icon_name = "dbox-question";
|
|
|
|
|
shell_name = "Question";
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
total_buttons = name [1] - '0';
|
|
|
|
|
|
|
|
|
|
if (name [3] == 'T' || name [3] == 't')
|
|
|
|
|
{
|
|
|
|
|
text_input_slot = False;
|
|
|
|
|
radio_box = True;
|
|
|
|
|
}
|
|
|
|
|
else if (name [3])
|
|
|
|
|
right_buttons = name [4] - '0';
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
left_buttons = total_buttons - right_buttons;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
widget = make_dialog (name, parent, pop_up_p,
|
|
|
|
|
shell_name, icon_name, text_input_slot, radio_box,
|
|
|
|
|
list, left_buttons, right_buttons);
|
|
|
|
|
|
|
|
|
|
XtAddCallback (widget, XmNpopdownCallback, xm_nosel_callback,
|
|
|
|
|
(XtPointer) instance);
|
2004-01-12 01:45:22 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
return widget;
|
|
|
|
|
}
|
|
|
|
|
|
1996-08-01 22:25:36 +00:00
|
|
|
|
/* Create a menu bar. We turn off the f10 key
|
|
|
|
|
because we have not yet managed to make it work right in Motif. */
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static Widget
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
make_menubar (widget_instance* instance)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2000-01-17 09:29:10 +00:00
|
|
|
|
Arg al[3];
|
1996-08-01 22:25:36 +00:00
|
|
|
|
int ac;
|
|
|
|
|
|
|
|
|
|
ac = 0;
|
2000-01-17 09:29:10 +00:00
|
|
|
|
XtSetArg(al[ac], XmNmenuAccelerator, 0); ++ac;
|
|
|
|
|
return XmCreateMenuBar (instance->parent, instance->info->name, al, ac);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
remove_grabs (Widget shell,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XtPointer call_data)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1995-04-07 05:44:36 +00:00
|
|
|
|
Widget menu = (Widget) closure;
|
|
|
|
|
XmRemoveFromPostFromList (menu, XtParent (XtParent (menu)));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
make_popup_menu (widget_instance* instance)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget parent = instance->parent;
|
|
|
|
|
Window parent_window = parent->core.window;
|
|
|
|
|
Widget result;
|
|
|
|
|
|
|
|
|
|
/* sets the parent window to 0 to fool Motif into not generating a grab */
|
|
|
|
|
parent->core.window = 0;
|
|
|
|
|
result = XmCreatePopupMenu (parent, instance->info->name, NULL, 0);
|
|
|
|
|
XtAddCallback (XtParent (result), XmNpopdownCallback, remove_grabs,
|
|
|
|
|
(XtPointer)result);
|
|
|
|
|
parent->core.window = parent_window;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
1994-09-16 17:37:03 +00:00
|
|
|
|
static Widget
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
make_main (widget_instance* instance)
|
1994-09-16 17:37:03 +00:00
|
|
|
|
{
|
|
|
|
|
Widget parent = instance->parent;
|
|
|
|
|
Widget result;
|
|
|
|
|
Arg al[2];
|
|
|
|
|
int ac;
|
|
|
|
|
|
|
|
|
|
ac = 0;
|
|
|
|
|
XtSetArg (al[ac], XtNborderWidth, 0); ac++;
|
|
|
|
|
XtSetArg (al[ac], XmNspacing, 0); ac++;
|
|
|
|
|
result = XmCreateMainWindow (parent, instance->info->name, al, ac);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
/* Table of functions to create widgets */
|
|
|
|
|
|
|
|
|
|
#ifdef ENERGIZE
|
|
|
|
|
|
|
|
|
|
/* interface with the XDesigner generated functions */
|
|
|
|
|
typedef Widget (*widget_maker) (Widget);
|
|
|
|
|
extern Widget create_project_p_sheet (Widget parent);
|
|
|
|
|
extern Widget create_debugger_p_sheet (Widget parent);
|
|
|
|
|
extern Widget create_breaklist_p_sheet (Widget parent);
|
|
|
|
|
extern Widget create_le_browser_p_sheet (Widget parent);
|
|
|
|
|
extern Widget create_class_browser_p_sheet (Widget parent);
|
|
|
|
|
extern Widget create_call_browser_p_sheet (Widget parent);
|
|
|
|
|
extern Widget create_build_dialog (Widget parent);
|
|
|
|
|
extern Widget create_editmode_dialog (Widget parent);
|
|
|
|
|
extern Widget create_search_dialog (Widget parent);
|
|
|
|
|
extern Widget create_project_display_dialog (Widget parent);
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_one (widget_instance* instance, widget_maker fn)
|
|
|
|
|
{
|
|
|
|
|
Widget result;
|
|
|
|
|
Arg al [64];
|
|
|
|
|
int ac = 0;
|
|
|
|
|
|
|
|
|
|
if (instance->pop_up_p)
|
|
|
|
|
{
|
|
|
|
|
XtSetArg (al [ac], XmNallowShellResize, TRUE); ac++;
|
|
|
|
|
result = XmCreateDialogShell (instance->parent, "dialog", NULL, 0);
|
|
|
|
|
XtAddCallback (result, XmNpopdownCallback, &xm_nosel_callback,
|
|
|
|
|
(XtPointer) instance);
|
|
|
|
|
(*fn) (result);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
result = (*fn) (instance->parent);
|
|
|
|
|
XtRealizeWidget (result);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_project_p_sheet (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_project_p_sheet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_debugger_p_sheet (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_debugger_p_sheet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_breaklist_p_sheet (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_breaklist_p_sheet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_le_browser_p_sheet (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_le_browser_p_sheet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_class_browser_p_sheet (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_class_browser_p_sheet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_call_browser_p_sheet (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_call_browser_p_sheet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_build_dialog (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_build_dialog);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_editmode_dialog (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_editmode_dialog);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_search_dialog (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_search_dialog);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Widget
|
|
|
|
|
make_project_display_dialog (widget_instance* instance)
|
|
|
|
|
{
|
|
|
|
|
return make_one (instance, create_project_display_dialog);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* ENERGIZE */
|
|
|
|
|
|
|
|
|
|
widget_creation_entry
|
2003-02-04 14:56:31 +00:00
|
|
|
|
xm_creation_table [] =
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
{"menubar", make_menubar},
|
|
|
|
|
{"popup", make_popup_menu},
|
1994-09-16 17:37:03 +00:00
|
|
|
|
{"main", make_main},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#ifdef ENERGIZE
|
|
|
|
|
{"project_p_sheet", make_project_p_sheet},
|
|
|
|
|
{"debugger_p_sheet", make_debugger_p_sheet},
|
|
|
|
|
{"breaklist_psheet", make_breaklist_p_sheet},
|
|
|
|
|
{"leb_psheet", make_le_browser_p_sheet},
|
|
|
|
|
{"class_browser_psheet", make_class_browser_p_sheet},
|
|
|
|
|
{"ctree_browser_psheet", make_call_browser_p_sheet},
|
|
|
|
|
{"build", make_build_dialog},
|
|
|
|
|
{"editmode", make_editmode_dialog},
|
|
|
|
|
{"search", make_search_dialog},
|
|
|
|
|
{"project_display", make_project_display_dialog},
|
|
|
|
|
#endif /* ENERGIZE */
|
|
|
|
|
{NULL, NULL}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Destruction of instances */
|
|
|
|
|
void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_destroy_instance ( widget_instance* instance)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget widget = instance->widget;
|
|
|
|
|
/* recycle the dialog boxes */
|
|
|
|
|
/* Disable the recycling until we can find a way to have the dialog box
|
|
|
|
|
get reasonable layout after we modify its contents. */
|
|
|
|
|
if (0
|
|
|
|
|
&& XtClass (widget) == xmDialogShellWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
destroyed_instance* dead_instance =
|
|
|
|
|
make_destroyed_instance (instance->info->name,
|
|
|
|
|
instance->info->type,
|
|
|
|
|
instance->widget,
|
|
|
|
|
instance->parent,
|
|
|
|
|
instance->pop_up_p);
|
|
|
|
|
dead_instance->next = all_destroyed_instances;
|
|
|
|
|
all_destroyed_instances = dead_instance;
|
|
|
|
|
XtUnmanageChild (first_child (instance->widget));
|
|
|
|
|
XFlush (XtDisplay (instance->widget));
|
|
|
|
|
XtAddCallback (instance->parent, XtNdestroyCallback,
|
|
|
|
|
mark_dead_instance_destroyed, (XtPointer)dead_instance);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* This might not be necessary now that the nosel is attached to
|
|
|
|
|
popdown instead of destroy, but it can't hurt. */
|
|
|
|
|
XtRemoveCallback (instance->widget, XtNdestroyCallback,
|
|
|
|
|
xm_nosel_callback, (XtPointer)instance);
|
|
|
|
|
XtDestroyWidget (instance->widget);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* popup utility */
|
|
|
|
|
void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_popup_menu (Widget widget, XEvent *event)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XButtonPressedEvent dummy;
|
1995-08-02 07:14:04 +00:00
|
|
|
|
|
|
|
|
|
if (event == 0)
|
|
|
|
|
{
|
|
|
|
|
dummy.type = ButtonPress;
|
|
|
|
|
dummy.serial = 0;
|
|
|
|
|
dummy.send_event = 0;
|
|
|
|
|
dummy.display = XtDisplay (widget);
|
|
|
|
|
dummy.window = XtWindow (XtParent (widget));
|
|
|
|
|
dummy.time = 0;
|
|
|
|
|
dummy.button = 0;
|
|
|
|
|
XQueryPointer (dummy.display, dummy.window, &dummy.root,
|
|
|
|
|
&dummy.subwindow, &dummy.x_root, &dummy.y_root,
|
|
|
|
|
&dummy.x, &dummy.y, &dummy.state);
|
|
|
|
|
event = (XEvent *) &dummy;
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (event->type == ButtonPress || event->type == ButtonRelease)
|
|
|
|
|
{
|
2001-03-13 12:31:55 +00:00
|
|
|
|
/* Setting the menuPost resource only required by Motif 1.1 and
|
|
|
|
|
LessTif 0.84 and earlier. With later versions of LessTif,
|
|
|
|
|
setting menuPost is unnecessary and may cause problems, so
|
|
|
|
|
don't do it. */
|
|
|
|
|
#if XmVersion < 1002 || (defined LESSTIF_VERSION && LESSTIF_VERSION < 84)
|
|
|
|
|
{
|
|
|
|
|
/* This is so totally ridiculous: there's NO WAY to tell Motif
|
|
|
|
|
that *any* button can select a menu item. Only one button
|
|
|
|
|
can have that honor. */
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
2001-03-13 12:31:55 +00:00
|
|
|
|
char *trans = 0;
|
|
|
|
|
if (event->xbutton.state & Button5Mask) trans = "<Btn5Down>";
|
|
|
|
|
else if (event->xbutton.state & Button4Mask) trans = "<Btn4Down>";
|
|
|
|
|
else if (event->xbutton.state & Button3Mask) trans = "<Btn3Down>";
|
|
|
|
|
else if (event->xbutton.state & Button2Mask) trans = "<Btn2Down>";
|
|
|
|
|
else if (event->xbutton.state & Button1Mask) trans = "<Btn1Down>";
|
|
|
|
|
if (trans) XtVaSetValues (widget, XmNmenuPost, trans, NULL);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XmMenuPosition (widget, (XButtonPressedEvent *) event);
|
|
|
|
|
}
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtManageChild (widget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
set_min_dialog_size (Widget w)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
short width;
|
|
|
|
|
short height;
|
2000-08-03 20:09:56 +00:00
|
|
|
|
XtVaGetValues (w, XmNwidth, &width, XmNheight, &height, NULL);
|
|
|
|
|
XtVaSetValues (w, XmNminWidth, width, XmNminHeight, height, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_pop_instance (widget_instance* instance, Boolean up)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget widget = instance->widget;
|
|
|
|
|
|
|
|
|
|
if (XtClass (widget) == xmDialogShellWidgetClass)
|
|
|
|
|
{
|
|
|
|
|
Widget widget_to_manage = first_child (widget);
|
|
|
|
|
if (up)
|
|
|
|
|
{
|
|
|
|
|
XtManageChild (widget_to_manage);
|
|
|
|
|
set_min_dialog_size (widget);
|
|
|
|
|
XtSetKeyboardFocus (instance->parent, widget);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
XtUnmanageChild (widget_to_manage);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (up)
|
|
|
|
|
XtManageChild (widget);
|
|
|
|
|
else
|
2003-02-04 14:56:31 +00:00
|
|
|
|
XtUnmanageChild (widget);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-04 14:56:31 +00:00
|
|
|
|
/* motif callback */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
do_call (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
enum do_call_type type)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Arg al [256];
|
|
|
|
|
int ac;
|
|
|
|
|
XtPointer user_data;
|
|
|
|
|
widget_instance* instance = (widget_instance*)closure;
|
2022-03-01 03:30:52 +00:00
|
|
|
|
widget_value *wv;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
Widget instance_widget;
|
|
|
|
|
LWLIB_ID id;
|
|
|
|
|
|
|
|
|
|
if (!instance)
|
|
|
|
|
return;
|
|
|
|
|
if (widget->core.being_destroyed)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
instance_widget = instance->widget;
|
|
|
|
|
if (!instance_widget)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
id = instance->info->id;
|
|
|
|
|
ac = 0;
|
|
|
|
|
user_data = NULL;
|
|
|
|
|
XtSetArg (al [ac], XmNuserData, &user_data); ac++;
|
|
|
|
|
XtGetValues (widget, al, ac);
|
2022-03-01 03:30:52 +00:00
|
|
|
|
wv = user_data;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case pre_activate:
|
|
|
|
|
if (instance->info->pre_activate_cb)
|
2022-03-01 03:30:52 +00:00
|
|
|
|
instance->info->pre_activate_cb (widget, id, wv ? wv->call_data : NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
break;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
case selection:
|
|
|
|
|
if (instance->info->selection_cb)
|
2022-03-01 03:30:52 +00:00
|
|
|
|
instance->info->selection_cb (widget, id, wv ? wv->call_data : NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
break;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
case no_selection:
|
|
|
|
|
if (instance->info->selection_cb)
|
|
|
|
|
instance->info->selection_cb (widget, id, (XtPointer) -1);
|
|
|
|
|
break;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
case post_activate:
|
|
|
|
|
if (instance->info->post_activate_cb)
|
2022-03-01 03:30:52 +00:00
|
|
|
|
instance->info->post_activate_cb (widget, id, wv ? wv->call_data : NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
break;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
default:
|
Tweak X toolkit code to pacify modern GCC
* lwlib/lwlib-Xaw.c, lwlib/lwlib-Xm.c, lwlib/lwlib.c:
Don’t include <stdlib.h>, since this code now calls emacs_abort
rather than abort.
* lwlib/lwlib-Xaw.c (make_dialog, xaw_generic_callback)
(wm_delete_window):
* lwlib/lwlib-Xm.c (make_menu_in_widget, do_call):
* lwlib/lwlib.c (instantiate_widget_instance, lw_make_widget):
* lwlib/xlwmenu.c (abort_gracefully, draw_separator)
(separator_height, XlwMenuInitialize):
Use emacs_abort, not abort. Without this change, some calls
to ‘abort’ were invalid, as stdlib.h was not always included.
* src/widget.c (resources, emacsFrameClassRec):
* src/xfns.c (x_window) [USE_X_TOOLKIT]:
* src/xmenu.c (create_and_show_popup_menu) [USE_X_TOOLKIT]:
* src/xterm.c (emacs_options) [USE_X_TOOLKIT}:
(x_term_init) [USE_X_TOOLKIT]:
Cast string constants to char * to pacify --enable-gcc-warnings.
2017-03-10 17:30:30 +00:00
|
|
|
|
emacs_abort ();
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Like lw_internal_update_other_instances except that it does not do
|
2003-02-04 14:56:31 +00:00
|
|
|
|
anything if its shell parent is not managed. This is to protect
|
1994-01-18 23:47:41 +00:00
|
|
|
|
lw_internal_update_other_instances to dereference freed memory
|
|
|
|
|
if the widget was ``destroyed'' by caching it in the all_destroyed_instances
|
|
|
|
|
list */
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_internal_update_other_instances (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XtPointer call_data)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Widget parent;
|
|
|
|
|
for (parent = widget; parent; parent = XtParent (parent))
|
|
|
|
|
if (XtIsShell (parent))
|
|
|
|
|
break;
|
|
|
|
|
else if (!XtIsManaged (parent))
|
|
|
|
|
return;
|
|
|
|
|
lw_internal_update_other_instances (widget, closure, call_data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_generic_callback (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XtPointer call_data)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
lw_internal_update_other_instances (widget, closure, call_data);
|
|
|
|
|
do_call (widget, closure, selection);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_nosel_callback (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XtPointer call_data)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2001-03-13 16:30:15 +00:00
|
|
|
|
/* This callback is only called when a dialog box is dismissed with
|
|
|
|
|
the wm's destroy button (WM_DELETE_WINDOW.) We want the dialog
|
|
|
|
|
box to be destroyed in that case, not just unmapped, so that it
|
|
|
|
|
releases its keyboard grabs. But there are problems with running
|
|
|
|
|
our callbacks while the widget is in the process of being
|
|
|
|
|
destroyed, so we set XmNdeleteResponse to XmUNMAP instead of
|
|
|
|
|
XmDESTROY and then destroy it ourself after having run the
|
|
|
|
|
callback. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
do_call (widget, closure, no_selection);
|
|
|
|
|
XtDestroyWidget (widget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_pull_down_callback (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XtPointer call_data)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2000-01-25 15:50:53 +00:00
|
|
|
|
Widget parent = XtParent (widget);
|
|
|
|
|
|
|
|
|
|
if (XmIsRowColumn (parent))
|
|
|
|
|
{
|
|
|
|
|
unsigned char type = 0xff;
|
|
|
|
|
XtVaGetValues (parent, XmNrowColumnType, &type, NULL);
|
|
|
|
|
if (type == XmMENU_BAR)
|
|
|
|
|
do_call (widget, closure, pre_activate);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-25 15:50:53 +00:00
|
|
|
|
|
|
|
|
|
/* XmNpopdownCallback for MenuShell widgets. WIDGET is the MenuShell,
|
2003-02-04 14:56:31 +00:00
|
|
|
|
CLOSURE is a pointer to the widget_instance of the shell,
|
2000-01-25 15:50:53 +00:00
|
|
|
|
|
2001-03-13 16:30:15 +00:00
|
|
|
|
Note that this callback is called for each cascade button in a
|
|
|
|
|
menu, whether or not its submenu is visible. */
|
2000-01-25 15:50:53 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_pop_down_callback (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XtPointer call_data)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1994-11-08 13:06:07 +00:00
|
|
|
|
widget_instance *instance = (widget_instance *) closure;
|
|
|
|
|
|
2001-03-13 16:30:15 +00:00
|
|
|
|
if ((!instance->pop_up_p && XtParent (widget) == instance->widget)
|
|
|
|
|
|| XtParent (widget) == instance->parent)
|
2000-01-25 15:50:53 +00:00
|
|
|
|
do_call (widget, closure, post_activate);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-05 01:35:44 +00:00
|
|
|
|
static void
|
|
|
|
|
xm_pop_up_callback (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XtPointer call_data)
|
|
|
|
|
{
|
|
|
|
|
widget_instance *instance = (widget_instance *) closure;
|
|
|
|
|
|
|
|
|
|
if ((!instance->pop_up_p && XtParent (widget) == instance->widget)
|
|
|
|
|
|| XtParent (widget) == instance->parent)
|
|
|
|
|
do_call (widget, closure, pre_activate);
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
/* set the keyboard focus */
|
|
|
|
|
void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_set_keyboard_focus (Widget parent, Widget w)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XmProcessTraversal (w, 0);
|
|
|
|
|
XtSetKeyboardFocus (parent, w);
|
|
|
|
|
}
|
1994-10-02 11:48:42 +00:00
|
|
|
|
|
|
|
|
|
/* Motif hack to set the main window areas. */
|
|
|
|
|
void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_set_main_areas (Widget parent,
|
|
|
|
|
Widget menubar,
|
|
|
|
|
Widget work_area)
|
1994-10-02 11:48:42 +00:00
|
|
|
|
{
|
|
|
|
|
XmMainWindowSetAreas (parent,
|
|
|
|
|
menubar, /* menubar (maybe 0) */
|
|
|
|
|
0, /* command area (psheets) */
|
|
|
|
|
0, /* horizontal scroll */
|
|
|
|
|
0, /* vertical scroll */
|
|
|
|
|
work_area); /* work area */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Motif hack to control resizing on the menubar. */
|
|
|
|
|
void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
xm_manage_resizing (Widget w, Boolean flag)
|
1994-10-02 11:48:42 +00:00
|
|
|
|
{
|
2000-03-05 14:32:02 +00:00
|
|
|
|
XtVaSetValues (w, XtNallowShellResize, flag, NULL);
|
1994-10-02 11:48:42 +00:00
|
|
|
|
}
|