Click here to Skip to main content
15,895,740 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.4K   4.9K   122  
A set of source code and project browsers to compliment Visual Studio.
#ifndef TypeBrowser_H
#define TypeBrowser_H

#include <algorithm>
#include <list>

#include "TypeInfoLoader.h"
#include "ScopedNameBrowser.h"

#include "smart_ptr.h"

class ScopedNameBrowserRenderer;


class  TagbrowserItem : public ScopedNameBrowserItem
{
protected:
  smart_ptr<CppTag> mTag;

public:
  TagbrowserItem(const smart_ptr<CppTag>& cppType);

  std::string getNameLabel() const;
  int getNameIcon() const;

  std::string getScopeLabel() const; 
  int getScopeIcon() const;

  const smart_ptr<CppTag>& getTag() const; 
};



class TypeBrowserModel : public ScopedNameBrowserModel
{
public:
  TypeBrowserModel(const TypeInfoLoader::TypeList &tl);
  
private:
  static smart_ptr<ScopedNameBrowserItem> makeDataItem(const smart_ptr<CppTag> &type);

};

class TagBrowser : public ScopedNameBrowser
{
public:
  TagBrowser(const std::string &label);

  virtual void typeSelected(ModelItemType*);


};

class MethodBrowserItem : public TagbrowserItem
{
public:
  MethodBrowserItem(const smart_ptr<Function>&);

  std::string getScopeLabel() const ;
};

class MethodBrowserModel : public ScopedNameBrowserModel
{
public: 
  MethodBrowserModel(const std::list<smart_ptr<Function> > &fl);

private:
  static smart_ptr<ScopedNameBrowserItem> makeDataItem(const smart_ptr<Function> &type);

};

#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