home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional Developers Kit 1992 November / Disc01 / Disc01.mdf / cppbeta / ibmcli / idrgstyl.hp_ / IDRGSTYL.HPP
Encoding:
C/C++ Source or Header  |  1992-10-26  |  1.6 KB  |  33 lines

  1. #ifndef _IDRGSTYL_
  2.   #define _IDRGSTYL_
  3. /*--------------------------------------------------------------*/
  4. /* CLASSES NAMES: Drag&Drop flag classes:                       */
  5. /*                  IDragOperations                             */
  6. /*                  IDragControl                                */
  7. /*                  IDragSupportedOps                           */
  8. /*                  IEDropFlag                                  */
  9. /*                                                              */
  10. /* DESCRIPTION  : This classes are style classes for the        */
  11. /*                various IDrag* classes.                       */
  12. /*                                                              */
  13. /* CHANGE ACTIVITY:                                             */
  14. /* ---------------                                              */
  15. /*   DATE:     INITIAL:       DESCRIPTION:                      */
  16. /* 08/13/92    PHG            Creation from IFREXTAT.HPP        */
  17. /* 09/04/92    PHG            Use Hiroshi's bitflag classes     */
  18. /*--------------------------------------------------------------*/
  19. /* Copyright (C) IBM Corporation 1992                           */
  20. /*--------------------------------------------------------------*/
  21. #include <ibasetyp.hpp>
  22. #include <ibitflag.hpp>
  23.  
  24. /********************************************************/
  25. /* Drop indicator flags                                 */
  26. /********************************************************/
  27. enum IEDropFlag {nodrop    = 0x0000,
  28.                  drop      = 0x0001,
  29.                  nodropop  = 0x0002,
  30.                  neverdrop = 0x0003};
  31.  
  32. #endif /* _IDRGSTYL_ */
  33.