home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / cbm / nduk-v37.lha / V37 / include / clib / gadtools_protos.h < prev    next >
C/C++ Source or Header  |  1991-11-27  |  3KB  |  75 lines

  1. #ifndef  CLIB_GADTOOLS_PROTOS_H
  2. #define  CLIB_GADTOOLS_PROTOS_H
  3. /*
  4. **    $Filename: clib/gadtools_protos.h $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 36.2 $
  7. **    $Date: 90/05/02 $
  8. **
  9. **    C prototypes. For use with 32 bit integers only.
  10. **
  11. **    (C) Copyright 1990-1991 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  INTUITION_INTUITION_H
  18. #include <intuition/intuition.h>
  19. #endif
  20. #ifndef  UTILITY_TAGITEM_H
  21. #include <utility/tagitem.h>
  22. #endif
  23. #ifndef  LIBRARIES_GADTOOLS_H
  24. #include <libraries/gadtools.h>
  25. #endif
  26. /*--- functions in V36 or higher (distributed as Release 2.0) ---*/
  27.  
  28. /* Gadget Functions */
  29.  
  30. struct Gadget *CreateGadgetA( unsigned long kind, struct Gadget *gad,
  31.     struct NewGadget *ng, struct TagItem *taglist );
  32. struct Gadget *CreateGadget( unsigned long kind, struct Gadget *gad,
  33.     struct NewGadget *ng, Tag tag1, ... );
  34. void FreeGadgets( struct Gadget *gad );
  35. void GT_SetGadgetAttrsA( struct Gadget *gad, struct Window *win,
  36.     struct Requester *req, struct TagItem *taglist );
  37. void GT_SetGadgetAttrs( struct Gadget *gad, struct Window *win,
  38.     struct Requester *req, Tag tag1, ... );
  39.  
  40. /* Menu functions */
  41.  
  42. struct Menu *CreateMenusA( struct NewMenu *newmenu, struct TagItem *taglist );
  43. struct Menu *CreateMenus( struct NewMenu *newmenu, Tag tag1, ... );
  44. void FreeMenus( struct Menu *menu );
  45. BOOL LayoutMenuItemsA( struct MenuItem *firstitem, APTR vi,
  46.     struct TagItem *taglist );
  47. BOOL LayoutMenuItems( struct MenuItem *firstitem, APTR vi, Tag tag1, ... );
  48. BOOL LayoutMenusA( struct Menu *firstmenu, APTR vi, struct TagItem *taglist );
  49. BOOL LayoutMenus( struct Menu *firstmenu, APTR vi, Tag tag1, ... );
  50.  
  51. /* Misc Event-Handling Functions */
  52.  
  53. struct IntuiMessage *GT_GetIMsg( struct MsgPort *iport );
  54. void GT_ReplyIMsg( struct IntuiMessage *imsg );
  55. void GT_RefreshWindow( struct Window *win, struct Requester *req );
  56. void GT_BeginRefresh( struct Window *win );
  57. void GT_EndRefresh( struct Window *win, long complete );
  58. struct IntuiMessage *GT_FilterIMsg( struct IntuiMessage *imsg );
  59. struct IntuiMessage *GT_PostFilterIMsg( struct IntuiMessage *imsg );
  60. struct Gadget *CreateContext( struct Gadget **glistptr );
  61.  
  62. /* Rendering Functions */
  63.  
  64. void DrawBevelBoxA( struct RastPort *rport, long left, long top, long width,
  65.     long height, struct TagItem *taglist );
  66. void DrawBevelBox( struct RastPort *rport, long left, long top, long width,
  67.     long height, Tag tag1, ... );
  68.  
  69. /* Visuals Functions */
  70.  
  71. APTR GetVisualInfoA( struct Screen *screen, struct TagItem *taglist );
  72. APTR GetVisualInfo( struct Screen *screen, Tag tag1, ... );
  73. void FreeVisualInfo( APTR vi );
  74. #endif     /* CLIB_GADTOOLS_PROTOS_H */
  75.