ComboListCtrl.h
上传用户:htjk88
上传日期:2010-03-27
资源大小:29k
文件大小:5k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. /*******************************************************************************
  2. Author : Aravindan Premkumar
  3. Unregistered Copyright 2003 : Aravindan Premkumar
  4. All Rights Reserved
  5. This piece of code does not have any registered copyright and is free to be 
  6. used as necessary. The user is free to modify as per the requirements. As a
  7. fellow developer, all that I expect and request for is to be given the 
  8. credit for intially developing this reusable code by not removing my name as 
  9. the author.
  10. *******************************************************************************/
  11. #if !defined(AFX_COMBOLISTCTRL_H__9089600F_374F_4BFC_9482_DEAC0E7133E8__INCLUDED_)
  12. #define AFX_COMBOLISTCTRL_H__9089600F_374F_4BFC_9482_DEAC0E7133E8__INCLUDED_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif // _MSC_VER > 1000
  16. //the max listCtrl columns
  17. #define MAX_LISTCTRL_COLUMNS 100
  18. #include <afxtempl.h>
  19. class CInPlaceCombo;
  20. class CInPlaceEdit;
  21. // User define message 
  22. // This message is posted to the parent
  23. // The message can be handled to make the necessary validations, if any
  24. #define WM_VALIDATE WM_USER + 0x7FFD
  25. // User define message 
  26. // This message is posted to the parent
  27. // The message should be handled to spcify the items to the added to the combo
  28. #define WM_SET_ITEMS WM_USER + 0x7FFC
  29. class CComboListCtrl : public CListCtrl
  30. {
  31. public:
  32. // Implementation
  33. typedef enum {MODE_READONLY,MODE_DIGITAL_EDIT,MODE_TEXT_EDIT,MODE_COMBO} COMBOLISTCTRL_COLUMN_MODE;
  34. // Constructor
  35. CComboListCtrl();
  36. // Destructor
  37. virtual ~CComboListCtrl();
  38. // Sets/Resets the column which support the in place combo box
  39. void SetComboColumns(int iColumnIndex, bool bSet = true);
  40. // Sets/Resets the column which support the in place edit control
  41. void SetReadOnlyColumns(int iColumnIndex, bool bSet = true);
  42. // Sets the valid characters for the edit ctrl
  43. void SetValidEditCtrlCharacters(CString& rstrValidCharacters);
  44. // Sets the vertical scroll
  45. void EnableVScroll(bool bEnable = true);
  46. // Sets the horizontal scroll
  47. void EnableHScroll(bool bEnable = true);
  48. //insert column
  49. int CComboListCtrl::InsertColumn(int nCol,LPCTSTR lpszColumnHeading,int nFormat = LVCFMT_LEFT,int nWidth = -1,int nSubItem = -1);
  50. //Get column counts
  51. int GetColumnCounts();
  52. //delete all column
  53. void DeleteAllColumn();
  54. //set column Valid char string
  55. void SetColumnValidEditCtrlCharacters(CString &rstrValidCharacters,int column = -1);
  56. // Overrides
  57. // ClassWizard generated virtual function overrides
  58. //{{AFX_VIRTUAL(CComboListCtrl)
  59. //}}AFX_VIRTUAL
  60. protected:
  61. // Methods
  62. // Generated message map functions
  63. //{{AFX_MSG(CComboListCtrl)
  64. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  65. afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  66. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  67. afx_msg void OnEndLabelEdit(NMHDR* pNMHDR, LRESULT* pResult);
  68. afx_msg void OnBeginLabelEdit(NMHDR* pNMHDR, LRESULT* pResult);
  69. //}}AFX_MSG
  70. DECLARE_MESSAGE_MAP()
  71. private:
  72. // Implementation
  73. // Returns the row & column index of the column on which mouse click event has occured
  74. bool HitTestEx(CPoint& rHitPoint, int* pRowIndex, int* pColumnIndex) const;
  75. // Creates and displays the in place combo box
  76. CInPlaceCombo* ShowInPlaceList(int iRowIndex, int iColumnIndex, CStringList& rComboItemsList, 
  77.    CString strCurSelecetion = "", int iSel = -1);
  78. // Creates and displays the in place edit control
  79. CInPlaceEdit* ShowInPlaceEdit(int iRowIndex, int iColumnIndex, CString& rstrCurSelection);
  80. // Calculates the cell rect
  81. void CalculateCellRect(int iColumnIndex, int iRowIndex, CRect& robCellRect);
  82. // Checks whether column supports in place combo box
  83. bool IsCombo(int iColumnIndex);
  84. // Checks whether column is read only
  85. bool IsReadOnly(int iColumnIndex);
  86. // Scrolls the list ctrl to bring the in place ctrl to the view
  87. void ScrollToView(int iColumnIndex, /*int iOffSet, */CRect& obCellRect);
  88. // Attributes
  89. // List of columns that support the in place combo box
  90. CList<int, int> m_ComboSupportColumnsList;
  91. // List of columns that are read only
  92. CList<int, int> m_ReadOnlyColumnsList;
  93. // Valid characters
  94. CString m_strValidEditCtrlChars;
  95. // The window style of the in place edit ctrl
  96. DWORD m_dwEditCtrlStyle;
  97. // The window style of the in place combo ctrl
  98. DWORD m_dwDropDownCtrlStyle;
  99. //columnCounts
  100. int m_iColumnCounts;
  101. //column types
  102. COMBOLISTCTRL_COLUMN_MODE m_modeColumn[MAX_LISTCTRL_COLUMNS];
  103. //column 
  104. CString m_strValidChars[MAX_LISTCTRL_COLUMNS];
  105. //int m_
  106. };
  107. /////////////////////////////////////////////////////////////////////////////
  108. //{{AFX_INSERT_LOCATION}}
  109. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  110. #endif // !defined(AFX_COMBOLISTCTRL_H__9089600F_374F_4BFC_9482_DEAC0E7133E8__INCLUDED_)