home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / PowerPlant / Multi-Panel Dialogs 1.1 / MPDTest App / App Sources / UTestPrefsDialogHandler.h < prev   
Encoding:
C/C++ Source or Header  |  1996-08-28  |  598 b   |  25 lines  |  [TEXT/R*ch]

  1. #pragma once
  2.  
  3. #include "UMPDialogHandler.h"
  4.  
  5. class LArray;
  6.  
  7. class    StTestPrefsDialogHandler : public StMPDialogHandler
  8. {
  9. public:
  10.     static void        GetPreferences(LCommander *inSuper, CommandT inCommand);
  11.                         StTestPrefsDialogHandler(ResIDT inDialogResID, LCommander *inSuper,
  12.                                                 Int16 inLastPaneIndex, ResIDT inMPDResID);
  13.     virtual            ~StTestPrefsDialogHandler();
  14.     
  15. protected:
  16.     static Int16    sLastPanelIndex;
  17.     static LArray    sPanelDataHandles;
  18.     
  19.     virtual Handle    GetInitialPanelData(Int16 inPanelIndex);
  20.     virtual Handle    GetPanelDefaultData(Int16 inPanelIndex);
  21.     
  22.     virtual void    HandleOK(void);
  23. };
  24.  
  25.