www.pudn.com > 44757463.rar > FullView.cpp
// FullView.cpp: CFullView
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "GraphSoft.h"
#include "FullView.h"
#include "FullViewBtn.h"
#include "MainFrm.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
CFullView::CFullView()
{
this->m_pBtn = NULL ;
}
CFullView::~CFullView()
{
}
void CFullView::CalcViewSize()
{
CRect rect ;
this->GetClientRect(&rect) ;
this->m_pBtn->m_size.top = 1 ;
this->m_pBtn->m_size.bottom = rect.Height() - 20 ;
this->m_pBtn->m_size.left =1 ;
this->m_pBtn->m_size.right = rect.Width() -10 ;
}