SEQDLG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // seqdlg.h : header file.  This dialog contains options for basing a
  2. //             custom AppWizard off of a standard AppWizard sequence
  3. //
  4. // Copyright (c) 1985-1998, Microsoft Corporation. All rights reserved.
  5. //
  6. // These must match the order of the corresponding radio buttons
  7. enum
  8. {
  9. APWZSEQ_EXE,
  10. APWZSEQ_DLL,
  11. APWZSEQ_MAX,
  12. };
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CSequenceDlg dialog
  15. class CSequenceDlg : public CAppWizStepDlg
  16. {
  17. // Construction
  18. public:
  19. CSequenceDlg();   // standard constructor
  20. virtual BOOL OnDismiss();
  21. // Dialog Data
  22. //{{AFX_DATA(CSequenceDlg)
  23. enum { IDD = IDD_APWZ_SEQUENCE };
  24. int     m_nApwzSeq;
  25. //}}AFX_DATA
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CSequenceDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. void SetSeqBitmap();    // Sets m_nSeqBitmap according to options
  35. UINT m_nSeqBitmap;      // IDB_ of bitmap to show
  36. void DefineDefaultLangMacros();
  37. BOOL DefineLangMacros();
  38. void InitLangList();
  39. void EnableLangListbox(BOOL bEnable);
  40. CStringList m_strlLanguages;
  41. // Generated message map functions
  42. //{{AFX_MSG(CSequenceDlg)
  43. afx_msg BOOL OnClickedRadio(UINT nID);
  44. afx_msg void OnPaint();
  45. virtual BOOL OnInitDialog();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };