home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / EOBrowserAssociation.h < prev    next >
Encoding:
Text File  |  1996-08-23  |  860 b   |  30 lines

  1. /*
  2.         Copyright (c) 1996, NeXT Software, Inc.
  3.         All rights reserved.
  4.  
  5.         You may freely copy, distribute and reuse the code in this example.
  6.         NeXT disclaims any warranty of any kind, expressed or implied,
  7.         as to its fitness for any particular use.
  8. */
  9. //
  10. // The EOBrowserAssociation binds each master/detail displaygroup to the colums of an NSBrowser
  11. //
  12. // Bindings:
  13. //     key[1..8]:       string property of the EO to be displayed in the related broswer column
  14. //     enabled:         BOOL property of EO indicating whether browser should be enabled.
  15.  
  16. #import <EOInterface/EOAssociation.h>
  17.  
  18. @interface EOBrowserAssociation : EOAssociation
  19. {
  20.     struct {
  21.         unsigned int suppressAutoSelection:1;
  22.         unsigned int RESERVED:31;
  23.     } flags;
  24. }
  25.  
  26. - (BOOL)suppressAutoSelection;
  27. - (void)setSuppressAutoSelection:(BOOL)flag;
  28.  
  29. @end
  30.