[goocanvasmm] Add missing tag files and update Doxygen config



commit 1b5828b61b7ad104dca429d04d5b58ea9ba49cc4
Author: Daniel Elstner <danielk openismus com>
Date:   Fri Sep 18 16:02:24 2009 +0200

    Add missing tag files and update Doxygen config
    
    * configure.ac (MM_ARG_WITH_TAGFILE_DOC): Reference the installed
    Doxygen tag files of cairomm, pangomm and gtkmm.
    * doc/reference/Doxyfile.in: Update configuration for Doxygen 1.6.1.
    (SORT_MEMBERS_CTORS_1ST): Set to YES.
    (EXCLUDE_SYMBOLS): Remove bogus Skeleton* symbols from the list.
    (EXAMPLE_*): Correct the accidentally substituted variable names.
    (EXAMPLE_PATH): Point to the examples/ source directory.
    (EXAMPLE_RECURSIVE): Set to YES.
    (PREDEFINED): Define GTKMM_ATKMM_ENABLED, just in case.

 ChangeLog                 |   14 ++++++++++++++
 configure.ac              |    3 +++
 doc/reference/Doxyfile.in |   25 ++++++++++++-------------
 3 files changed, 29 insertions(+), 13 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 798a14b..1fb1e9f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
 2009-09-18  Daniel Elstner  <danielk openismus com>
 
+	Add missing tag files and update Doxygen config
+
+	* configure.ac (MM_ARG_WITH_TAGFILE_DOC): Reference the installed
+	Doxygen tag files of cairomm, pangomm and gtkmm.
+	* doc/reference/Doxyfile.in: Update configuration for Doxygen 1.6.1.
+	(SORT_MEMBERS_CTORS_1ST): Set to YES.
+	(EXCLUDE_SYMBOLS): Remove bogus Skeleton* symbols from the list.
+	(EXAMPLE_*): Correct the accidentally substituted variable names.
+	(EXAMPLE_PATH): Point to the examples/ source directory.
+	(EXAMPLE_RECURSIVE): Set to YES.
+	(PREDEFINED): Define GTKMM_ATKMM_ENABLED, just in case.
+
+2009-09-18  Daniel Elstner  <danielk openismus com>
+
 	Insert missing comma to separate M4 macro args
 
 	* configure.ac (GOOCANVASMM_WXXFLAGS): Insert missing comma to
diff --git a/configure.ac b/configure.ac
index f933b9b..3b1add6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -48,6 +48,9 @@ MM_ARG_ENABLE_DOCUMENTATION
 MM_ARG_WITH_TAGFILE_DOC([libstdc++.tag], [mm-common-libstdc++])
 MM_ARG_WITH_TAGFILE_DOC([libsigc++-2.0.tag], [sigc++-2.0])
 MM_ARG_WITH_TAGFILE_DOC([glibmm-2.4.tag], [glibmm-2.4])
+MM_ARG_WITH_TAGFILE_DOC([cairomm-1.0.tag], [cairomm-1.0])
+MM_ARG_WITH_TAGFILE_DOC([pangomm-1.4.tag], [pangomm-1.4])
+MM_ARG_WITH_TAGFILE_DOC([gtkmm-2.4.tag], [gtkmm-2.4])
 
 AC_LANG([C++])
 MM_ARG_ENABLE_WARNINGS([GOOCANVASMM_WXXFLAGS],
diff --git a/doc/reference/Doxyfile.in b/doc/reference/Doxyfile.in
index 3a759cb..0f29ca6 100644
--- a/doc/reference/Doxyfile.in
+++ b/doc/reference/Doxyfile.in
@@ -1,4 +1,4 @@
-# Doxyfile 1.5.8
+# Doxyfile 1.6.1
 # @configure_input@
 
 #---------------------------------------------------------------------------
@@ -65,6 +65,7 @@ SHOW_INCLUDE_FILES     = NO
 INLINE_INFO            = YES
 SORT_MEMBER_DOCS       = YES
 SORT_BRIEF_DOCS        = NO
+SORT_MEMBERS_CTORS_1ST = YES
 SORT_GROUP_NAMES       = YES
 SORT_BY_SCOPE_NAME     = YES
 GENERATE_TODOLIST      = NO
@@ -100,8 +101,6 @@ EXCLUDE                =
 EXCLUDE_SYMLINKS       = NO
 EXCLUDE_PATTERNS       =
 EXCLUDE_SYMBOLS        = _* \
-                         SkeletonDimensionData \
-                         SkeletonPositionData \
                          adaptor_trait \
                          basic_filebuf \
                          basic_streambuf \
@@ -110,10 +109,10 @@ EXCLUDE_SYMBOLS        = _* \
                          internal \
                          pair \
                          unary_function
-GOOCANVAS_PATH           =
-GOOCANVAS_PATTERNS       = *.cc \
+EXAMPLE_PATH           = "@abs_top_srcdir@/examples"
+EXAMPLE_PATTERNS       = *.cc \
                          *.h
-GOOCANVAS_RECURSIVE      = NO
+EXAMPLE_RECURSIVE      = YES
 IMAGE_PATH             =
 INPUT_FILTER           =
 FILTER_PATTERNS        =
@@ -167,8 +166,10 @@ QHG_LOCATION           =
 DISABLE_INDEX          = NO
 ENUM_VALUES_PER_LINE   = 1
 GENERATE_TREEVIEW      = NONE
+USE_INLINE_TREES       = NO
 TREEVIEW_WIDTH         = 250
 FORMULA_FONTSIZE       = 10
+SEARCHENGINE           = NO
 #---------------------------------------------------------------------------
 # configuration options related to the LaTeX output
 #---------------------------------------------------------------------------
@@ -184,6 +185,7 @@ PDF_HYPERLINKS         = YES
 USE_PDFLATEX           = YES
 LATEX_BATCHMODE        = NO
 LATEX_HIDE_INDICES     = NO
+LATEX_SOURCE_CODE      = NO
 #---------------------------------------------------------------------------
 # configuration options related to the RTF output
 #---------------------------------------------------------------------------
@@ -233,10 +235,11 @@ PREDEFINED             = __cplusplus \
                          DOXYGEN_SHOULD_SKIP_THIS \
                          "G_GNUC_CONST=" \
                          "GOOCANVASMM_API=" \
-                         GLIBMM_VFUNCS_ENABLED \
-                         GLIBMM_PROPERTIES_ENABLED \
+                         GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED \
                          GLIBMM_EXCEPTIONS_ENABLED \
-                         GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
+                         GLIBMM_PROPERTIES_ENABLED \
+                         GLIBMM_VFUNCS_ENABLED \
+                         GTKMM_ATKMM_ENABLED
 EXPAND_AS_DEFINED      = GOOCANVASMM_MAJOR_VERSION \
                          GOOCANVASMM_MINOR_VERSION \
                          GOOCANVASMM_MICRO_VERSION
@@ -279,7 +282,3 @@ DOT_TRANSPARENT        = NO
 DOT_MULTI_TARGETS      = YES
 GENERATE_LEGEND        = YES
 DOT_CLEANUP            = YES
-#---------------------------------------------------------------------------
-# Options related to the search engine
-#---------------------------------------------------------------------------
-SEARCHENGINE           = NO



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]