[Top] [Contents] [Index] [ ? ]

A Class Browser for C++

You can browse C++ class hierarchies from within Emacs by using Ebrowse.

1. Introduction  What is it and now does it work?
2. Processing Source Files  How to process C++ source files
3. Starting to Browse  How to start browsing
4. Tree Buffers  Traversing class hierarchies
5. Member Buffers  Looking at member information
6. Tags-like Functions  Finding members from source files
Concept Index  An entry for each concept defined


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1. Introduction

When working in software projects using C++, I frequently missed software support for two things:

The design of Ebrowse reflects these two needs.

How does it work?

A fast parser written in C is used to process C++ source files. The parser generates a data base containing information about classes, members, global functions, defines, types etc. found in the sources.

The second part of Ebrowse is a Lisp program. This program reads the data base generated by the parser. It displays its contents in various forms and allows you to perform operations on it, or do something with the help of the knowledge contained in the data base.

Navigational use of Ebrowse is centered around two types of buffers which define their own major modes:

Tree buffers are used to view class hierarchies in tree form. They allow you to quickly find classes, find or view class declarations, perform operations like query replace on sets of your source files, and finally tree buffers are used to produce the second buffer form--member buffers. See section 4. Tree Buffers.

Members are displayed in member buffers. Ebrowse distinguishes between six different types of members; each type is displayed as a member list of its own:

You can switch member buffers from one list to another, or to another class. You can include inherited members in the display, you can set filters that remove categories of members from the display, and most importantly you can find or view member declarations and definitions with a keystroke. See section 5. Member Buffers.

These two buffer types and the commands they provide support the navigational use of the browser. The second form resembles Emacs' Tags package for C and other procedural languages. Ebrowse's commands of this type are not confined to special buffers; they are most often used while you are editing your source code.

To list just a subset of what you can use the Tags part of Ebrowse for:


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2. Processing Source Files

Before you can start browsing a class hierarchy, you must run the parser ebrowse on your source files in order to generate a Lisp data base describing your program.

The operation of ebrowse can be tailored with command line options. Under normal circumstances it suffices to let the parser use its default settings. If you want to do that, call it with a command line like:

 
ebrowse *.h *.cc

or, if your shell doesn't allow all the file names to be specified on the command line,

 
ebrowse --files=file

where file contains the names of the files to be parsed, one per line.

When invoked with option `--help', ebrowse prints a list of available command line options.

2.1 Specifying Input Files  Specifying which files to parse
2.2 Changing the Output File Name  Changing the output file name
2.3 Structs and Unions  Omitting structs and unions
2.4 Regular Expressions  Setting regular expression lengths
2.5 Verbose Mode  Getting feedback for lengthy operations


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.1 Specifying Input Files

`file'
Each file name on the command line tells ebrowse to parse that file.

`--files=file'
This command line switch specifies that file contains a list of file names to parse. Each line in file must contain one file name. More than one option of this kind is allowed. You might, for instance, want to use one file for header files, and another for source files.

`standard input'
When ebrowse finds no file names on the command line, and no `--file' option is specified, it reads file names from standard input. This is sometimes convenient when ebrowse is used as part of a command pipe.

`--search-path=paths'
This option lets you specify search paths for your input files. paths is a list of directory names, separated from each other by a either a colon or a semicolon, depending on the operating system.

It is generally a good idea to specify input files so that header files are parsed before source files. This facilitates the parser's work of properly identifying friend functions of a class.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.2 Changing the Output File Name

`--output-file=file'
This option instructs ebrowse to generate a Lisp data base with name file. By default, the data base is named `BROWSE', and is written in the directory in which ebrowse is invoked.

If you regularly use data base names different from the default, you might want to add this to your init file:

 
(add-to-list 'auto-mode-alist '(NAME . ebrowse-tree-mode))

where NAME is the Lisp data base name you are using.

`--append'
By default, each run of ebrowse erases the old contents of the output file when writing to it. You can instruct ebrowse to append its output to an existing file produced by ebrowse with this command line option.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.3 Structs and Unions

`--no-structs-or-unions'
This switch suppresses all classes in the data base declared as struct or union in the output.

This is mainly useful when you are converting an existing C program to C++, and do not want to see the old C structs in a class tree.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.4 Regular Expressions

