Skip to content

Commit

Permalink
Initial commit with date and time out of DISK_055 backup
Browse files Browse the repository at this point in the history
  • Loading branch information
lollisoft committed Mar 26, 2023
1 parent daad314 commit f5ba3e0
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions INHALTVW.H
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()
};

/////////////////////////////////////////////////////////////////////////////

0 comments on commit f5ba3e0

Please sign in to comment.