Click here to Skip to main content
15,860,859 members
Articles / Desktop Programming / MFC
Article

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 183K   4.9K   122   47
A set of source code and project browsers to compliment Visual Studio.

Be Sweet screen shot

BeSweet Homepage

Introduction

If you ever worked with SniFF+, IBM’s VisualAge or its successor Eclipse/JDT you get used to some features that are hard to miss if you have to change the IDE. I.E VisualAge provides excellent visual class browsers and SniFF+ has the most advanced source code browsers I’ve seen yet. Although Visual Studio provides a visual class browser, it’s absolutely unusable because it’s only updated on a compiler run, doesn’t show inheritance and last but no least shows all classes of the project in a single tree (uuhhm… very funny to search for a class within 300 other classes). Or you know there is class FooManager uuhhm or is it named FooMgr and hell, in which file does it reside ?… while VisualAge/Eclipse provides a very nice class browser which lets you search a class by its name with simple regular expressions, you are completely left on your memory with VS.

While some of the missing features can be “upgraded” by installing some 3rd party addins (like VisualAssist or WorkspaceWhizz) none of them satisfied all my needs. So after complaining and moaning around for almost a year, I decided to start my own little project, the "Be Sweet" project.

This leaves only one remaining point for the introduction... how comes the name.
Well, when I initially started the project, it was named "Eclipse Style Browsers". While, technically speaking, this would have been the correct name, it's quite long, isn't it ? So, then I was thinking about Browser-Suite which then turned into B-Suite and that sounds like "Be Sweet" ;) and in deed, it's sweet to have them ;)

Overview

Currently, there are 5 different kind of browser implemented.

All browsers have an auto-raise feature. They can be brought to foreground by hovering the mouse over them (without any mouse click) and when the mouse leaves the dialog, it disappears into the background while Visual Studio is brought to foreground instead. It needs some time to get used to that feature, but it's very handy once you are used to it. I sometimes catch my self, holding the mouse over MsWord wondering why it doesn't come to foreground ;)

It's IMPORTANT to note that you must specify a corner that is used as measure point to determine the window currently (partially) covering the browser. By default this is the top-right corner but can be adjusted in the preferences. Therefore you should place the browser at the left edge of your screen to make the auto-raise work properly.

Oh yeah, all browsers are resizable of course.

The Outline Browser

This is probably the most used browser while working; well at least in my case. It displays the content of the active Visual Studio editor. It's updated every time you switch to another file or if save your changes.

Outline Browser

The mouse behavior is context sensitive. Clicking onto a class/struct will open an editor containing the declaration of the class (usually this will be a header file) and the declaration line is highlighted. If you left click on a method or function, the editor containing the definition (implementation) will be opened at the appropriate position and if you right click on that same method/function the appropriate declaration will be opened. The middle button will popup a little menu, allowing you to switch to the header, source or displaying the hierarchy of the selected class/struct/union.

If the outline browser was brought to foreground by it's auto-raise-feature, you can move the mouse back into the Visual Studio (the outline browsers will then automatically disappear). The editor will automatically get the focus so you just can start typing without the need to activate/focus any window manually by any mouse click!

The Hierarchy Browser

This view shows the hierarchy of a type. The Type Hierarchy view consists of two panes:

  • Type Hierarchy tree pane
  • Member list pane

The view can be adjusted to show the type in it's full context(i.e. subclasses and superclasses). If the type has multiple super classes, only the longest "super-path" will be displayed. It can be set to show the super types only (be aware the the hierachy-tree is displayed upside down) and last but not least the view can be restricted to show sub-types only.

Hierarchy Browser

The member list pane displays the members of the currently selected type in the type hierarchy tree pane. It can be adjusted to show "own" members only or to show inherited methods and fields also.

The Tag Browsers