The parser ebrowse normally writes regular expressions to its output file that help the Lisp part of Ebrowse to find functions, variables etc. in their source files.

You can instruct ebrowse to omit these regular expressions by calling it with the command line switch `--no-regexps'.

When you do this, the Lisp part of Ebrowse tries to guess, from member or class names, suitable regular expressions to locate that class or member in source files. This works fine in most cases, but the automatic generation of regular expressions can be too weak if unusual coding styles are used.

`--no-regexps'
This option turns off regular expression recording.

`--min-regexp-length=n'
The number n following this option specifies the minimum length of the regular expressions recorded to match class and member declarations and definitions. The default value is set at compilation time of ebrowse.

The smaller the minimum length, the higher the probability that Ebrowse will find a wrong match. The larger the value, the larger the output file and therefore the memory consumption once the file is read from Emacs.

`--max-regexp-length=n'
The number following this option specifies the maximum length of the regular expressions used to match class and member declarations and definitions. The default value is set at compilation time of ebrowse.

The larger the maximum length, the higher the probability that the browser will find a correct match, but the larger the value the larger the output file and therefore the memory consumption once the data is read. As a second effect, the larger the regular expression, the higher the probability that it will no longer match after editing the file.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.5 Verbose Mode

`--verbose'
When this option is specified on the command line, ebrowse prints a period for each file parsed, and it displays a `+' for each class written to the output file.

`--very-verbose'
This option makes ebrowse print out the names of the files and the names of the classes seen.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3. Starting to Browse

You start browsing a class hierarchy parsed by ebrowse by just finding the `BROWSE' file with C-x C-f.

An example of a tree buffer display is shown below.

 
|  Collection
|    IndexedCollection
|      Array
|        FixedArray
|    Set
|    Dictionary

When you run Emacs on a display which supports colors and the mouse, you will notice that certain areas in the tree buffer are highlighted when you move the mouse over them. This highlight marks mouse-sensitive regions in the buffer. Please notice the help strings in the echo area when the mouse moves over a sensitive region.

A click with Mouse-3 on a mouse-sensitive region opens a context menu. In addition to this, each buffer also has a buffer-specific menu that is opened with a click with Mouse-3 somewhere in the buffer where no highlight is displayed.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4. Tree Buffers

Class trees are displayed in tree buffers which install their own major mode. Most Emacs keys work in tree buffers in the usual way, e.g. you can move around in the buffer with the usual C-f, C-v etc., or you can search with C-s.

Tree-specific commands are bound to simple keystrokes, similar to Gnus. You can take a look at the key bindings by entering ? which calls M-x describe-mode in both tree and member buffers.

4.1 Viewing and Finding Class Declarations  Viewing and finding a class declaration
4.2 Displaying Members  Showing members, switching to member buffers
4.3 Finding a Class  Finding a class
4.4 Burying a Tree Buffer  Discarding and burying the tree buffer
4.5 Displaying File Names  Showing file names in the tree
4.6 Expanding and Collapsing a Tree  Expanding and collapsing branches
4.7 Changing the Tree Indentation  Changing the tree indentation
4.8 Removing Classes from the Tree  Removing class from the tree
4.9 Saving a Tree  Saving a modified tree


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.1 Viewing and Finding Class Declarations

You can view or find a class declaration when the cursor is on a class name.

SPC
This command views the class declaration if the database contains informations about it. If you don't parse the entire source you are working on, some classes will only be known to exist but the location of their declarations and definitions will not be known.

RET
Works like SPC, except that it finds the class declaration rather than viewing it, so that it is ready for editing.

The same functionality is available from the menu opened with Mouse-3 on the class name.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.2 Displaying Members

Ebrowse distinguishes six different kinds of members, each of which is displayed as a separate member list: instance variables, instance functions, static variables, static functions, friend functions, and types.

Each of these lists can be displayed in a member buffer with a command starting with L when the cursor is on a class name. By default, there is only one member buffer named *Members* that is reused each time you display a member list--this has proven to be more practical than to clutter up the buffer list with dozens of member buffers.

If you want to display more than one member list at a time you can freeze its member buffer. Freezing a member buffer prevents it from being overwritten the next time you display a member list. You can toggle this buffer status at any time.

