home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / ClassEditor.0.4 / Source / CEBrowserCell.h < prev    next >
Encoding:
Text File  |  1995-06-05  |  826 b   |  42 lines

  1. /* CEBrowserCell.h                 
  2.  *
  3.  * This object controls the data of a beaker (molecules, cameras, groups etc.)
  4.  * It is the main document of BeakerBoy and controls everything from loading to
  5.  * setting up the browser which does most of the other work.
  6.  *
  7.  * Usage: ....
  8.  *
  9.  * Written by:         Thomas Engel
  10.  * Created:            23.10.1993 (Copyleft)
  11.  * Last modified:     12.11.1994
  12.  */
  13.  
  14. #import <RZBrowserCell.h>
  15. #import <appkit/appkit.h>
  16.  
  17. @interface CEBrowserCell:RZBrowserCell
  18. {
  19.     id    source;
  20.     id    dragSources;
  21. }
  22.  
  23. + initialize;
  24. - free;
  25.  
  26. - mouseDown:(NXEvent *)theEvent forView:aView;
  27. - setSource:theObject;
  28. - source;
  29.  
  30. // Should be part of the object to drag ?
  31.  
  32. - (NXDragOperation)draggingSourceOperationMaskForLocal:(BOOL)isLocal;
  33. - setDraggingSource:anObject at:(unsigned)index;
  34.  
  35. @end
  36.  
  37. /*
  38.  * History: 13.01.95 Buh
  39.  *            
  40.  *
  41.  * Bugs: - ...
  42.  */