home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Headers / misckit / MiscOrderForm.h < prev    next >
Encoding:
Text File  |  1994-03-23  |  1.0 KB  |  33 lines

  1. //
  2. //    MiscOrderForm.h -- a class to sit underneath an Order Form panel
  3. //        Written by Don Yacktman Copyright (c) 1994 by Don Yacktman.
  4. //                Version 1.0.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14. #import <appkit/appkit.h>
  15.  
  16. @interface MiscOrderForm : Object
  17. {
  18.     id    controller;            // MiscInfoController instance
  19.     id    orderFormPanel;        // basic order form panel
  20.     id  costPerLicenseText;    // disabled textfield containing cost per license
  21.     id  numLicensesText;    // textfield containing number of licenses wanted
  22.     id  totalCostText;        // disabled textfield for cost of ordered licenses
  23. }
  24.  
  25. - init;
  26. - setController:sender;
  27. - orderFormPanel;
  28. - orderForm:sender;
  29. - printOrderForm:sender;
  30. - costCalc:sender;            // this should be overridden
  31.  
  32. @end
  33.