1 \input texinfo @c -*-texinfo-*-
3 @comment %**start of header
4 @setfilename ../info/ebrowse
5 @settitle A Class Browser for C++
8 @comment %**end of header
12 * Ebrowse:: A C++ class browser for Emacs.
15 This file documents Ebrowse, a C++ class browser for GNU Emacs.
17 Copyright @copyright{} 2000 Free Software Foundation, Inc.
19 Permission is granted to copy, distribute and/or modify this document
20 under the terms of the GNU Free Documentation License, Version 1.1 or
21 any later version published by the Free Software Foundation; with no
22 Invariant Sections, with the Front-Cover texts being ``A GNU
23 Manual'', and with the Back-Cover Texts as in (a) below. A copy of the
24 license is included in the section entitled ``GNU Free Documentation
25 License'' in the Emacs manual.
27 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
28 this GNU Manual, like GNU software. Copies published by the Free
29 Software Foundation raise funds for GNU development.''
31 This document is part of a collection distributed under the GNU Free
32 Documentation License. If you want to distribute this document
33 separately from the collection, you can do so by adding a copy of the
34 license to the document, as described in section 6 of the license.
39 @title Ebrowse User's Manual
41 @subtitle Ebrowse/Emacs 21
45 @author Gerd Moellmann
48 @vskip 0pt plus 1filll
50 Copyright @copyright{} 2000 Free Software Foundation, Inc.
53 Permission is granted to copy, distribute and/or modify this document
54 under the terms of the GNU Free Documentation License, Version 1.1 or
55 any later version published by the Free Software Foundation; with no
56 Invariant Sections, with the Front-Cover texts being ``A GNU
57 Manual'', and with the Back-Cover Texts as in (a) below. A copy of the
58 license is included in the section entitled ``GNU Free Documentation
59 License'' in the Emacs manual.
61 (a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
62 this GNU Manual, like GNU software. Copies published by the Free
63 Software Foundation raise funds for GNU development.''
65 This document is part of a collection distributed under the GNU Free
66 Documentation License. If you want to distribute this document
67 separately from the collection, you can do so by adding a copy of the
68 license to the document, as described in section 6 of the license.
73 @node Top, Overview, (dir), (dir)
76 You can browse C++ class hierarchies from within Emacs by using
81 * Overview:: What is it and now does it work?
82 * Generating browser files:: How to process C++ source files
83 * Loading a Tree:: How to start browsing
84 * Tree Buffers:: Traversing class hierarchies
85 * Member Buffers:: Looking at member information
86 * Tags-like Functions:: Finding members from source files
87 * Concept Index:: An entry for each concept defined
93 @node Overview, Generating browser files, Top, Top
96 When working in software projects using C++, I frequently missed
97 software support for two things:
101 When you get a new class library, or you have to work on source code you
102 haven't written yourself (or written sufficiently long ago), you need a
103 tool to let you navigate class hierarchies and investigate
104 features of the software. Without such a tool you often end up
105 @command{grep}ing through dozens or even hundreds of files.
108 Once you are productive, it would be nice to have a tool that knows your
109 sources and can help you while you are editing source code. Imagine to
110 be able to jump to the definition of an identifier while you are
111 editing, or something that can complete long identifier names because it
112 knows what identifiers are defined in your program@dots{}.
115 The design of Ebrowse reflects these two needs.
119 @cindex parser for C++ sources
120 A fast parser written in C is used to process C++ source files.
121 The parser generates a data base containing information about classes,
122 members, global functions, defines, types etc.@: found in the sources.
124 The second part of Ebrowse is a Lisp program. This program reads
125 the data base generated by the parser. It displays its contents in
126 various forms and allows you to perform operations on it, or do
127 something with the help of the knowledge contained in the data base.
129 @cindex major modes, of Ebrowse buffers
130 @dfn{Navigational} use of Ebrowse is centered around two
131 types of buffers which define their own major modes:
134 @dfn{Tree buffers} are used to view class hierarchies in tree form.
135 They allow you to quickly find classes, find or view class declarations,
136 perform operations like query replace on sets of your source files, and
137 finally tree buffers are used to produce the second buffer form---member
138 buffers. @xref{Tree Buffers}.
140 @cindex member buffer
141 Members are displayed in @dfn{member buffers}. Ebrowse
142 distinguishes between six different types of members; each type is
143 displayed as a member list of its own:
147 Instance member variables;
150 Instance member functions;
153 Static member variables;
156 Static member functions;
159 Friends/Defines. The list of defines is contained in the friends
160 list of the pseudo-class @samp{*Globals*};
163 Types (@code{enum}s, and @code{typedef}s defined with class
167 You can switch member buffers from one list to another, or to another
168 class. You can include inherited members in the display, you can set
169 filters that remove categories of members from the display, and most
170 importantly you can find or view member declarations and definitions
171 with a keystroke. @xref{Member Buffers}.
173 These two buffer types and the commands they provide support the
174 navigational use of the browser. The second form resembles Emacs' Tags
175 package for C and other procedural languages. Ebrowse's commands of
176 this type are not confined to special buffers; they are most often used
177 while you are editing your source code.
179 To list just a subset of what you can use the Tags part of Ebrowse for:
183 Jump to the definition or declaration of an identifier in your source
184 code, with an electric position stack that lets you easily navigate
188 Complete identifiers in your source with a completion list containing
189 identifiers from your source code only.
192 Perform search and query replace operations over some or all of your
196 Show all identifiers matching a regular expression---and jump to one of
203 @node Generating browser files, Loading a Tree, Overview, Top
204 @comment node-name, next, previous, up
205 @chapter Processing Source Files
207 @cindex @command{ebrowse}, the program
208 @cindex class data base creation
209 Before you can start browsing a class hierarchy, you must run the parser
210 @command{ebrowse} on your source files in order to generate a Lisp data
211 base describing your program.
213 @cindex command line for @command{ebrowse}
214 The operation of @command{ebrowse} can be tailored with command line
215 options. Under normal circumstances it suffices to let the parser use
216 its default settings. If you want to do that, call it with a command
224 or, if your shell doesn't allow all the file names to be specified on
228 ebrowse --files=@var{file}
232 where @var{file} contains the names of the files to be parsed, one
236 When invoked with option @samp{--help}, @command{ebrowse} prints a list of
237 available command line options.@refill
240 * Input files:: Specifying which files to parse
241 * Output file:: Changing the output file name
242 * Structs and unions:: Omitting @code{struct}s and @code{union}s
243 * Matching:: Setting regular expression lengths
244 * Verbosity:: Getting feedback for lengthy operations
250 @comment name, next, prev, up
251 @node Input files, Output file, Generating browser files, Generating browser files
252 @section Specifying Input Files
255 @cindex input files, for @command{ebrowse}
257 Each file name on the command line tells @command{ebrowse} to parse
260 @cindex response files
262 @item --files=@var{file}
263 This command line switch specifies that @var{file} contains a list of
264 file names to parse. Each line in @var{file} must contain one file
265 name. More than one option of this kind is allowed. You might, for
266 instance, want to use one file for header files, and another for source
269 @cindex standard input, specifying input files
271 When @command{ebrowse} finds no file names on the command line, and no
272 @samp{--file} option is specified, it reads file names from standard
273 input. This is sometimes convenient when @command{ebrowse} is used as part
276 @findex --search-path
277 @item --search-path=@var{paths}
278 This option lets you specify search paths for your input files.
279 @var{paths} is a list of directory names, separated from each other by a
280 either a colon or a semicolon, depending on the operating system.
284 @cindex friend functions
285 It is generally a good idea to specify input files so that header files
286 are parsed before source files. This facilitates the parser's work of
287 properly identifying friend functions of a class.
291 @comment name, next, prev, up
292 @node Output file, Structs and unions, Input files, Generating browser files
293 @section Changing the Output File Name
296 @cindex output file name
297 @findex --output-file
298 @cindex @file{BROWSE} file
299 @item --output-file=@var{file}
300 This option instructs @command{ebrowse} to generate a Lisp data base with
301 name @var{file}. By default, the data base is named @file{BROWSE}, and
302 is written in the directory in which @command{ebrowse} is invoked.
304 If you regularly use data base names different from the default, you
305 might want to add this to your init file:
308 (add-to-list 'auto-mode-alist '(@var{NAME} . ebrowse-tree-mode))
312 where @var{NAME} is the Lisp data base name you are using.
315 @cindex appending output to class data base
317 By default, each run of @command{ebrowse} erases the old contents of the
318 output file when writing to it. You can instruct @command{ebrowse} to
319 append its output to an existing file with this command line option.
325 @comment name, next, prev, up
326 @node Structs and unions, Matching, Output file, Generating browser files
327 @section Structs and Unions
332 @findex --no-structs-or-unions
333 @item --no-structs-or-unions
334 This switch suppresses all classes in the data base declared as
335 @code{struct} or @code{union} in the output.
337 This is mainly useful when you are converting an existing
338 C program to C++, and do not want to see the old C structs in a class
345 @comment name, next, prev, up
346 @node Matching, Verbosity, Structs and unions, Generating browser files
347 @section Regular Expressions
349 @cindex regular expressions, recording
350 The parser @command{ebrowse} normally writes regular expressions to its
351 output file that help the Lisp part of Ebrowse to find functions,
352 variables etc.@: in their source files.
354 You can instruct @command{ebrowse} to omit these regular expressions by
355 calling it with the command line switch @samp{--no-regexps}.
357 When you do this, the Lisp part of Ebrowse tries to guess, from member
358 or class names, suitable regular expressions to locate that class or
359 member in source files. This works fine in most cases, but the
360 automatic generation of regular expressions can be too weak if unusual
361 coding styles are used.
366 This option turns off regular expression recording.
368 @findex --min-regexp-length
369 @cindex minimum regexp length for recording
370 @item --min-regexp-length=@var{n}
371 The number @var{n} following this option specifies the minimum length of
372 the regular expressions recorded to match class and member declarations
373 and definitions. The default value is set at compilation time of
376 The smaller the minimum length, the higher the probability that
377 Ebrowse will find a wrong match. The larger the value, the
378 larger the output file and therefore the memory consumption once the
379 file is read from Emacs.
381 @findex --max-regexp-length
382 @cindex maximum regexp length for recording
383 @item --max-regexp-length=@var{n}
384 The number following this option specifies the maximum length of the
385 regular expressions used to match class and member declarations and
386 definitions. The default value is set at compilation time of
389 The larger the maximum length, the higher the probability that the
390 browser will find a correct match, but the larger the value the larger
391 the output file and therefore the memory consumption once the data is
392 read. As a second effect, the larger the regular expression, the higher
393 the probability that it will no longer match after editing the file.
399 @node Verbosity, , Matching, Generating browser files
400 @comment node-name, next, previous, up
401 @section Verbose Mode
402 @cindex verbose operation
407 When this option is specified on the command line, @command{ebrowse} prints
408 a period for each file parsed, and it displays a @samp{+} for each
409 class written to the output file.
411 @findex --very-verbose
413 This option makes @command{ebrowse} print out the names of the files and
414 the names of the classes seen.
420 @node Loading a Tree, Tree Buffers, Generating browser files, Top
421 @comment node-name, next, previous, up
422 @chapter Starting to Browse
426 You start browsing a class hierarchy parsed by @command{ebrowse} by just
427 finding the @file{BROWSE} file with @kbd{C-x C-f}.
429 An example of a tree buffer display is shown below.
440 @cindex mouse highlight in tree buffers
441 When you run Emacs on a display which supports colors and the mouse, you
442 will notice that that certain areas in the tree buffer are highlighted
443 when you move the mouse over them. This highlight marks mouse-sensitive
444 regions in the buffer. Please notice the help strings in the echo area
445 when the mouse moves over a sensitive region.
448 A click with @kbd{mouse-3} on a mouse-sensitive region opens a context
449 menu. In addition to this, each buffer also has a buffer-specific menu
450 that is opened with a click with @kbd{mouse-3} somewhere in the buffer
451 where no highlight is displayed.
455 @comment ****************************************************************
457 @comment *** TREE BUFFERS
459 @comment ****************************************************************
461 @node Tree Buffers, Member Buffers, Loading a Tree, Top
462 @comment node-name, next, previous, up
463 @chapter Tree Buffers
464 @cindex tree buffer mode
467 Class trees are displayed in @dfn{tree buffers} which install their own
468 major mode. Most Emacs keys work in tree buffers in the usual way,
469 e.g.@: you can move around in the buffer with the usual @kbd{C-f},
470 @kbd{C-v} etc., or you can search with @kbd{C-s}.
472 Tree-specific commands are bound to simple keystrokes, similar to
473 @code{Gnus}. You can take a look at the key bindings by entering
474 @kbd{?} which calls @code{M-x describe-mode} in both tree and member
478 * Source Display:: Viewing and finding a class declaration
479 * Member Display:: Showing members, switching to member buffers
480 * Go to Class:: Finding a class
481 * Quitting:: Discarding and burying the tree buffer
482 * File Name Display:: Showing file names in the tree
483 * Expanding and Collapsing:: Expanding and collapsing branches
484 * Tree Indentation:: Changing the tree indentation
485 * Killing Classes:: Removing class from the tree
486 * Saving a Tree:: Saving a modified tree
487 * Statistics:: Displaying class tree statistics
488 * Marking Classes:: Marking and unmarking classes
493 @node Source Display, Member Display, Tree Buffers, Tree Buffers
494 @comment node-name, next, previous, up
495 @section Viewing and Finding Class Declarations
496 @cindex viewing, class
497 @cindex finding a class
498 @cindex class declaration
500 You can view or find a class declaration when the cursor is on a class
505 This command views the class declaration if the database
506 contains informations about it. If you don't parse the entire source
507 you are working on, some classes will only be known to exist but the
508 location of their declarations and definitions will not be known.@refill
511 Works like @kbd{SPC}, except that it finds the class
512 declaration rather than viewing it, so that it is ready for
516 The same functionality is available from the menu opened with
517 @kbd{mouse-3} on the class name.
522 @node Member Display, Go to Class, Source Display, Tree Buffers
523 @comment node-name, next, previous, up
524 @section Displaying Members
525 @cindex @samp{*Members*} buffer
526 @cindex @samp{*Globals*}
527 @cindex freezing a member buffer
528 @cindex member lists, in tree buffers
530 Ebrowse distinguishes six different kinds of members, each of
531 which is displayed as a separate @dfn{member list}: instance variables,
532 instance functions, static variables, static functions, friend
533 functions, and types.
535 Each of these lists can be displayed in a member buffer with a command
536 starting with @kbd{L} when the cursor is on a class name. By default,
537 there is only one member buffer named @dfn{*Members*} that is reused
538 each time you display a member list---this has proven to be more
539 practical than to clutter up the buffer list with dozens of member
542 If you want to display more than one member list at a time you can
543 @dfn{freeze} its member buffer. Freezing a member buffer prevents it
544 from being overwritten the next time you display a member list. You can
545 toggle this buffer status at any time.
547 Every member list display command in the tree buffer can be used with a
548 prefix argument (@kbd{C-u}). Without a prefix argument, the command will
549 pop to a member buffer displaying the member list. With prefix argument,
550 the member buffer will additionally be @dfn{frozen}.
553 @cindex instance member variables, list
555 This command displays the list of instance member variables.
557 @cindex static variables, list
559 Display the list of static variables.
561 @cindex friend functions, list
563 Display the list of friend functions. This list is used for defines if
564 you are viewing the class @samp{*Globals*} which is a place holder for
567 @cindex member functions, list
569 Display the list of member functions.
571 @cindex static member functions, list
573 Display the list of static member functions.
577 Display a list of types.
580 These lists are also available from the class' context menu invoked with
581 @kbd{mouse-3} on the class name.
586 @node Go to Class, Quitting, Member Display, Tree Buffers
587 @comment node-name, next, previous, up
588 @section Finding a Class
590 @cindex expanding branches
591 @cindex class location
594 @cindex search for class
596 This command reads a class name from the minibuffer with completion and
597 positions the cursor on the class in the class tree.
599 If the branch of the class tree containing the class searched for is
600 currently collapsed, the class itself and all its base classes are
601 recursively made visible. (See also @ref{Expanding and
604 This function is also available from the tree buffer's context menu.
607 Repeat the last search done with @kbd{/}. Each tree buffer has its own
608 local copy of the regular expression last searched in it.
614 @node Quitting, File Name Display, Go to Class, Tree Buffers
615 @comment node-name, next, previous, up
616 @section Burying a Tree Buffer
617 @cindex burying tree buffer
621 Is a synonym for @kbd{M-x bury-buffer}.
627 @node File Name Display, Expanding and Collapsing, Quitting, Tree Buffers
628 @comment node-name, next, previous, up
629 @section Displaying File Names
632 @cindex file names in tree buffers
634 This command toggles the display of file names in a tree buffer. If
635 file name display is switched on, the names of the files containing the
636 class declaration are shown to the right of the class names. If the
637 file is not known, the string @samp{unknown} is displayed.
639 This command is also provided in the tree buffer's context menu.
642 Display file names for the current line, or for the number of lines
643 given by a prefix argument.
646 Here is an example of a tree buffer with file names displayed.
649 | Collection (unknown)
650 | IndexedCollection (indexedcltn.h)
652 | FixedArray (fixedarray.h)
654 | Dictionary (dict.h)
660 @node Expanding and Collapsing, Tree Indentation, File Name Display, Tree Buffers
661 @comment node-name, next, previous, up
662 @section Expanding and Collapsing a Tree
663 @cindex expand tree branch
664 @cindex collapse tree branch
665 @cindex branches of class tree
666 @cindex class tree, collapse or expand
668 You can expand and collapse parts of a tree to reduce the complexity of
669 large class hierarchies. Expanding or collapsing branches of a tree has
670 no impact on the functionality of other commands, like @kbd{/}. (See
671 also @ref{Go to Class}.)@refill
673 Collapsed branches are indicated with an ellipsis following the class
674 name like in the example below.
678 | IndexedCollection...
685 This command collapses the branch of the tree starting at the class the
689 This command expands the branch of the tree starting at the class the
690 cursor is on. Both commands for collapsing and expanding branches are
691 also available from the class' object menu.
694 This command expands all collapsed branches in the tree.
700 @node Tree Indentation, Killing Classes, Expanding and Collapsing, Tree Buffers
701 @comment node-name, next, previous, up
702 @section Changing the Tree Indentation
703 @cindex tree indentation
704 @cindex indentation of the tree
708 This command reads a new indentation width from the minibuffer and
709 redisplays the tree buffer with the new indentation It is also
710 available from the tree buffer's context menu.
716 @node Killing Classes, Saving a Tree, Tree Indentation, Tree Buffers
717 @comment node-name, next, previous, up
718 @section Removing Classes from the Tree
719 @cindex killing classes
720 @cindex class, remove from tree
724 This command removes the class the cursor is on and all its derived
725 classes from the tree. The user is asked for confirmation before the
726 deletion is actually performed.
732 @node Saving a Tree, Statistics, Killing Classes, Tree Buffers
733 @comment node-name, next, previous, up
734 @comment node-name, next, previous, up
735 @section Saving a Tree
736 @cindex save tree to a file
737 @cindex tree, save to a file
738 @cindex class tree, save to a file
742 This command writes a class tree to the file from which it was read.
743 This is useful after classes have been deleted from a tree.
746 Writes the tree to a file whose name is read from the minibuffer.
752 @node Statistics, Marking Classes, Saving a Tree, Tree Buffers
753 @comment node-name, next, previous, up
754 @cindex statistics for a tree
755 @cindex tree statistics
756 @cindex class statistics
760 Display statistics for the tree, like number of classes in it, number of
761 member functions, etc. This command can also be found in the buffer's
768 @node Marking Classes, , Statistics, Tree Buffers
769 @comment node-name, next, previous, up
770 @cindex marking classes
771 @cindex operations on marked classes
773 Classes can be marked for operations similar to the standard Emacs
774 commands @kbd{M-x tags-search} and @kbd{M-x tags-query-replace} (see
775 also @xref{Tags-like Functions}.)@refill
780 Toggle the mark of the line point is in or for as many lines as given by
781 a prefix command. This command can also be found in the class' context
786 Unmark all classes. With prefix argument @kbd{C-u}, mark all classes in
787 the tree. Since this command operates on the whole buffer, it can also be
788 found in the buffer's object menu.
791 Marked classes are displayed with an @code{>} in column one of the tree
792 display, like in the following example
796 | IndexedCollection...
804 @c ****************************************************************
806 @c *** MEMBER BUFFERS
808 @c ****************************************************************
810 @node Member Buffers, Tags-like Functions, Tree Buffers, Top
811 @comment node-name, next, previous, up
812 @chapter Member Buffers
814 @cindex member buffer mode
816 @cindex class members, types
817 @cindex types of class members
818 @dfn{Member buffers} are used to operate on lists of members of a class.
819 Ebrowse distinguishes six kinds of lists:
823 Instance variables (normal member variables);
825 Instance functions (normal member functions);
829 Static member functions;
833 Types (@code{enum}s and @code{typedef}s defined with class scope.
834 Nested classes will be shown in the class tree like normal classes.
837 Like tree buffers, member buffers install their own major mode. Also
838 like in tree buffers, menus are provided for certain areas in the
839 buffer: members, classes, and the buffer itself.
842 * Switching Member Lists:: Choosing which members to display
843 * Finding/Viewing:: Modifying source code
844 * Inherited Members:: Display of Inherited Members
845 * Searching Members:: Finding members in member buffer
846 * Switching to Tree:: Going back to the tree buffer
847 * Filters:: Selective member display
848 * Attributes:: Display of @code{virtual} etc.
849 * Long and Short Display:: Comprehensive and verbose display
850 * Regexp Display:: Showing matching regular expressions
851 * Switching Classes:: Displaying another class
852 * Killing/Burying:: Getting rid of the member buffer
853 * Column Width:: Display style
854 * Redisplay:: Redrawing the member list
855 * Getting Help:: How to get help for key bindings
861 @node Switching Member Lists, Finding/Viewing, Member Buffers, Member Buffers
862 @comment node-name, next, previous, up
863 @section Switching Member Lists
864 @cindex member lists, in member buffers
865 @cindex static members
871 @cindex next member list
873 This command switches the member buffer display to the next member list.
875 @cindex previous member list
877 This command switches the member buffer display to the previous member
881 Switch to the list of member functions.
885 Switch to the list of static member functions.
888 Switch to the list of member variables.
891 Switch to the list of static member variables.
894 Switch to the list of friends or defines.
897 Switch to the list of types.
900 Both commands cycle through the member list.
902 Most of the commands are also available from the member buffer's
908 @node Finding/Viewing, Inherited Members, Switching Member Lists, Member Buffers
909 @comment node-name, next, previous, up
910 @section Finding and Viewing Member Source
911 @cindex finding members, in member buffers
912 @cindex viewing members, in member buffers
913 @cindex member definitions, in member buffers
914 @cindex member declarations, in member buffers
915 @cindex definition of a member, in member buffers
916 @cindex declaration of a member, in member buffers
920 This command finds the definition of the member the cursor is on.
921 Finding involves roughly the same as the standard Emacs tags facility
922 does---loading the file and searching for a regular expression matching
926 This command finds the declaration of the member the cursor is on.
929 This is the same command as @kbd{RET}, but views the member definition
930 instead of finding the member's source file.
933 This is the same command as @kbd{f}, but views the member's declaration
934 instead of finding the file the declaration is in.
937 You can install a hook function to perform actions after a member or
938 class declaration or definition has been found, or when it is not found.
940 All the commands described above can also be found in the context menu
941 displayed when clicking @kbd{mouse-2} on a member name.
946 @node Inherited Members, Searching Members, Finding/Viewing, Member Buffers
947 @comment node-name, next, previous, up
948 @section Display of Inherited Members
949 @cindex superclasses, members
950 @cindex base classes, members
951 @cindex inherited members
955 This command toggles the display of inherited members in the member
956 buffer. This is also in the buffer's context menu.
962 @node Searching Members, Switching to Tree, Inherited Members, Member Buffers
963 @comment node-name, next, previous, up
964 @section Searching Members
965 @cindex searching members
969 Position the cursor on a member whose name is read from the minibuffer;
970 only members shown in the current member buffer appear in the completion
974 Like the above command, but all members for the current class appear in
975 the completion list. If necessary, the current member list is switched
976 to the one containing the member.
978 With a prefix argument (@kbd{C-u}), all members in the class tree,
979 i.e.@: all members the browser knows about appear in the completion
980 list. The member display will be switched to the class and member list
981 containing the member.
984 Repeat the last member search.
987 Look into the buffer's context menu for a convenient way to do this with
992 @node Switching to Tree, Filters, Searching Members, Member Buffers
993 @comment node-name, next, previous, up
994 @section Switching to Tree Buffer
995 @cindex tree buffer, switch to
996 @cindex buffer switching
997 @cindex switching buffers
1001 Pop up the tree buffer to which the member buffer belongs.
1004 Do the same as @kbd{TAB} but also position the cursor on the class
1005 displayed in the member buffer.
1011 @node Filters, Attributes, Switching to Tree, Member Buffers
1012 @comment node-name, next, previous, up
1017 @cindex @code{public} members
1019 This command toggles the display of @code{public} members. The
1020 @samp{a} stands for `access'.
1022 @cindex @code{protected} members
1024 This command toggles the display of @code{protected} members.
1026 @cindex @code{private} members
1028 This command toggles the display of @code{private} members.
1030 @cindex @code{virtual} members
1032 This command toggles the display of @code{virtual} members.
1034 @cindex @code{inline} members
1036 This command toggles the display of @code{inline} members.
1038 @cindex @code{const} members
1040 This command toggles the display of @code{const} members.
1042 @cindex pure virtual members
1044 This command toggles the display of pure virtual members.
1046 @cindex remove filters
1048 This command removes all filters.
1051 These commands are also found in the buffer's context menu.
1056 @node Attributes, Long and Short Display, Filters, Member Buffers
1057 @comment node-name, next, previous, up
1058 @section Displaying Member Attributes
1060 @cindex member attribute display
1064 Toggle the display of member attributes (default is on).
1066 The nine member attributes Ebrowse knows about are are displayed
1067 as a list a single-characters flags enclosed in angle brackets in front
1068 the of the member's name. A @samp{-} at a given position means that
1069 the attribute is false. The list of attributes from left to right is
1072 @cindex @code{template} attribute
1074 The member is a template.
1076 @cindex @code{extern "C"} attribute
1078 The member is declared @code{extern "C"}.
1080 @cindex @code{virtual} attribute
1082 Means the member is declared @code{virtual}.
1084 @cindex @code{inline}
1086 The member is declared @code{inline}.
1088 @cindex @code{const} attribute
1090 The member is @code{const}.
1092 @cindex pure virtual function attribute
1094 The member is a pure virtual function.
1096 @cindex @code{mutable} attribute
1098 The member is declared @code{mutable}.
1100 @cindex @code{explicit} attribute
1102 The member is declared @code{explicit}.
1105 The member is a function with a throw list.
1109 This command is also in the buffer's context menu.
1113 @node Long and Short Display, Regexp Display, Attributes, Member Buffers
1114 @comment node-name, next, previous, up
1115 @section Long and Short Member Display
1116 @cindex display form
1117 @cindex long display
1118 @cindex short display
1122 This command toggles the member buffer between short and long display
1123 form. The short display form displays member names, only:
1126 | isEmpty contains hasMember create
1127 | storeSize hash isEqual restoreGuts
1131 The long display shows one member per line with member name and regular
1132 expressions matching the member (if known):
1135 | isEmpty Bool isEmpty () const...
1136 | hash unsigned hash () const...
1137 | isEqual int isEqual (...
1140 Regular expressions will only be displayed when the Lisp database has
1141 not been produced with the @command{ebrowse} option @samp{--no-regexps}.
1142 @xref{Matching, --no-regexps, Regular Expressions}.
1148 @node Regexp Display, Switching Classes, Long and Short Display, Member Buffers
1149 @comment node-name, next, previous, up
1150 @section Display of Regular Expressions
1151 @cindex regular expression display
1155 This command toggles the long display form from displaying the regular
1156 expressions matching the member declarations to those expressions
1157 matching member definitions.
1160 Regular expressions will only be displayed when the Lisp database has
1161 not been produced with the @command{ebrowse} option @samp{--no-regexps},
1162 see @ref{Matching, --no-regexps, Regular Expressions}.
1167 @node Switching Classes, Killing/Burying, Regexp Display, Member Buffers
1168 @comment node-name, next, previous, up
1169 @section Displaying Another Class
1170 @cindex base class, display
1171 @cindex derived class, display
1172 @cindex superclass, display
1173 @cindex subclass, display
1174 @cindex class display
1178 This command lets you switch the member buffer to another class. It
1179 reads the name of the new class from the minibuffer with completion.
1182 This is the same command as @kbd{C c} but restricts the classes shown in
1183 the completion list to immediate base classes, only. If only one base
1184 class exists, this one is immediately shown in the minibuffer.
1187 Same as @kbd{C b}, but for derived classes.
1190 Switch to the previous class in the class hierarchy on the same level as
1191 the class currently displayed.
1194 Switch to the next sibling of the class in the class tree.
1200 @node Killing/Burying, Column Width, Switching Classes, Member Buffers
1201 @comment node-name, next, previous, up
1202 @section Burying a Member Buffer
1203 @cindex burying member buffers
1207 This command is a synonym for @kbd{M-x bury-buffer}.
1213 @node Column Width, Redisplay, Killing/Burying, Member Buffers
1214 @comment node-name, next, previous, up
1215 @section Setting the Column Width
1216 @cindex column width
1217 @cindex member indentation
1218 @cindex indentation, member
1222 This command sets the column width depending on the display form used
1223 (long or short display).
1229 @node Redisplay, Getting Help, Column Width, Member Buffers
1230 @comment node-name, next, previous, up
1231 @section Forced Redisplay
1232 @cindex redisplay of member buffers
1236 This command forces a redisplay of the member buffer. If the width
1237 of the window displaying the member buffer is changed this command
1238 redraws the member list with the appropriate column widths and number of
1245 @node Getting Help, , Redisplay, Member Buffers
1246 @comment node-name, next, previous, up
1251 This key is bound to @code{describe-mode}.
1257 @comment **************************************************************
1258 @comment *** TAGS LIKE FUNCTIONS
1259 @comment **************************************************************
1261 @node Tags-like Functions, Concept Index, Member Buffers, Top
1262 @comment node-name, next, previous, up
1263 @chapter Tags-like Functions
1265 Ebrowse provides tags functions similar to those of the standard
1266 Emacs Tags facility, but better suited to the needs of C++ programmers.
1269 * Finding and Viewing:: Going to a member declaration/definition
1270 * Position Stack:: Moving to previous locations
1271 * Search & Replace:: Searching and replacing over class tree files
1272 * Members in Files:: Listing all members in a given file
1273 * Apropos:: Listing members matching a regular expression
1274 * Symbol Completion:: Completing names while editing
1275 * Member Buffer Display:: Quickly display a member buffer for some
1281 @node Finding and Viewing, Position Stack, Tags-like Functions, Tags-like Functions
1282 @comment node-name, next, previous, up
1283 @section Finding and Viewing Members
1284 @cindex finding class member, in C++ source
1285 @cindex viewing class member, in C++ source
1287 @cindex member definition, finding, in C++ source
1288 @cindex member declaration, finding, in C++ source
1290 The functions in this section are similar to those described in
1291 @ref{Source Display}, and also in @ref{Finding/Viewing}, except that
1292 they work in a C++ source buffer, not in member and tree buffers created
1297 Find the definition of the member around point. If you invoke this
1298 function with a prefix argument, the declaration is searched.
1300 If more than one class contains a member with the given name you can
1301 select the class with completion. If there is a scope declaration in
1302 front of the member name, this class name is used as initial input for
1306 Find the declaration of the member around point.
1309 View the definition of the member around point.
1312 View the declaration of the member around point.
1315 Find a member's definition in another window.
1318 Find a member's declaration in another window.
1321 View a member's definition in another window.
1324 View a member's declaration in another window.
1327 Find a member's definition in another frame.
1330 Find a member's declaration in another frame.
1333 View a member's definition in another frame.
1336 View a member's declaration in another frame.
1341 @node Position Stack, Search & Replace, Finding and Viewing, Tags-like Functions
1342 @comment node-name, next, previous, up
1343 @section The Position Stack
1344 @cindex position stack
1346 When jumping to a member declaration or definition with one of
1347 Ebrowse's commands, the position from where you performed the
1348 jump and the position where you jumped to are recorded in a
1349 @dfn{position stack}. There are several ways in which you can quickly
1350 move to positions in the stack:@refill
1353 @cindex return to original position
1355 This command sets point to the previous position in the position stack.
1356 Directly after you performed a jump, this will put you back to the
1357 position where you came from.
1359 The stack is not popped, i.e.@: you can always switch back and forth
1360 between positions in the stack. To avoid letting the stack grow to
1361 infinite size there is a maximum number of positions defined. When this
1362 number is reached, older positions are discarded when new positions are
1363 pushed on the stack.
1366 This command moves forward in the position stack, setting point to
1367 the next position stored in the position stack.
1370 Displays an electric buffer showing all positions saved in the stack.
1371 You can select a position by pressing @kbd{SPC} in a line. You can
1372 view a position with @kbd{v}.
1378 @node Search & Replace, Members in Files, Position Stack, Tags-like Functions
1379 @comment node-name, next, previous, up
1380 @section Searching and Replacing
1381 @cindex searching multiple C++ files
1382 @cindex replacing in multiple C++ files
1383 @cindex restart tags-operation
1385 Ebrowse allows you to perform operations on all or a subset of the files
1386 mentioned in a class tree. When you invoke one of the following
1387 functions and more than one class tree is loaded, you must choose a
1388 class tree to use from an electric tree menu. If the selected tree
1389 contains marked classes, the following commands operate on the files
1390 mentioned in the marked classes only. Otherwise all files in the class
1395 This function performs a regular expression search in the chosen set of
1399 This command performs a search for calls of a given member which is
1400 selected in the usual way with completion.
1403 Perform a query replace over the set of files.
1406 All three operations above stop when finding a match. You can restart
1407 the operation with this command.
1410 This restarts the last tags operation with the next file in the list.
1416 @node Members in Files, Apropos, Search & Replace, Tags-like Functions
1417 @comment node-name, next, previous, up
1418 @section Members in Files
1420 @cindex members in file, listing
1421 @cindex list class members in a file
1422 @cindex file, members
1424 The command @kbd{C-c b l}, lists all members in a given file. The file
1425 name is read from the minibuffer with completion.
1430 @node Apropos, Symbol Completion, Members in Files, Tags-like Functions
1431 @comment node-name, next, previous, up
1432 @section Member Apropos
1433 @cindex apropos on class members
1434 @cindex members, matching regexp
1436 The command @kbd{C-c b a} can be used to display all members matching a
1437 given regular expression. This command can be very useful if you
1438 remember only part of a member name, and not its beginning.
1440 A special buffer is popped up containing all identifiers matching the
1441 regular expression, and what kind of symbol it is (e.g.@: a member
1442 function, or a type). You can then switch to this buffer, and use the
1443 command @kbd{C-c b f}, for example, to jump to a specific member.
1448 @node Symbol Completion, Member Buffer Display, Apropos, Tags-like Functions
1449 @comment node-name, next, previous, up
1450 @section Symbol Completion
1452 @cindex symbol completion
1454 The command @kbd{C-c b TAB} completes the symbol in front of point.
1459 @node Member Buffer Display, , Symbol Completion, Tags-like Functions
1460 @section Quick Member Display
1461 @cindex member buffer, for member at point
1463 You can quickly display a member buffer containing the member the cursor
1464 in on with the command @kbd{C-c b m}.
1467 @node Concept Index, , Tags-like Functions, Top
1468 @unnumbered Concept Index