144 lines
3.4 KiB
C++
144 lines
3.4 KiB
C++
// XTWindowPos.cpp : implementation of the CXTWindowPos class.
|
|
//
|
|
// This file is a part of the XTREME CONTROLS MFC class library.
|
|
// (c)1998-2008 Codejock Software, All Rights Reserved.
|
|
//
|
|
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
|
|
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
|
|
// CONSENT OF CODEJOCK SOFTWARE.
|
|
//
|
|
// THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
|
|
// IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
|
|
// YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
|
|
// SINGLE COMPUTER.
|
|
//
|
|
// CONTACT INFORMATION:
|
|
// support@codejock.com
|
|
// http://www.codejock.com
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include "Resource.h"
|
|
|
|
#include "Common/XTPVC80Helpers.h" // Visual Studio 2005 helper functions
|
|
#include "Common/XTPResourceManager.h"
|
|
|
|
#include "XTDefines.h"
|
|
#include "XTGlobal.h"
|
|
#include "XTWindowPos.h"
|
|
#include "XTRegistryManager.h"
|
|
|
|
#define XT_IDS_REG_SETTINGS _T("Settings")
|
|
#define XT_IDS_REG_WNDPOS _T("Window Position")
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CXTWindowPos
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
CXTWindowPos::CXTWindowPos()
|
|
{
|
|
ASSERT(sizeof(CXTWindowPos) == sizeof(WINDOWPLACEMENT));
|
|
|
|
memset((LPWINDOWPLACEMENT)this, 0, sizeof(WINDOWPLACEMENT));
|
|
|
|
length = sizeof(WINDOWPLACEMENT);
|
|
showCmd = SW_SHOW;
|
|
}
|
|
|
|
BOOL CXTWindowPos::SaveWindowPos(CWnd* pWnd, LPCTSTR lpszWndPos/*=NULL*/, LPCTSTR lpszSection/*=NULL*/)
|
|
{
|
|
ASSERT(pWnd); // must be valid.
|
|
if (!pWnd)
|
|
return FALSE;
|
|
|
|
if (::IsWindow(pWnd->m_hWnd))
|
|
{
|
|
if (pWnd->GetWindowPlacement(this))
|
|
{
|
|
CString strSection;
|
|
if (lpszSection)
|
|
strSection = lpszSection;
|
|
else
|
|
strSection = XT_IDS_REG_SETTINGS;
|
|
|
|
CString strEntry;
|
|
if (lpszWndPos)
|
|
strEntry = lpszWndPos;
|
|
else
|
|
strEntry = XT_IDS_REG_WNDPOS;
|
|
|
|
// Make sure we don't pop up
|
|
// minimized the next time
|
|
if (showCmd != SW_SHOWMAXIMIZED)
|
|
{
|
|
showCmd = SW_SHOWNORMAL;
|
|
}
|
|
|
|
CXTRegistryManager regManager;
|
|
regManager.WriteProfileBinary(strSection, strEntry,
|
|
reinterpret_cast<LPBYTE>((LPWINDOWPLACEMENT)this), sizeof(WINDOWPLACEMENT));
|
|
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CXTWindowPos::LoadWindowPos(CWnd* pWnd, LPCTSTR lpszWndPos/*=NULL*/, LPCTSTR lpszSection/*=NULL*/)
|
|
{
|
|
ASSERT_VALID(pWnd); // must be valid.
|
|
|
|
if (::IsWindow(pWnd->m_hWnd))
|
|
{
|
|
if (LoadWindowPos(lpszWndPos, lpszSection))
|
|
{
|
|
pWnd->SetWindowPlacement(this);
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL CXTWindowPos::LoadWindowPos(LPCTSTR lpszWndPos/*=NULL*/, LPCTSTR lpszSection/*=NULL*/)
|
|
{
|
|
UINT nSize = 0;
|
|
LPBYTE pbtData = 0;
|
|
|
|
CString strSection;
|
|
if (lpszSection)
|
|
strSection = lpszSection;
|
|
else
|
|
strSection = XT_IDS_REG_SETTINGS;
|
|
|
|
CString strEntry;
|
|
if (lpszWndPos)
|
|
strEntry = lpszWndPos;
|
|
else
|
|
strEntry = XT_IDS_REG_WNDPOS;
|
|
|
|
CXTRegistryManager regManager;
|
|
if (!regManager.GetProfileBinary(strSection, strEntry,
|
|
&pbtData, &nSize))
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL bResult = FALSE;
|
|
|
|
if (nSize == sizeof(WINDOWPLACEMENT))
|
|
{
|
|
MEMCPY_S((void*)&*((LPWINDOWPLACEMENT)this), pbtData, (DWORD)sizeof(WINDOWPLACEMENT));
|
|
bResult = TRUE;
|
|
}
|
|
delete[] pbtData;
|
|
|
|
return bResult;
|
|
}
|