Every member list display command in the tree buffer can be used with a prefix argument (C-u). Without a prefix argument, the command will pop to a member buffer displaying the member list. With prefix argument, the member buffer will additionally be frozen.

L v
This command displays the list of instance member variables.

L V
Display the list of static variables.

L d
Display the list of friend functions. This list is used for defines if you are viewing the class `*Globals*' which is a place holder for global symbols.

L f
Display the list of member functions.

L F
Display the list of static member functions.

L t
Display a list of types.

These lists are also available from the class' context menu invoked with Mouse-3 on the class name.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.3 Finding a Class

/
This command reads a class name from the minibuffer with completion and positions the cursor on the class in the class tree.

If the branch of the class tree containing the class searched for is currently collapsed, the class itself and all its base classes are recursively made visible. (See also 4.6 Expanding and Collapsing a Tree.)

This function is also available from the tree buffer's context menu.

n
Repeat the last search done with /. Each tree buffer has its own local copy of the regular expression last searched in it.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.4 Burying a Tree Buffer

q
Is a synonym for M-x bury-buffer.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.5 Displaying File Names

T f
This command toggles the display of file names in a tree buffer. If file name display is switched on, the names of the files containing the class declaration are shown to the right of the class names. If the file is not known, the string `unknown' is displayed.

This command is also provided in the tree buffer's context menu.

s
Display file names for the current line, or for the number of lines given by a prefix argument.

Here is an example of a tree buffer with file names displayed.

 
|  Collection		(unknown)
|    IndexedCollection	(indexedcltn.h)
|      Array		(array.h)
|        FixedArray	(fixedarray.h)
|    Set		(set.h)
|    Dictionary		(dict.h)


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.6 Expanding and Collapsing a Tree

You can expand and collapse parts of a tree to reduce the complexity of large class hierarchies. Expanding or collapsing branches of a tree has no impact on the functionality of other commands, like /. (See also 4.3 Finding a Class.)

Collapsed branches are indicated with an ellipsis following the class name like in the example below.

 
|  Collection
|    IndexedCollection...
|    Set
|    Dictionary

-
This command collapses the branch of the tree starting at the class the cursor is on.

+
This command expands the branch of the tree starting at the class the cursor is on. Both commands for collapsing and expanding branches are also available from the class' object menu.

*
This command expands all collapsed branches in the tree.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.7 Changing the Tree Indentation

T w
This command reads a new indentation width from the minibuffer and redisplays the tree buffer with the new indentation It is also available from the tree buffer's context menu.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.8 Removing Classes from the Tree

C-k
This command removes the class the cursor is on and all its derived classes from the tree. The user is asked for confirmation before the deletion is actually performed.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.9 Saving a Tree

C-x C-s
This command writes a class tree to the file from which it was read. This is useful after classes have been deleted from a tree.

C-x C-w
Writes the tree to a file whose name is read from the minibuffer.

x
Display statistics for the tree, like number of classes in it, number of member functions, etc. This command can also be found in the buffer's context menu.

Classes can be marked for operations similar to the standard Emacs commands M-x tags-search and M-x tags-query-replace (see also See section 6. Tags-like Functions.)

M t
Toggle the mark of the line point is in or for as many lines as given by a prefix command. This command can also be found in the class' context menu.

M a
Unmark all classes. With prefix argument C-u, mark all classes in the tree. Since this command operates on the whole buffer, it can also be found in the buffer's object menu.

Marked classes are displayed with an > in column one of the tree display, like in the following example

 
|> Collection
|    IndexedCollection...
|>   Set
|    Dictionary


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5. Member Buffers

Member buffers are used to operate on lists of members of a class. Ebrowse distinguishes six kinds of lists:

Like tree buffers, member buffers install their own major mode. Also like in tree buffers, menus are provided for certain areas in the buffer: members, classes, and the buffer itself.

5.1 Switching Member Lists  Choosing which members to display
5.2 Finding and Viewing Member Source  Modifying source code
5.3 Display of Inherited Members  
5.4 Searching Members  Finding members in member buffer
5.5 Switching to Tree Buffer  Going back to the tree buffer
5.6 Filters  Selective member display
5.7 Displaying Member Attributes  Display of virtual etc.
5.8 Long and Short Member Display  Comprehensive and verbose display
5.9 Display of Regular Expressions  Showing matching regular expressions
5.10 Displaying Another Class  Displaying another class
5.11 Burying a Member Buffer  Getting rid of the member buffer
5.12 Setting the Column Width  Display style
5.13 Forced Redisplay  Redrawing the member list


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.1 Switching Member Lists

