]> saetta.ns0.it Git - libzakgtkdecoder/commitdiff
Enabled gtk-doc. develop
authorAndrea Zagli <azagli@libero.it>
Sun, 11 Jun 2017 08:03:34 +0000 (10:03 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 11 Jun 2017 08:03:34 +0000 (10:03 +0200)
.gitignore
Makefile.am
autogen.sh
configure.ac
docs/Makefile.am [new file with mode: 0644]
docs/reference/Makefile.am [new file with mode: 0644]
docs/reference/libzakgtkdecoder-docs.xml [new file with mode: 0644]
docs/reference/libzakgtkdecoder-sections.txt [new file with mode: 0644]
docs/reference/libzakgtkdecoder.types [new file with mode: 0644]

index c9c80396dade9b015b47661496e6a8b3bbb6a6cc..a2073dfa7abb235ece1c6c78cb6dea816b41b587 100644 (file)
@@ -53,4 +53,16 @@ Rules-quot
 *.csv
 decodermarshal.[ch]
 *.gir
-*.typelib
\ No newline at end of file
+*.typelib
+test-driver
+docs/reference/*-decl-list.txt
+docs/reference/*-decl.txt
+docs/reference/*-overrides.txt
+docs/reference/*-undeclared.txt
+docs/reference/*-undocumented.txt
+docs/reference/*-unused.txt
+docs/reference/*.args
+docs/reference/*.hierarchy
+docs/reference/*.interfaces
+docs/reference/*.prerequisites
+docs/reference/*.signals
\ No newline at end of file
index 1de65fe4e1b83471da3f3ad5a84edacc657bc30c..6fe4e7872263e77692363ba5ba2c33fda535be2c 100644 (file)
@@ -1,6 +1,6 @@
 DISTCHECK_CONFIGURE_FLAGS = --enable-introspection
 
-SUBDIRS = glade src tests
+SUBDIRS = glade src tests docs
 
 ACLOCAL_AMFLAGS = -I m4
 
index 83f5de2eff99d76076f1d617e180c5f07d309433..c32ddd775e9c6fdf8b979b8d7ea89b89a9d99c47 100755 (executable)
@@ -24,7 +24,7 @@ fi
 set -x
 aclocal --install || exit 1
 glib-gettextize --force --copy || exit 1
-#gtkdocize --copy || exit 1
+gtkdocize --copy || exit 1
 intltoolize --force --copy --automake || exit 1
 autoreconf --verbose --force --install -Wno-portability || exit 1
 
index 1eedaef7ae5f1b204873b5a391a23d83f3fa9b8b..d6a85bd7bb1a3f62760fa16ddd1aafb7885d61d1 100644 (file)
@@ -36,6 +36,9 @@ AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal)
 
 GOBJECT_INTROSPECTION_CHECK([1.30.0])
 
+# check for gtk-doc
+GTK_DOC_CHECK([1.14],[--flavour no-tmpl])
+
 dnl ******************************
 dnl Translations
 dnl ******************************
@@ -92,6 +95,8 @@ AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes])
 AC_CONFIG_FILES([
        libzakgtkdecoder.pc
        Makefile
+       docs/Makefile
+       docs/reference/Makefile
        src/Makefile
        tests/Makefile
 ])
diff --git a/docs/Makefile.am b/docs/Makefile.am
new file mode 100644 (file)
index 0000000..f3ddc22
--- /dev/null
@@ -0,0 +1 @@
+SUBDIRS = reference
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
new file mode 100644 (file)
index 0000000..a9646ad
--- /dev/null
@@ -0,0 +1,85 @@
+# This is a blank Makefile.am for using gtk-doc.
+# Copy this to your project's API docs directory and modify the variables to
+# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
+# of using the various options.
+
+# The name of the module, e.g. 'glib'.
+DOC_MODULE=libzakgtkdecoder
+
+# Uncomment for versioned docs and specify the version of the module, e.g. '2'.
+#DOC_MODULE_VERSION=2
+
+# The top-level XML file.
+DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.xml
+
+# Directories containing the source code.
+# gtk-doc will search all .c and .h files beneath these paths
+# for inline comments documenting functions and macros.
+# e.g. DOC_SOURCE_DIR=$(top_srcdir)/gtk $(top_srcdir)/gdk
+DOC_SOURCE_DIR=$(top_srcdir)/src
+
+# Extra options to pass to gtkdoc-scangobj. Normally not needed.
+SCANGOBJ_OPTIONS=
+
+# Extra options to supply to gtkdoc-scan.
+# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
+SCAN_OPTIONS=
+
+# Extra options to supply to gtkdoc-mkdb
+# e.g. MKDB_OPTIONS=--xml-mode --output-format=xml
+MKDB_OPTIONS=--xml-mode --output-format=xml
+
+# Extra options to supply to gtkdoc-mkhtml
+MKHTML_OPTIONS=
+
+# Extra options to supply to gtkdoc-fixref. Normally not needed.
+# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
+FIXXREF_OPTIONS=
+
+# Used for dependencies. The docs will be rebuilt if any of these change.
+# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
+# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
+HFILE_GLOB=$(top_srcdir)/src/*.h
+CFILE_GLOB=$(top_srcdir)/src/*.c
+
+# Extra header to include when scanning, which are not under DOC_SOURCE_DIR
+# e.g. EXTRA_HFILES=$(top_srcdir}/contrib/extra.h
+EXTRA_HFILES=
+
+# Header files or dirs to ignore when scanning. Use base file/dir names
+# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h private_code
+IGNORE_HFILES=
+
+# Images to copy into HTML directory.
+# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
+HTML_IMAGES=
+
+# Extra files that are included by $(DOC_MAIN_SGML_FILE).
+# e.g. content_files=running.xml building.xml changes-2.0.xml
+content_files=
+
+# Files where gtk-doc abbrevations (#GtkWidget) are expanded
+# e.g. expand_content_files=running.xml
+expand_content_files=
+
+# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
+# Only needed if you are using gtkdoc-scangobj to dynamically query widget
+# signals and properties.
+# e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
+# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
+GTKDOC_CFLAGS=-I$(top_srcdir)/src -I$(top_builddir)/src $(GTK_DEBUG_FLAGS)
+GTKDOC_LIBS=$(top_builddir)/src/libzakgtkdecoder.la
+
+# This includes the standard gtk-doc make rules, copied by gtkdocize.
+include $(top_srcdir)/gtk-doc.make
+
+# Comment this out if you want 'make check' to test you doc status
+# and run some sanity checks
+if ENABLE_GTK_DOC
+TESTS_ENVIRONMENT = \
+  DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \
+  SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir)
+TESTS = $(GTKDOC_CHECK)
+endif
+
+-include $(top_srcdir)/git.mk
diff --git a/docs/reference/libzakgtkdecoder-docs.xml b/docs/reference/libzakgtkdecoder-docs.xml
new file mode 100644 (file)
index 0000000..e7a579c
--- /dev/null
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
+               "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
+[
+  <!ENTITY % local.common.attrib "xmlns:xi  CDATA  #FIXED 'http://www.w3.org/2003/XInclude'">
+  <!ENTITY % gtkdocentities SYSTEM "xml/gtkdocentities.ent">
+  %gtkdocentities;
+]>
+<book id="index">
+  <bookinfo>
+    <title>&package_name; Reference Manual</title>
+    <releaseinfo>
+      for &package_string;.
+      The latest version of this documentation can be found on-line at
+      <ulink role="online-location" url="http://[SERVER]/&package_name;/index.html">http://[SERVER]/&package_name;/</ulink>.
+    </releaseinfo>
+  </bookinfo>
+
+  <chapter>
+    <title>[Insert title here]</title>
+        <xi:include href="xml/zakgtkdecoder.xml"/>
+
+  </chapter>
+  <chapter id="object-tree">
+    <title>Object Hierarchy</title>
+    <xi:include href="xml/tree_index.sgml"/>
+  </chapter>
+  <index id="api-index-full">
+    <title>API Index</title>
+    <xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
+  </index>
+  <index id="deprecated-api-index" role="deprecated">
+    <title>Index of deprecated API</title>
+    <xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include>
+  </index>
+  <!-- enable this when you use gobject introspection annotations
+  <xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
+  -->
+</book>
diff --git a/docs/reference/libzakgtkdecoder-sections.txt b/docs/reference/libzakgtkdecoder-sections.txt
new file mode 100644 (file)
index 0000000..188b47e
--- /dev/null
@@ -0,0 +1,22 @@
+<SECTION>
+<FILE>zakgtkdecoder</FILE>
+<TITLE>ZakGtkDecoder</TITLE>
+ZAK_GTK_TYPE_DECODER
+ZakGtkDecoderClass
+zak_gtk_decoder_new
+zak_gtk_decoder_set_key
+zak_gtk_decoder_get_key
+zak_gtk_decoder_get_decoded
+zak_gtk_decoder_show_btn_clean
+zak_gtk_decoder_show_btn_new
+zak_gtk_decoder_show_btn_open
+zak_gtk_decoder_show_btn_browse
+zak_gtk_decoder_btn_clean_is_visible
+zak_gtk_decoder_btn_new_is_visible
+zak_gtk_decoder_btn_open_is_visible
+zak_gtk_decoder_btn_browse_is_visible
+zak_gtk_decoder_set_editable
+zak_gtk_decoder_get_editable
+ZakGtkDecoder
+</SECTION>
+
diff --git a/docs/reference/libzakgtkdecoder.types b/docs/reference/libzakgtkdecoder.types
new file mode 100644 (file)
index 0000000..a7af98f
--- /dev/null
@@ -0,0 +1 @@
+zak_gtk_decoder_get_type