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

对话框与窗口

开发平台:

Visual C++

  1. // PropertiesDlg.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. #if !defined(AFX_PROPERTIESDLG_H__81AAD8BD_716B_4F0D_B846_8141CA301C6F__INCLUDED_)
  21. #define AFX_PROPERTIESDLG_H__81AAD8BD_716B_4F0D_B846_8141CA301C6F__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CPropertiesDlg dialog
  27. class CPropertyGridEx : public CXTPPropertyGrid
  28. {
  29. public:
  30. HTREEITEM m_hItem;
  31. };
  32. class CPropertiesDlg : public CDialog
  33. {
  34. class CPropertyTree : public CTreeCtrl
  35. {
  36. public:
  37. CPropertyTree::CPropertyTree()
  38. {
  39. m_imgList.Create(IDB_OPTIONS, 16, 4, RGB(0, 0xFF, 0));
  40. }
  41. void PreSubclassWindow()
  42. {
  43. ModifyStyle(TVS_SHOWSELALWAYS, TVS_DISABLEDRAGDROP | TVS_NOTOOLTIPS |TVS_SINGLEEXPAND);
  44. SetImageList(&m_imgList, TVSIL_NORMAL);
  45. CTreeCtrl::PreSubclassWindow();
  46. }
  47. CImageList m_imgList;
  48. };
  49. // Construction
  50. public:
  51. CPropertiesDlg(CWnd* pParent = NULL);   // standard constructor
  52. CPropertyTree m_wndProperties;
  53. CRect m_rcWorkspace;
  54. CPropertyGridEx* m_pSelected;
  55. protected:
  56. void CreateGridGeneral(HTREEITEM hItemCategory);
  57. CPropertyGridEx m_wndGridGeneral;
  58. CString m_strAssemblyName;
  59. CString m_strOutputType;
  60. CString m_strDefaultNamespace;
  61. CString m_strStartupObject;
  62. CString m_strApplicationIcon;
  63. CString m_strProjectFile;
  64. CString m_strProjectFolder;
  65. CString m_strOutputFile;
  66. void CreateGridDesigner(HTREEITEM hItemCategory);
  67. CPropertyGridEx m_wndGridDesigner;
  68. CString m_strPageLayout;
  69. CString m_strTargetSchema;
  70. CString m_strClientScriptLanguage;
  71. void CreateGridBuild(HTREEITEM hItemCategory);
  72. CPropertyGridEx m_wndGridBuild;
  73. CString m_strCompilationConstants;
  74. BOOL m_bOptimizeCode;
  75. BOOL m_bCheckForOverflow;
  76. BOOL m_bAlowUnsafe;
  77. CString m_strWarningLevel;
  78. BOOL m_bTreatWarnings;
  79. // Dialog Data
  80. //{{AFX_DATA(CPropertiesDlg)
  81. enum { IDD = IDD_BINDSAMPLE_DIALOG };
  82. // NOTE: the ClassWizard will add data members here
  83. //}}AFX_DATA
  84. // ClassWizard generated virtual function overrides
  85. //{{AFX_VIRTUAL(CPropertiesDlg)
  86. protected:
  87. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  88. //}}AFX_VIRTUAL
  89. // Implementation
  90. protected:
  91. HICON m_hIcon;
  92. // Generated message map functions
  93. //{{AFX_MSG(CPropertiesDlg)
  94. virtual BOOL OnInitDialog();
  95. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  96. afx_msg void OnPaint();
  97. afx_msg HCURSOR OnQueryDragIcon();
  98. afx_msg void OnGetdispinfoListOptions(NMHDR* pNMHDR, LRESULT* pResult);
  99. afx_msg void OnSelchangedListOptions(NMHDR* pNMHDR, LRESULT* pResult);
  100. virtual void OnOK();
  101. //}}AFX_MSG
  102. DECLARE_MESSAGE_MAP()
  103. };
  104. //{{AFX_INSERT_LOCATION}}
  105. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  106. #endif // !defined(AFX_PROPERTIESDLG_H__81AAD8BD_716B_4F0D_B846_8141CA301C6F__INCLUDED_)