buttondi.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // buttondi.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CButtonDialog dialog
  22. class CButtonDialog : public CCSDialog
  23. {
  24. // Construction
  25. public:
  26. CButtonDialog(LPCTSTR lpszText, LPCTSTR lpszCaption, LPCTSTR lpszButtons,
  27. WORD wStyle, DWORD* pHelpIDs = NULL, CWnd* pParentWnd = NULL);
  28. ~CButtonDialog();
  29. // Attributes
  30. CFont m_font;
  31. // Operations
  32. static int DisplayMessageBox(LPCTSTR lpszText, LPCTSTR lpszCaption,
  33. LPCTSTR lpszButtons, WORD wStyle, int nDef = 0, int nCancel = -1,
  34. DWORD* pHelpIDs = NULL, CWnd* pParentWnd = NULL);
  35. void AddButton(CString& strButton) { m_strArray.Add(strButton);}
  36. void AddButtons(LPCTSTR lpszButton);
  37. void SetCancel(int nCancel)
  38. { ASSERT(nCancel < m_strArray.GetSize()); m_nCancel = nCancel;}
  39. void SetDefault(int nDef)
  40. { ASSERT(nDef < m_strArray.GetSize()); m_nDefButton = nDef;}
  41. void FillInHeader(LPDLGTEMPLATE lpDlgTmp);
  42. // Overridables
  43. virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  44. virtual INT_PTR DoModal();
  45. // Implementation
  46. protected:
  47. virtual const DWORD* GetHelpIDs() {return m_pHelpIDs;}
  48. DWORD* m_pHelpIDs;
  49. int m_nDefButton;
  50. int m_nCancel;
  51. HGLOBAL m_hDlgTmp;
  52. UINT m_nBaseID;
  53. WORD m_wStyle;
  54. CButton* m_pButtons;
  55. CStatic m_staticIcon;
  56. CStatic m_staticText;
  57. CString m_strCaption;
  58. CString m_strText;
  59. CStringArray m_strArray;
  60. CSize GetBaseUnits();
  61. LPCTSTR GetIconID(WORD wFlags);
  62. void PositionControls();
  63. // Generated message map functions
  64. //{{AFX_MSG(CButtonDialog)
  65. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  66. virtual BOOL OnInitDialog();
  67. //}}AFX_MSG
  68. DECLARE_MESSAGE_MAP()
  69. };