home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / Appearance SDK 1.0.4 / Appearance Sample Code / Source / LiveFeedbackDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-07-16  |  829 b   |  48 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        LiveFeedbackDialog.h
  3.  
  4.     Contains:    Demonstration of live feedback.
  5.  
  6.     Version:    Appearance 1.0 SDK
  7.  
  8.     Copyright:    © 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Edward Voas
  13.  
  14.         Other Contact:        7 of 9, Borg Collective
  15.  
  16.         Technology:            OS Technologies Group
  17.  
  18.     Writers:
  19.  
  20.         (edv)    Ed Voas
  21.  
  22.     Change History (most recent first):
  23.  
  24.          <1>     9/11/97    edv        First checked in.
  25. */
  26.  
  27. #ifndef _LIVEFEEDBACKDIALOG_H
  28. #define _LIVEFEEDBACKDIALOG_H
  29.  
  30. #include <Controls.h>
  31. #include "BaseDialog.h"
  32.  
  33. class LiveFeedbackDialog : public BaseDialog
  34. {
  35.     public:
  36.             LiveFeedbackDialog();
  37.         virtual ~LiveFeedbackDialog();
  38.             
  39.     private:
  40.         static pascal void    LiveActionProc( ControlHandle control, SInt16 part );
  41.         
  42.         ControlHandle        fScrollBar, fSlider;
  43.         
  44.         static ControlActionUPP    fProc;
  45. };
  46.  
  47. #endif // _LIVEFEEDBACKDIALOG_H
  48.