What shall I say about them? Well, they are quite handy if you are looking for something, but can't remember the full name or it's location, i.e. was that type named TextHandler or TextManager or TextMgr?. All tag browsers provide an incremental search and support simple regular expressions (sorry, the "?" doesn't work yet)

Type BrowserMethod Browser
Type BrowserMethod/Function Browser
Workspace Browser
Workspace Browser

If the Matches-List is focused, the typed characters will be used as search-arguments (ESC/Delete to clear the filter, Backspace to erase the last typed character).

The Visual Studio AddIn

The addin is one of the two main parts of the system and implements the role of the BeSweet client. It it's registered to several Visual-Studio-events and triggers the appropriate action on the server, i.e. loads the workspace if you open a new workspace or triggers a reparse of a source file if that file has been modified.

visual studio tool bar

There is also an Addin for Visual Studio .Net, but thats still very exprerimental and should be used with caution.

Selected text in the Visual Studio editor will be validated and used as search-arguments when opening a browser via the addin buttons

For your convenience, Hot-Keys can be bound via Tools->Customize->Keyboard->Add-In. All commands start with "ESB", i.e. ESBShowTypeBrowser which would bring the type browser to foreground.

Architecture

When I started the project, I had to decide to either fully integrate the browsers inside Visual Studio or to build an external application. After reading a couple of articles about how to integrate custom-apps into VS on www.codeproject.com and www.codeguru.com, I decided to build an external client server application based on the following reasons. First, I wanted to concentrate my effort on the fun part and reading those articles, integrating an app into VS didn’t sound like fun. Second, which is IMO the much more important reason, if the external app crashes it won’t crash VS as well !

architecture

As mentioned above, the system is designed with a client-server architecture, where the client is implemented as a Visual Studio Addin and interacts with the server via COM. The server’s architecture is a very traditional MVC pattern. Not all of the blocks above are currently implemented, i.e. there are no QT-Renderers

Implementation

Although there isn’t/wasn’t any need for multi platform support, I tried to avoid too many platform specific dependencies. STL is used where ever possible , MFC is strictly used in the renderers only and the COM interface implementation is completely encapsulated in it’s own module. That said, the effort to port it to another platform shouldn’t be too big.

Installation

  1. Unzip the package into a folder of your choice.
  2. Register/Load the Visual Studio Addin via Tools->Customize->Macros and Add-Ins
  3. Customize the key binding. I personally use Alt-T to pop up the Type Browser, Alt-O for the Outline Browser, and so forth.
  4. start the ESBServer.exe
  5. open a workspace in visual studio

It might be neccessary to reboot your computer if you have already installed an older version of BeSweet. If nothing works do the following

  1. uninstall the addin from visual studio
  2. unregister the dll with regsvr32
  3. reboot your pc
  4. start the ESBServer.exe
  5. open visual studio and reinstall the addin
  6. press the 1st addin-button and ensure that BeSweet is enabled (only for VC6)
  7. open a workspace in Visual Studio
  8. right click on the BeSweet-SystemTray-Icon and maximize --> your workspace should be listened here

How to Build

It's not possible to build BeSweet with the default STL shipped with VC++ 6.0. The reason is, that the VC-STL is based on a pre-existing standard (i think before 1998) and is therefore missing some (important) features. To build the project, any recent STL implementation should work. I personally use STLPort 4.5.3 which is based on the original SGI implementation and can be freely donwloaded here.

Credits & Thanks To

  • Darren Hiebert for his ctags parser... the enabling part of this project!
  • Davide Calabro for his excellent flat-style bitmap button class CButtonST
  • Richard Hazlewood for his formidable multi selection tree control CMultiTree
  • Andy Brown for providing his easy CDynamicDialog class
  • Chris Maunder and his CSystemTray class
  • special thanks goes to Ulf Niewoehner, Tsvetan Tsvetanov and Xiaoming Zhao for their help in testing BeSweet and suggestions for improvements

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

 
GeneralNot added-in to VS 2005 Pin
simon heffer17-Jun-07 23:09
simon heffer17-Jun-07 23:09 
GeneralFREE source code browser Pin
idht29-Dec-06 22:58
idht29-Dec-06 22:58 
GeneraleVC version Pin
Conor O'Doherty20-Sep-04 2:44
Conor O'Doherty20-Sep-04 2:44 
QuestionCOM version? Pin
Emily Grettel18-Sep-04 20:56
sussEmily Grettel18-Sep-04 20:56 
Generalwww.appspeed.com Pin
jedyking14-Apr-04 5:24
jedyking14-Apr-04 5:24 
GeneralRe: www.appspeed.com Pin
Trollslayer9-Sep-05 1:24
mentorTrollslayer9-Sep-05 1:24 
QuestionIs It run only for C++?. Is it possible for C? Pin
Miguel Angel Diez15-Feb-04 20:49
Miguel Angel Diez15-Feb-04 20:49 
AnswerRe: Is It run only for C++?. Is it possible for C? Pin
cider16-Feb-04 21:53
cider16-Feb-04 21:53 
GeneralRe: Is It run only for C++?. Is it possible for C? Pin
Miguel Angel Diez19-Feb-04 19:21
Miguel Angel Diez19-Feb-04 19:21 
GeneralRe: Is It run only for C++?. Is it possible for C? Pin
Anonymous21-Feb-04 0:09
Anonymous21-Feb-04 0:09 
GeneralRe: Is It run only for C++?. Is it possible for C? Pin
Bert [Otherside82] Derijckere30-May-04 2:28
Bert [Otherside82] Derijckere30-May-04 2:28 
GeneralRe: Is It run only for C++?. Is it possible for C? Pin
twin arrows4-Jun-04 5:57
twin arrows4-Jun-04 5:57 
GeneralLink Errors Pin
mgerke3-Sep-03 4:28
mgerke3-Sep-03 4:28 
GeneralRe: Link Errors Pin
cider3-Sep-03 11:09
cider3-Sep-03 11:09 
GeneralRe: Link Errors Pin
mgerke3-Sep-03 20:59
mgerke3-Sep-03 20:59 
GeneralRe: Link Errors Pin
cider3-Sep-03 21:13
cider3-Sep-03 21:13 
GeneralRe: Link Errors Pin
mgerke3-Sep-03 21:41
mgerke3-Sep-03 21:41 
GeneralRe: Link Errors Pin
cider4-Sep-03 0:26
cider4-Sep-03 0:26 
QuestionHow to load ESBServer.exe dynamically Pin
jamestao9-Aug-03 3:09
jamestao9-Aug-03 3:09 
AnswerRe: How to load ESBServer.exe dynamically Pin
cider10-Aug-03 10:41
cider10-Aug-03 10:41 
GeneralPromising! Pin
Hofver8-Jul-03 18:54
Hofver8-Jul-03 18:54 
GeneralRe: Promising! Pin
Anonymous8-Jul-03 21:51
Anonymous8-Jul-03 21:51 
Generaldoesn't work! Pin
morgler8-Jul-03 0:32
morgler8-Jul-03 0:32 
GeneralRe: doesn't work! Pin
cider8-Jul-03 1:20
cider8-Jul-03 1:20 
GeneralRe: doesn't work! Pin
WREY1-Aug-03 19:25
WREY1-Aug-03 19:25 

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.