L n
This command switches the member buffer display to the next member list.

L p
This command switches the member buffer display to the previous member list.

L f
Switch to the list of member functions.

L F
Switch to the list of static member functions.

L v
Switch to the list of member variables.

L V
Switch to the list of static member variables.

L d
Switch to the list of friends or defines.

L t
Switch to the list of types.

Both commands cycle through the member list.

Most of the commands are also available from the member buffer's context menu.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.2 Finding and Viewing Member Source

RET
This command finds the definition of the member the cursor is on. Finding involves roughly the same as the standard Emacs tags facility does--loading the file and searching for a regular expression matching the member.

f
This command finds the declaration of the member the cursor is on.

SPC
This is the same command as RET, but views the member definition instead of finding the member's source file.

v
This is the same command as f, but views the member's declaration instead of finding the file the declaration is in.

You can install a hook function to perform actions after a member or class declaration or definition has been found, or when it is not found.

All the commands described above can also be found in the context menu displayed when clicking Mouse-2 on a member name.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.3 Display of Inherited Members

D b
This command toggles the display of inherited members in the member buffer. This is also in the buffer's context menu.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.4 Searching Members

G v
Position the cursor on a member whose name is read from the minibuffer; only members shown in the current member buffer appear in the completion list.

G m
Like the above command, but all members for the current class appear in the completion list. If necessary, the current member list is switched to the one containing the member.

With a prefix argument (C-u), all members in the class tree, i.e. all members the browser knows about appear in the completion list. The member display will be switched to the class and member list containing the member.

G n
Repeat the last member search.

Look into the buffer's context menu for a convenient way to do this with a mouse.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.5 Switching to Tree Buffer

TAB
Pop up the tree buffer to which the member buffer belongs.

t
Do the same as TAB but also position the cursor on the class displayed in the member buffer.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.6 Filters

F a u
This command toggles the display of public members. The `a' stands for `access'.

F a o
This command toggles the display of protected members.

F a i
This command toggles the display of private members.

F v
This command toggles the display of virtual members.

F i
This command toggles the display of inline members.

F c
This command toggles the display of const members.

F p
This command toggles the display of pure virtual members.

F r
This command removes all filters.

These commands are also found in the buffer's context menu.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.7 Displaying Member Attributes

D a
Toggle the display of member attributes (default is on).

The nine member attributes Ebrowse knows about are displayed as a list a single-characters flags enclosed in angle brackets in front the of the member's name. A `-' at a given position means that the attribute is false. The list of attributes from left to right is

`T'
The member is a template.

`C'
The member is declared extern "C".

`v'
Means the member is declared virtual.

`i'
The member is declared inline.

`c'
The member is const.

`0'
The member is a pure virtual function.

`m'
The member is declared mutable.

`e'
The member is declared explicit.

`t'
The member is a function with a throw list.

This command is also in the buffer's context menu.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.8 Long and Short Member Display

D l
This command toggles the member buffer between short and long display form. The short display form displays member names, only:

 
| isEmpty        contains       hasMember      create
| storeSize      hash           isEqual        restoreGuts
| saveGuts

The long display shows one member per line with member name and regular expressions matching the member (if known):

 
| isEmpty               Bool isEmpty () const...
| hash                  unsigned hash () const...
| isEqual               int isEqual (...

Regular expressions will only be displayed when the Lisp database has not been produced with the ebrowse option `--no-regexps'. See section Regular Expressions.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.9 Display of Regular Expressions

D r
This command toggles the long display form from displaying the regular expressions matching the member declarations to those expressions matching member definitions.

