mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-22 18:35:09 +00:00
Enable prototypes.
This commit is contained in:
parent
4374c6b0cb
commit
99570665ff
@ -6,24 +6,24 @@
|
||||
extern widget_creation_entry xaw_creation_table [];
|
||||
|
||||
Widget
|
||||
xaw_create_dialog ();
|
||||
xaw_create_dialog __P ((widget_instance*));
|
||||
|
||||
Boolean
|
||||
lw_xaw_widget_p ();
|
||||
lw_xaw_widget_p __P ((Widget));
|
||||
|
||||
void
|
||||
xaw_update_one_widget ();
|
||||
xaw_update_one_widget __P ((widget_instance *, Widget, widget_value *, Boolean));
|
||||
|
||||
void
|
||||
xaw_update_one_value ();
|
||||
xaw_update_one_value __P ((widget_instance *, Widget, widget_value *));
|
||||
|
||||
void
|
||||
xaw_destroy_instance ();
|
||||
xaw_destroy_instance __P ((widget_instance *));
|
||||
|
||||
void
|
||||
xaw_popup_menu ();
|
||||
xaw_popup_menu __P ((Widget, XEvent *));
|
||||
|
||||
void
|
||||
xaw_pop_instance ();
|
||||
xaw_pop_instance __P ((widget_instance *, Boolean));
|
||||
|
||||
#endif /* LWLIB_XAW_H */
|
||||
|
@ -7,23 +7,23 @@ extern widget_creation_entry xlw_creation_table [];
|
||||
extern widget_creation_function xlw_create_dialog;
|
||||
|
||||
Boolean
|
||||
lw_lucid_widget_p (/* Widget widget */);
|
||||
lw_lucid_widget_p __P ((Widget widget));
|
||||
|
||||
void
|
||||
xlw_update_one_widget (/* widget_instance* instance, Widget widget,
|
||||
widget_value* val, Boolean deep_p */);
|
||||
xlw_update_one_widget __P ((widget_instance* instance, Widget widget,
|
||||
widget_value* val, Boolean deep_p));
|
||||
|
||||
void
|
||||
xlw_update_one_value (/* widget_instance* instance, Widget widget,
|
||||
widget_value* val */);
|
||||
xlw_update_one_value __P ((widget_instance* instance, Widget widget,
|
||||
widget_value* val));
|
||||
|
||||
void
|
||||
xlw_destroy_instance (/* widget_instance* instance */);
|
||||
xlw_destroy_instance __P ((widget_instance* instance));
|
||||
|
||||
void
|
||||
xlw_pop_instance (/* widget_instance* instance, Boolean up */);
|
||||
xlw_pop_instance __P ((widget_instance* instance, Boolean up));
|
||||
|
||||
void
|
||||
xlw_popup_menu (/* Widget widget */);
|
||||
xlw_popup_menu __P ((Widget widget, XEvent * event));
|
||||
|
||||
#endif /* LWLIB_XLW_H */
|
||||
|
@ -6,35 +6,35 @@
|
||||
extern widget_creation_entry xm_creation_table [];
|
||||
|
||||
Widget
|
||||
xm_create_dialog (/* widget_instance* instance */);
|
||||
xm_create_dialog __P ((widget_instance* instance));
|
||||
|
||||
Boolean
|
||||
lw_motif_widget_p (/* Widget widget */);
|
||||
lw_motif_widget_p __P ((Widget widget));
|
||||
|
||||
void
|
||||
xm_update_one_widget (/* widget_instance* instance, Widget widget,
|
||||
widget_value* val, Boolean deep_p */);
|
||||
xm_update_one_widget __P ((widget_instance* instance, Widget widget,
|
||||
widget_value* val, Boolean deep_p));
|
||||
|
||||
void
|
||||
xm_update_one_value (/* widget_instance* instance, Widget widget,
|
||||
widget_value* val */);
|
||||
xm_update_one_value __P ((widget_instance* instance, Widget widget,
|
||||
widget_value* val));
|
||||
|
||||
void
|
||||
xm_destroy_instance (/* widget_instance* instance */);
|
||||
xm_destroy_instance __P ((widget_instance* instance));
|
||||
|
||||
void
|
||||
xm_set_keyboard_focus (/* Widget parent, Widget w */);
|
||||
xm_set_keyboard_focus __P ((Widget parent, Widget w));
|
||||
|
||||
void
|
||||
xm_popup_menu (/* Widget widget */);
|
||||
xm_popup_menu __P ((Widget widget, XEvent *event));
|
||||
|
||||
void
|
||||
xm_pop_instance (/* widget_instance* instance, Boolean up */);
|
||||
xm_pop_instance __P ((widget_instance* instance, Boolean up));
|
||||
|
||||
void
|
||||
xm_set_main_areas (/* Widget parent, Widget menubar, Widget work_area */);
|
||||
xm_set_main_areas __P ((Widget parent, Widget menubar, Widget work_area));
|
||||
|
||||
void
|
||||
xm_manage_resizing (/* Widget w, Boolean flag */);
|
||||
xm_manage_resizing __P ((Widget w, Boolean flag));
|
||||
|
||||
#endif /* LWLIB_XM_H */
|
||||
|
@ -3,11 +3,7 @@
|
||||
|
||||
#include "lwlib.h"
|
||||
|
||||
/*
|
||||
extern char *strdup (const char *);
|
||||
extern int strcasecmp (const char *, const char *);
|
||||
*/
|
||||
extern char *safe_strdup ();
|
||||
extern char *safe_strdup __P ((const char *));
|
||||
|
||||
typedef struct _widget_instance
|
||||
{
|
||||
@ -45,13 +41,13 @@ typedef struct _widget_creation_entry
|
||||
/* update all other instances of a widget. Can be used in a callback when
|
||||
a widget has been used by the user */
|
||||
void
|
||||
lw_internal_update_other_instances ();
|
||||
lw_internal_update_other_instances __P ((Widget, XtPointer, XtPointer));
|
||||
|
||||
/* get the widget_value for a widget in a given instance */
|
||||
widget_value*
|
||||
lw_get_widget_value_for_widget ();
|
||||
lw_get_widget_value_for_widget __P ((widget_instance *, Widget));
|
||||
|
||||
widget_info *lw_get_widget_info ();
|
||||
widget_instance * lw_get_widget_instance ();
|
||||
widget_info *lw_get_widget_info __P ((LWLIB_ID));
|
||||
widget_instance * lw_get_widget_instance __P ((Widget));
|
||||
|
||||
#endif /* LWLIB_INTERNAL_H */
|
||||
|
@ -1,20 +1,20 @@
|
||||
#ifndef _LWLIB_UTILS_H_
|
||||
#define _LWLIB_UTILS_H_
|
||||
|
||||
void XtNoClearRefreshWidget (/* Widget */);
|
||||
void XtNoClearRefreshWidget __P ((Widget));
|
||||
|
||||
typedef void (*XtApplyToWidgetsProc) (/* Widget, XtPointer */);
|
||||
typedef void* (*XtApplyUntilToWidgetsProc) (/* Widget, XtPointer */);
|
||||
typedef void (*XtApplyToWidgetsProc) __P ((Widget, XtPointer));
|
||||
typedef void* (*XtApplyUntilToWidgetsProc) __P ((Widget, XtPointer));
|
||||
|
||||
void XtApplyToWidgets (/* Widget, XtApplyToWidgetsProc, XtPointer */);
|
||||
void *XtApplyUntilToWidgets (/* Widget, XtApplyUntilToWidgetsProc, XtPointer */);
|
||||
void XtApplyToWidgets __P ((Widget, XtApplyToWidgetsProc, XtPointer));
|
||||
void *XtApplyUntilToWidgets __P ((Widget, XtApplyUntilToWidgetsProc, XtPointer));
|
||||
|
||||
Widget *XtCompositeChildren (/* Widget, unsigned int * */);
|
||||
Widget *XtCompositeChildren __P ((Widget, unsigned int *));
|
||||
|
||||
/* returns True is the widget is being destroyed, False otherwise */
|
||||
Boolean
|
||||
XtWidgetBeingDestroyedP (/* Widget widget */);
|
||||
XtWidgetBeingDestroyedP __P ((Widget widget));
|
||||
|
||||
void XtSafelyDestroyWidget (/* Widget */);
|
||||
void XtSafelyDestroyWidget __P ((Widget));
|
||||
|
||||
#endif /* _LWLIB_UTILS_H_ */
|
||||
|
@ -103,61 +103,65 @@ typedef struct _widget_value
|
||||
} widget_value;
|
||||
|
||||
|
||||
typedef void (*lw_callback) (/* Widget w, LWLIB_ID id, void* data */);
|
||||
typedef void (*lw_callback) __P ((Widget w, LWLIB_ID id, void* data));
|
||||
|
||||
void lw_register_widget (/* char* type, char* name, LWLIB_ID id,
|
||||
widget_value* val, lw_callback pre_activate_cb,
|
||||
lw_callback selection_cb,
|
||||
lw_callback post_activate_cb */);
|
||||
Widget lw_get_widget (/* LWLIB_ID id, Widget parent, Boolean pop_up_p */);
|
||||
Widget lw_make_widget (/* LWLIB_ID id, Widget parent, Boolean pop_up_p */);
|
||||
Widget lw_create_widget (/* char* type, char* name, LWLIB_ID id,
|
||||
widget_value* val, Widget parent, Boolean pop_up_p,
|
||||
lw_callback pre_activate_cb,
|
||||
lw_callback selection_cb,
|
||||
lw_callback post_activate_cb */);
|
||||
LWLIB_ID lw_get_widget_id (/* Widget w */);
|
||||
int lw_modify_all_widgets (/* LWLIB_ID id, widget_value* val, Boolean deep_p */);
|
||||
void lw_destroy_widget (/* Widget w */);
|
||||
void lw_destroy_all_widgets (/* LWLIB_ID id */);
|
||||
void lw_destroy_everything (/* void */);
|
||||
void lw_destroy_all_pop_ups (/* void */);
|
||||
Widget lw_raise_all_pop_up_widgets (/* void */);
|
||||
widget_value* lw_get_all_values (/* LWLIB_ID id */);
|
||||
Boolean lw_get_some_values (/* LWLIB_ID id, widget_value* val */);
|
||||
void lw_pop_up_all_widgets (/* LWLIB_ID id */);
|
||||
void lw_pop_down_all_widgets (/* LWLIB_ID id */);
|
||||
void lw_register_widget __P ((char* type, char* name, LWLIB_ID id,
|
||||
widget_value* val, lw_callback pre_activate_cb,
|
||||
lw_callback selection_cb,
|
||||
lw_callback post_activate_cb,
|
||||
lw_callback highlight_cb));
|
||||
Widget lw_get_widget __P ((LWLIB_ID id, Widget parent, Boolean pop_up_p));
|
||||
Widget lw_make_widget __P ((LWLIB_ID id, Widget parent, Boolean pop_up_p));
|
||||
Widget lw_create_widget __P ((char* type, char* name, LWLIB_ID id,
|
||||
widget_value* val, Widget parent, Boolean pop_up_p,
|
||||
lw_callback pre_activate_cb,
|
||||
lw_callback selection_cb,
|
||||
lw_callback post_activate_cb,
|
||||
lw_callback highlight_cb));
|
||||
LWLIB_ID lw_get_widget_id __P ((Widget w));
|
||||
int lw_modify_all_widgets __P ((LWLIB_ID id, widget_value* val, Boolean deep_p));
|
||||
void lw_destroy_widget __P ((Widget w));
|
||||
void lw_destroy_all_widgets __P ((LWLIB_ID id));
|
||||
void lw_destroy_everything __P ((void));
|
||||
void lw_destroy_all_pop_ups __P ((void));
|
||||
Widget lw_raise_all_pop_up_widgets __P ((void));
|
||||
widget_value* lw_get_all_values __P ((LWLIB_ID id));
|
||||
Boolean lw_get_some_values __P ((LWLIB_ID id, widget_value* val));
|
||||
void lw_pop_up_all_widgets __P ((LWLIB_ID id));
|
||||
void lw_pop_down_all_widgets __P ((LWLIB_ID id));
|
||||
widget_value *malloc_widget_value ();
|
||||
void free_widget_value (/* widget_value * */);
|
||||
void lw_popup_menu (/* Widget */);
|
||||
void free_widget_value __P ((widget_value *));
|
||||
void lw_popup_menu __P ((Widget, XEvent *));
|
||||
|
||||
/* Toolkit independent way of focusing on a Widget at the Xt level. */
|
||||
void lw_set_keyboard_focus (/* Widget parent, Widget w */);
|
||||
void lw_set_keyboard_focus __P ((Widget parent, Widget w));
|
||||
|
||||
/* Silly Energize hack to invert the "sheet" button */
|
||||
void lw_show_busy (/* Widget w, Boolean busy */);
|
||||
void lw_show_busy __P ((Widget w, Boolean busy));
|
||||
|
||||
/* Silly hack to assist with Lucid/Athena geometry management. */
|
||||
void lw_refigure_widget (/* Widget w, Boolean doit */);
|
||||
void lw_refigure_widget __P ((Widget w, Boolean doit));
|
||||
|
||||
/* Toolkit independent way of determining if an event occurred on a
|
||||
menubar. */
|
||||
Boolean lw_window_is_in_menubar (/* Window win, Widget menubar_widget */);
|
||||
Boolean lw_window_is_in_menubar __P ((Window win, Widget menubar_widget));
|
||||
|
||||
/* Manage resizing: TRUE permits resizing widget w; FALSE disallows it. */
|
||||
void lw_allow_resizing (/* Widget w, Boolean flag */);
|
||||
void lw_allow_resizing __P ((Widget w, Boolean flag));
|
||||
|
||||
/* Set up the main window. */
|
||||
void lw_set_main_areas (/* Widget parent,
|
||||
void lw_set_main_areas __P ((Widget parent,
|
||||
Widget menubar,
|
||||
Widget work_area */);
|
||||
Widget work_area));
|
||||
|
||||
/* Value is non-zero if LABEL is a menu separator. If it is, *TYPE is
|
||||
set to an appropriate enumerator of type enum menu_separator.
|
||||
MOTIF_P non-zero means map separator types not supported by Motif
|
||||
to similar ones that are supported. */
|
||||
|
||||
int lw_separator_p (/* char *label, enum menu_separator *type,
|
||||
int motif_p */);
|
||||
int lw_separator_p __P ((char *label, enum menu_separator *type,
|
||||
int motif_p));
|
||||
|
||||
void lwlib_bcopy __P ((char*, char*, int));
|
||||
|
||||
#endif /* LWLIB_H */
|
||||
|
@ -52,6 +52,6 @@ typedef struct _XlwMenuClassRec *XlwMenuWidgetClass;
|
||||
extern WidgetClass xlwMenuWidgetClass;
|
||||
|
||||
void
|
||||
pop_up_menu ();
|
||||
pop_up_menu __P ((XlwMenuWidget, XButtonPressedEvent*));
|
||||
|
||||
#endif /* _XlwMenu_h */
|
||||
|
Loading…
Reference in New Issue
Block a user