-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit with date and time out of DISK_055 backup
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// drawvw.h : interface of the CInhaltView 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 AFX_CLASS_EXPORT CInhaltView : public CPageView | ||
{ | ||
protected: // create from serialization only | ||
CInhaltView(); | ||
DECLARE_DYNCREATE(CInhaltView) | ||
|
||
// Operations | ||
public: | ||
virtual CObList* GetDocObjects(); | ||
|
||
// Implementation | ||
public: | ||
virtual ~CInhaltView(); | ||
#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 | ||
//virtual void SetupPageServer(); | ||
|
||
// Printing support | ||
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo); | ||
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo); | ||
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo); | ||
|
||
// OLE Container support | ||
public: | ||
virtual BOOL IsSelected(const CObject* pDocItem) const; | ||
|
||
// Generated message map functions | ||
protected: | ||
//{{AFX_MSG(CInhaltView) | ||
|
||
|
||
//}}AFX_MSG | ||
DECLARE_MESSAGE_MAP() | ||
}; | ||
|
||
///////////////////////////////////////////////////////////////////////////// |