home *** CD-ROM | disk | FTP | other *** search
- // view.h
- //
-
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992-1998 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
-
- #ifndef _VIEW_H_
- #define _VIEW_H_
-
- class CDropTargetView : public CView
- {
- public:
- CDropTargetView();
- DECLARE_DYNAMIC(CDropTargetView)
-
- // Attributes
- public:
- COle2ViewDoc* GetDocument();
- CListBox m_lb ;
-
- #if _MFC_VER > 0x0210
- COleDropTarget m_dropTarget ;
-
- // Overridables
- public:
- virtual DROPEFFECT OnDragEnter(COleDataObject* pDataObject,
- DWORD dwKeyState, CPoint point);
- virtual DROPEFFECT OnDragOver(COleDataObject* pDataObject,
- DWORD dwKeyState, CPoint point);
- virtual void OnDragLeave();
- virtual BOOL OnDrop(COleDataObject* pDataObject,
- DROPEFFECT dropEffect, CPoint point);
- #endif
- // Generated message map functions
- protected:
- //{{AFX_MSG(CDropTargetView)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in vw.cpp
- inline COle2ViewDoc* CDropTargetView::GetDocument()
- { return (COle2ViewDoc*) m_pDocument; }
- #endif
-
- #endif // _VIEW_H_
-