Changeset 7509
- Timestamp:
- 01/25/08 07:33:00
- Files:
-
- gnuradio/branches/releases/3.1/gnuradio-core/doc/Doxyfile.in (modified) (28 diffs)
- gnuradio/branches/releases/3.1/gnuradio-core/doc/other/Makefile.am (modified) (1 diff)
- gnuradio/branches/releases/3.1/gnuradio-core/doc/other/doxypy.py (copied) (copied from gnuradio/trunk/gnuradio-core/doc/other/doxypy.py)
- gnuradio/branches/releases/3.1/gnuradio-core/doc/other/group_defs.dox (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/branches/releases/3.1/gnuradio-core/doc/Doxyfile.in
r6198 r7509 1 # Doxyfile 1. 4.11 # Doxyfile 1.5.3 2 2 3 3 # This file describes the settings to be used by the documentation system … … 15 15 #--------------------------------------------------------------------------- 16 16 17 # This tag specifies the encoding used for all characters in the config file that 18 # follow. The default is UTF-8 which is also the encoding used for all text before 19 # the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into 20 # libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of 21 # possible encodings. 22 23 DOXYFILE_ENCODING = UTF-8 24 17 25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 18 26 # by quotes) that should identify the project. … … 46 54 # information to generate all constant output in the proper language. 47 55 # The default language is English, other supported languages are: 48 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish,49 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese,50 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian,51 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,52 # S wedish, and Ukrainian.56 # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 57 # Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian, 58 # Italian, Japanese, Japanese-en (Japanese with English messages), Korean, 59 # Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, 60 # Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. 53 61 54 62 OUTPUT_LANGUAGE = English 55 56 # This tag can be used to specify the encoding used in the generated output.57 # The encoding is not always determined by the language that is chosen,58 # but also whether or not the output is meant for Windows or non-Windows users.59 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES60 # forces the Windows encoding (this is the default for the Windows binary),61 # whereas setting the tag to NO uses a Unix-style encoding (the default for62 # all platforms other than Windows).63 64 USE_WINDOWS_ENCODING = NO65 63 66 64 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will … … 136 134 # will interpret the first line (until the first dot) of a JavaDoc-style 137 135 # comment as the brief description. If set to NO, the JavaDoc 138 # comments will behave just like the Qt-style comments (thus requiring an139 # explicit @brief command for a brief description.136 # comments will behave just like regular Qt-style comments 137 # (thus requiring an explicit @brief command for a brief description.) 140 138 141 139 JAVADOC_AUTOBRIEF = NO 140 141 # If the QT_AUTOBRIEF tag is set to YES then Doxygen will 142 # interpret the first line (until the first dot) of a Qt-style 143 # comment as the brief description. If set to NO, the comments 144 # will behave just like regular Qt-style comments (thus requiring 145 # an explicit \brief command for a brief description.) 146 147 QT_AUTOBRIEF = NO 142 148 143 149 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen … … 162 168 INHERIT_DOCS = YES 163 169 164 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 165 # tag is set to YES, then doxygen will reuse the documentation of the first 166 # member in the group (if any) for the other members of the group. By default 167 # all members of a group must be documented explicitly. 168 169 DISTRIBUTE_GROUP_DOC = NO 170 # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 171 # a new page for each member. If set to NO, the documentation of a member will 172 # be part of the file/class/namespace that contains it. 173 174 SEPARATE_MEMBER_PAGES = NO 170 175 171 176 # The TAB_SIZE tag can be used to set the number of spaces in a tab. … … 190 195 OPTIMIZE_OUTPUT_FOR_C = NO 191 196 192 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources193 # only. Doxygen will then generate output that is more tailored for Java.197 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 198 # sources only. Doxygen will then generate output that is more tailored for Java. 194 199 # For instance, namespaces will be presented as packages, qualified scopes 195 200 # will look different, etc. 196 201 197 202 OPTIMIZE_OUTPUT_JAVA = NO 203 204 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to 205 # include (a tag file for) the STL sources as input, then you should 206 # set this tag to YES in order to let doxygen match functions declarations and 207 # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 208 # func(std::string) {}). This also make the inheritance and collaboration 209 # diagrams that involve STL classes more complete and accurate. 210 211 BUILTIN_STL_SUPPORT = YES 212 213 # If you use Microsoft's C++/CLI language, you should set this option to YES to 214 # enable parsing support. 215 216 CPP_CLI_SUPPORT = NO 217 218 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 219 # tag is set to YES, then doxygen will reuse the documentation of the first 220 # member in the group (if any) for the other members of the group. By default 221 # all members of a group must be documented explicitly. 222 223 DISTRIBUTE_GROUP_DOC = NO 198 224 199 225 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of … … 238 264 239 265 EXTRACT_LOCAL_METHODS = NO 266 267 # If this flag is set to YES, the members of anonymous namespaces will be extracted 268 # and appear in the documentation as a namespace called 'anonymous_namespace{file}', 269 # where file will be replaced with the base name of the file that contains the anonymous 270 # namespace. By default anonymous namespace are hidden. 271 272 EXTRACT_ANON_NSPACES = NO 240 273 241 274 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all … … 371 404 # If the sources in your project are distributed over multiple directories 372 405 # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 373 # in the documentation. 374 375 # -eb 376 SHOW_DIRECTORIES = NO 406 # in the documentation. The default is NO. 407 408 SHOW_DIRECTORIES = YES 377 409 378 410 # The FILE_VERSION_FILTER tag can be used to specify a program or script that … … 381 413 # popen()) the command <command> <input-file>, where <command> is the value of 382 414 # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 383 # provided by doxygen. Whatever the prog am writes to standard output415 # provided by doxygen. Whatever the program writes to standard output 384 416 # is used as the file version. See the manual for examples. 385 417 … … 429 461 # be obtained via FILE_VERSION_FILTER) 430 462 431 WARN_FORMAT = "$file:$line: $text "463 WARN_FORMAT = "$file:$line: $text " 432 464 433 465 # The WARN_LOGFILE tag can be used to specify a file to which warning … … 447 479 448 480 INPUT = @top_srcdir@ 481 482 # This tag can be used to specify the character encoding of the source files that 483 # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default 484 # input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. 485 # See http://www.gnu.org/software/libiconv for the list of possible encodings. 486 487 INPUT_ENCODING = UTF-8 449 488 450 489 # If the value of the INPUT tag contains directories, you can use the … … 453 492 # blank the following patterns are tested: 454 493 # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 455 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 494 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py 456 495 457 496 FILE_PATTERNS = *.h \ 458 *. cc\459 *. dox497 *.dox \ 498 *.py 460 499 461 500 # The RECURSIVE tag can be used to turn specify whether or not subdirectories … … 469 508 # subdirectory from a directory tree whose root is specified with the INPUT tag. 470 509 471 EXCLUDE = CVS .svn .libs .deps \ 472 @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_filter.cc \ 473 @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_general.cc \ 474 @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_gengen.cc \ 475 @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_io.cc \ 476 @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_runtime.cc \ 477 @top_builddir@/gr-atsc/src/lib/atsc.cc \ 478 @top_builddir@/gr-audio-alsa/src/audio_alsa.cc \ 479 @top_builddir@/gr-audio-jack/src/audio_jack.cc \ 480 @top_builddir@/gr-audio-oss/src/audio_oss.cc \ 481 @top_builddir@/gr-audio-osx/src/audio_osx.cc \ 482 @top_builddir@/gr-audio-portaudio/src/audio_portaudio.cc \ 483 @top_builddir@/gr-audio-windows/src/audio_windows.cc \ 484 @top_builddir@/gr-comedi/src/comedi.cc \ 485 @top_builddir@/gr-gsm-fr-vocoder/src/lib/gsm_full_rate.cc \ 486 @top_builddir@/gr-howto-write-a-block/src/lib/howto.cc \ 487 @top_builddir@/gr-pager/src/pager_swig.cc \ 488 @top_builddir@/gr-radio-astronomy/src/lib/ra.cc \ 489 @top_builddir@/gr-trellis/src/lib/trellis.cc \ 490 @top_builddir@/gr-usrp/src/usrp1.cc \ 491 @top_builddir@/gr-video-sdl/src/video_sdl.cc 492 @top_srcdir@/usrp 510 # We split these by top_srcdir and top_builddir (this matters in a VPATH build) 511 512 EXCLUDE = \ 513 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_filter.cc \ 514 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_filter.py \ 515 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_general.cc \ 516 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_general.py \ 517 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_gengen.cc \ 518 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_gengen.py \ 519 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_io.cc \ 520 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_io.py \ 521 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_runtime.cc \ 522 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_runtime.py \ 523 @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_python.py \ 524 @abs_top_builddir@/gr-atsc/src/lib/atsc.cc \ 525 @abs_top_builddir@/gr-atsc/src/lib/atsc.py \ 526 @abs_top_builddir@/gr-audio-oss/src/audio_oss.py \ 527 @abs_top_builddir@/gr-audio-osx/src/test_audio_loop.py \ 528 @abs_top_builddir@/gr-cvsd-vocoder/src/lib/cvsd_vocoder.py \ 529 @abs_top_builddir@/gr-cvsd-vocoder/src/python/encdec.py \ 530 @abs_top_builddir@/gr-gsm-fr-vocoder/src/lib/gsm \ 531 @abs_top_builddir@/gr-gsm-fr-vocoder/src/lib/gsm_full_rate.py \ 532 @abs_top_builddir@/gr-gsm-fr-vocoder/src/python/encdec.py \ 533 @abs_top_builddir@/gr-pager/src/pager_swig.py \ 534 @abs_top_builddir@/gr-radar-mono/src/python/usrp_radar_mono.py \ 535 @abs_top_builddir@/gr-trellis/src/lib/trellis.py \ 536 @abs_top_builddir@/gr-usrp/src/usrp1.py \ 537 @abs_top_builddir@/gr-video-sdl/src/video_sdl.py \ 538 @abs_top_builddir@/usrp/host/swig \ 539 @abs_top_srcdir@/docs \ 540 @abs_top_srcdir@/dtools \ 541 @abs_top_srcdir@/gnuradio-core/doc/doxypy/doxypy.py \ 542 @abs_top_srcdir@/gnuradio-core/doc/xml \ 543 @abs_top_srcdir@/gnuradio-core/src/lib/bug_work_around_6.cc \ 544 @abs_top_srcdir@/gnuradio-core/src/lib/filter/assembly.h \ 545 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_all.py \ 546 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_XXX.py \ 547 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_filter_XXX.py \ 548 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_sysconfig.py \ 549 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_sysconfig_generic.py \ 550 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_util.py \ 551 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_freq_xlating_fir_filter_XXX.py \ 552 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_interp_fir_filter_XXX.py \ 553 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_rational_resampler_base_XXX.py \ 554 @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_utils.py \ 555 @abs_top_srcdir@/gnuradio-core/src/lib/filter/sse_debug.h \ 556 @abs_top_srcdir@/gnuradio-core/src/lib/gengen/generate_all.py \ 557 @abs_top_srcdir@/gnuradio-core/src/lib/gengen/generate_common.py \ 558 @abs_top_srcdir@/gnuradio-core/src/lib/missing/bug_work_around_8.cc \ 559 @abs_top_srcdir@/gnuradio-core/src/lib/runtime/gr_error_handler.cc \ 560 @abs_top_srcdir@/gnuradio-core/src/python/bin \ 561 @abs_top_srcdir@/gnuradio-core/src/python/build_utils.py \ 562 @abs_top_srcdir@/gnuradio-core/src/python/build_utils_codes.py \ 563 @abs_top_srcdir@/gnuradio-core/src/python/gnuradio/gr/gr_threading.py \ 564 @abs_top_srcdir@/gnuradio-core/src/python/gnuradio/gr/gr_threading_23.py \ 565 @abs_top_srcdir@/gnuradio-core/src/python/gnuradio/gr/gr_threading_24.py \ 566 @abs_top_srcdir@/gnuradio-core/src/tests \ 567 @abs_top_srcdir@/gnuradio-core/src/utils \ 568 @abs_top_srcdir@/gr-atsc/src/lib/gen_encoder.py \ 569 @abs_top_srcdir@/gr-atsc/src/python \ 570 @abs_top_srcdir@/gr-howto-write-a-block \ 571 @abs_top_srcdir@/gr-qtgui \ 572 @abs_top_srcdir@/gr-sounder/src/python/usrp_sounder.py \ 573 @abs_top_srcdir@/gr-trellis/doc \ 574 @abs_top_srcdir@/gr-trellis/src/lib/generate_all.py \ 575 @abs_top_srcdir@/gr-trellis/src/lib/generate_trellis.py \ 576 @abs_top_srcdir@/usrp/doc \ 577 @abs_top_srcdir@/usrp/firmware \ 578 @abs_top_srcdir@/usrp/fpga \ 579 @abs_top_srcdir@/usrp/host/apps \ 580 @abs_top_srcdir@/usrp/host/apps-inband \ 581 @abs_top_srcdir@/usrp/host/lib/inband \ 582 @abs_top_srcdir@/usrp/host/lib/legacy/ad9862.h \ 583 @abs_top_srcdir@/usrp/host/lib/legacy/check_data.py \ 584 @abs_top_srcdir@/usrp/host/lib/legacy/circular_buffer.h \ 585 @abs_top_srcdir@/usrp/host/lib/legacy/circular_linked_list.h \ 586 @abs_top_srcdir@/usrp/host/lib/legacy/dump_data.py \ 587 @abs_top_srcdir@/usrp/host/lib/legacy/gen_usrp_dbid.py \ 588 @abs_top_srcdir@/usrp/host/lib/legacy/usrp_dbid.py \ 589 @abs_top_srcdir@/usrp/host/misc \ 590 @abs_top_srcdir@/usrp/host/swig 591 493 592 494 593 # The EXCLUDE_SYMLINKS tag can be used select whether or not files or … … 500 599 # If the value of the INPUT tag contains directories, you can use the 501 600 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 502 # certain files from those directories. 503 504 EXCLUDE_PATTERNS = moc_*.cc 601 # certain files from those directories. Note that the wildcards are matched 602 # against the file with absolute path, so to exclude all test directories 603 # for example use the pattern */test/* 604 605 EXCLUDE_PATTERNS = \ 606 */.deps/* \ 607 */.libs/* \ 608 */.svn/* \ 609 */CVS/* \ 610 */__init__.py \ 611 */gr-atsc/src/lib/Gr* \ 612 */moc_*.cc \ 613 */omnithread/ot_* \ 614 */qa_*.cc \ 615 */qa_*.h \ 616 */qa_*.py 617 618 619 620 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 621 # (namespaces, classes, functions, etc.) that should be excluded from the output. 622 # The symbol name can be a fully qualified name, a word, or if the wildcard * is used, 623 # a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test 624 625 EXCLUDE_SYMBOLS = ad9862 \ 626 numpy \ 627 usrpm 505 628 506 629 # The EXAMPLE_PATH tag can be used to specify one or more files or … … 547 670 # is applied to all files. 548 671 549 FILTER_PATTERNS = 550 551 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 672 FILTER_PATTERNS = *.py=@top_srcdir@/gnuradio-core/doc/other/doxypy.py 673 674 675 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 552 676 # INPUT_FILTER) will be used to filter the input files when producing source 553 677 # files to browse (i.e. when SOURCE_BROWSER is set to YES). 554 678 555 FILTER_SOURCE_FILES = NO679 FILTER_SOURCE_FILES = YES 556 680 557 681 #--------------------------------------------------------------------------- … … 562 686 # be generated. Documented entities will be cross-referenced with these sources. 563 687 # Note: To get rid of all source code in the generated output, make sure also 564 # VERBATIM_HEADERS is set to NO. 688 # VERBATIM_HEADERS is set to NO. If you have enabled CALL_GRAPH or CALLER_GRAPH 689 # then you must also enable this option. If you don't then doxygen will produce 690 # a warning and turn it on anyway 565 691 566 692 SOURCE_BROWSER = NO … … 588 714 589 715 REFERENCES_RELATION = YES 716 717 # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 718 # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 719 # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 720 # link to the source code. Otherwise they will link to the documentstion. 721 722 REFERENCES_LINK_SOURCE = YES 723 724 # If the USE_HTAGS tag is set to YES then the references to source code 725 # will point to the HTML generated by the htags(1) tool instead of doxygen 726 # built-in source browser. The htags tool is part of GNU's global source 727 # tagging system (see http://www.gnu.org/software/global/global.html). You 728 # will need version 4.8.6 or higher. 729 730 USE_HTAGS = NO 590 731 591 732 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen … … 673 814 GENERATE_HTMLHELP = NO 674 815 816 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 817 # documentation will contain sections that can be hidden and shown after the 818 # page has loaded. For this to work a browser that supports 819 # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox 820 # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). 821 822 HTML_DYNAMIC_SECTIONS = NO 823 675 824 # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 676 825 # be used to specify the file name of the resulting .chm file. You … … 737 886 # generate Latex output. 738 887 739 # -eb740 888 GENERATE_LATEX = NO 741 889 … … 885 1033 # the code including all documentation. 886 1034 887 GENERATE_XML = YES1035 GENERATE_XML = NO 888 1036 889 1037 # The XML_OUTPUT tag is used to specify where the XML pages will be put. … … 910 1058 # enabling this will significantly increase the size of the XML output. 911 1059 912 # -eb913 1060 XML_PROGRAMLISTING = NO 914 1061 … … 977 1124 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 978 1125 # then the macro expansion is limited to the macros specified with the 979 # PREDEFINED and EXPAND_AS_ PREDEFINED tags.1126 # PREDEFINED and EXPAND_AS_DEFINED tags. 980 1127 981 1128 EXPAND_ONLY_PREDEF = NO … … 1080 1227 CLASS_DIAGRAMS = YES 1081 1228 1229 # You can define message sequence charts within doxygen comments using the \msc 1230 # command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to 1231 # produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to 1232 # specify the directory where the mscgen tool resides. If left empty the tool is assumed to 1233 # be found in the default search path. 1234 1235 MSCGEN_PATH = 1236 1082 1237 # If set to YES, the inheritance and collaboration graphs will hide 1083 1238 # inheritance and usage relations if the target is undocumented … … 1137 1292 INCLUDED_BY_GRAPH = YES 1138 1293 1139 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will1294 # If the CALL_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will 1140 1295 # generate a call dependency graph for every global function or class method. 1141 1296 # Note that enabling this option will significantly increase the time of a run. … … 1145 1300 CALL_GRAPH = NO 1146 1301 1302 # If the CALLER_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will 1303 # generate a caller dependency graph for every global function or class method. 1304 # Note that enabling this option will significantly increase the time of a run. 1305 # So in most cases it will be better to enable caller graphs for selected 1306 # functions only using the \callergraph command. 1307 1308 CALLER_GRAPH = NO 1309 1147 1310 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1148 1311 # will graphical hierarchy of all classes instead of a textual one. … … 1174 1337 DOTFILE_DIRS = 1175 1338 1176 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 1177 # (in pixels) of the graphs generated by dot. If a graph becomes larger than 1178 # this value, doxygen will try to truncate the graph, so that it fits within 1179 # the specified constraint. Beware that most browsers cannot cope with very 1180 # large images. 1181 1182 MAX_DOT_GRAPH_WIDTH = 1024 1183 1184 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 1185 # (in pixels) of the graphs generated by dot. If a graph becomes larger than 1186 # this value, doxygen will try to truncate the graph, so that it fits within 1187 # the specified constraint. Beware that most browsers cannot cope with very 1188 # large images. 1189 1190 MAX_DOT_GRAPH_HEIGHT = 1024 1339 # The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of 1340 # nodes that will be shown in the graph. If the number of nodes in a graph 1341 # becomes larger than this value, doxygen will truncate the graph, which is 1342 # visualized by representing a node as a red box. Note that doxygen if the number 1343 # of direct children of the root node in a graph is already larger than 1344 # MAX_DOT_GRAPH_NOTES then the graph will not be shown at all. Also note 1345 # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 1346 1347 DOT_GRAPH_MAX_NODES = 50 1191 1348 1192 1349 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the … … 1195 1352 # that lay further from the root node will be omitted. Note that setting this 1196 1353 # option to 1 or 2 may greatly reduce the computation time needed for large 1197 # code bases. Also note that a graph may be further truncated if the graph's 1198 # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH 1199 # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), 1200 # the graph is not depth-constrained. 1354 # code bases. Also note that the size of a graph can be further restricted by 1355 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 1201 1356 1202 1357 MAX_DOT_GRAPH_DEPTH = 0 … … 1215 1370 # support this, this feature is disabled by default. 1216 1371 1217 # -eb1218 1372 DOT_MULTI_TARGETS = YES 1219 1373 gnuradio/branches/releases/3.1/gnuradio-core/doc/other/Makefile.am
r6044 r7509 23 23 24 24 EXTRA_DIST = \ 25 tv-channel-frequencies \ 26 vector_docstub.h \ 27 shared_ptr_docstub.h \ 28 omnithread.html \ 29 omnithread.pdf \ 30 omnithread.ps \ 31 group_defs.dox 25 doxypy.py \ 26 group_defs.dox \ 27 omnithread.html \ 28 omnithread.pdf \ 29 omnithread.ps \ 30 shared_ptr_docstub.h \ 31 tv-channel-frequencies \ 32 vector_docstub.h gnuradio/branches/releases/3.1/gnuradio-core/doc/other/group_defs.dox
r658 r7509 1 1 /*! 2 2 * \defgroup block Signal Processing Blocks 3 * These are the signal processing blocks , blah, blah blah...3 * These are the signal processing blocks... 4 4 * @{ 5 5 */ … … 23 23 */ 24 24 25 /*! 26 * \defgroup level Signal Level Control 27 */ 28 29 /*! 30 * \defgroup clock Signal Clock Synchronization 31 */ 32 25 33 /*! @} */ 26 34 27 /*! \defgroup filter_design Filter Design */28 /*! \defgroup filter_primitive Filter Primitives*/35 /*! \defgroup filter_design Digital Filter Design */ 36 /*! \defgroup graphical Graphical Utilities */ 29 37 /*! \defgroup internal Implementation Details */ 30 /*! \defgroup qa Quality Assurance */ 38 /*! \defgroup hardware Hardware */ 39 /*! \defgroup encdec Voice Encoders and Decoders */ 40 /*! \defgroup coding Information Coding and Decoding */ 41 /*! \defgroup modulation Signal Modulation */ 42 /*! \defgroup demodulation Signal Demodulation */ 43 /*! \defgroup math Mathmatics */ 44 /*! \defgroup tools Tools */ 45 /*! \defgroup misc Miscellaneous */ 46 /*! 47 * \defgroup applications Applications 48 * These are some applications build using gnuradio... 49 * @{ 50 */ 31 51 52 /*! 53 * \defgroup radar Radar 54 * Radar Applications... 55 */ 56 57 /*! 58 * \defgroup atsc ATSC 59 * ATSC Applications... 60 */ 61 62 /*! 63 * \defgroup pager Pager 64 * Pager Applications 65 */ 66 67 /*! 68 * \defgroup sounder Sounder 69 * Channel Sounder 70 */ 71 72 /*! @} */ 73 74 /*! \defgroup usrp USRP */