Regular expressions will only be displayed when the Lisp database has not been produced with the ebrowse option `--no-regexps', see Regular Expressions.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.10 Displaying Another Class

C c
This command lets you switch the member buffer to another class. It reads the name of the new class from the minibuffer with completion.

C b
This is the same command as C c but restricts the classes shown in the completion list to immediate base classes, only. If only one base class exists, this one is immediately shown in the minibuffer.

C d
Same as C b, but for derived classes.

C p
Switch to the previous class in the class hierarchy on the same level as the class currently displayed.

C n
Switch to the next sibling of the class in the class tree.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.11 Burying a Member Buffer

q
This command is a synonym for M-x bury-buffer.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.12 Setting the Column Width

D w
This command sets the column width depending on the display form used (long or short display).


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.13 Forced Redisplay

C-l
This command forces a redisplay of the member buffer. If the width of the window displaying the member buffer is changed this command redraws the member list with the appropriate column widths and number of columns.

?
This key is bound to describe-mode.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6. Tags-like Functions

Ebrowse provides tags functions similar to those of the standard Emacs Tags facility, but better suited to the needs of C++ programmers.

6.1 Finding and Viewing Members  Going to a member declaration/definition
6.2 The Position Stack  Moving to previous locations
6.3 Searching and Replacing  Searching and replacing over class tree files
6.4 Members in Files  Listing all members in a given file
6.5 Member Apropos  Listing members matching a regular expression
6.6 Symbol Completion  Completing names while editing
6.7 Quick Member Display  Quickly display a member buffer for some identifier


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.1 Finding and Viewing Members

The functions in this section are similar to those described in 4.1 Viewing and Finding Class Declarations, and also in 5.2 Finding and Viewing Member Source, except that they work in a C++ source buffer, not in member and tree buffers created by Ebrowse.

C-c b f
Find the definition of the member around point. If you invoke this function with a prefix argument, the declaration is searched.

If more than one class contains a member with the given name you can select the class with completion. If there is a scope declaration in front of the member name, this class name is used as initial input for the completion.

C-c b F
Find the declaration of the member around point.

C-c b v
View the definition of the member around point.

C-c b V
View the declaration of the member around point.

C-c b 4 f
Find a member's definition in another window.

C-c b 4 F
Find a member's declaration in another window.

C-c b 4 v
View a member's definition in another window.

C-c b 4 V
View a member's declaration in another window.

C-c b 5 f
Find a member's definition in another frame.

C-c b 5 F
Find a member's declaration in another frame.

C-c b 5 v
View a member's definition in another frame.

C-c b 5 V
View a member's declaration in another frame.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.2 The Position Stack

When jumping to a member declaration or definition with one of Ebrowse's commands, the position from where you performed the jump and the position where you jumped to are recorded in a position stack. There are several ways in which you can quickly move to positions in the stack:

C-c b -
This command sets point to the previous position in the position stack. Directly after you performed a jump, this will put you back to the position where you came from.

The stack is not popped, i.e. you can always switch back and forth between positions in the stack. To avoid letting the stack grow to infinite size there is a maximum number of positions defined. When this number is reached, older positions are discarded when new positions are pushed on the stack.

C-c b +
This command moves forward in the position stack, setting point to the next position stored in the position stack.

C-c b p
Displays an electric buffer showing all positions saved in the stack. You can select a position by pressing SPC in a line. You can view a position with v.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.3 Searching and Replacing

Ebrowse allows you to perform operations on all or a subset of the files mentioned in a class tree. When you invoke one of the following functions and more than one class tree is loaded, you must choose a class tree to use from an electric tree menu. If the selected tree contains marked classes, the following commands operate on the files mentioned in the marked classes only. Otherwise all files in the class tree are used.

C-c b s
This function performs a regular expression search in the chosen set of files.

C-c b u
This command performs a search for calls of a given member which is selected in the usual way with completion.

C-c b %
Perform a query replace over the set of files.

C-c b ,
All three operations above stop when finding a match. You can restart the operation with this command.

C-c b n
This restarts the last tags operation with the next file in the list.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.4 Members in Files

The command C-c b l, lists all members in a given file. The file name is read from the minibuffer with completion.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.5 Member Apropos

The command C-c b a can be used to display all members matching a given regular expression. This command can be very useful if you remember only part of a member name, and not its beginning.

A special buffer is popped up containing all identifiers matching the regular expression, and what kind of symbol it is (e.g. a member function, or a type). You can then switch to this buffer, and use the command C-c b f, for example, to jump to a specific member.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.6 Symbol Completion

The command C-c b TAB completes the symbol in front of point.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.7 Quick Member Display

You can quickly display a member buffer containing the member the cursor in on with the command C-c b m.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

Concept Index

Jump to:   *   -  
A   B   C   D   E   F   H   I   K   L   M   N   O   P   R   S   T   U   V  

Index Entry Section

*
`*Globals*'4.2 Displaying Members
`*Members*' buffer4.2 Displaying Members

-
--append2.2 Changing the Output File Name
--files2.1 Specifying Input Files
--help2. Processing Source Files
--max-regexp-length2.4 Regular Expressions
--min-regexp-length2.4 Regular Expressions
--no-regexps2.4 Regular Expressions
--no-structs-or-unions2.3 Structs and Unions
--output-file2.2 Changing the Output File Name
--search-path2.1 Specifying Input Files
--verbose2.5 Verbose Mode
--very-verbose2.5 Verbose Mode

A
appending output to class data base2.2 Changing the Output File Name
apropos on class members6.5 Member Apropos
attributes5.7 Displaying Member Attributes

B
base class, display5.10 Displaying Another Class
base classes, members5.3 Display of Inherited Members
branches of class tree4.6 Expanding and Collapsing a Tree
`BROWSE' file2.2 Changing the Output File Name
browsing3. Starting to Browse
buffer switching5.5 Switching to Tree Buffer
burying member buffers5.11 Burying a Member Buffer
burying tree buffer4.4 Burying a Tree Buffer

