home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / objc / appkit / DrawingInAnAppIcon.README < prev    next >
Encoding:
Text File  |  1993-12-23  |  1.7 KB  |  35 lines

  1. Jim Million    uunet!wiltel!jmillion    October 1992                                  
  2.  
  3. Fone.app (v1.0)
  4.  
  5. This is a simple example to demonstrate how to draw within an application's icon.
  6. Basically,  here's what you do... 1] Get the application's icon window content view,
  7. 2] Composite an NXAppTile image at 0,0 of that content view,  3] Do any other 
  8. drawing/compositing centered within that content view.
  9.  
  10. Important Files...
  11.  
  12. ‹ FoneController.[hm] manages the display of the application icon. 
  13.  
  14. The following code is relevant:
  15.  
  16. (in appDidInit:) - how to get the application's icon window content view...
  17.                                                                                                             appIconContentView = [[NXApp appIcon] contentView];
  18.  
  19.                                                                                       - how to get the NXAppTile image...
  20.                                                                                                             appTile = [NXImage findImageNamed: "NXAppTile"];
  21.  
  22. (in _display:)       - drawing (location of composite is the significant thing here)...
  23.                                                                                                                 [appIconContentView lockFocus];
  24.                                   [appTile composite:NX_SOVER toPoint:&contentViewOrigin]; // 0,0                                                           
  25.                                [anImage composite:NX_SOVER toPoint:¢erPoint];  // centered
  26.                                   [appIconContentView unlockFocus];
  27.                                   [appIconContentView display];
  28.  
  29.  
  30. Notes...
  31.  
  32. ‹ From DeveloperReleaseNotes / AppKit.rtf...  A new named image, NXAppTile,  has been added to allow apps to draw in their application icon without destroying the standard look. Developers who want to draw in their application icons should find this image with findImageNamed: and composite it at the lower left corner of the content view of the window. Then any custom drawing should be done above, centered on this image.