home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Examples / DragViewTest / WellController.m < prev   
Encoding:
Text File  |  1995-04-12  |  797 b   |  42 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 "WellController.h"
  13.  
  14. id  w1;
  15. id  w2;
  16. id  w3;
  17. id  w4;
  18.  
  19. @implementation WellController
  20.  
  21. @end
  22.  
  23.  
  24. @implementation WellController (NibInitialization)
  25.  
  26. - awakeFromNib
  27. {
  28.     w1 = well1;
  29.     w2 = well2;
  30.     w3 = well3;
  31.     w4 = well4;
  32.     
  33.     [well1 setBorderType: NX_BEZEL];
  34.     [well2 setBorderType: NX_GROOVE];
  35.     [well3 setBorderType: NX_LINE];
  36.     return self;
  37. }
  38.  
  39. @end
  40.  
  41.  
  42.