home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / IBApplicationAdditions.h < prev    next >
Encoding:
Text File  |  1996-09-09  |  427 b   |  24 lines

  1. /* InterfaceBuilder - IBApplicationAdditions.h
  2.  * Copyright (c) 1995-1996 NeXT Software, Inc.
  3.  * All rights reserved.
  4.  */
  5.  
  6. #import <InterfaceBuilder/IBDocuments.h>
  7. #import <InterfaceBuilder/IBEditors.h>
  8.  
  9. @protocol IB
  10.  
  11. /* Accessing the document. */
  12.  
  13. - (id <IBDocuments>)activeDocument;
  14.  
  15. /* Accessing the selection owner. */
  16.  
  17. - (id <IBSelectionOwners>)selectionOwner;
  18.  
  19. /* Querying the mode. */
  20.  
  21. - (BOOL)isTestingInterface;
  22.  
  23. @end
  24.