GuiStaticStandar.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  *  (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software;so you are free to use it any of your *
  9.  * applications (Freeware, Shareware, Commercial),but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Francisco Campos G. *
  18.  * Bug Fixes and improvements : (Add your name) *
  19.  * -Francisco Campos *
  20.  * *
  21.  ****************************************************************************/
  22. #include "stdafx.h"
  23. #include "GuiStaticStandar.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CGuiStaticStandar
  31. CGuiStaticStandar::CGuiStaticStandar()
  32. {
  33. m_pWnd=NULL;
  34. }
  35. CGuiStaticStandar::~CGuiStaticStandar()
  36. {
  37. }
  38. BEGIN_MESSAGE_MAP(CGuiStaticStandar, CStatic)
  39. //{{AFX_MSG_MAP(CGuiStaticStandar)
  40. ON_WM_SIZE()
  41. //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CGuiStaticStandar message handlers
  45. void CGuiStaticStandar::PreSubclassWindow() 
  46. {
  47. // TODO: Add your specialized code here and/or call the base class
  48. CStatic::PreSubclassWindow();
  49. }
  50. void CGuiStaticStandar::OnSize(UINT nType, int cx, int cy) 
  51. {
  52. CStatic::OnSize(nType, cx, cy);
  53. RecalLayout();
  54. // TODO: Add your message handler code here
  55. }
  56. void CGuiStaticStandar::AddChild(CWnd* pWnd)
  57. {
  58. m_pWnd=pWnd;
  59. RecalLayout();
  60. }
  61. void CGuiStaticStandar::RecalLayout()
  62. {
  63. if (m_pWnd== NULL) return;
  64. CRect rcClient;
  65. GetClientRect(rcClient);
  66. m_pWnd->MoveWindow(rcClient);
  67. }