Click here to Skip to main content
15,891,704 members
Articles / Desktop Programming / MFC

Be Sweet - a set of visual source code browsers

Rate me:
Please Sign up or sign in to vote.
4.85/5 (35 votes)
1 Jul 20038 min read 184.1K   4.9K   122  
A set of source code and project browsers to compliment Visual Studio.
#ifndef PropertiesTree_H
#define PropertiesTree_H

#include "OptionSheet.h"
#include <map>
class PropertiesTree : public CTreeCtrl, public COptionSheet::COptionList
{

public:
  virtual BOOL  Create (COptionSheet *pParentWnd, UINT nID);
  virtual BOOL  AddGroup (COptionPage *pPage);
  virtual BOOL  AddPage (COptionPage *pPage, COptionPage *pGroupPage);   
  virtual BOOL  SetSelection (COptionPage *page);
  virtual COptionPage *  GetSelection ();
  virtual CWnd *  GetControlWnd ();

protected:
  COptionPage * mSelection;
  std::map<COptionPage*, HTREEITEM> mGroupMap;

  //{{AFX_MSG(PropertiesTree)
	afx_msg void onSelectionChange(NMHDR* pNMHDR, LRESULT* pResult);
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()

};

#endif

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

Comments and Discussions