Click here to Skip to main content
15,895,777 members
Articles / Desktop Programming / MFC

Creating a Simple Drives Explorer Program

Rate me:
Please Sign up or sign in to vote.
4.44/5 (10 votes)
5 May 2009CPOL8 min read 95.2K   3.6K   38  
A project using the Windows Explorer Framework and some API stuff
// FTreeBrowserDoc.cpp : implementation of the CFTreeBrowserDoc class
//

#include "stdafx.h"
#include "FTreeBrowser.h"

#include "FTreeBrowserDoc.h"
#include "LeftView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CFTreeBrowserDoc

IMPLEMENT_DYNCREATE(CFTreeBrowserDoc, CDocument)

BEGIN_MESSAGE_MAP(CFTreeBrowserDoc, CDocument)
	//{{AFX_MSG_MAP(CFTreeBrowserDoc)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CFTreeBrowserDoc construction/destruction

CFTreeBrowserDoc::CFTreeBrowserDoc()
{
	// TODO: add one-time construction code here

}

CFTreeBrowserDoc::~CFTreeBrowserDoc()
{
}

BOOL CFTreeBrowserDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	this->pLeftView->CreateRoots();


	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CFTreeBrowserDoc serialization

void CFTreeBrowserDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CFTreeBrowserDoc diagnostics

#ifdef _DEBUG
void CFTreeBrowserDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CFTreeBrowserDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CFTreeBrowserDoc commands

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United Kingdom United Kingdom

Comments and Discussions