home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 …ember: Reference Library / Apple Developer Reference Library (December 1999) (Disk 1).iso / pc / technical documentation / develop / develop issue 23 / develop issue 23 code / multipane dialogs code.sea / Multipane Dialogs Code / PP / CPrefDialog.h / CPrefDialog.h
Encoding:
C/C++ Source or Header  |  1995-10-17  |  537 b   |  21 lines  |  [TEXT/MMCC]

  1. #pragma once
  2.  
  3. class    StPrefDialog : public LEventDispatcher, public LCommander {
  4. public:
  5.                         StPrefDialog(LCommander *inSuper, ResIDT inMenu, ResIDT inDialogID, Handle &ioHandle);
  6.     virtual                ~StPrefDialog();
  7.     
  8.     virtual MessageT    DoDialog();
  9.     
  10.     virtual void        FindCommandStatus(CommandT inCommand,
  11.                             Boolean &outEnabled, Boolean &outUsesMark,
  12.                             Char16 &outMark, Str255 outName);
  13.  
  14. protected:
  15.     virtual void        EventMouseDown(const EventRecord &inMacEvent);
  16.  
  17.     DialogPtr            mPrefsDialog;
  18.     MessageT            mMessage;
  19.     Int32                mSleepTime;
  20. };
  21.