home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / Guide.lzx / Guide / pIntui / WinFlags.h < prev   
Encoding:
C/C++ Source or Header  |  1997-03-11  |  1.9 KB  |  58 lines

  1. @DATABASE "pIntui/WinFlags.h"
  2. @MASTER   "Work2:AD/IInc/pIntui/WinFlags.h"
  3. @REMARK   This file was created by ADtoHT 2.0 on 11-Mär-97  13:35:16
  4. @REMARK   Do not edit
  5. @REMARK   ADtoHT is © 1993-1995 Christian Stieber
  6.  
  7. @NODE MAIN "pIntui/WinFlags.h"
  8. @TOC "__pOS_Dev.guide/MAIN"
  9.  
  10. @{"pIntui/WinFlags.h" LINK File}
  11.  
  12. @ENDNODE
  13. @NODE File "pIntui/WinFlags.h"
  14. #ifndef __INC_POS_PINTUI_WINFLAGS_H
  15. #define __INC_POS_PINTUI_WINFLAGS_H
  16. /*******************************************************************
  17.  Includes Release 24
  18.  (C) Copyright 1995-1997 proDAD
  19.      All Rights Reserved
  20.  
  21.  $AUT Holger Burkarth
  22.  $DAT >>WinFlags.h<<   30 Sep 1996    08:47:55 - (C) ProDAD
  23. *******************************************************************/
  24. #ifndef __INC_POS_PEXEC_TYPES_H
  25. #include <@{"pExec/Types.h" LINK "pExec/Types.h/File"}>
  26. #endif
  27.  
  28.  
  29. /** Mode for @{"pOS_InvalidWindowRect()" LINK "pIntuiD/pOS_InvalidWindowRect"} **/
  30. enum
  31. {
  32.   INVALWINF_None        = 0x0000,
  33.   INVALWINF_CreateMsg   = 0x0001,       /* IDCMP_Refresh-Message wird erzeugt */
  34.   INVALWINF_ClearBg     = 0x0002,       /* Background wird gelöscht */
  35. };
  36.  
  37.  
  38. /** Mode for @{"pOS_SetWindowBusy()" LINK "pIntuiD/pOS_SetWindowBusy"} **/
  39. enum
  40. {
  41.   WINBUSYF_None         = 0x0000,
  42.   WINBUSYF_DisActivate  = 0x0001,/* Window kann nicht aktiviert werden */
  43.   WINBUSYF_DisDrop      = 0x0002,/* das Window verweigert Drop */
  44.   WINBUSYF_DisDrag      = 0x0004,/* das Window verweigert Drag */
  45.   WINBUSYF_Inactivate   = 0x0008,/* dem Window wird der Fokus entzogen */
  46.   WINBUSYF_RemIDCMP     = 0x0010,/* Alle windowbezogene IDCMPs wie
  47.                                  ** IDCMP_MouseButtons,IDCMP_GadgetDown,
  48.                                  ** IDCMP_GadgetUp,IDCMP_VanillaKey,
  49.                                  ** IDCMP_RawKey werden entfernt.
  50.                                  ** => verhindert späte Reaktionen
  51.                                  */
  52. };
  53.  
  54.  
  55.  
  56. #endif
  57. @ENDNODE
  58.