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

  1. #ifndef __INC_POS_PINTUI_WINFLAGS_H
  2. #define __INC_POS_PINTUI_WINFLAGS_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>WinFlags.h<<   30 Sep 1996    08:47:55 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PEXEC_TYPES_H
  12. #include <pExec/Types.h>
  13. #endif
  14.  
  15.  
  16. /** Mode for pOS_InvalidWindowRect() **/
  17. enum
  18. {
  19.   INVALWINF_None        = 0x0000,
  20.   INVALWINF_CreateMsg   = 0x0001,       /* IDCMP_Refresh-Message wird erzeugt */
  21.   INVALWINF_ClearBg     = 0x0002,       /* Background wird gelöscht */
  22. };
  23.  
  24.  
  25. /** Mode for pOS_SetWindowBusy() **/
  26. enum
  27. {
  28.   WINBUSYF_None         = 0x0000,
  29.   WINBUSYF_DisActivate  = 0x0001,/* Window kann nicht aktiviert werden */
  30.   WINBUSYF_DisDrop      = 0x0002,/* das Window verweigert Drop */
  31.   WINBUSYF_DisDrag      = 0x0004,/* das Window verweigert Drag */
  32.   WINBUSYF_Inactivate   = 0x0008,/* dem Window wird der Fokus entzogen */
  33.   WINBUSYF_RemIDCMP     = 0x0010,/* Alle windowbezogene IDCMPs wie
  34.                                  ** IDCMP_MouseButtons,IDCMP_GadgetDown,
  35.                                  ** IDCMP_GadgetUp,IDCMP_VanillaKey,
  36.                                  ** IDCMP_RawKey werden entfernt.
  37.                                  ** => verhindert späte Reaktionen
  38.                                  */
  39. };
  40.  
  41.  
  42.  
  43. #endif
  44.