declare smobs in alloc.c
[bpt/emacs.git] / doc / misc / sem-user.texi
CommitLineData
a1d25d02 1@c This is part of the Semantic manual.
ba318903 2@c Copyright (C) 1999-2005, 2007, 2009-2014 Free Software Foundation,
ab422c4d 3@c Inc.
a1d25d02 4@c See file semantic.texi for copying conditions.
3149927d
CY
5
6You can begin using @semantic{} by enabling Semantic mode, a global
8e687433
CY
7minor mode: type @kbd{M-x semantic-mode}, or open the @samp{Tools}
8menu and click on the menu item named @samp{Source Code Parsers
9(Semantic)}. @xref{Semantic mode}.
3149927d
CY
10
11When Semantic mode is turned on, Emacs automatically parses each file
8e687433
CY
12you visit. You can then use @semantic{} user commands in those
13buffers (@pxref{Semantic mode user commands}). You can also choose to
14enable a number of ``helper'' minor modes for saving tags, displaying
15tag information, and so forth.
3149927d
CY
16
17To enable Semantic mode each time you start Emacs, add the line
18@code{(semantic-mode 1)} to your initialization file. @xref{Init
19File,,,emacs,Emacs manual}.
20
21@menu
8e687433
CY
22* Semantic mode:: Global minor mode for @semantic{}.
23* SemanticDB:: Caching parsed buffers between sessions.
24* Idle Scheduler:: @semantic{} actions that occur when idle.
25* Analyzer:: Semantic tools for analyzing code.
26* Speedbar:: Using @semantic{} with the Speedbar.
27* SymRef:: Interface to symbol reference tools.
775b55af 28* MRU Bookmarks:: Managing tag "bookmarks".
8e687433
CY
29* Sticky Func Mode:: Showing declarations in the header line.
30* Highlight Func Mode:: Highlight the current function declaration.
31* Tag Decoration Mode:: Minor mode to decorate tags.
3149927d
CY
32@end menu
33
34@node Semantic mode
35@section Semantic mode
36@cindex Semantic mode
37
38Semantic mode is a global minor mode for @semantic{} as a whole. When
39enabled, each file you visit is automatically parsed, provided its
40major mode is specified in the variable
8e687433
CY
41@code{semantic-new-buffer-setup-functions} (the default value of this
42variable sets up parsing for all the parsers included with Emacs, but
43you may add to it if you install additional parsers).
3149927d
CY
44
45In each parser-enabled buffer, a number of @semantic{} commands are
46available for navigating, querying, and editing source code.
47@xref{Semantic mode user commands}. Enabling Semantic mode also
48installs a @samp{Development} menu on the menu-bar, with many of these
49commands.
50
be479117 51In addition, enabling Semantic mode turns on certain auxiliary global
8e687433
CY
52minor modes. The variable @code{semantic-default-submodes} determines
53which auxiliary modes are enabled; the defaults are SemanticDB mode
54(@pxref{SemanticDB}) and Global Semantic Idle Scheduler mode
55(@pxref{Idle Scheduler}). You can also toggle the auxiliary minor
1df7defd 56modes separately, using their mode functions (e.g., @kbd{M-x
8e687433
CY
57semanticdb-minor-mode}), or via the @samp{Development} menu. The
58various auxiliary minor modes are described in the following sections.
3149927d
CY
59
60@defvar semantic-new-buffer-setup-functions
61The value of this variable is an alist of functions to call for
62setting up @semantic{} parsing in the buffer. Each element has the
63form @code{(@var{mode} . @var{fn})}, where @var{mode} is a value of
64@code{major-mode} for the buffer and @var{fn} is the corresponding
65function for setting up the parser. @var{fn} is called, with no
66arguments, after the major mode is initialized (and after the mode
67hooks have been run).
68
69The default value enables @semantic{} for all supported major modes
70(i.e., C, C++, Scheme, Javascript, Java, HTML, SRecode, and Make), but
71you can remove modes from this list if you don't want to use
72@semantic{} with them.
73@end defvar
74
75@defvar semantic-default-submodes
76The value of this variable is a list of symbols, specifying the
be479117 77auxiliary minor modes to enable when enabling Semantic mode. The
3149927d
CY
78valid mode symbols are:
79
80@itemize
8e687433
CY
81@item @code{global-semantic-idle-scheduler-mode} (@pxref{Idle Scheduler}).
82@item @code{global-semanticdb-minor-mode} (@pxref{SemanticDB}).
83@item @code{global-semantic-idle-summary-mode} (@pxref{Idle Summary Mode}).
84@item @code{global-semantic-idle-completions-mode} (@pxref{Idle Completions Mode}).
85@item @code{global-semantic-highlight-func-mode} (@pxref{Highlight Func Mode}).
86@item @code{global-semantic-decoration-mode} (@pxref{Tag Decoration Mode}).
87@item @code{global-semantic-stickyfunc-mode} (@pxref{Sticky Func Mode}).
88@item @code{global-semantic-mru-bookmark-mode} (@pxref{MRU Bookmarks}).
3149927d
CY
89@end itemize
90@end defvar
91
92@menu
93* Semantic mode user commands::
94@end menu
95
96@node Semantic mode user commands
97@subsection Semantic mode user commands
98
99Semantic mode provides a number of commands for navigating, querying,
100and editing source code in a language-aware manner. These commands
101generally act on @dfn{tags}, which are the source-code units deemed
1df7defd 102``important'' by the present programming language (e.g., functions in
3149927d
CY
103the C programming language).
104
105These commands may be used in any buffer that has been parsed by
106@semantic{}. Several of them prompt for a tag name using the
107minibuffer; here, the @kbd{TAB} key can be used to complete tag names.
108Others act on the @dfn{current tag}, meaning the tag at (or around)
109point.
110
111@table @kbd
fd1cefda 112@item C-c , j
3149927d
CY
113Prompt for a tag defined in the current file, and move point to it
114(@code{semantic-complete-jump-local}).
115
fd1cefda 116@item C-c , J
3149927d
CY
117Prompt for a tag defined in any file that Emacs has parsed, and move
118point to it (@code{semantic-complete-jump}).
119
fd1cefda 120@item C-c , l
3149927d
CY
121Display a list of the possible completions of the current tag
122(@code{semantic-analyze-possible-completions}).
123
fd1cefda 124@item C-c , g
3149927d 125Prompt for a tag, and display a list of tags that call it
8e687433
CY
126(@code{semantic-symref-symbol}). This relies on the presence of an
127external symbol reference tool. @xref{SymRef}.
3149927d 128
fd1cefda 129@item C-c , G
3149927d 130Display a list of tags that call the current tag
8e687433
CY
131(@code{semantic-symref}). This relies on the presence of an external
132symbol reference tool. @xref{SymRef}.
3149927d 133
fd1cefda 134@item C-c , p
3149927d
CY
135Move point to the previous tag (@code{senator-previous-tag}).
136
fd1cefda 137@item C-c , n
3149927d
CY
138Move point to the next tag (@code{senator-next-tag}).
139
fd1cefda 140@item C-c , u
3149927d
CY
141Move point ``up'' one reference (@code{senator-go-to-up-reference}).
142The meaning of ``up'' is language-dependent; in C++, for instance,
143this means moving to the parent of the current tag.
144
fd1cefda
CY
145@item C-c, @key{SPC}
146Display a list of possible completions for the symbol at point
147(@code{semantic-complete-analyze-inline}). This also activates a
148special set of keybindings for choosing a completion: @key{RET}
149accepts the current completion, @kbd{M-n} and @kbd{M-p} cycle through
150possible completions, @key{TAB} completes as far as possible and then
151cycles, and @kbd{C-g} or any other key aborts the completion.
152@xref{Smart Completion}.
3149927d 153
fd1cefda 154@item C-c , C-w
3149927d
CY
155Kill the current tag (@code{senator-kill-tag}). This removes the text
156for that tag, placing it in the kill ring. You can retrieve the text
157with @kbd{C-y}. This also places the tag in the @dfn{tag ring}, so
158that you can yank it with @kbd{\C-c,\C-y}, below.
159
fd1cefda 160@item C-c , M-w
3149927d
CY
161Copy the current tag into the kill ring as well as the tag ring
162(@code{senator-copy-tag}).
163
fd1cefda 164@item C-c , C-y
3149927d
CY
165Yank a tag from the tag ring (@code{senator-yank-tag}).
166
fd1cefda 167@item C-c , r
3149927d
CY
168Copy the current tag into a register
169(@code{senator-copy-tag-to-register}). With an optional argument,
170kill it as well. This allows you to insert or jump to that tag with
171the usual register commands. @xref{Registers,,,emacs,Emacs manual}.
172
9fcfcdef 173@item C-c , @kbd{up}
3149927d
CY
174Transpose the current tag with the previous one
175(@code{senator-transpose-tags-up}).
176
fd1cefda 177@item C-c , @kbd{down}
3149927d
CY
178Transpose the current tag with the next one
179(@code{senator-transpose-tags-down}).
180@end table
181
182@node SemanticDB
183@section Semantic Database
184@cindex SemanticDB
185
186The Semantic Database (SemanticDB) caches the results of parsing
187source code files. This data can be saved to disk when you exit
188Emacs, and reloaded automatically when you subsequently revisit the
189same source code files. This saves time by eliminating the need to
190re-parse unmodified files.
191
192SemanticDB also provides an @acronym{API} that programs can use to
193acquire information about source code tags. This information can be
194accessed without loading the original the source files into memory.
195It can also be used to create alternate ``back-ends'' for storing tag
196information in alternative on-disk formats.
197
198By default, SemanticDB is enabled together with Semantic mode. To
199disable it, remove it from @code{semantic-default-submodes}
200(@pxref{Semantic mode}). You can also enable or disable SemanticDB
201with @kbd{M-x global-semanticdb-minor-mode}.
202
203@deffn Command global-semanticdb-minor-mode
204Toggle SemanticDB mode. When enabled, any source code parsed by
205@semantic{} is cached in a database.
206@end deffn
207
208SemanticDB offers a large number of customizable options, which are
209described in the following subsections.
210
211@menu
212* Semanticdb Tag Storage::
213* Semanticdb Search Configuration::
214* Changing Backends::
3149927d
CY
215* Create System Databases::
216@end menu
217
218@node Semanticdb Tag Storage
219@subsection Semanticdb Tag Storage
220
221Each time you exit Emacs, any data cached by SemanticDB is saved in
222the directory @file{.emacs.d/semanticdb/}, located in your home
223directory. Within this directory, the cache data is written into a
224set of files according to a SemanticDB-specific filename convention.
225If the SemanticDB directory does not exist, Emacs first asks if you
226want to create it.
227
228You can change the name of the SemanticDB directory by customizing the
229variable @code{semanticdb-default-save-directory}.
230
3149927d
CY
231@deffn Option semanticdb-default-save-directory
232The name of the directory where SemanticDB cache files are saved. If
233the value is @code{nil}, SemanticDB saves its data into a single file,
234in the current directory, whose filename is given by
235@code{semanticdb-default-file-name}.
236@end deffn
237
3149927d
CY
238@deffn Option semanticdb-default-file-name
239The name of a cache file in which to save SemanticDB, when
240@code{semanticdb-default-save-directory} is @code{nil}.
241@end deffn
242
243You can force SemanticDB to save the data from only certain files, or
244suppress saving altogether, by customizing
245@code{semanticdb-persistent-path}:
246
3149927d
CY
247@deffn Option semanticdb-persistent-path
248List of valid paths for SemanticDB to cache. Each element should be a
249directory name (a string); then the parse data from any file in that
250directory is saved.
251
252As a special exception, the value of this variable can be a list
253containing a single symbol: @code{never}, @code{always}, or
254@code{project}. The symbol @code{never} disables saving anywhere;
255@code{always} enables saving everywhere; and @code{project} enables
256saving directory based on the variable
257@code{semanticdb-project-predicate-functions}.
258
259The default value is @code{(always)}.
260@end deffn
261
3149927d
CY
262@defvar semanticdb-project-predicate-functions
263The value of this variable is a list of predicates for indicating that
264a directory belongs to a project. This list is used when the value of
265@code{semanticdb-persistent-path} is @code{(project)}. If the list is
266empty, all paths are considered valid.
267
268Project management packages, such as EDE (@pxref{Top,,,ede,EDE
269manual}), may add their own predicates with @dfn{add-hook} to this
270variable. This allows SemanticDB to save tag caches in directories
271controlled by them.
272@end defvar
273
d1069532 274@deffn Option semanticdb-save-database-functions
3149927d
CY
275Abnormal hook run after a database is saved. Each function is called
276with one argument, the object representing the database recently
277written.
278@end deffn
279
280@node Semanticdb Search Configuration
281@subsection Semanticdb Search Configuration
282
283 When another part of @semantic{} (or another Emacs package using
bd6f6833
CY
284@semantic{}) queries the SemanticDB library for a source code tag, the
285search need not be limited to tags defined within the current file.
286It can include tags defined elsewhere, such as @dfn{header files}
287referenced by the current file (e.g., via the C/C++ @code{#include}
288directive). While performing the search, the SemanticDB library may
289even automatically visit other files and parse them, if necessary.
290
291 The variable @code{semanticdb-find-default-throttle} determines how
292aggressively SemanticDB searches for source code tags. @xref{Search
293Throttle}.
294
295 The details of SemanticDB searches can vary from language to
296language. In C/C++ code, for example, SemanticDB distinguishes
297between @dfn{project header files} and @dfn{system header files},
298based on whether the @code{#include} directive uses the @code{""} or
299@code{<>} filename delimiter. SemanticDB looks for system header in
300the @dfn{system include path} (@pxref{Include paths}).
3149927d
CY
301
302@menu
8e687433
CY
303* Search Throttle:: Controlling how semanticdb searches occur.
304* Semanticdb Roots:: Specifying the root of different projects.
305* Include paths:: Specifying the directories to search.
3149927d
CY
306* Semanticdb search debugging commands::
307@end menu
308
bd6f6833
CY
309@node Search Throttle
310@subsubsection SemanticDB Search Throttle
311
312The SemanticDB @dfn{search throttle} determines how aggressive
313SemanticDB searches are. It is controlled by the variable
314@code{semanticdb-find-default-throttle}. The default value of this
315variable aims for maximum accuracy, at the expense of search time.
316
317Other parts of the @semantic{} package, particularly the different
318language parsers, may change the value of
319@code{semanticdb-find-default-throttle}. You can override its value,
320for a given major mode, like this:
321
322@example
323(setq-mode-local c-mode
9360256a
GM
324 semanticdb-find-default-throttle
325 '(project unloaded system recursive))
bd6f6833
CY
326@end example
327
bd6f6833
CY
328@defvar semanticdb-find-default-throttle
329The default throttle for @code{semanticdb-find} routines.
330The throttle controls how detailed the list of database
331tables is for a symbol lookup. The value is a list with
332the following keys:
333
334@table @code
335@item file
336The file the search is being performed from. This option is here for
337completeness only, and is assumed to always be on.
338@item local
339Tables from the same local directory are included. This includes
340files directly referenced by a file name which might be in a different
341directory.
342@item project
343Tables from the same local project are included If @code{project} is
344specified, then @code{local} is assumed.
345@item unloaded
346If a table is not in memory, load it. If it is not cached on disk
347either, get the source, parse it, and create the table.
348@item system
349Tables from system databases. These are specifically tables
350from system header files, or language equivalent.
351@item recursive
352For include based searches, includes tables referenced by included
353files.
354@item omniscience
355Included system databases which are omniscience, or somehow know
356everything. Omniscience databases are found in
357@code{semanticdb-project-system-databases}. The Emacs Lisp system
358@var{db} is an omniscience database.
359@end table
360@end defvar
361
3149927d
CY
362@node Semanticdb Roots
363@subsubsection SemanticDB project roots
364
bd6f6833
CY
365The @code{project} setting in the SemanticDB search throttle
366(@pxref{Search Throttle}) tells SemanticDB to search within the
367current single code project. For @semantic{}'s point of view,
368@dfn{projects} are determined by their top-level directories, or
369@dfn{project roots}; every subdirectory of a project root is
370considered part of the same project.
371
372If you use EDE for project management, it will set the project roots
373automatically. @xref{Top,,,ede,EDE manual}. You can also specify
374them yourself.
3149927d 375
3149927d
CY
376@deffn Option semanticdb-project-roots
377The value of this variable is a list of directories (strings) that are
bd6f6833 378project roots. All subdirectories of a project root are considered
0b381c7e 379part of the same project. This variable can be overridden by
bd6f6833 380@code{semanticdb-project-root-functions}.
3149927d
CY
381@end deffn
382
3149927d
CY
383@defvar semanticdb-project-root-functions
384The value of this variable is a list of functions to determine a given
385directory's project root. These functions are called, one at a time,
386with one argument (the directory name), and must return either
387@code{nil}, a string (the project root), or a list of strings
388(multiple project roots, for complex systems). The first
389non-@code{nil} return value, if any, is taken to be the project root,
390overriding @code{semanticdb-project-roots}.
391@end defvar
392
3149927d
CY
393@node Include paths
394@subsubsection Include Paths
395
396System include paths are standard locations to find source code tags,
397such as the @dfn{header files} in @file{/usr/include} and its
bd6f6833
CY
398subdirectories on Unix-like operating systems.
399
400You can add and remove system include paths using the following
401commands:
3149927d 402
3149927d 403@deffn Command semantic-add-system-include dir &optional mode
bd6f6833
CY
404Prompts for a directory, @var{dir}, and add it as a system include
405path for the current major mode. When called non-interactively, the
406major mode can be specified with the @var{mode} argument.
3149927d
CY
407@end deffn
408
3149927d 409@deffn Command semantic-remove-system-include dir &optional mode
bd6f6833
CY
410Prompt for a directory, @var{dir}, and remove it from the system
411include path for the current major mode (or @var{mode}).
3149927d
CY
412@end deffn
413
3149927d
CY
414@deffn Command semantic-customize-system-include-path &optional mode
415Customize the system include path for the current major mode (or
be479117 416@var{mode}).
3149927d
CY
417@end deffn
418
ba74a2c0 419@defvar semanticdb-implied-include-tags
3149927d
CY
420Include tags implied for all files of a given mode. You can set this
421variable with @code{defvar-mode-local} for a particular mode so that
422any symbols that exist for all files for that mode are included.
ba74a2c0 423@end defvar
3149927d
CY
424
425@c @xref{Search Optimization}, for more information on include paths.
426
3149927d
CY
427@node Semanticdb search debugging commands
428@subsubsection Semanticdb search debugging commands
429
bd6f6833
CY
430You can use @kbd{M-x semanticdb-dump-all-table-summary} to see the
431list of databases that will be searched from a given buffer. You can
432follow up with @kbd{M-x semanticdb-find-test-translate-path} to then
433make sure specific tables from the path are discovered correctly.
3149927d 434Alternately, you can get a list of include files @semantic{}
bd6f6833
CY
435encountered, but could not find on disk using @kbd{M-x
436semanticdb-find-adebug-lost-includes}.
3149927d
CY
437
438@deffn Command semanticdb-dump-all-table-summary
3149927d
CY
439Dump a list of all databases in Emacs memory.
440@end deffn
441
fd1cefda
CY
442@deffn Command semanticdb-find-test-translate-path &optional arg
443Call and output results of @dfn{semanticdb-find-translate-path}. In
444the displayed buffer, you can type @key{SPC} to expand items. With
445@var{arg} non-@code{nil}, specify a @var{brutish} translation.
3149927d
CY
446@end deffn
447
448@deffn Command semanticdb-find-adebug-lost-includes
3149927d
CY
449Translate the current path, then display the lost includes.
450Examines the variable @code{semanticdb-find-lost-includes}.
451@end deffn
452
453Lastly, you can test an explicit search term using this command:
454
455@deffn Command semantic-adebug-searchdb regex
3149927d
CY
456Search the semanticdb for @var{regex} for the current buffer.
457Display the results as a debug list.
458@end deffn
459
460@node Changing Backends
461@subsection Changing Backends
462
463If you want to use some other form of backend, you can use this
464variable to choose which back end class to use for your general tag
465storage.
466
467The default is to save databases in flat files. Alternatively, you
468could write a new database backend that stores tags into a database,
469or other storage system.
470
bd6f6833
CY
471@defvar semanticdb-new-database-class
472The default type of database created for new files. This can be
473changed on a per file basis, so that some directories are saved using
474one mechanism, and some directories via a different mechanism.
3149927d
CY
475@end defvar
476
3149927d
CY
477@node Create System Databases
478@subsection Create System Databases
479
480If your supported language stores the system libraries in readily
481available parsable source code, you can pre-generate database files
482for them once, which will be used over and over for tools such as
483summary-mode, or the analyzer.
484
485@deffn Command semanticdb-create-ebrowse-database dir
209fcf3d
XF
486Create an Ebrowse database for directory @var{dir}. The database file
487is stored in ~/.semanticdb, or whichever directory is specified by
488@code{semanticdb-default-system-save-directory}.
3149927d
CY
489@end deffn
490
3149927d
CY
491@node Idle Scheduler
492@section Idle Scheduler
493@cindex Idle Scheduler
494
8e687433 495The @dfn{Semantic Idle Scheduler} is a part of @semantic{} that
bd6f6833 496performs various operations while Emacs is waiting for user input
8e687433
CY
497(idle time). Its primary job is to perform buffer parsing during idle
498time. You can also use the Idle Scheduler to display function
499prototypes (@pxref{Idle Summary Mode}) or symbol completions
500(@pxref{Idle Completions Mode}).
3149927d 501
bd6f6833
CY
502@deffn Command global-semantic-idle-scheduler-mode &optional arg
503This command toggles Semantic Idle Scheduler mode in every
504@semantic{}-enabled buffer. This minor mode ensures that the buffer
505is automatically reparsed whenever Emacs is idle. If there is
506additional idle time, it runs jobs scheduled by other parts of
507@semantic{}, such as Semantic Idle Summary mode (@pxref{Idle Summary
508Mode}) and Semantic Idle Completions mode (@pxref{Idle Completions
509Mode}).
3149927d
CY
510@end deffn
511
bd6f6833
CY
512@deffn Option semantic-idle-scheduler-idle-time
513The value of this variable is the amount of idle time, in seconds,
514before the Semantic idle scheduler activates. The default is 1.
3149927d
CY
515@end deffn
516
bd6f6833
CY
517@deffn Option semantic-idle-scheduler-verbose-flag
518If this variable is non-@code{nil}, the idle scheduler prints verbose
519messages while running, which are useful for debugging.
3149927d
CY
520@end deffn
521
3149927d 522@menu
8e687433
CY
523* Reparsing Options:: Reparsing the current buffer in idle time.
524* Idle Working Options:: Options for extra work done at idle time.
525* Debugging Idle Time Issues:: How to produce good bug reports.
526* Idle Summary Mode:: Display prototype of symbol under cursor.
527* Idle Completions Mode:: Smart completion pop-up help.
3149927d
CY
528@end menu
529
530@node Reparsing Options
531@subsection Reparsing Options
532
bd6f6833
CY
533When activated during idle time, the Semantic idle scheduler
534automatically reparses all buffers that need it. Any arriving user
535input cancels this, returning Emacs to its normal editing behavior.
3149927d 536
bd6f6833
CY
537@deffn Option semantic-idle-scheduler-max-buffer-size
538Maximum size in bytes of buffers automatically reparsed. If this
539value is less than or equal to @var{0}, buffers are automatically
3149927d
CY
540reparsed regardless of their size.
541@end deffn
542
bd6f6833 543@deffn Option semantic-idle-scheduler-no-working-message
ee7683eb 544If non-@code{nil}, disable display of working messages while reparsing.
3149927d
CY
545@end deffn
546
bd6f6833
CY
547@deffn Option semantic-idle-scheduler-working-in-modeline-flag
548If non-@code{nil}, show working messages in the mode line. Normally,
549re-parsing shows messages in the minibuffer; this moves the parse
550message to the modeline instead.
3149927d
CY
551@end deffn
552
bd6f6833
CY
553@defvar semantic-before-idle-scheduler-reparse-hook
554This normal hook is run just before the idle scheduler begins
555reparsing. If any hook function throws an error, the value of this
556variable is reset to @code{nil}. This hook is not protected from
557lexical errors.
3149927d
CY
558@end defvar
559
bd6f6833
CY
560@defvar semantic-after-idle-scheduler-reparse-hook
561
562This normal hook is run after the idle scheduler finishes reparsing.
563If any hook throws an error, this variable is reset to @code{nil}.
3149927d
CY
564This hook is not protected from lexical errors.
565@end defvar
566
567@node Idle Working Options
568@subsection Idle Working Options
569
673286f5
CY
570In addition to reparsing buffers, the Semantic idle scheduler performs
571additional operations, including the following:
3149927d 572
673286f5
CY
573@itemize
574@item
575Creating the include path caches required for symbol lookup.
576@item
577Create data type caches.
578@item
579Saving SemanticDB caches to disk.
580@item
581Speculatively parsing the files in the same directory as the current
582buffer.
583@end itemize
584
585Because this extra work is quite time-consuming, it is only carried
586out after a longer idle delay. The following features control how the
587idle work is performed.
3149927d 588
673286f5
CY
589@deffn Option semantic-idle-scheduler-work-idle-time
590The value of this variable is the amount of idle time, in seconds,
591before commencing idle work. The default is 60.
3149927d
CY
592@end deffn
593
673286f5
CY
594@deffn Option semantic-idle-work-parse-neighboring-files-flag
595If the value of this variable is non-@code{nil}, the Semantic idle
596scheduler uses idle work time to parse files in the same directory as
597the current buffer. This improves the accuracy of tag searches and
598saves time when visiting those files later, at the cost of doing a lot
599of parsing. The default is @code{t}.
3149927d
CY
600@end deffn
601
602@node Debugging Idle Time Issues
603@subsection Debugging Idle Time Issues
604
8350f087 605If you see an error signaled during idle time, it could be an
673286f5
CY
606indication of a more serious issue elsewhere. It is not enough to
607enable @code{debug-on-error}, because the idle scheduler inhibits the
608debugger. Instead, use the following commands to debug the error:
3149927d
CY
609
610@deffn Command semantic-debug-idle-function
3149927d
CY
611Run the Semantic idle function with debugging turned on.
612@end deffn
613
614@deffn Command semantic-debug-idle-work-function
3149927d
CY
615Run the Semantic idle work function with debugging turned on.
616@end deffn
617
3149927d
CY
618@node Idle Summary Mode
619@subsection Idle Summary Mode
620
673286f5
CY
621Semantic Idle Summary mode is a minor mode that displays a short
622summary of the symbol at point, such as its function prototype, in the
623echo area. Its functionality is similar to what ElDoc mode provides
624for Emacs Lisp (@pxref{Lisp Doc,,,emacs,Emacs manual}).
3149927d 625
673286f5
CY
626@deffn global-semantic-idle-summary-mode &optional arg
627This command toggles Semantic Idle Summary mode in all
628@semantic{}-enabled buffers. You can also toggle it via the
629@samp{Show Tag Summaries} menu item in the @samp{Development} menu.
3149927d
CY
630@end deffn
631
673286f5
CY
632When Semantic Idle Summary mode is active, a summary of the tag at
633point is displayed in the echo area. This display takes place during
634the idle time, as given by @code{semantic-idle-scheduler-idle-time}
635(@pxref{Idle Scheduler}).
636
637You can override the method for getting the current tag to display by
638setting @code{idle-summary-current-symbol-info}.
3149927d 639
673286f5
CY
640@deffn Option semantic-idle-summary-function
641The value of this variable should be a function to call to display tag
642information during idle time. See the variable
643@code{semantic-format-tag-functions} for a list of useful functions.
3149927d
CY
644@end deffn
645
673286f5
CY
646@defvar semantic-idle-summary-out-of-context-faces
647The value of this variable is a list of font-lock faces indicating
648useless summary contexts. These are generally faces used to highlight
649comments or strings. Semantic Idle Summary mode does not display its
650usual summary if the text at point has one of these faces.
3149927d
CY
651@end defvar
652
653@node Idle Completions Mode
654@subsection Idle Completions Mode
655
673286f5
CY
656Semantic Idle Completions mode is a minor mode for performing
657@dfn{code completions} during idle time. The completions are
658displayed inline, with keybindings that allow you to cycle through
659different alternatives.
3149927d 660
fd1cefda
CY
661Semantic Idle Completions mode performs completion based on the
662Semantic Analyzer (@pxref{Analyzer}).
3149927d 663
673286f5
CY
664@deffn global-semantic-idle-completions-mode &optional arg
665This command toggles Semantic Idle Completions mode in every
666@semantic{}-enabled buffer. You can also toggle it via the @samp{Show
667Tag Completions} menu item in the @samp{Development} menu.
3149927d
CY
668@end deffn
669
673286f5
CY
670If the tag at point has at least one completion, Semantic Idle
671Completions mode displays that completion inline---i.e., as part of
672the buffer text (you can change the display method by customizing
673@code{semantic-complete-inline-analyzer-idle-displayor-class}, as
674described below). The completed part is highlighted, to indicate that
675it is not yet properly inserted into the buffer. The echo area shows
676the completion, and whether there are other possible completions, like
677this:
3149927d 678
673286f5
CY
679@example
680besselj [1 of 6 matches]
681@end example
682
683@noindent
684While the completion is being displayed, the following keybindings
685take effect:
686
687@table @kbd
688@item @key{RET}
689@itemx C-m
690Accept the current completion (@code{semantic-complete-inline-done}),
691placing it in the buffer and moving point to the end of the completed
692tag.
693@item M-n
694Select the next possible completion
695(@code{semantic-complete-inline-down}). The new completion is shown
696inline, replacing the old completion.
697@item M-p
698Select the previous possible completion
699(@code{semantic-complete-inline-up}).
700@item @key{TAB}
701@item C-i
702Accept as much of the completion as possible. If no additional
703completion can be accepted without ambiguity, select the next possible
704completion (@code{semantic-complete-inline-TAB}).
705@item C-g
706Quit without completing (@code{semantic-complete-inline-quit}).
707@end table
708
709@noindent
710You can also exit inline completion by issuing any other Emacs
711command. The completion text then disappears from the buffer.
3149927d 712
673286f5
CY
713@deffn Command semantic-complete-analyze-inline-idle
714This is the command for performing inline code completion. It is
715called by Semantic Idle Completions mode during idle time, but you can
716also call it yourself. It returns immediately, leaving the buffer in
717a state for inline completion.
3149927d
CY
718@end deffn
719
673286f5
CY
720@deffn Option semantic-complete-inline-analyzer-idle-displayor-class
721The value of this variable determines how
722@code{semantic-complete-analyze-inline-idle} shows its completions.
723Possible values include:
3149927d 724
673286f5
CY
725@table @code
726@item semantic-displayor-ghost
727Display completions ``inline'' with the buffer text, as described
728above. This is the default value.
729
730@item semantic-displayor-tooltip
731Display completions in a tooltip.
732
733@item semantic-displayor-traditional
734Display completions in a separate window.
735@end table
3149927d 736@end deffn
fd1cefda
CY
737
738@node Analyzer
739@section Analyzer
740@cindex Analyzer
741
742The Semantic Analyzer is a library for performing context analysis on
743source code. It provides user commands for displaying, completing,
744and navigating through source code.
745
746@menu
747* Smart Completion:: Performing code completion.
748* Smart Summary:: Displaying help on a symbol.
749* Smart Jump:: Jumping to the definition of a tag.
750* Analyzer Debug:: Debugging problems with the analyzer.
751@end menu
752
753@node Smart Completion
754@subsection Smart Completion
755
756The Semantic Analyzer can be used to perform code completion in a
8e687433
CY
757manner that takes the local context into account. (In addition to the
758user commands in this section, Semantic Idle Completions mode also
759uses the Semantic Analyzer. @xref{Idle Completions Mode}.)
fd1cefda
CY
760
761@deffn Command semantic-analyze-possible-completions context
762This is the most basic command for Semantic Analyzer-based completion.
8e687433
CY
763Called interactively, it displays a list of the possible completions
764for the symbol at point.
fd1cefda
CY
765
766When called from a Lisp program,
767@code{semantic-analyze-possible-completions} does not display a
768completions list. The argument @var{context} should be either a
769buffer position, or a context object. The return value is a list of
770@semantic{} tag objects that complete the symbol for @var{context},
771based on the following criteria:
772
773@itemize
774@item Elements currently in scope.
775@item Constants currently in scope.
776@item Elements matching the context's @code{:prefix}.
777@item Type of the completion matching the type of the context.
778@end itemize
779
780Most of the other commands documented in this section call
781@code{semantic-analyze-possible-completions} internally.
782@end deffn
783
fd1cefda
CY
784@deffn Command semantic-complete-analyze-inline
785This command is bound to @kbd{C-c , @key{SPC}} when Semantic mode is
786enabled (@pxref{Semantic mode user commands}). It displays a list of
787possible completions for the symbol at point, and activates a special
788set of keybindings for choosing a completion.
789
790You can type @key{RET} to accept the current completion, @kbd{M-n} and
791@kbd{M-p} to cycle through the possible completions, @key{TAB} to
792complete as far as possible and then cycle through completions, and
793either @kbd{C-g} or any other key to abort the completion.
794
795This command is similar to the completion performed by Semantic Idle
796Completions mode. The main difference is that it is called
797explicitly, whereas Semantic Idle Completions mode completes during
798idle time (@pxref{Idle Completions Mode}).
799@end deffn
800
fd1cefda
CY
801@deffn Option semantic-complete-inline-analyzer-idle-displayor-class
802The value of this variable determines how
803@code{semantic-complete-analyze-inline} shows its completions.
804Possible values include:
805
806@table @code
807@item semantic-displayor-traditional
808Display completions in a separate window. This is the default value.
809
810@item semantic-displayor-ghost
811Display completions ``inline'' with the buffer text, similar to the
812default behavior of Semantic Idle Completions mode (@pxref{Idle
813Completions Mode}).
814
815@item semantic-displayor-tooltip
816Display completions in a tooltip.
817@end table
818@end deffn
819
820In addition to @code{semantic-complete-analyze-inline}, you can use
821the simpler command @code{semantic-ia-complete-symbol point}. This
822behaves like the usual @kbd{M-@key{TAB}} (@code{complete-symbol})
823command (@pxref{Symbol Completion,,,emacs,Emacs manual}), except it
8e687433 824uses the Semantic Analyzer.
fd1cefda 825
fd1cefda
CY
826@deffn Command semantic-ia-complete-symbol point
827Complete the current symbol at @var{point}.
828@end deffn
829
830@node Smart Summary
831@subsection Smart Summary
832
8e687433 833You can use the following commands to obtain information about the
fd1cefda
CY
834code at point:
835
fd1cefda
CY
836@deffn Command semantic-ia-show-summary pos
837Display a summary for the symbol at @var{pos}. Called interactively,
838@var{pos} defaults to point.
839@end deffn
840
fd1cefda
CY
841@deffn Command semantic-ia-show-doc pos
842Display the code-level documentation for the symbol at @var{pos}.
843Called interactively, @var{pos} defaults to point.
844@end deffn
845
fd1cefda
CY
846@deffn Command semantic-ia-describe-class typename
847Prompt for the name of a data type, @var{typename}, and display its
848components. For instance, if the type in question is a class, this
849displays the methods and member variables.
850@end deffn
851
852You can also use Semantic Idle Summary mode to show information about
853the current symbol in the echo area during idle time. @xref{Idle
854Summary Mode}.
855
856@node Smart Jump
857@subsection Smart Jump
858
859The Semantic Analyzer can be used to jump directly to the definition
8e687433 860for a code symbol.
fd1cefda 861
fd1cefda
CY
862@deffn Command semantic-ia-fast-jump pos
863Jump to the definition for the symbol at @var{pos}. Called
864interactively, @var{pos} defaults to point.
865@end deffn
866
fd1cefda
CY
867@defun semantic-ia-fast-mouse-jump event
868Jump to the definition for the symbol at the position of the mouse
869event @var{event}. This command is meant to be bound to a mouse
870command, like this:
871
872@example
873(global-set-key '[(S-mouse-1)] semantic-ia-fast-mouse-jump)
874@end example
875@end defun
876
fe7a3057 877These commands are often more accurate than the @code{find-tag}
8e687433
CY
878command (@pxref{Tags,,,emacs,Emacs manual}), because the Semantic
879Analyzer is context-sensitive.
880
fd1cefda
CY
881You can also use @kbd{C-c , j} (@code{semantic-complete-jump-local})
882and @kbd{C-c , J} (@code{semantic-complete-jump}) to navigate tags.
883@xref{Semantic mode user commands}. Those commands do not make use of
884the Semantic Analyzer.
885
886@node Analyzer Debug
887@subsection Debugging the Semantic Analyzer
888
8e687433
CY
889If the Semantic Analyzer does not analyze your code properly, you can
890take steps to identify and solve the problem. This section was
891written with C/C++ in mind, but should be relevant for any typed
892language.
fd1cefda
CY
893
894@subsubsection Step 1: Check the context
895
8e687433
CY
896To check the current context, type @kbd{M-x
897semantic-analyze-current-context}.
fd1cefda
CY
898
899@deffn Command semantic-analyze-current-context pos
900Analyze the context at @var{pos}. This function is used by most of
901the other Semantic Analyzer commands to obtain the context of the code
902at a given buffer position. The return value is an EIEIO object
903describing the context at @var{pos} (@pxref{Top,,,eieio,EIEIO
904manual}).
905
d29fbf47 906When called interactively, this displays a @file{*Semantic Context
8e687433 907Analysis*} buffer containing a summary of the context at point.
fd1cefda
CY
908@end deffn
909
8e687433 910@noindent
d29fbf47 911The Prefix section of the @file{*Semantic Context Analysis*} buffer
fd1cefda
CY
912lists the tags based on the text at point. If it shows only a simple
913string, the Semantic was unable to identify what the data type was.
914
915The first item in the list of the prefix is the first lookup failure
916in the chain, and that is the item to focus debugging effort on. For
917example:
918
919@example
920Context Type: #<semantic-analyze-context context>
921Bounds: (182 . 185)
922Prefix: Foo* bar
923 int bbb (const char* y)
924Prefix Types: class Foo @{@}
925--------
926-> Local Vars: int argc
927 char** argv
928@end example
929
930In this example you can see that the prefix has two fully found tags.
931In the following example, the symbol ``bbb'' is incomplete, and could
932not be found:
933
934@example
935Context Type: #<semantic-analyze-context context>
936Bounds: (182 . 184)
937Prefix: Foo* bar
938 "bb"
939Prefix Classes: 'function
940 'variable
941Prefix Types: class Foo @{@}
942--------
943-> Local Vars: int argc
944 char** argv
945@end example
946
947@subsubsection Step 2 : Check your include path
948
8e687433
CY
949Once you know the missing symbol, check your include path. The header
950or include file containing the needed definition may not be in the
951list of headers @semantic{} is searching through. To get a basic
952list, you can use @kbd{M-x semanticdb-find-test-translate-path}.
953@xref{Semanticdb search debugging commands}.
fd1cefda 954
8e687433
CY
955If items should be loaded but aren't, or if you see some tables that
956have no tags in them, then you you may have an incorrectly-set search
957throttle (@pxref{Search Throttle}). For example,
fd1cefda
CY
958
959@example
960*#<semanticdb-table main.cpp (4 tags DIRTY)>
961*#<semanticdb-table foo.hh (0 tags DIRTY)>
962@end example
963
964Here, @semantic{} found @file{foo.hh}, but there are 0 tags. This may
8e687433
CY
965be because you had set the throttle to avoid reading and parsing files
966that Emacs has not visited. To fix this, visit the file and let
967@semantic{} parse it.
968
969For C++, check also that the @samp{#include} statements for your
970project-level files use quotes, not angle brackets; angle brackets are
971for system files.
fd1cefda
CY
972
973@subsubsection Step 3: Check the local scope
974
975If your data type is somehow abbreviated based on scope, such as from
976a @code{using} statement, you should make sure that the symbol you
977want is in the local scope. Examine the scope with @kbd{M-x
978semantic-calculate-scope}. The scope structure is displayed in ADEBUG
979mode, so use @kbd{SPC} to expand different elements and looking for
980your symbol.
981
982If your symbol should be in the scope, but you cannot find it, then
983you may have found a language support bug in the local-variable
984parser, or using statement parser.
985
da5ecfa9 986Calling @kbd{M-x bovinate} should force a reset on the scope in case
fd1cefda
CY
987there is merely some bad state.
988
989@example
990 ] Name: Cache
991 ] Class: #'semantic-scope-cache
992 ] :table #<semanticdb-table testsubclass.cpp (13 tags DIRTY)>
993 ] tag createMoose : class moose
994 ] scopetypes 'nil
995 ] parents #<TAG LIST: 1 entries>
996 ] scope #<TAG LIST: 22 entries>
997 ] fullscope #<TAG LIST: 23 entries>
998 ] localvar #<TAG LIST: 6 entries>
999@end example
1000
1001In the above sample output, the @code{tag} slot specifies where within
1002you source this scope is relevant. @code{Parents} should contain any
1003in scope parents, such as the class a method belongs to.
1004@code{Localvar} should contain your local variables. @code{Scope}
1005should contain datatypes in scope due to a @code{using} statement or
1006the like.
1007
1008@subsubsection Step 4: Check the typecache
1009
1010For complex typed languages like C++, @semantic{} creates a typecache,
1011or an optimized search table with all the various data types in it.
1012Elements in the typecache do not obey local scope. It only contains
1013fully qualified names. You can examine the typecache with
1014@kbd{M-x semanticdb-typecache-dump}.
1015
1016If your data types are not in the typecache, there may be some parsing
da5ecfa9 1017error or other bug. Calling @kbd{M-x bovinate} should force a reset on
fd1cefda
CY
1018the typecache in case there is merely some bad state.
1019
1020@example
1021]#<semanticdb-typecache /home/zappo/cedet/semantic/tests/testsubclass.cpp>
1022 ] Name: /home/zappo/cedet/semantic/tests/testsubclass.cpp
1023 ] Class: #'semanticdb-typecache
1024 ] filestream 'nil
1025 ] includestream #<TAG LIST: 84 entries>
1026 ] stream 'nil
1027 ] dependants 'nil
1028@end example
1029
1030In the above example, the output of @kbd{M-x semanticdb-typecache-dump}
1031was expanded one level. The @code{filestream} slot should contain
1032datatypes in the current file. The @code{includestream} should
1033contain all the datatypes in all included header files.
1034
1035The @code{dependants} slot will specify other files that depend on
1036this one.
1037
8e687433 1038@subsubsection Step 5: Check the parser
fd1cefda
CY
1039
1040Go to the location where your unfound tag should be. You can call
1041@kbd{M-x bovinate}, and see a dump of the raw tag structure. To see a
1042navigable tree, use @kbd{M-x semantic-adebug-bovinate} instead. You
1043can then look to make sure your tag has been properly parsed.
1044
1045If it has not, then you may have found a parser bug. To get a feel
1046how @semantic{} treats your file, type @kbd{M-x
1047global-semantic-show-unmatched-syntax-mode}. This causes any syntax
1048it cannot parse to be underlined in red.
1049
1050If your type is not parsable, it could be for a couple of reasons:
1051
1052@enumerate
1053@item
1054If there is a MACRO keyword used in the definition of the type, you
1055may need to update the @code{semantic-lex-c-preprocessor-symbol-map}
1056to account for it.
1057
1058@item
1059Or perhaps the parser needs to be fixed.
1060@end enumerate
964f5b2b 1061
8e687433
CY
1062@node Speedbar
1063@section Speedbar
1064@cindex speedbar
1065
1066You can integrate @semantic{} with the Speedbar.
1067@xref{Speedbar,,,emacs,Emacs manual}. To do this, add the following
1068line to your init file:
1069
1070@example
1071(add-hook 'speedbar-load-hook (lambda () (require 'semantic/sb)))
1072@end example
1073
1074@noindent
1075Or, alternatively:
1076
1077@example
1078(require 'semantic/sb)
1079@end example
1080
1081Once installed, the Speedbar will use @semantic{} to find and display
1082tags. Tags from @semantic{} are displayed with more details than
1083ordinary Speedbar tags, such as function arguments and return type.
1084
1085In addition, you can use the Speedbar to show the output of the
1086Semantic Analyzer (@pxref{Analyzer}). To do this, go to the
1087@samp{Display} menu item on the Speedbar menu and select
1088@samp{Analyze}; or type @kbd{M-x semantic-speedbar-analysis}.
1089
1090@deffn Command semantic-speedbar-analysis
1091Start the Speedbar in Semantic Analysis mode.
1092@end deffn
1093
1094In Semantic Analysis mode, the Speedbar displays information about the
1095local context, such as the current function, local arguments and
1096variables, and details on the prefix (the current symbol). Each entry
1097has an @samp{<i>} button; clicking on this shows a summary of what
1098@semantic{} knows about that variable or type. The Speedbar also
1099displays a list of possible completions at point.
1100
1101@node SymRef
1102@section Symbol References
1103@cindex symref
1104
1105@semantic{} can interface with external @dfn{symbol reference tools},
1106such as GNU Global and GNU Idutils. These tools provide information
1107about where different tags or symbols appear.
1108
1109By default, @semantic{} tries to look for the best external symbol
1110reference tool that can be used. The supported tools are GNU Global,
1111GNU Idutils, CScope, and Grep (the fallback method). For best
1112results, use GNU Global. However, @semantic{} does not manage your
1113GNU Global tables for you; you must manage them yourself.
1114
1115@defvar semantic-symref-tool
1116The value of this variable is a symbol that determines the external
1117symbol reference tool to use. The default value, @code{detect}, says
1118to look for the best available tool. Other possible values are
1119@code{global}, @code{idutils}, @code{cscope}, and @code{grep}. Note
1120that @code{grep} is much slower than the others.
1121@end defvar
1122
1123The commands to display symbol references are @kbd{C-c , g}
1124(@code{semantic-symref-symbol} and @kbd{C-c , G}
1125(@code{semantic-symref}). These keybindings are available whenever
1126Semantic mode is enabled (@pxref{Semantic mode user commands}).
1127
1128@deffn Command semantic-symref-symbol sym
1129This command (normally bound to @kbd{C-c , g}) prompts for a symbol
1130name, and uses an external reference tool to find references to that
1131tag.
1132@end deffn
1133
1134@deffn Command semantic-symref
1135This command (normally bound to @kbd{C-c , G}) uses an external
1136reference tool to find references to the current tag.
1137@end deffn
1138
1139Both @code{semantic-symref-symbol} and @code{semantic-symref} display
1140a list of symbol references in a separate buffer. The entries are
1141organized by file, and by function name. Typing @key{RET} on the
1142@samp{[+]} next to each function name ``expands'' that entry, listing
1143all references to the target symbol occurring within that function.
1144Typing @kbd{RET} on a reference line jumps to that reference.
1145
1146@node MRU Bookmarks
1147@section MRU Bookmarks mode
1148@cindex semantic-mru-bookmark-mode
1149
1150Semantic MRU Bookmarks mode is a minor mode that keeps track of the
1151tags you have edited, allowing you to quickly return to them later
1152(MRU stands for ``Most Recently Used'').
1153
1154@deffn Command global-semantic-mru-bookmark-mode &optional arg
1155Toggle Semantic MRU Bookmarks mode globally. The minor mode can be
1156turned on only if the current buffer was set up for parsing. With
1157argument @var{arg}, turn the minor mode if @var{arg} is positive, and
1158off otherwise.
1159@end deffn
1160
1161Semantic MRU Bookmarks mode takes note of each tag you edit.
1162Afterwards, you can type @kbd{C-x B}
1163(@code{semantic-mrub-switch-tags}) to return to a tag. This command
1164prompts for a tag name, completing with the names of edited tags; at
1165the prompt, you can use @kbd{M-p} and @kbd{M-n} to cycle through tags
1166in order of last modification time.
1167
1168@node Sticky Func Mode
1169@section Sticky Function mode
1170
1171Semantic Sticky Function minor mode displays a header line that shows
1172the declaration line of the function or tag on the topmost line in the
1173text area. This allows you to keep that declaration line in view at
1174all times, even if it is scrolls off the ``top'' of the screen.
1175
1176In addition, clicking @kbd{Mouse-1} on the header line opens a context
1177menu that contains menu items for copying, killing, or narrowing to
1178that tag.
1179
1180@deffn Command global-semantic-stickyfunc-mode &optional arg
1181Toggle Semantic Sticky Function mode in all Semantic-enabled buffers.
1182With an optional argument @var{arg}, enable if @var{arg} is positive,
1183and disable otherwise.
1184@end deffn
1185
1186@defvar semantic-stickyfunc-sticky-classes
1187The value of this variable is a list of tag classes that Semantic
1188Sticky Function mode makes ``sticky''. The default is
1189@code{'(function type)}, meaning function declarations and type
1190declarations. Other possible tag classes are @code{variable},
1191@code{include}, and @code{package}.
1192@end defvar
1193
1194@node Highlight Func Mode
1195@section Highlight Func Mode
1196@cindex semantic-highlight-func-mode
1197
1198Semantic Highlight Function minor mode highlights the declaration line
1199of the current function or tag (that is to say, the first line that
1200describes the rest of the construct).
1201
1202In addition, clicking @kbd{Mouse-3} on the highlighted declaration
1203line opens a context menu that contains menu items for copying,
1204killing, or narrowing to that tag.
1205
1206The tag classes highlighted by Semantic Highlight Function mode are
1207the same ones given by @code{semantic-stickyfunc-sticky-classes}.
1208@xref{Sticky Func Mode}.
1209
1210@defun global-semantic-highlight-func-mode &optional arg
1211Toggle Semantic Highlight Function mode in all Semantic-enabled
1212buffers. With an optional argument @var{arg}, enable if @var{arg} is
1213positive, and disable otherwise.
1214@end defun
1215
1216@deffn Face semantic-highlight-func-current-tag-face
1217This face is used to highlight declaration lines in Semantic Highlight
1218Func mode.
1219@end deffn
1220
1221@node Tag Decoration Mode
1222@section Tag Decoration Mode
1223@cindex semantic-decoration-mode
1224
1225Semantic Tag Decoration mode ``decorates'' each tag based on certain
1226arbitrary features of that tag. Decorations are specified using the
1227variable @code{semantic-decoration-styles}.
1228
1229@deffn Command global-semantic-decoration-mode &optional arg
1230Toggle Semantic Tag Decoration mode in all Semantic-enabled buffers.
1231With an optional argument @var{arg}, enable if @var{arg} is positive,
1232and disable otherwise.
1233@end deffn
1234
1235@defvar semantic-decoration-styles
1236The value of this variable is a list of decoration styles for Semantic
1237Tag Decoration mode. Each element in this list should have the form
1238@code{(@var{name} . @var{flag})}, where @var{name} is a style name (a
1239symbol) and @var{flag} is non-@code{nil} if the style is enabled.
1240
1241The following styles are available:
1242
1243@table @code
1244@item semantic-tag-boundary
1245Place an overline in front of each long tag (excluding prototypes).
1246
1247@item semantic-decoration-on-private-members
1248Highlight class members that are designated as private.
1249
1250@item semantic-decoration-on-protected-members
1251Highlight class members that are designated as protected.
1252
1253@item semantic-decoration-on-includes
1254Highlight class members that are includes. Clicking on the
1255highlighted include statements opens a context menu for configuring
1256@semantic{} includes.
1257@end table
1258@end defvar
1259
1260To enable or disable specific decorations, use this function:
1261
1262@deffn Command semantic-toggle-decoration-style name &optional arg
1263Prompt for a decoration style, @var{name}, and turn it on or off.
1264With prefix argument @var{arg}, turn on if positive, otherwise off.
1265Return non-@code{nil} if the decoration style is enabled.
1266@end deffn
1267
1268@deffn Face semantic-tag-boundary-face
1269Face for long tags in the @code{semantic-tag-boundary} decoration
1270style.
1271@end deffn
1272
1273@deffn Face semantic-decoration-on-private-members-face
1274Face for privately-scoped tags in the
1275@code{semantic-decoration-on-private-members} decoration style.
1276@end deffn
1277
1278@deffn Face semantic-decoration-on-protected-members-face
1279Face for protected tags in the
1280@code{semantic-decoration-on-protected-members} decoration style.
1281@end deffn
1282
1283@deffn Face semantic-decoration-on-includes
1284Face for includes that are not in some other state, in the
1285@code{semantic-decoration-on-includes} decoration style.
1286@end deffn
1287
1288@deffn Face semantic-decoration-on-unknown-includes
1289Face for includes that cannot be found, in the
1290@code{semantic-decoration-on-includes} decoration style.
1291@end deffn
1292
1293@deffn Face semantic-decoration-on-unparsed-includes
1294Face for includes that have not yet been parsed, in the
1295@code{semantic-decoration-on-includes} decoration style.
1296@end deffn
1297
1298@subsection Creating New Decoration Modes
1299
1300You can create new types of decorations using the following function:
1301
1302@defun define-semantic-decoration-style name doc &rest flags
1303Define a new decoration style with @var{name}.
1304@var{doc} is a documentation string describing the decoration style @var{name}.
1305It is appended to auto-generated doc strings.
c19ad068 1306An optional list of @var{flags} can also be specified. Flags are:
8e687433
CY
1307 @code{:enabled} <value> - specify the default enabled value for @var{name}.
1308
1309
1310This defines two new overload functions respectively called @code{NAME-p}
1311and @code{NAME-highlight}, for which you must provide a default
1312implementation in respectively the functions @code{NAME-p-default} and
1313@code{NAME-highlight-default}. Those functions are passed a tag. @code{NAME-p}
1314must return non-@code{nil} to indicate that the tag should be decorated by
1315@code{NAME-highlight}.
1316
1317To put primary decorations on a tag @code{NAME-highlight}, use
1318functions like @dfn{semantic-set-tag-face},
1319@dfn{semantic-set-tag-intangible}, etc., found in the
1320semantic-decorate library.
1321
1322To add other kind of decorations on a tag, @code{NAME-highlight} must use
1323@dfn{semantic-decorate-tag}, and other functions of the semantic
1324decoration @var{api} found in this library.
1325@end defun