XTResizeGroupBox.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // XTResizeGroupBox.h : header file
  2. //
  3. // This file is a part of the XTREME CONTROLS MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. //{{AFX_CODEJOCK_PRIVATE
  21. #if !defined(__XTRESIZEGROUPBOX_H__)
  22. #define __XTRESIZEGROUPBOX_H__
  23. //}}AFX_CODEJOCK_PRIVATE
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. //---------------------------------------------------------------------------
  28. // Summary:
  29. //     CXTResizeGroupBox is a CButton derived class that can be used to display
  30. //     a flicker free group box while resizing.  This class is intended to only
  31. //     be used as a group box and only used on a CXTResize window.  You can
  32. //     subclass or create this object the way you would any CButton.
  33. //
  34. // Note:
  35. //     Do not use the transparent flag with this control, and make sure you
  36. //     call SetFlag(xtResizeNoTransparentGroup); to disable the resize manager from
  37. //     setting this for you.
  38. //---------------------------------------------------------------------------
  39. class _XTP_EXT_CLASS CXTResizeGroupBox : public CButton
  40. {
  41. DECLARE_DYNAMIC(CXTResizeGroupBox)
  42. public:
  43. //-----------------------------------------------------------------------
  44. // Summary:
  45. //     Constructs a CXTResizeGroupBox object
  46. //-----------------------------------------------------------------------
  47. CXTResizeGroupBox();
  48. //-----------------------------------------------------------------------
  49. // Summary:
  50. //     Destroys a CXTResizeGroupBox object, handles cleanup and
  51. //     deallocation
  52. //-----------------------------------------------------------------------
  53. virtual ~CXTResizeGroupBox();
  54. protected:
  55. //-----------------------------------------------------------------------
  56. // Summary:
  57. //     Called during paint operations to exclude the control windows
  58. //     that are grouped by this control.
  59. // Parameters:
  60. //     pDC      - Pointer to device context.
  61. //     rcClient - Client area of group box.
  62. //-----------------------------------------------------------------------
  63. virtual void Exclude(CDC* pDC, CRect& rcClient);
  64. protected:
  65. //{{AFX_CODEJOCK_PRIVATE
  66. DECLARE_MESSAGE_MAP()
  67. //{{AFX_VIRTUAL(CXTResizeGroupBox)
  68. //}}AFX_VIRTUAL
  69. //{{AFX_MSG(CXTResizeGroupBox)
  70. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  71. afx_msg void OnPaint();
  72. //}}AFX_MSG
  73. //}}AFX_CODEJOCK_PRIVATE
  74. };
  75. #endif // !defined(__XTRESIZEGROUPBOX_H__)