-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNET_USE.H
More file actions
69 lines (54 loc) · 1.97 KB
/
NET_USE.H
File metadata and controls
69 lines (54 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// drawvw.h : interface of the CNetUse class
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1993 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and Microsoft
// QuickHelp and/or WinHelp documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
// Hints for UpdateAllViews/OnUpdate
class CDrawObj;
class CBaseView;
class CMapView;
class AFX_CLASS_EXPORT CNetUse : public CBaseView
{
protected: // create from serialization only
CNetUse();
DECLARE_DYNCREATE(CNetUse)
// Operations
public:
virtual CObList* GetDocObjects();
CMapView* m_pMapView;
// Implementation
public:
virtual ~CNetUse();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
virtual void OnActivateView(BOOL bActivate, CView* pActiveView, CView* pDeactiveView);
virtual void OnPrepareDC(CDC* pDC, CPrintInfo* pInfo);
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void OnInitialUpdate(); // called first time after construct
// Printing support
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
// Overridden
virtual void OnMouseMove(UINT nFlags, CPoint point);
// OLE Container support
public:
virtual BOOL IsSelected(const CObject* pDocItem) const;
// Generated message map functions
protected:
//{{AFX_MSG(CNetUse)
afx_msg void OnChooseFahrkarte();
afx_msg void OnUpdateChooseFahrkarte(CCmdUI* pCmdUI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////