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

对话框与窗口

开发平台:

Visual C++

  1. // XTWindowPos.h interface for the CXTWindowPos class.
  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(__XTWINDOWPLACEMENT_H__)
  22. #define __XTWINDOWPLACEMENT_H__
  23. //}}AFX_CODEJOCK_PRIVATE
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. //===========================================================================
  28. // Summary:
  29. //     CXTWindowPos is a WINDOWPLACEMENT structure derived class. It extends
  30. //     the WINDOWPLACEMENT structure, and is used to save and restore window
  31. //     position.
  32. //===========================================================================
  33. class _XTP_EXT_CLASS CXTWindowPos : public WINDOWPLACEMENT
  34. {
  35. public:
  36. //-----------------------------------------------------------------------
  37. // Summary:
  38. //     Constructs a CXTWindowPos object
  39. //-----------------------------------------------------------------------
  40. CXTWindowPos();
  41. public:
  42. //-----------------------------------------------------------------------
  43. // Summary:
  44. //     This member function will load the window specified by 'pWnd' to its
  45. //     previous window position.
  46. // Parameters:
  47. //     pWnd       - Points to the CWnd* derived window to be restored to its previous state.
  48. //     lpszWndPos - If NULL, the default entry name will be used. If using this for MDI
  49. //                  children or other windows, pass in a unique string value here. This
  50. //                  must match for both LoadWindowPos and SaveWindowPos.
  51. //     lpszSection - A NULL terminated string representing the registry section where the
  52. //                   window position is to be stored. If NULL the default value is used.
  53. // Returns:
  54. //     TRUE if successful, otherwise returns FALSE.
  55. //-----------------------------------------------------------------------
  56. BOOL LoadWindowPos(LPCTSTR lpszWndPos = NULL, LPCTSTR lpszSection = NULL);
  57. BOOL LoadWindowPos(CWnd* pWnd, LPCTSTR lpszWndPos = NULL, LPCTSTR lpszSection = NULL); // <combine CXTWindowPos::LoadWindowPos@LPCTSTR@LPCTSTR>
  58. //-----------------------------------------------------------------------
  59. // Summary:
  60. //     This member function will save the window specified by 'pWnd' by its
  61. //     current window position.
  62. // Parameters:
  63. //     pWnd       - Points to the CWnd* derived windows position to be saved.
  64. //     lpszWndPos - If NULL, the default entry name will be used. If using this for MDI
  65. //                  children or other windows, pass in a unique string value here. This
  66. //                  must match for both LoadWindowPos and SaveWindowPos.
  67. //     lpszSection - A NULL terminated string representing the registry section where the
  68. //                   window position is to be stored. If NULL the default value is used.
  69. // Returns:
  70. //     TRUE if successful, otherwise returns FALSE.
  71. //-----------------------------------------------------------------------
  72. BOOL SaveWindowPos(CWnd* pWnd, LPCTSTR lpszWndPos = NULL, LPCTSTR lpszSection = NULL);
  73. };
  74. #endif // #if !defined(__XTWINDOWPLACEMENT_H__)