FullView.cpp
资源名称:44757463.rar [点击查看]
上传用户:lj3531212
上传日期:2007-06-18
资源大小:346k
文件大小:1k
源码类别:
绘图程序
开发平台:
Visual C++
- // 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 ;
- }