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

class MouseEvent;

#include <Model/CppTagModel.h>
#include <list>

class SelectionListener
{
public:
  virtual ~SelectionListener() {}
  virtual void selectionChanged(const std::list<CppTag*>&) const = 0;
  virtual void selectionChanged(const CppTag&, const MouseEvent&) const = 0;
};

class SingleSelectionListener : public SelectionListener
{
private:
  //empty impelmentation
  virtual void selectionChanged(const std::list<CppTag*>&) const; 
};

class MultiSelectionListener : public SelectionListener
{
private:
  //empty impelmentation
  virtual void selectionChanged(const CppTag&, const MouseEvent&) const;
};

class DefaultSingleSelectionListener : public SingleSelectionListener
{
public:
  virtual void selectionChanged(const CppTag&, const MouseEvent&) const;
  
private:
  void gotoHeader(const CppTag&) const;
  void gotoSource(const CppTag&) const; 
  void gotoFile(const TagLocation &location) const;  
};

#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