MainControl.cpp
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. // MainControl.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "anywhere.h"
  5. #include "MainControl.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainControl
  13. IMPLEMENT_DYNCREATE(CMainControl, CView)
  14. CMainControl::CMainControl()
  15. {
  16. }
  17. CMainControl::~CMainControl()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CMainControl, CView)
  21. //{{AFX_MSG_MAP(CMainControl)
  22. ON_WM_CREATE()
  23. ON_WM_SIZE()
  24.     ON_NOTIFY(TVN_SELCHANGED,IDC_MENUCTRL,OnSelchangedTree)
  25. //}}AFX_MSG_MAP
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMainControl drawing
  29. void CMainControl::OnDraw(CDC* pDC)
  30. {
  31. CDocument* pDoc = GetDocument();
  32. // TODO: add draw code here
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CMainControl diagnostics
  36. #ifdef _DEBUG
  37. void CMainControl::AssertValid() const
  38. {
  39. CView::AssertValid();
  40. }
  41. void CMainControl::Dump(CDumpContext& dc) const
  42. {
  43. CView::Dump(dc);
  44. }
  45. #endif //_DEBUG
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CMainControl message handlers
  48. int CMainControl::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  49. {
  50. if (CView::OnCreate(lpCreateStruct) == -1)
  51. return -1;
  52.    CRect rect;
  53.    m_treectrl.Create(WS_CHILD,rect,this,IDC_MENUCTRL);
  54.    m_treectrl.ShowWindow(SW_SHOW);
  55.    
  56.    m_edit.Create(WS_CHILD|WS_VISIBLE|WS_DLGFRAME|WS_EX_CLIENTEDGE
  57.       |WS_VSCROLL|ES_MULTILINE,rect,this,IDC_DATIL);
  58.    m_edit.ShowWindow(SW_SHOW);
  59.    
  60.    /*
  61.    m_edit.Create(WS_CHILD|WS_VSCROLL|ES_MULTILINE,rect,this,IDC_FLATEDIT);
  62.    //m_edit.m_clrShadow=RGB(255,255,255);
  63.    //m_edit.m_bLBtnDown=TRUE;
  64.    //m_edit.m_bFlatStyle=FALSE;
  65.    m_edit.ShowWindow(SW_SHOW);
  66.    */
  67.    //会调用onsize;
  68. return 0;
  69. }
  70. void CMainControl::OnSize(UINT nType, int cx, int cy) 
  71. {
  72. CView::OnSize(nType, cx, cy);
  73.    if (m_treectrl.GetSafeHwnd())
  74.    m_treectrl.MoveWindow(0,0,cx/2,cy,TRUE);
  75.    
  76.    if (m_edit.GetSafeHwnd())
  77.    m_edit.MoveWindow(cx/2,cy/6,cx/3,cy*2/3,TRUE);
  78.    
  79. }
  80. void CMainControl::OnSelchangedTree(NMHDR* pNMHDR, LRESULT* pResult) 
  81. {
  82. *pResult = 0;
  83. }