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

金融证券系统

开发平台:

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. #if !defined(AFX_GUIGROUPBOX_H__C7AAD4CA_1B37_42E8_8F08_AEF18BA77DFD__INCLUDED_)
  14. #define AFX_GUIGROUPBOX_H__C7AAD4CA_1B37_42E8_8F08_AEF18BA77DFD__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. // GuiGroupBox.h : header file
  19. //
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CGuiGroupBox window
  22. #include "GuiLib.h"
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CGuiComboBoxExt window
  25. class GUILIBDLLEXPORT CGuiGroupBox : public CButton
  26. {
  27. // Construction
  28. public:
  29. CGuiGroupBox();
  30. enum Aling{ALING_LEFT=0,ALING_RIGHT=1,ALING_DOWN=2, ALING_UP=3};
  31. // Attributes
  32. public:
  33.    void SetStyle(Aling AlingStyle);
  34.    Aling m_style;
  35.    COLORREF  m_clrface;
  36.    COLORREF  m_clrShadow;
  37. // Operations
  38. public:
  39. virtual void PreSubclassWindow();
  40. public:
  41. virtual ~CGuiGroupBox();
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CGuiGroupBox)
  45. afx_msg void OnPaint();
  46. afx_msg void OnSysColorChange();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_GUIGROUPBOX_H__C7AAD4CA_1B37_42E8_8F08_AEF18BA77DFD__INCLUDED_)