/ext/ResizableLib/ResizableWndState.cpp

http://tortoisesvn.googlecode.com/ · C++ · 158 lines · 73 code · 27 blank · 58 comment · 11 complexity · edf684ae179cb86ba44889e39bfb21aa MD5 · raw file

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // This file is part of ResizableLib
  4. // http://sourceforge.net/projects/resizablelib
  5. //
  6. // Copyright (C) 2000-2004,2008 by Paolo Messina
  7. // http://www.geocities.com/ppescher - mailto:ppescher@hotmail.com
  8. //
  9. // Copyright (C) 2011 TortoiseSVN
  10. //
  11. // The contents of this file are subject to the Artistic License (the "License").
  12. // You may not use this file except in compliance with the License.
  13. // You may obtain a copy of the License at:
  14. // http://www.opensource.org/licenses/artistic-license.html
  15. //
  16. // If you find this code useful, credits would be nice!
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. /*!
  20. * @file
  21. * @brief Implementation of the CResizableWndState class.
  22. */
  23. #include "stdafx.h"
  24. #include "ResizableWndState.h"
  25. //////////////////////////////////////////////////////////////////////
  26. // Construction/Destruction
  27. //////////////////////////////////////////////////////////////////////
  28. CResizableWndState::CResizableWndState()
  29. {
  30. }
  31. CResizableWndState::~CResizableWndState()
  32. {
  33. }
  34. // used to save/restore window's size and position
  35. // either in the registry or a private .INI file
  36. // depending on your application settings
  37. #define PLACEMENT_ENT _T("WindowPlacement")
  38. #define PLACEMENT_FMT _T("%d,%d,%d,%d,%d,%d,%d,%d")
  39. /*!
  40. * This function saves the current window position and size using the base
  41. * class persist method. Minimized and maximized state is also optionally
  42. * preserved.
  43. * @sa CResizableState::WriteState
  44. * @note Window coordinates are in the form used by the system functions
  45. * GetWindowPlacement and SetWindowPlacement.
  46. *
  47. * @param pszName String that identifies stored settings
  48. * @param bRectOnly Flag that specifies wether to ignore min/max state
  49. *
  50. * @return Returns @a TRUE if successful, @a FALSE otherwise
  51. */
  52. BOOL CResizableWndState::SaveWindowRect(LPCTSTR pszName, BOOL bRectOnly)
  53. {
  54. CString data, id;
  55. WINDOWPLACEMENT wp;
  56. SecureZeroMemory(&wp, sizeof(WINDOWPLACEMENT));
  57. wp.length = sizeof(WINDOWPLACEMENT);
  58. if (!GetResizableWnd()->GetWindowPlacement(&wp))
  59. return FALSE;
  60. // use workspace coordinates
  61. RECT& rc = wp.rcNormalPosition;
  62. if (bRectOnly) // save size/pos only (normal state)
  63. {
  64. data.Format(PLACEMENT_FMT, rc.left, rc.top,
  65. rc.right, rc.bottom, SW_SHOWNORMAL, 0, 0, 0);
  66. }
  67. else // save also min/max state
  68. {
  69. data.Format(PLACEMENT_FMT, rc.left, rc.top,
  70. rc.right, rc.bottom, wp.showCmd, wp.flags,
  71. wp.ptMinPosition.x, wp.ptMinPosition.y);
  72. }
  73. id = CString(pszName) + PLACEMENT_ENT;
  74. return WriteState(id, data);
  75. }
  76. /*!
  77. * This function loads and set the current window position and size using
  78. * the base class persist method. Minimized and maximized state is also
  79. * optionally preserved.
  80. * @sa CResizableState::WriteState
  81. * @note Window coordinates are in the form used by the system functions
  82. * GetWindowPlacement and SetWindowPlacement.
  83. *
  84. * @param pszName String that identifies stored settings
  85. * @param bRectOnly Flag that specifies wether to ignore min/max state
  86. *
  87. * @return Returns @a TRUE if successful, @a FALSE otherwise
  88. */
  89. BOOL CResizableWndState::LoadWindowRect(LPCTSTR pszName, BOOL bRectOnly)
  90. {
  91. CString data, id;
  92. WINDOWPLACEMENT wp;
  93. id = CString(pszName) + PLACEMENT_ENT;
  94. if (!ReadState(id, data)) // never saved before
  95. return FALSE;
  96. SecureZeroMemory(&wp, sizeof(WINDOWPLACEMENT));
  97. wp.length = sizeof(WINDOWPLACEMENT);
  98. if (!GetResizableWnd()->GetWindowPlacement(&wp))
  99. return FALSE;
  100. // use workspace coordinates
  101. RECT& rc = wp.rcNormalPosition;
  102. if (_stscanf(data, PLACEMENT_FMT, &rc.left, &rc.top,
  103. &rc.right, &rc.bottom, &wp.showCmd, &wp.flags,
  104. &wp.ptMinPosition.x, &wp.ptMinPosition.y) == 8)
  105. {
  106. // get screen size
  107. int screenWidth = GetSystemMetrics(SM_CXSCREEN);
  108. int screenHeight = GetSystemMetrics(SM_CYSCREEN);
  109. // ensure that the window size doesn't exceeed the screen resolution
  110. wp.rcNormalPosition.bottom = min ( wp.rcNormalPosition.bottom
  111. , screenHeight + wp.rcNormalPosition.top - 1);
  112. wp.rcNormalPosition.right = min ( wp.rcNormalPosition.right
  113. , screenWidth + wp.rcNormalPosition.left - 1);
  114. wp.ptMinPosition.x = min (wp.ptMinPosition.x, screenWidth - 1);
  115. wp.ptMinPosition.y = min (wp.ptMinPosition.y, screenHeight - 1);
  116. wp.ptMaxPosition.x = min (wp.ptMaxPosition.x, screenWidth - 1);
  117. wp.ptMaxPosition.y = min (wp.ptMaxPosition.y, screenHeight - 1);
  118. if (bRectOnly) // restore size/pos only
  119. {
  120. wp.showCmd = SW_SHOWNORMAL;
  121. wp.flags = 0;
  122. }
  123. else // restore also max state
  124. {
  125. if (wp.showCmd == SW_SHOWMINIMIZED)
  126. wp.showCmd = SW_SHOWNORMAL;
  127. }
  128. return GetResizableWnd()->SetWindowPlacement(&wp);
  129. }
  130. return FALSE;
  131. }