home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / Utilities / Desktop / AltDock / Source / MyApp.h < prev    next >
Encoding:
Text File  |  1989-11-09  |  437 b   |  23 lines

  1.  
  2. /* MyApp.h */
  3.  
  4. #import <appkit/Application.h>
  5.  
  6. @interface MyApp:Application
  7. {
  8. }
  9.  
  10. /* factory methods */
  11. + new;
  12.  
  13. /* class methods */
  14. - createDockWindows:(int *)minX :(int *)minY :(int *)maxX :(int *)maxY;
  15. - bitmapFor:(char *)appFileName;
  16. - newIconWindowFor:bitmap :(int)xCoord :(int)yCoord :(char *)applicationName;
  17. - (char *)stringFromStream:(NXStream *)fileStream ok:(int *)success;
  18.  
  19. /* delegation methods */
  20. - appDidInit:sender;
  21.  
  22. @end
  23.