C
class data base creation2. Processing Source Files
class declaration4.1 Viewing and Finding Class Declarations
class display5.10 Displaying Another Class
class location4.3 Finding a Class
class members, types5. Member Buffers
class statistics4.9 Saving a Tree
class tree, collapse or expand4.6 Expanding and Collapsing a Tree
class tree, save to a file4.9 Saving a Tree
class trees4. Tree Buffers
class, remove from tree4.8 Removing Classes from the Tree
collapse tree branch4.6 Expanding and Collapsing a Tree
column width5.12 Setting the Column Width
command line for ebrowse2. Processing Source Files
completion6.6 Symbol Completion
const attribute5.7 Displaying Member Attributes
const members5.6 Filters
context menu3. Starting to Browse

D
declaration of a member, in member buffers5.2 Finding and Viewing Member Source
defines5.1 Switching Member Lists
definition of a member, in member buffers5.2 Finding and Viewing Member Source
derived class, display5.10 Displaying Another Class
display form5.8 Long and Short Member Display

E
ebrowse, the program2. Processing Source Files
expand tree branch4.6 Expanding and Collapsing a Tree
expanding branches4.3 Finding a Class
explicit attribute5.7 Displaying Member Attributes
extern "C" attribute5.7 Displaying Member Attributes

F
file names in tree buffers4.5 Displaying File Names
file, members6.4 Members in Files
files6.4 Members in Files
filters5.6 Filters
finding a class4.1 Viewing and Finding Class Declarations
finding class member, in C++ source6.1 Finding and Viewing Members
finding members, in member buffers5.2 Finding and Viewing Member Source
freezing a member buffer4.2 Displaying Members
friend functions2.1 Specifying Input Files
friend functions, list4.2 Displaying Members
friends5.1 Switching Member Lists

H
header files2.1 Specifying Input Files
help5.13 Forced Redisplay

I
indentation of the tree4.7 Changing the Tree Indentation
indentation, member5.12 Setting the Column Width
inherited members5.3 Display of Inherited Members
inline5.7 Displaying Member Attributes
inline members5.6 Filters
input files, for ebrowse2.1 Specifying Input Files
instance member variables, list4.2 Displaying Members

K
killing classes4.8 Removing Classes from the Tree

L
list class members in a file6.4 Members in Files
loading3. Starting to Browse
locate class4.3 Finding a Class
long display5.8 Long and Short Member Display

