Chooser.h
上传用户:apjinmao
上传日期:2007-01-02
资源大小:96k
文件大小:1k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. // chooser.h : declaration of the CDialogChooser class
  2. //             This class keeps track of what dialogs to pop up when.
  3. #ifndef __CHOOSER_H__
  4. #define __CHOOSER_H__
  5. #define LAST_DLG 2
  6. class CDialogChooser
  7. {
  8. public:
  9. CDialogChooser();
  10. ~CDialogChooser();
  11. // All calls by mfcapwz.dll to CPropSheetWizardAppWiz::Next
  12. //  & CPropSheetWizardAppWiz::Back are delegated to these member
  13. //  functions, which keep track of what dialog is up
  14. //  now, and what to pop up next.
  15. CAppWizStepDlg* Next(CAppWizStepDlg* pDlg);
  16. CAppWizStepDlg* Back(CAppWizStepDlg* pDlg);
  17. protected:
  18. // Current step's index into the internal array m_pDlgs
  19. int m_nCurrDlg;
  20. // Internal array of pointers to the steps
  21. CAppWizStepDlg* m_pDlgs[LAST_DLG + 1];
  22. };
  23. #endif //__CHOOSER_H__