home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xcu16.zip / clients / xlayout / xlayout.wh < prev   
Text File  |  1991-10-03  |  1KB  |  37 lines

  1. /*
  2.  * To customize this include file for non-Xcu widgets:
  3.  *  1) add an include file
  4.  *  2) add a TAG_CLASS_ENTRY
  5.  *
  6.  *  e.g., to add the Athena Label widget:
  7.  *    #include <X11/Xaw/Label.h>
  8.  *     TAG_CLASS_ENTRY(ww, "Label", labelWidgetClass) ;
  9.  */
  10. #include <X11/Xcu/WlmP.h>
  11. #include <X11/Xcu/Label.h>
  12. #include <X11/Xcu/Wlm.h>
  13. #include <X11/Xcu/Command.h>
  14. #include <X11/Xaw/Command.h>
  15. #include <X11/Xcu/Entry.h>
  16. #include <X11/Xcu/Bmgr.h>
  17. #include <X11/Xcu/Button.h>
  18. #include <X11/Xcu/Deck.h>
  19. #include <X11/Xcu/Tbl.h>
  20.  
  21. void
  22. make_tag_class_list (ww)
  23.     XcuWlmWidget ww ;
  24. {
  25. TAG_CLASS_ENTRY(ww, "Command",     commandWidgetClass) ;
  26. TAG_CLASS_ENTRY(ww, "XcuLabel",    xcuLabelWidgetClass) ;
  27. TAG_CLASS_ENTRY(ww, "XcuWlm",      xcuWlmWidgetClass) ;
  28. TAG_CLASS_ENTRY(ww, "XcuCommand",  xcuCommandWidgetClass) ;
  29. TAG_CLASS_ENTRY(ww, "XcuEntry",    xcuEntryWidgetClass) ;
  30. TAG_CLASS_ENTRY(ww, "XcuBmgr",     xcuBmgrWidgetClass) ;
  31. TAG_CLASS_ENTRY(ww, "XcuButton",   xcuButtonWidgetClass) ;
  32. TAG_CLASS_ENTRY(ww, "XcuDeck",     xcuDeckWidgetClass) ;
  33. TAG_CLASS_ENTRY(ww, "XcuTbl",      xcuTblWidgetClass) ;
  34. return ;
  35. }
  36.  
  37.