M
major modes, of Ebrowse buffers1. Introduction
marking classes4.9 Saving a Tree
maximum regexp length for recording2.4 Regular Expressions
member attribute display5.7 Displaying Member Attributes
member buffer1. Introduction
member buffer mode5. Member Buffers
member buffer, for member at point6.7 Quick Member Display
member declaration, finding, in C++ source6.1 Finding and Viewing Members
member declarations, in member buffers5.2 Finding and Viewing Member Source
member definition, finding, in C++ source6.1 Finding and Viewing Members
member definitions, in member buffers5.2 Finding and Viewing Member Source
member functions, list4.2 Displaying Members
member indentation5.12 Setting the Column Width
member lists, in member buffers5.1 Switching Member Lists
member lists, in tree buffers4.2 Displaying Members
members5. Member Buffers
members in file, listing6.4 Members in Files
members, matching regexp6.5 Member Apropos
minimum regexp length for recording2.4 Regular Expressions
mouse highlight in tree buffers3. Starting to Browse
mutable attribute5.7 Displaying Member Attributes

N
next member list5.1 Switching Member Lists

O
operations on marked classes4.9 Saving a Tree
output file name2.2 Changing the Output File Name

P
parser for C++ sources1. Introduction
position stack6.2 The Position Stack
previous member list5.1 Switching Member Lists
private members5.6 Filters
protected members5.6 Filters
public members5.6 Filters
pure virtual function attribute5.7 Displaying Member Attributes
pure virtual members5.6 Filters

R
redisplay of member buffers5.13 Forced Redisplay
regular expression display5.9 Display of Regular Expressions
regular expressions, recording2.4 Regular Expressions
remove filters5.6 Filters
replacing in multiple C++ files6.3 Searching and Replacing
response files2.1 Specifying Input Files
restart tags-operation6.3 Searching and Replacing
return to original position6.2 The Position Stack

S
save tree to a file4.9 Saving a Tree
search for class4.3 Finding a Class
searching members5.4 Searching Members
searching multiple C++ files6.3 Searching and Replacing
short display5.8 Long and Short Member Display
standard input, specifying input files2.1 Specifying Input Files
static5.1 Switching Member Lists
static member functions, list4.2 Displaying Members
static members5.1 Switching Member Lists
static variables, list4.2 Displaying Members
statistics for a tree4.9 Saving a Tree
structs2.3 Structs and Unions
subclass, display5.10 Displaying Another Class
superclass, display5.10 Displaying Another Class
superclasses, members5.3 Display of Inherited Members
switching buffers5.5 Switching to Tree Buffer
symbol completion6.6 Symbol Completion

T
tags6.1 Finding and Viewing Members
template attribute5.7 Displaying Member Attributes
toggle mark4.9 Saving a Tree
tree buffer1. Introduction
tree buffer mode4. Tree Buffers
tree buffer, switch to5.5 Switching to Tree Buffer
tree indentation4.7 Changing the Tree Indentation
tree statistics4.9 Saving a Tree
tree, save to a file4.9 Saving a Tree
types5.1 Switching Member Lists
types of class members5. Member Buffers
types, list4.2 Displaying Members

U
unions2.3 Structs and Unions
unmark all4.9 Saving a Tree

V
verbose operation2.5 Verbose Mode
viewing class member, in C++ source6.1 Finding and Viewing Members
viewing members, in member buffers5.2 Finding and Viewing Member Source
viewing, class4.1 Viewing and Finding Class Declarations
virtual attribute5.7 Displaying Member Attributes
virtual members5.6 Filters

Jump to:   *   -  
A   B   C   D   E   F   H   I   K   L   M   N   O   P   R   S   T   U   V  


[Top] [Contents] [Index] [ ? ]

Table of Contents


[Top] [Contents] [Index] [ ? ]

Short Table of Contents

1. Introduction
2. Processing Source Files
3. Starting to Browse
4. Tree Buffers
5. Member Buffers
6. Tags-like Functions
Concept Index

[Top] [Contents] [Index] [ ? ]

About this document

This document was generated by (Blade) GNU s/w Owner on November, 2 2001 using texi2html

The buttons in the navigation panels have the following meaning:

Button Name Go to From 1.2.3 go to
[ < ] Back previous section in reading order 1.2.2
[ > ] Forward next section in reading order 1.2.4
[ << ] FastBack previous or up-and-previous section 1.1
[ Up ] Up up section 1.2
[ >> ] FastForward next or up-and-next section 1.3
[Top] Top cover (top) of document  
[Contents] Contents table of contents  
[Index] Index concept index  
[ ? ] About this page  

where the Example assumes that the current position is at Subsubsection One-Two-Three of a document of the following structure:

This document was generated by (Blade) GNU s/w Owner on November, 2 2001 using texi2html