home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / ConverterController.m < prev    next >
Text File  |  1996-07-30  |  666b  |  30 lines

  1. /*
  2.   You may freely copy, distribute, and reuse the code in this example.
  3.   NeXT disclaims any warranty of any kind, expressed or implied, as to its
  4.   fitness for any particular use.
  5. */
  6.  
  7. #import "ConverterController.h"
  8. #import "Converter.h"
  9.  
  10. @implementation ConverterController
  11.  
  12. - (void)convert:(id)sender
  13. {
  14.     float rate, amount, total=0.0;
  15.  
  16.     amount = [dollarField floatValue];
  17.     rate = [rateField floatValue];
  18.     total = [converter convertAmount:amount byRate:rate];
  19.     [totalField setFloatValue:total];
  20.     [rateField selectText:self];
  21. }
  22.  
  23. - (void)awakeFromNib
  24. {
  25.     [rateField selectText:self];
  26.     [[rateField window] makeKeyAndOrderFront:self];
  27. }
  28.  
  29. @end
  30.