GuiComboFont.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:3k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------//
  2. // This is a part of the GuiLib MFC Extention.  //
  3. // Autor  :  Francisco Campos  //
  4. // (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved     //
  5. // This code is provided "as is", with absolutely no warranty expressed  //
  6. // or implied. Any use is at your own risk.  //
  7. // You must obtain the author's consent before you can include this code //
  8. // in a software library.  //
  9. // If the source code in  this file is used in any application  //
  10. // then acknowledgement must be made to the author of this program  //
  11. // fcampos@tutopia.com  //
  12. //-----------------------------------------------------------------------//
  13. #pragma once
  14. #include "GuiLib.h"
  15. #include "GuiDrawLayer.h"
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CGuiComboFont window
  18. class GUILIBDLLEXPORT CGuiComboFont : public CComboBox
  19. {
  20. // Construction
  21. public:
  22. DECLARE_DYNAMIC(CGuiComboFont)
  23. CGuiComboFont();
  24. virtual ~CGuiComboFont();
  25. // Attributes
  26. public:
  27. // Operations
  28. public:
  29. enum enTypeShow{CM_NORMAL=0,CM_ONFOCUS,CM_SELECCIONADO};
  30. public:
  31. BOOL m_bOverCombo;
  32. int m_iWidthDrowDown;
  33. COLORREF m_clrBtnFace;
  34. COLORREF m_clrBtnLight;
  35. COLORREF m_clrBtnDark;
  36. CFont m_Font;
  37. BOOL m_bPress;
  38. BOOL        m_bFondoXp;
  39. BOOL m_IsCallMiniTool;
  40. BOOL bhistory;
  41. public:
  42. //******************************************************
  43. void DrawCombo(enTypeShow enShow,CDC* pDC);
  44. void DrawArrow(CDC* pDC,CRect m_rc);
  45. void SetColor(COLORREF clrFace);
  46. void        AutoColor(BOOL bColor=TRUE);
  47. virtual void PreSubclassWindow();
  48. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  49. virtual void MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  50. static BOOL CALLBACK EnumFontsProc (LPLOGFONT lplf, LPTEXTMETRIC lptm, DWORD dwFontType, LPARAM lpData);
  51. void FillerCombo();
  52. // Generated message map functions
  53. protected:
  54. CImageList m_imgArrow; //imagen arrow
  55. CPoint mHeight;
  56. GuiDrawLayer m_dw;
  57. BOOL bColor;
  58. protected:
  59. //{{AFX_MSG(CGuiComboFont)
  60. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  61. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  62. afx_msg void OnPaint();
  63. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  64. afx_msg void OnTimer(UINT nIDEvent);
  65. //afx_msg void OnKillFocus(CWnd* pNewWnd);
  66. afx_msg void OnCbnKillfocus();//version 7.0
  67. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  68. afx_msg void OnSetFocus(CWnd* pOldWnd);
  69. afx_msg void OnSysColorChange( );
  70. afx_msg void OnCloseup();
  71. afx_msg void OnSize(UINT nType, int cx, int cy);
  72. //}}AFX_MSG
  73. DECLARE_MESSAGE_MAP()
  74. afx_msg void OnCbnEditupdate();
  75. };