1994-01-18 23:47:41 +00:00
|
|
|
#ifndef LWLIB_XLW_H
|
|
|
|
#define LWLIB_XLW_H
|
|
|
|
|
1994-01-18 23:52:12 +00:00
|
|
|
#include "lwlib-int.h"
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
extern widget_creation_entry xlw_creation_table [];
|
|
|
|
extern widget_creation_function xlw_create_dialog;
|
|
|
|
|
|
|
|
Boolean
|
2010-07-02 11:26:33 +02:00
|
|
|
lw_lucid_widget_p (Widget widget);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
void
|
2010-07-02 11:26:33 +02:00
|
|
|
xlw_update_one_widget (widget_instance* instance, Widget widget,
|
|
|
|
widget_value* val, Boolean deep_p);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
void
|
2010-07-02 11:26:33 +02:00
|
|
|
xlw_update_one_value (widget_instance* instance, Widget widget,
|
2013-06-30 09:14:22 -07:00
|
|
|
widget_value* val)
|
|
|
|
ATTRIBUTE_CONST;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
void
|
2010-07-02 11:26:33 +02:00
|
|
|
xlw_destroy_instance (widget_instance* instance);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
void
|
2013-06-30 09:14:22 -07:00
|
|
|
xlw_pop_instance (widget_instance* instance, Boolean up)
|
|
|
|
ATTRIBUTE_CONST;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
void
|
2010-07-02 11:26:33 +02:00
|
|
|
xlw_popup_menu (Widget widget, XEvent * event);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
#endif /* LWLIB_XLW_H */
|