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

EZOptionsDlg - Netscape Preferences like dialog

Rate me:
Please Sign up or sign in to vote.
4.38/5 (4 votes)
16 Apr 2001 120.9K   3.1K   45  
A modified property sheet with the tree control replacing the tabs.
// EZOptionsDlgDemoView.cpp : implementation of the CEZOptionsDlgDemoView class
//

#include "stdafx.h"
#include "EZOptionsDlgDemo.h"

#include "EZOptionsDlgDemoDoc.h"
#include "EZOptionsDlgDemoView.h"

#include "NewOptionsDlg.h"
#include "EZOptionsDlg.h"

#include "Page1.h"
#include "Page2.h"

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

/////////////////////////////////////////////////////////////////////////////
// CEZOptionsDlgDemoView

IMPLEMENT_DYNCREATE(CEZOptionsDlgDemoView, CView)

BEGIN_MESSAGE_MAP(CEZOptionsDlgDemoView, CView)
	//{{AFX_MSG_MAP(CEZOptionsDlgDemoView)
	ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
	//}}AFX_MSG_MAP
	// Standard printing commands
	ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CEZOptionsDlgDemoView construction/destruction

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

}

CEZOptionsDlgDemoView::~CEZOptionsDlgDemoView()
{
}

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

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CEZOptionsDlgDemoView drawing

void CEZOptionsDlgDemoView::OnDraw(CDC* pDC)
{
	CEZOptionsDlgDemoDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
}

/////////////////////////////////////////////////////////////////////////////
// CEZOptionsDlgDemoView printing

BOOL CEZOptionsDlgDemoView::OnPreparePrinting(CPrintInfo* pInfo)
{
	// default preparation
	return DoPreparePrinting(pInfo);
}

void CEZOptionsDlgDemoView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add extra initialization before printing
}

void CEZOptionsDlgDemoView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add cleanup after printing
}

/////////////////////////////////////////////////////////////////////////////
// CEZOptionsDlgDemoView diagnostics

#ifdef _DEBUG
void CEZOptionsDlgDemoView::AssertValid() const
{
	CView::AssertValid();
}

void CEZOptionsDlgDemoView::Dump(CDumpContext& dc) const
{
	CView::Dump(dc);
}

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

/////////////////////////////////////////////////////////////////////////////
// CEZOptionsDlgDemoView message handlers

void CEZOptionsDlgDemoView::OnAppAbout() 
{

	CNewOptionsDlg dlg;
	dlg.DoModal();
	
	
}

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
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions