MySplitterWnd.cpp 1012 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // MySplitterWnd.cpp: implementation of the MySplitterWnd class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "ylgl.h"
  6. #include "MySplitterWnd.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[]=__FILE__;
  10. #define new DEBUG_NEW
  11. #endif
  12. //////////////////////////////////////////////////////////////////////
  13. // Construction/Destruction
  14. //////////////////////////////////////////////////////////////////////
  15. MySplitterWnd::MySplitterWnd()
  16. {
  17. }
  18. MySplitterWnd::~MySplitterWnd()
  19. {
  20. }
  21. IMPLEMENT_DYNCREATE(MySplitterWnd, CSplitterWnd)
  22. BEGIN_MESSAGE_MAP(MySplitterWnd, CSplitterWnd)
  23. //{{AFX_MSG_MAP(MySplitterWnd)
  24. ON_WM_MOUSEMOVE()
  25. ON_WM_LBUTTONDOWN()
  26. //}}AFX_MSG_MAP
  27. END_MESSAGE_MAP()
  28. void MySplitterWnd::OnMouseMove(UINT nFlags, CPoint point)
  29. {
  30. // TODO: Add your message handler code here and/or call default
  31. }
  32. void MySplitterWnd::OnLButtonDown(UINT nFlags, CPoint point)
  33. {
  34. // TODO: Add your message handler code here and/or call default
  35. }