Click here to Skip to main content
15,861,172 members
Articles / Desktop Programming / MFC

MFC Tree State Manager using XML

Rate me:
Please Sign up or sign in to vote.
3.10/5 (9 votes)
21 May 20024 min read 147.7K   4.9K   47   18
Save and restore multiple tree states in your MFC applications

Image 1

Introduction

A vast majority of successful applications use the tree control to display a variety of information to the user. The tree control has become so ubiquitous that the users are very familiar with its operations. One of the common problems with the tree control is saving the state between sessions. This article presents a class TBTreeStateMgr that makes it effortless to save and restore the state of multiple trees.

What is a Tree State ?

The tree state consists of:

  • the expanded state, which nodes are expanded and which are collapsed
  • the selection state, which nodes are selected
  • the visibility state, which nodes are currently visible

Currently, the TBTreeStateMgr only stores the expanded state.

Highlights

The following are the highlights of TBTreeStateMgr implementation:

  • Can handle multiple tree instances
  • Each tree instance must be assigned a unique tree ID
  • Uses XML to store/load the tree states
  • All methods in TBTreeStateMgr are declared static. This is due to the fact that a single instance of TBTreeStateMgr can handle storage of a number of tree states.
  • TBTreeStateMgr is threadsafe
  • Uses COM Structured Storage to store individual XML files

Using TBTreeStateMgr

  1. Include the following header file in your project:
    C++
    #include "TBTreeStateMgr.h"
  2. Ensure that CoInitialize or OleInitialize is called in the InitInstance function:
    C++
    ///////////////////////
    // Init COM
    CoInitialize(NULL);
  3. Place this code in the InitInstance function of your MFC application:
    C++
    ///////////////////////////////////
    // Initialize the TBTreeStateMgr //
    TBTreeStateMgr::Initialize();
  4. Place this code in the ExitInstance() function:
    C++
    ///////////////////////////////////
    // Uninitialize
    TBTreeStateMgr::Uninitialize();
  5. To save the tree state, simply call:  
    C++
    BOOL TBTreeStateMgr::SaveTreeState(LPCTSTR lpszTreeContextName,CTreeCtrl * pTreeCtrl);
    Note: This function is typically called before quitting the window. For example: by processing the WM_CLOSE message.
    C++
    //This call saves the specified tree instance. "My Tree1 View" is the name of the instance.
    TBTreeStateMgr::SaveTreeState(_T("My Tree1 View"),&wnd_TreeCtrl);
  6. To restore the tree instance to its saved state, simply call:
    C++
    BOOL TBTreeStateMgr::LoadTreeState(LPCTSTR lpszTreeContextName,CTreeCtrl * pTreeCtrl);

    Note: This function is typically called just after initializing the tree control with the data. For example: in the OnInitialUpdate() function

    C++
    //This call restores the wnd_TreeCtrl to a state stored under the name <code>"My Tree1 View"
    TBTreeStateMgr::LoadTreeState(_T("My Tree1 View"),&wnd_TreeCtrl);
  7. [OPTIONAL] Change the storage file.

    The TBTreeStateMgr by default stores the Structured Storage file in the current directory under the file name "CTLStateStg.ctss", if you want to specify a different directory or path, use the SetStorageFile(LPCTSTR lpszNewFile).

    C++
    // Change the storage file location
    TBTreeStateMgr::SetStorageFile(_T("e:\\MyDir\\ILikeThisDir\\MyStorageFile.strg"));

To reset all tree states, simply delete the "CtlStateStg.ctss" file. This file will be automatically generated if it is not found.

Implementation

This section describes in short some of the implementation choices I had to make. I hope my use of XML and IStorage/IStream in this project will demonstrate how powerful these tools are. Structured Storage is in fact used by MSWord. The DOC format is actually a IStorage compatible file.

Conventional Approaches

There are many mechanisms to store and retrieve tree states. A popular approach seems to be to store the tree state in the registry. For document/view applications that use the tree control, some developers choose to store the latest tree state as part of the document. So each document will be able to restore its view to the state when it was last closed. The registry method is not secure, safe nor scalable. Most projects do not have the luxury of modifying the document file to accommodate storing the latest state. In any case, it is a bad idea to store the view state along with the document object.

Enter XML

While I was evaluating techniques to store the tree control state, I stumbled upon XML. XML is also highly tree structured. If we could somehow transfer the tree state to an XML document efficiently and back, we could have a really cool solution. The MSXML parser is highly efficient and widely available with IE5 deployments. The bulk of the code in TBTreeStateMgr is devoted to translating the tree state to XML and back. The XML DTD for this project is:

XML
<!-- TBTreeStateMgr.dtd   --	The DTD for storing tree state -->
<!ELEMENT TreeState(ExpandedNodes)>
	<!ELEMENT ExpandedNodes(node*)>
	    <!ELEMENT node (#PCDATA)>
<!-- . . end . . -->

IStorage/IStream

The next major problem was: How to store multiple trees?

If you open the CtlState.ctss using the "Docfile Viewer", we can see the following structure:

Image 2

As the above figure shows, the DOCfile stores each XML document in a separate stream. The reason for this architecture is: Any large scale application would have to deal with multiple trees (or) with multiple users view of the same tree. An application may also have trees in the views of multiple documents. For example: Each book document can have a tree view showing the table of contents. If we created a different XML Document for each tree instance, we may end up with hundreds of files. Another reassuring factor was Structured Storage is used extensively by MS in its own products (MSWord/Excel store DOC,XLS files in Structured Storage).

Enhancements

This can be enhanced to support storage of any state. Just change the XML DTD to add elements of your own liking. For example: this can be enhanced to save/restore state of Toolbars, Windows, Splitter Windows, List, Grid.

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
India India
C++/MFC/Java programmer, I like to work on high performance user interface programming.

Comments and Discussions

 
Generalcan't run on my pc Pin
hifi14-Jan-04 19:07
hifi14-Jan-04 19:07 
Generalcan't generate CTLStateStg.ctss Pin
hifi14-Jan-04 19:37
hifi14-Jan-04 19:37 

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.