Click here to Skip to main content
15,884,537 members
Articles / Desktop Programming / MFC

CTreeView Iterator

Rate me:
Please Sign up or sign in to vote.
4.92/5 (23 votes)
27 Mar 20024 min read 158.7K   5.4K   40  
An iterator to parse subtree and execute function on each item/node
// CodeProjectSampleView.h : interface of the CCodeProjectSampleView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_CODEPROJECTSAMPLEVIEW_H__1AC83641_0F19_4577_8CAA_6FF0941ED174__INCLUDED_)
#define AFX_CODEPROJECTSAMPLEVIEW_H__1AC83641_0F19_4577_8CAA_6FF0941ED174__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CCodeProjectSampleView : public CEditView
{
protected: // create from serialization only
	CCodeProjectSampleView();
	DECLARE_DYNCREATE(CCodeProjectSampleView)

// Attributes
public:
	CCodeProjectSampleDoc* GetDocument();

private:
	// string to display
	CString sListToDisplay;
// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CCodeProjectSampleView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual void OnInitialUpdate(); // called first time after construct
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CCodeProjectSampleView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CCodeProjectSampleView)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in CodeProjectSampleView.cpp
inline CCodeProjectSampleDoc* CCodeProjectSampleView::GetDocument()
   { return (CCodeProjectSampleDoc*)m_pDocument; }
#endif

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_CODEPROJECTSAMPLEVIEW_H__1AC83641_0F19_4577_8CAA_6FF0941ED174__INCLUDED_)

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.


Written By
Web Developer
France France
After years passed in services companies, I now work for Euromaster, an international group dedicated to vehicules maintenance. I also develop for my own usage. I both use Java and C++ languages and now, I integrate XML documents and XSL syntax in my applications even if SQL Databases like Oracle remain my main data sources

Comments and Discussions