123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /////////////////////////////////////////////////////////////////////////////
- //
- // This file is part of ResizableLib
- // https://github.com/ppescher/resizablelib
- //
- // Copyright (C) 2000-2015 by Paolo Messina
- // mailto:ppescher@hotmail.com
- //
- // The contents of this file are subject to the Artistic License 2.0
- // http://opensource.org/licenses/Artistic-2.0
- //
- // If you find this code useful, credits would be nice!
- //
- /////////////////////////////////////////////////////////////////////////////
- /*!
- * @file
- * @brief Implementation of the CResizableWndState class.
- */
- #include "stdafx.h"
- #include "ResizableWndState.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CResizableWndState::CResizableWndState()
- {
- }
- CResizableWndState::~CResizableWndState()
- {
- }
- // used to save/restore window's size and position
- // either in the registry or a private .INI file
- // depending on your application settings
- #define PLACEMENT_ENT _T("WindowPlacement")
- #define PLACEMENT_FMT _T("%d,%d,%d,%d,%d,%d,%d,%d")
- /*!
- * This function saves the current window position and size using the base
- * class persist method. Minimized and maximized state is also optionally
- * preserved.
- * @sa CResizableState::WriteState
- * @note Window coordinates are in the form used by the system functions
- * GetWindowPlacement and SetWindowPlacement.
- *
- * @param pszName String that identifies stored settings
- * @param bRectOnly Flag that specifies wether to ignore min/max state
- *
- * @return Returns @a TRUE if successful, @a FALSE otherwise
- */
- BOOL CResizableWndState::SaveWindowRect(LPCTSTR pszName, BOOL bRectOnly)
- {
- CString data, id;
- WINDOWPLACEMENT wp;
- ZeroMemory(&wp, sizeof(WINDOWPLACEMENT));
- wp.length = sizeof(WINDOWPLACEMENT);
- if (!GetResizableWnd()->GetWindowPlacement(&wp))
- return FALSE;
-
- // use workspace coordinates
- RECT& rc = wp.rcNormalPosition;
- if (bRectOnly) // save size/pos only (normal state)
- {
- data.Format(PLACEMENT_FMT, rc.left, rc.top,
- rc.right, rc.bottom, SW_SHOWNORMAL, 0, 0, 0);
- }
- else // save also min/max state
- {
- data.Format(PLACEMENT_FMT, rc.left, rc.top,
- rc.right, rc.bottom, wp.showCmd, wp.flags,
- wp.ptMinPosition.x, wp.ptMinPosition.y);
- }
- id = CString(pszName) + PLACEMENT_ENT;
- return WriteState(id, data);
- }
- /*!
- * This function loads and set the current window position and size using
- * the base class persist method. Minimized and maximized state is also
- * optionally preserved.
- * @sa CResizableState::WriteState
- * @note Window coordinates are in the form used by the system functions
- * GetWindowPlacement and SetWindowPlacement.
- *
- * @param pszName String that identifies stored settings
- * @param bRectOnly Flag that specifies wether to ignore min/max state
- *
- * @return Returns @a TRUE if successful, @a FALSE otherwise
- */
- BOOL CResizableWndState::LoadWindowRect(LPCTSTR pszName, BOOL bRectOnly)
- {
- CString data, id;
- WINDOWPLACEMENT wp;
- id = CString(pszName) + PLACEMENT_ENT;
- if (!ReadState(id, data)) // never saved before
- return FALSE;
-
- ZeroMemory(&wp, sizeof(WINDOWPLACEMENT));
- wp.length = sizeof(WINDOWPLACEMENT);
- if (!GetResizableWnd()->GetWindowPlacement(&wp))
- return FALSE;
- // use workspace coordinates
- RECT& rc = wp.rcNormalPosition;
- if (_stscanf(data, PLACEMENT_FMT, &rc.left, &rc.top,
- &rc.right, &rc.bottom, &wp.showCmd, &wp.flags,
- &wp.ptMinPosition.x, &wp.ptMinPosition.y) == 8)
- {
- if (bRectOnly) // restore size/pos only
- {
- wp.showCmd = SW_SHOWNORMAL;
- wp.flags = 0;
- return GetResizableWnd()->SetWindowPlacement(&wp);
- }
- else // restore also min/max state
- {
- return GetResizableWnd()->SetWindowPlacement(&wp);
- }
- }
- return FALSE;
- }
|