home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Utilities / Fiend-1.4.1-src / IconDragView.h < prev    next >
Encoding:
Text File  |  1994-10-23  |  544 b   |  24 lines

  1. #import "IconView.h"
  2. #import <appkit/appkit.h>
  3.  
  4. #define OPEN_DIR_ICON_FILE      ".opendir.tiff"
  5. #define    DEFAULT_OPEN_DIR_FILE    "/usr/lib/NextStep/Workspace.app/WM.app/openFolder.tiff"
  6. #define OPEN_HIGHLIGHT            "OpenHighlight.tiff"
  7.  
  8. @interface IconDragView : IconView
  9. {
  10.     id            altImage;
  11.     BOOL        dockDrag;
  12.     NXAtom        dragDestType;
  13.     NXDragOperation    lastDragOp;
  14.     dev_t        device;
  15.     BOOL        removable;
  16. }
  17.  
  18. + initialize;
  19. - (NXDragOperation) dragOperationForContext:(id <NXDraggingInfo>) dragInfo;
  20. int        mouseMoved(NXPoint *o, int n, int mask);
  21.  
  22. @end
  23.  
  24.