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

对话框与窗口

开发平台:

Visual C++

  1. // BncFrm.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO 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. // This is a part of the Microsoft Foundation Classes C++ library.
  21. // Copyright (C) 1992-1998 Microsoft Corporation
  22. // All rights reserved.
  23. //
  24. // This source code is only intended as a supplement to the
  25. // Microsoft Foundation Classes Reference and related
  26. // electronic documentation provided with the library.
  27. // See these sources for detailed information regarding the
  28. // Microsoft Foundation Classes product.
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CBounceFrame frame
  31. #include "MDIChildWndEx.h"
  32. class CBounceFrame : public CMDIChildWndEx
  33. {
  34. DECLARE_DYNCREATE(CBounceFrame)
  35. protected:
  36. CBounceFrame();           // protected constructor used by dynamic creation
  37. // Attributes
  38. public:
  39. // Operations
  40. public:
  41. // Overrides
  42. // ClassWizard generated virtual function overrides
  43. //{{AFX_VIRTUAL(CBounceFrame)
  44. public:
  45. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle = WS_CHILD | WS_VISIBLE | WS_OVERLAPPEDWINDOW, const RECT& rect = rectDefault, CMDIFrameWnd* pParentWnd = NULL, CCreateContext* pContext = NULL);
  46. protected:
  47. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  48. //}}AFX_VIRTUAL
  49. // Implementation
  50. protected:
  51. virtual ~CBounceFrame();
  52. // Generated message map functions
  53. //{{AFX_MSG(CBounceFrame)
  54. // NOTE - the ClassWizard will add and remove member functions here.
  55. //}}AFX_MSG
  56. DECLARE_MESSAGE_MAP()
  57. };
  58. /////////////////////////////////////////////////////////////////////////////