Click here to Skip to main content
15,884,298 members
Articles / Desktop Programming / ATL

"Select Computer" Dialog

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
16 Apr 20013 min read 202.6K   4.4K   36  
The ATL and MFC versions of the class that implements a dialog for selecting users(computers) within the Windows Network.
// Sizer.cpp: implementation of the CSizer class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "Sizer.h"

CSizerCollection::CSizerCollection(HWND hParentWindow)
{
	RECT rect;
	::GetWindowRect(hParentWindow, &rect);
	m_szParentWindow.cx = rect.right - rect.left;
	m_szParentWindow.cy = rect.bottom - rect.top;
}

void CSizerCollection::Add(CSizer* pItem)
	{
		m_vecCollection.push_back(pItem);	
	}

void CSizerCollection::RecalcLayout(int iNewParentWidth, int iNewParentHeight) const
{	
	for (std::vector<CSizer*>::const_iterator ci = m_vecCollection.begin();
		ci != m_vecCollection.end(); ++ci) 
	{
			(*ci)->RecalcLayout(iNewParentWidth, iNewParentHeight);
	}
}
void CSizerCollection::VerifyDragRectangle(WPARAM wParam, LPARAM lParam)
{
	LPRECT lpRect = reinterpret_cast<LPRECT>(lParam);

//check width
	if ( (lpRect->right - lpRect->left) < m_szParentWindow.cx) 
	{
		if ( 
			(wParam == WMSZ_TOPRIGHT) || 
			(wParam == WMSZ_RIGHT) || 
			(wParam == WMSZ_BOTTOMRIGHT) 
			)
				lpRect->right = lpRect->left + m_szParentWindow.cx;
		if ( 
			(wParam == WMSZ_TOPLEFT) || 
			(wParam == WMSZ_LEFT) || 
			(wParam == WMSZ_BOTTOMLEFT) 
		   )
			lpRect->left = lpRect->right - m_szParentWindow.cx;
	}

//check height
	if ( (lpRect->bottom - lpRect->top) <  m_szParentWindow.cy )
	{
		if (
			(wParam == WMSZ_BOTTOMLEFT) ||
			(wParam == WMSZ_BOTTOM) ||
			(wParam == WMSZ_BOTTOMRIGHT)
			)
				lpRect->bottom = lpRect->top + m_szParentWindow.cy;
		if (
			(wParam == WMSZ_TOPLEFT) ||
			(wParam == WMSZ_TOP) ||
			(wParam == WMSZ_TOPRIGHT)
			)	
			lpRect->top = lpRect->bottom - m_szParentWindow.cy;
	}
}


CSizerCollection::~CSizerCollection()
{
	for (std::vector<CSizer*>::const_iterator ci = m_vecCollection.begin();
		ci != m_vecCollection.end(); ++ci) 
	{
			delete (*ci);
	}
}



CSizer::CSizer(HWND hControl, HWND hParentWindow, ResizeMode ResizeMode)
:m_ResizeMode(ResizeMode),
m_hControl(hControl)
{
	_ASSERTE(::IsWindow(m_hControl));	
	_ASSERTE(::IsWindow(hParentWindow));	

	RECT rcControl;
	::GetWindowRect(m_hControl, &rcControl);
//map screen coordz to parent coordz
	::MapWindowPoints(HWND_DESKTOP, hParentWindow,
		(LPPOINT)(&rcControl), sizeof(RECT)/sizeof(POINT));

	m_ptInitialControlTopLeft.x = rcControl.left;
	m_ptInitialControlTopLeft.y = rcControl.top;

	m_szInitialControlSize.cx = rcControl.right - rcControl.left;
	m_szInitialControlSize.cy = rcControl.bottom - rcControl.top;

	RECT rcParentWindow;
	::GetClientRect(hParentWindow, &rcParentWindow);

	m_szInitialParentSize.cx = rcParentWindow.right - rcParentWindow.left;
	m_szInitialParentSize.cy = rcParentWindow.bottom - rcParentWindow.top;
}

CSizer::~CSizer()
{
}

void CSizer::RecalcLayout(int iNewParentWidth, int iNewParentHeight) const
{
//coordz and size for a control

	int x, y, width, height;

	switch (m_ResizeMode)
	{
	case FIXED:
		{
			x = m_ptInitialControlTopLeft.x \
					+ (iNewParentWidth - m_szInitialParentSize.cx);
			y = m_ptInitialControlTopLeft.y \
					+ (iNewParentHeight - m_szInitialParentSize.cy);
			width = m_szInitialControlSize.cx;
			height = m_szInitialControlSize.cy;
			break;
		}

	case HORIZONTAL:
		{
			x = m_ptInitialControlTopLeft.x;
			y = m_ptInitialControlTopLeft.y;
			width = m_szInitialControlSize.cx \
					+ (iNewParentWidth - m_szInitialParentSize.cx);
			height = m_szInitialControlSize.cy;
			break;
		}

	case VERTICAL:
		{
			x = m_ptInitialControlTopLeft.x;
			y = m_ptInitialControlTopLeft.y;
			width = m_szInitialControlSize.cx;
			height = m_szInitialControlSize.cy \
					+ (iNewParentHeight - m_szInitialParentSize.cy);
			break;
		}

	case BOTH:
		{
			x = m_ptInitialControlTopLeft.x;
			y = m_ptInitialControlTopLeft.y;
			width = m_szInitialControlSize.cx \
					+ (iNewParentWidth - m_szInitialParentSize.cx);
			height = m_szInitialControlSize.cy \
					+ (iNewParentHeight - m_szInitialParentSize.cy);
			break;
		}

	default :
		_ASSERTE(false);
	}//~switch (m_ResizeMode)

	::MoveWindow(m_hControl, x, y, width, height, TRUE);  
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Other
Australia Australia
Igor Sukhov is %a someone who can take your project from user requirements to successfull completion% residing in Sydney, NSW, Australia.

Igor has been working on design, development and maintenance (surprise!) of many large-scale business-critical enterprise applications.

Igor holds MS degree in Computer Science/Applied Mathematics from Kazan State University.

MCAD .NET

Tag cloud:

.NET 2.0

C#

Business applications

Design

Enterprise applications

Development

Sydney


Comments and Discussions