// XSplitterWnd.cpp: implementation of the XSplitterWnd class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "Overlay.h" #include "XSplitterWnd.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ///////////////////////////////////////////////////////////////////////////// // XSplitterWnd IMPLEMENT_DYNCREATE(XSplitterWnd, CSplitterWnd) BEGIN_MESSAGE_MAP(XSplitterWnd, CSplitterWnd) //{{AFX_MSG_MAP(COverlayView) ON_WM_MOUSEMOVE() ON_WM_LBUTTONDOWN() ON_WM_SETCURSOR() //}}AFX_MSG_MAP END_MESSAGE_MAP() ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// XSplitterWnd::XSplitterWnd() { } XSplitterWnd::~XSplitterWnd() { } void XSplitterWnd::OnMouseMove(UINT nFlags, CPoint point) { //CSplitterWnd::OnMouseMove(nFlags, point); } void XSplitterWnd::OnLButtonDown(UINT nFlags, CPoint point) { //CSplitterWnd::OnLButtonDown(nFlags, point); } BOOL XSplitterWnd::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) { //return CSplitterWnd::OnSetCursor(pWnd, nHitTest, message); return FALSE; }