home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / MiscKit1.2.6 / Documentation / SwapKitTutorial.rtfd / AtomGraphicsController.h < prev    next >
Encoding:
Text File  |  1994-03-25  |  647 b   |  35 lines

  1. /* AtomGraphicsController.h                 
  2.  *
  3.  * This subclass of MiscInspector is in charge of the atom graphics
  4.  * settings.
  5.  *
  6.  * Usage: Just see the NIB and code. Not very reusable anyway.
  7.  *          Currently we only control the color.
  8.  *
  9.  * Written by:         Thomas Engel
  10.  * Created:            11.01.1994 (Copyleft)
  11.  * Last modified:     08.02.1994
  12.  */
  13.  
  14. #import <misckit/MiscInspector.h>
  15.  
  16. @interface AtomGraphicsController:MiscInspector
  17. {
  18.     id    colorWell;
  19. }
  20.  
  21. - colorDidChange:sender;
  22. - resetColor:sender;
  23. - ok:sender;
  24. - revert:sender;
  25.  
  26. @end
  27.  
  28. /*
  29.  * History: 08.02.94 MiscInspector changes made.
  30.  *
  31.  *            11.01.94 First implementation.
  32.  *
  33.  *
  34.  * Bugs: - not very likely.
  35.  */