GuiDropDownEdit.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. // CGuiDropDownEdit
  24. #include "GuiEdit.h"
  25. #include "GuiNormalButton.h"
  26. class GUILIBDLLEXPORT CGuiDropDownEdit : public CStatic
  27. {
  28. DECLARE_DYNAMIC(CGuiDropDownEdit)
  29. public:
  30. enum Border{STYLE3D = 0, STYLEPRESS = 1, STYLEFRAME = 2};
  31. protected:
  32. CGuiEdit m_Edit;
  33. CGuiNormalButton m_toolBtn;
  34. BOOL bShowButton;
  35. Border m_border;
  36. CFont m_cfont;
  37. public:
  38. CGuiDropDownEdit();
  39. virtual ~CGuiDropDownEdit();
  40. void ShowButton(BOOL bShow = TRUE);
  41. void SetImageButton(HICON hIcon);
  42. void SetStyle(Border border);
  43. void SetToolTipEdit(CString szToolTop);
  44. void SetToolTipBtn(CString szToolTop);
  45. void SetMask(CString mszMask, CString mszShowMask, CGuiEdit::Mask enTypeMask);
  46. CString GetText();
  47. void SetText(CString szCaption);
  48. void OnDropButton();
  49. void SetLimitText(int numText);
  50. protected:
  51. DECLARE_MESSAGE_MAP()
  52. virtual void PreSubclassWindow();
  53. void CreateControls();
  54. public:
  55. afx_msg void OnNcPaint();
  56. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  57. };