Click here to Skip to main content
15,883,558 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.7K   4.9K   122  
A set of source code and project browsers to compliment Visual Studio.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>User Documentation</title>
<meta name="description" content="">
<meta name="keywords" content="">
</head>
<body>
<h1>Introduction</h1>
<img src="images/outline.jpg" border="0" width="293" height="489" alt="outline browsers">

<h2>Mouse Gestures</h2>
The outline browsers was designed to do what you would usualy expect it to do (well, at least it works the way
I expect things to work ;) To make it short, the mouse clicks are context sensitive, meaning that a left-click on
a class will behave differently then a left-click on a method.<br>
Left-Clicking on a type (i.e. class, struct typedef etc...) will open the source file at the declaration of the type.
Left-Clicking on a method or function will open the source editor at the definition (the implementation) of the method/function
if a definition is available while a right-click will open the editor by default at the declaration of the method.

<h2>Sort Buttons</h2>
A couple of filters can be applied to the current outline to show relevant parts only
<table border="1" summary="blabla">
	<tr>
		<td><img src="images/public_only_a256.bmp" border="0" alt="public only button"></td>
		<td>Show public members only</td>
	</tr>
	<tr>
		<td><img src="images/no_static_a256.bmp" border="0" alt="no static button"></td>
		<td>Hide static members</td>
	</tr>
	<tr>
		<td><img src="images/no_fields_a256.bmp" border="0" alt="methods only"></td>
		<td>Hide member fields (show methods only)</td>
	</tr>
	<tr>
		<td><img src="images/sort_a256.bmp" border="0" alt="sort button"></td>
		<td>Sort by name (checked) or by access (public/protected/private)</td>
	</tr>
</table>
</body>
</html>

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