Click here to Skip to main content
15,885,914 members
Articles / Desktop Programming / MFC

Improved Tip-of-the-Day Dialog

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
17 Nov 19992 min read 66.4K   966   34  
// TipDemoView.cpp : implementation of the CTipDemoView class
//

#include "stdafx.h"
#include "TipDemo.h"

#include "TipDemoDoc.h"
#include "TipDemoView.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CTipDemoView

IMPLEMENT_DYNCREATE(CTipDemoView, CEditView)

BEGIN_MESSAGE_MAP(CTipDemoView, CEditView)
	//{{AFX_MSG_MAP(CTipDemoView)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CTipDemoView construction/destruction

CTipDemoView::CTipDemoView()
{
	// TODO: add construction code here

}

CTipDemoView::~CTipDemoView()
{
}

BOOL CTipDemoView::PreCreateWindow(CREATESTRUCT& cs)
{
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	BOOL bPreCreated = CEditView::PreCreateWindow(cs);
	cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL);	// Enable word-wrapping

	return bPreCreated;
}

/////////////////////////////////////////////////////////////////////////////
// CTipDemoView drawing

void CTipDemoView::OnDraw(CDC* pDC)
{
	CTipDemoDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);

	// TODO: add draw code for native data here
}

/////////////////////////////////////////////////////////////////////////////
// CTipDemoView diagnostics

#ifdef _DEBUG
void CTipDemoView::AssertValid() const
{
	CEditView::AssertValid();
}

void CTipDemoView::Dump(CDumpContext& dc) const
{
	CEditView::Dump(dc);
}

CTipDemoDoc* CTipDemoView::GetDocument() // non-debug version is inline
{
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CTipDemoDoc)));
	return (CTipDemoDoc*)m_pDocument;
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CTipDemoView message handlers

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
President Starpoint Software Inc.
United States United States
Bob Pittenger is founder and President of Starpoint Software Inc. He holds a B.A. degree from Miami University, M.S. and Ph.D. degrees from Purdue University, and an MBA from Xavier University. He has been programming since 1993, starting with Windows application development in C++/MFC and moving to C# and .NET around 2005 and is a .NET Microsoft Certified Professional Developer.

Bob is the author of two books:
Billionaire: How the Ultra-Rich Built Their Fortunes Through Good and Evil and What You Can Learn from Them
and
Wealthonomics: The Most Important Economic and Financial Concepts that Can Make You Rich Fast.
Visit http://www.billionairebook.net for more information.

Comments and Discussions