GuiListEdit.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  *  (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software;so you are free to use it any of your *
  9.  * applications (Freeware, Shareware, Commercial),but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Francisco Campos G. *
  18.  * Bug Fixes and improvements : (Add your name) *
  19.  * -Francisco Campos *
  20.  * *
  21.  ****************************************************************************/
  22. #pragma once
  23. // CGuiListEdit
  24. #include "GuiContainer.h"
  25. #include "GuiMiniTool.h"
  26. #include "GuiNormalButton.h"
  27. class GUILIBDLLEXPORT CGuiListEdit : public CStatic
  28. {
  29. DECLARE_DYNAMIC(CGuiListEdit)
  30. public:
  31. enum Border{STYLE3D=0,STYLEPRESS=1,STYLEFRAME=2};
  32. private:
  33. CGuiContainer m_Conta;
  34. CGuiMiniTool m_MiniTool;
  35. CListCtrl* m_list;
  36. COLORREF m_clrface;
  37. Border m_border;
  38. BOOL m_bChange;
  39. public:
  40. void Delete();
  41. void Insert();
  42. void Up();
  43. void Down();
  44. void SetStyle(Border border);
  45. CString GetText(int nItem);
  46. void AddItem(CString m_szCad);
  47. int GetNumItem();
  48. CGuiNormalButton m_toolBtn;
  49. CListCtrl* GetListCtrl();
  50. public:
  51. CGuiListEdit();
  52. virtual ~CGuiListEdit();
  53. protected:
  54. DECLARE_MESSAGE_MAP()
  55. virtual void PreSubclassWindow();
  56. public:
  57. afx_msg void OnPaint();
  58. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  59. afx_msg void OnSize(UINT nType, int cx, int cy);
  60. afx_msg void OnEndlabeleditList(NMHDR* pNMHDR, LRESULT* pResult);
  61. afx_msg void OnClickList(NMHDR* pNMHDR, LRESULT* pResult);
  62. afx_msg void OnBeginlabeleditList(NMHDR *pNMHDR, LRESULT *pResult);
  63. };