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

对话框与窗口

开发平台:

Visual C++

  1. // PaneControls.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_PANECONTROLS_H__CF8F9984_CE54_47AE_AE7A_B4DE8F3FCD4B__INCLUDED_)
  21. #define AFX_PANECONTROLS_H__CF8F9984_CE54_47AE_AE7A_B4DE8F3FCD4B__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CPaneControls window
  27. class CPaneControls;
  28. class CControlsListBox : public CListBox
  29. {
  30. public:
  31. CControlsListBox();
  32. ~CControlsListBox();
  33. class CListBoxDropTarget;
  34. public:
  35. void RegisterDropTarget();
  36. public:
  37. void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  38. void MeasureItem(LPMEASUREITEMSTRUCT) {};
  39. LRESULT WindowProc(UINT message,WPARAM wParam,LPARAM lParam);
  40. void OnLButtonDown(UINT nFlags, CPoint point);
  41. DECLARE_MESSAGE_MAP();
  42. public:
  43. CPaneControls* m_pPaneControls;
  44. COleDropTarget* m_pDropTarget;
  45. };
  46. class CPaneControls : public CPaneHolder
  47. {
  48. // Construction
  49. public:
  50. CPaneControls();
  51. // Operations
  52. public:
  53. BOOL OnDropLibrary();
  54. void Refresh(BOOL bForce = FALSE);
  55. // Overrides
  56. // ClassWizard generated virtual function overrides
  57. //{{AFX_VIRTUAL(CPaneControls)
  58. //}}AFX_VIRTUAL
  59. // Implementation
  60. public:
  61. virtual ~CPaneControls();
  62. // Generated message map functions
  63. protected:
  64. //{{AFX_MSG(CPaneControls)
  65. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  66. afx_msg void OnSize(UINT nType, int cx, int cy);
  67. afx_msg void OnPanecontrolsAdd();
  68. afx_msg void OnUpdatePanecontrolsAdd(CCmdUI* pCmdUI);
  69. afx_msg void OnUpdatePanecontrolsUp(CCmdUI* pCmdUI);
  70. afx_msg void OnPanecontrolsUp();
  71. afx_msg void OnPanecontrolsDown();
  72. afx_msg void OnUpdatePanecontrolsDown(CCmdUI* pCmdUI);
  73. afx_msg void OnPanecontrolsDelete();
  74. afx_msg void OnUpdatePanecontrolsDelete(CCmdUI* pCmdUI);
  75. afx_msg void OnSetFocus(CWnd*);
  76. //}}AFX_MSG
  77. afx_msg void OnCategoryChanged();
  78. afx_msg void OnControlChanged();
  79. DECLARE_MESSAGE_MAP()
  80. public:
  81. CXTPCommandBars* m_pActiveCommandBars;
  82. CXTPControls* m_pControls;
  83. CComboBox m_wndCategories;
  84. CString m_strSelectedCategory;
  85. CXTPToolBar m_wndToolBar;
  86. CControlsListBox m_wndListBox;
  87. CFont m_fntRegular;
  88. };
  89. /////////////////////////////////////////////////////////////////////////////
  90. //{{AFX_INSERT_LOCATION}}
  91. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  92. #endif // !defined(AFX_PANECONTROLS_H__CF8F9984_CE54_47AE_AE7A_B4DE8F3FCD4B__INCLUDED_)