FullView.cpp
上传用户:lj3531212
上传日期:2007-06-18
资源大小:346k
文件大小:1k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // FullView.cpp: CFullView 
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "GraphSoft.h"
  6. #include "FullView.h"
  7. #include "FullViewBtn.h"
  8. #include "MainFrm.h"
  9. #ifdef _DEBUG
  10. #undef THIS_FILE
  11. static char THIS_FILE[]=__FILE__;
  12. #define new DEBUG_NEW
  13. #endif
  14. //////////////////////////////////////////////////////////////////////
  15. //////////////////////////////////////////////////////////////////////
  16. CFullView::CFullView()
  17. {
  18. this->m_pBtn = NULL ;
  19. }
  20. CFullView::~CFullView()
  21. {
  22. }
  23. void CFullView::CalcViewSize()
  24. {
  25. CRect rect ;
  26. this->GetClientRect(&rect) ;
  27. this->m_pBtn->m_size.top    = 1 ;
  28. this->m_pBtn->m_size.bottom = rect.Height() - 20 ;
  29. this->m_pBtn->m_size.left   =1 ;
  30. this->m_pBtn->m_size.right  = rect.Width() -10 ;
  31. }