lwlib-utils.h 556 B

12345678910111213141516171819
  1. #ifndef _LWLIB_UTILS_H_
  2. #define _LWLIB_UTILS_H_
  3. void XtNoClearRefreshWidget (Widget);
  4. typedef void (*XtApplyToWidgetsProc) (Widget, XtPointer);
  5. typedef void* (*XtApplyUntilToWidgetsProc) (Widget, XtPointer);
  6. void XtApplyToWidgets (Widget, XtApplyToWidgetsProc, XtPointer);
  7. void *XtApplyUntilToWidgets (Widget, XtApplyUntilToWidgetsProc, XtPointer);
  8. Widget *XtCompositeChildren (Widget, unsigned int *);
  9. /* returns True is the widget is being destroyed, False otherwise */
  10. Boolean
  11. XtWidgetBeingDestroyedP (Widget widget);
  12. #endif /* _LWLIB_UTILS_H_ */