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

PropertySheet

开发平台:

Visual C++

  1. // PageDlg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CPageDlg dialog
  5. class CPageDlg : public CDialog
  6. {
  7. // Construction
  8. public:
  9. CString ToSafeName (LPCTSTR lpszName);
  10. virtual BOOL PreTranslateMessage(MSG* pMsg);
  11. void UpdateOk ();
  12. CPageDlg(CWnd* pParent = NULL);   // standard constructor
  13. // Dialog Data
  14. //{{AFX_DATA(CPageDlg)
  15. enum { IDD = IDD_DIALOG_PAGE };
  16. CEdit m_ctrlClass;
  17. CButton m_ok;
  18. CString m_caption;
  19. CString m_class;
  20. //}}AFX_DATA
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CPageDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. BOOL m_bClassChanged;
  30. CToolTipCtrl m_tooltip;
  31. virtual BOOL OnInitDialog();
  32. // Generated message map functions
  33. //{{AFX_MSG(CPageDlg)
  34. afx_msg void OnChangeEditCaption();
  35. afx_msg void OnChangeEditClass();
  36. virtual void OnOK();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };