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

PropertySheet

开发平台:

Visual C++

  1. // cstm2dlg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CCustom2Dlg dialog
  5. class CCustom2Dlg : public CAppWizStepDlg
  6. {
  7. // Construction
  8. public:
  9. CCustom2Dlg();
  10. virtual BOOL OnDismiss();
  11. virtual BOOL PreTranslateMessage (MSG* pMsg);
  12. // Dialog Data
  13. //{{AFX_DATA(CCustom2Dlg)
  14. enum { IDD = IDD_CUSTOM2 };
  15. CStatic m_frame;
  16. CListCtrl m_pages;
  17. int m_pageSize;
  18. CString m_title;
  19. //}}AFX_DATA
  20. CToolBarCtrl m_toolBar;
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CCustom2Dlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. // Generated message map functions
  30. //{{AFX_MSG(CCustom2Dlg)
  31. virtual BOOL OnInitDialog();
  32. afx_msg void OnItemchangedListPages(NMHDR* pNMHDR, LRESULT* pResult);
  33. afx_msg void OnPageNew();
  34. afx_msg void OnPageModify();
  35. afx_msg void OnPageDelete();
  36. afx_msg void OnPageMoveUp();
  37. afx_msg void OnPageMoveDown();
  38. afx_msg void OnPaint();
  39. afx_msg void OnChangeSize();
  40. afx_msg void OnDblclkListPages(NMHDR* pNMHDR, LRESULT* pResult);
  41. //}}AFX_MSG
  42. BOOL OnToolTipText(UINT nId, NMHDR* pNMHDR, LRESULT* pResult);
  43. DECLARE_MESSAGE_MAP()
  44. protected:
  45. CToolTipCtrl m_ctrlTooltip;
  46. private:
  47. void UpdateControls ();
  48. };