home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Examples / FileBrowser / Inspector.subproj / FileInspector.h next >
Encoding:
Text File  |  1995-04-12  |  1.3 KB  |  46 lines

  1. //        Written by Todd Thomas Copyright (c) 1995 by Todd Thomas.
  2. //                Version 1.0.  All rights reserved.
  3. //
  4. //        This notice may not be removed from this source code.
  5. //
  6. //    This object is included in the MiscKit by permission from the author
  7. //    and its use is governed by the MiscKit license, found in the file
  8. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  9. //    for a list of all applicable permissions and restrictions.
  10. //    
  11.  
  12. #import <objc/Object.h>
  13.  
  14. @class MiscFile;
  15.  
  16.  
  17. @interface FileInspector:Object
  18. {
  19.     id  inspectorWin;            // IB outlet to inspector's window.
  20.     id    clock;                    // IB outlet to clockview.
  21.     id    filename;                // IB outlet to filename textfield.
  22.     id    group;                    // IB outlet to group textfield.
  23.     id    linkto;                    // IB outlet to linkto textfield.
  24.     id  linktoTitle;            // IB outlet to linkTo's title.
  25.     id    owner;                    // IB outlet to owner textfield.
  26.     id    path;                    // IB outlet to path textfield.
  27.     id    permissionMatrix;        // IB outlet to permission matrix.
  28.     id    size;                    // IB outlet to size textfield.
  29.     id  imageView;                // IB outlet to MiscImageDragView (icon disp)
  30.     MiscFile  *fileSelected;    // File currently selected in the browser.
  31. }
  32.  
  33. - selectedFile: (MiscFile *)theFile;
  34. - window;
  35. - permissionsChanged: sender;
  36.  
  37. @end
  38.  
  39.  
  40. @interface FileInspector (NibInitialization)
  41.  
  42. - awakeFromNib;
  43.  
  44. @end
  45.  
  46.