home *** CD-ROM | disk | FTP | other *** search
/ Altsys Virtuoso 2.0K / virtuoso_20k.iso / DemoApps / Graphics / PostScript / Bezier / Source / BezierApp.h < prev    next >
Encoding:
Text File  |  1990-04-26  |  466 b   |  18 lines

  1. #import <appkit/Application.h>
  2.  
  3. @interface BezierApp: Application
  4. {
  5.   id bezier;
  6.   id lineSlider;
  7.   id controlSlider;
  8. }
  9.  
  10. + new;                // create the new application, and make us its delegate.
  11. - setBezier:anObject;        // let me know where the view is.
  12. - setLineSlider:anObject;    // let me know where the sliders are.
  13. - setControlSlider:anObject;
  14. - appDidInit:sender;        // set up in the icon, and set the timing.
  15. - terminate:sender;        // store the defaults, and go away.
  16.  
  17. @end
  18.