GfxProperty.h
上传用户:wujian85
上传日期:2010-04-08
资源大小:227k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_GFXPROPERTY_H__10E221D2_0F42_11D2_842B_0000B43382FE__INCLUDED_)
  2. #define AFX_GFXPROPERTY_H__10E221D2_0F42_11D2_842B_0000B43382FE__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // GfxProperty.h : header file
  7. //
  8. #include "PinButton.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CGfxProperty dialog
  11. class CGfxProperty : public CDialog
  12. {
  13. // Construction
  14. public:
  15. void DoIt();
  16. void InvalidateTab(const int idx);
  17. void HideAllPages();
  18. void AddPage(CDialog * pPage, const char * pText);
  19. CGfxProperty(CWnd* pParent = NULL);   // standard constructor
  20. virtual ~CGfxProperty();
  21. void DrawTabRect(CDC * pdc, CRect rc, bool bSel);
  22. void SetCurSel(int iSel);
  23. void MaximizeDlgRect(CDialog * pDlg, int & cx, int & cy);
  24. void ClearTabArray();
  25. void SetDialogSize();
  26. CStringArray csTabArray;
  27. CPtrArray pPages;
  28. CRect * pTabRect;
  29. enum { CG_TAB_HEIGHT = 20 };
  30. int iActSel;
  31. void InstallHook(BOOL bInstall);
  32. CDocument * pDocument;
  33. CWnd * pWnd;
  34. // Dialog Data
  35. //{{AFX_DATA(CGfxProperty)
  36. enum { IDD = IDD_GFX_PROPERTY };
  37. CPinButton wndOk;
  38. CPinButton wndPin;
  39. CPinButton wndHelp;
  40. //}}AFX_DATA
  41. // Overrides
  42. // ClassWizard generated virtual function overrides
  43. //{{AFX_VIRTUAL(CGfxProperty)
  44. public:
  45. virtual BOOL PreTranslateMessage(MSG* pMsg);
  46. protected:
  47. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  48. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  49. //}}AFX_VIRTUAL
  50. // Implementation
  51. protected:
  52. // Generated message map functions
  53. //{{AFX_MSG(CGfxProperty)
  54. virtual void OnCancel();
  55. virtual void OnOK();
  56. virtual BOOL OnInitDialog();
  57. afx_msg void OnKillFocus(CWnd* pNewWnd);
  58. afx_msg void OnBtHelp();
  59. afx_msg void OnBtPin();
  60. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  61. afx_msg void OnPaint();
  62. afx_msg void OnDestroy();
  63. afx_msg void OnClose();
  64. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_GFXPROPERTY_H__10E221D2_0F42_11D2_842B_0000B43382FE__INCLUDED_)