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