Click here to Skip to main content
15,880,796 members
Articles / Desktop Programming / MFC
Article

My Tree Control

Rate me:
Please Sign up or sign in to vote.
1.09/5 (11 votes)
10 Nov 20052 min read 66.6K   1.5K   21   6
A tree control that is like a template and stores items.

Introduction

Many programmers rely on CTreeCtrl to help them view their applications. But the trouble they encounter is, always making sure that the tree is displaying their data correctly. This could be very annoying, writing it all in the dialog.

Background

Well, my tree isn't so nice looking, it really looks like an ordinary tree. But.. it stores items!! It is a template. If you are using my tree, the tree becomes the manager of the application instead of being managed.

If you haven't figured it yet, when you insert a new item, you also insert an item of your own you want to store. If it is a struct, let it be. If it is a class, that's fine too. If it is an abstract class pointed by a smart pointer, you made what really this tree is designed for. Beginners - I recommend reading about smart pointers, and reading about the Factory design pattern. I use "Loki" library for smart pointers.

My application uses this tree to store many items. Using an abstract class as the stored item, I specify what an item it is only when creating it.

Then, if I choose from the menu what action to do on an item, the right action happens depending on the item with in the tree. When an item is deleted, it destroys the item stored. You can specify in the destructor of an item what it should do on deletion. I use smart pointers, so my items are deleted only when that last item pointed to by the smart pointer is deleted. This design avoids unwanted annoying code, any code that makes adding new tree items complicated, and mostly making annoying stupid bugs.

Using the code

Simply create a tree control with the MFC wizard. Add a tree to a dialog, add a member. Include "myTreeCtrl.h" and change the type of the member to:

CMyTreeCtrl< UrItem> m_Tree

That's it! You have your new tree.

GetStorageItem would give you a pointer to the item inside. In addition, I added a very troublesome recursive code to get all items, all items by level, and a code that moves items - the first image you insert in CImageList should be an arrow of some sort, and also there is a code that transfers items to be children of other items.

There is something that sends messages on move, transfer and delete, but I don't use it in my main application. There is also a function to set the maximum hierarchy length.

All this code is based on the MFC example of CTreeCtrl. It uses STL to store items.

My tester application doesn't use all those features, most of them are in use in my commercial applications which aren't here. But it is simple to use.

I'd be happy to receive your comments. If you find a bug, I'd like to know about it.

Bunniez rulez.

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

Comments and Discussions

 
Generalgood idea, and waiting for XPTools, too! Pin
Phil. Invoker1-Nov-05 23:15
Phil. Invoker1-Nov-05 23:15 
Smile | :) Smile | :)
GeneralRe: good idea, and waiting for XPTools, too! Pin
Amit Ziv10-Nov-05 11:53
Amit Ziv10-Nov-05 11:53 
QuestionXPTools? Pin
zabivan19-Oct-05 22:29
zabivan19-Oct-05 22:29 
AnswerRe: XPTools? Pin
Amit Ziv20-Oct-05 5:25
Amit Ziv20-Oct-05 5:25 
GeneralNice idea ! Pin
Kochise19-Oct-05 21:22
Kochise19-Oct-05 21:22 
GeneralRe: Nice idea ! Pin
Amit Ziv20-Oct-05 5:39
Amit Ziv20-Oct-05 5:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.