/ext/ResizableLib/ResizableWndState.cpp
http://tortoisesvn.googlecode.com/ · C++ · 158 lines · 73 code · 27 blank · 58 comment · 11 complexity · edf684ae179cb86ba44889e39bfb21aa MD5 · raw file
- /////////////////////////////////////////////////////////////////////////////
- //
- // This file is part of ResizableLib
- // http://sourceforge.net/projects/resizablelib
- //
- // Copyright (C) 2000-2004,2008 by Paolo Messina
- // http://www.geocities.com/ppescher - mailto:ppescher@hotmail.com
- //
- // Copyright (C) 2011 TortoiseSVN
- //
- // The contents of this file are subject to the Artistic License (the "License").
- // You may not use this file except in compliance with the License.
- // You may obtain a copy of the License at:
- // http://www.opensource.org/licenses/artistic-license.html
- //
- // 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;
- SecureZeroMemory(&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;
- SecureZeroMemory(&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)
- {
- // get screen size
- int screenWidth = GetSystemMetrics(SM_CXSCREEN);
- int screenHeight = GetSystemMetrics(SM_CYSCREEN);
- // ensure that the window size doesn't exceeed the screen resolution
- wp.rcNormalPosition.bottom = min ( wp.rcNormalPosition.bottom
- , screenHeight + wp.rcNormalPosition.top - 1);
- wp.rcNormalPosition.right = min ( wp.rcNormalPosition.right
- , screenWidth + wp.rcNormalPosition.left - 1);
- wp.ptMinPosition.x = min (wp.ptMinPosition.x, screenWidth - 1);
- wp.ptMinPosition.y = min (wp.ptMinPosition.y, screenHeight - 1);
- wp.ptMaxPosition.x = min (wp.ptMaxPosition.x, screenWidth - 1);
- wp.ptMaxPosition.y = min (wp.ptMaxPosition.y, screenHeight - 1);
- if (bRectOnly) // restore size/pos only
- {
- wp.showCmd = SW_SHOWNORMAL;
- wp.flags = 0;
- }
- else // restore also max state
- {
- if (wp.showCmd == SW_SHOWMINIMIZED)
- wp.showCmd = SW_SHOWNORMAL;
- }
- return GetResizableWnd()->SetWindowPlacement(&wp);
- }
- return FALSE;
- }