From ad2654b176b6a6d41df5a14eb2e26b678b5a5692 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 28 Mar 2017 16:20:12 +0100 Subject: Move reference down one level in the build There's no point in having the reference in its separate directory, as we don't ship any other documentation. --- .gitignore | 34 +++---- configure.ac | 3 +- doc/Makefile.am | 86 +++++++++++++++- doc/clutter-gtk-1.0-docs.xml | 156 +++++++++++++++++++++++++++++ doc/clutter-gtk-1.0-sections.txt | 110 ++++++++++++++++++++ doc/clutter-gtk-1.0.types | 5 + doc/reference/Makefile.am | 85 ---------------- doc/reference/clutter-gtk-1.0-docs.xml | 156 ----------------------------- doc/reference/clutter-gtk-1.0-sections.txt | 110 -------------------- doc/reference/clutter-gtk-1.0.types | 5 - doc/reference/version.xml.in | 1 - doc/version.xml.in | 1 + 12 files changed, 375 insertions(+), 377 deletions(-) create mode 100644 doc/clutter-gtk-1.0-docs.xml create mode 100644 doc/clutter-gtk-1.0-sections.txt create mode 100644 doc/clutter-gtk-1.0.types delete mode 100644 doc/reference/Makefile.am delete mode 100644 doc/reference/clutter-gtk-1.0-docs.xml delete mode 100644 doc/reference/clutter-gtk-1.0-sections.txt delete mode 100644 doc/reference/clutter-gtk-1.0.types delete mode 100644 doc/reference/version.xml.in create mode 100644 doc/version.xml.in diff --git a/.gitignore b/.gitignore index 3218f54..373a022 100644 --- a/.gitignore +++ b/.gitignore @@ -20,23 +20,23 @@ config.status config.sub configure depcomp -/doc/reference/*.stamp -/doc/reference/clutter-gtk-*-decl-list.txt -/doc/reference/clutter-gtk-*-decl.txt -/doc/reference/clutter-gtk-*-overrides.txt -/doc/reference/clutter-gtk-*-undeclared.txt -/doc/reference/clutter-gtk-*-undocumented.txt -/doc/reference/clutter-gtk-*-unused.txt -/doc/reference/clutter-gtk-*.args -/doc/reference/clutter-gtk-*.hierarchy -/doc/reference/clutter-gtk-*.interfaces -/doc/reference/clutter-gtk-*.prerequisites -/doc/reference/clutter-gtk-*.signals -/doc/reference/html/ -/doc/reference/tmpl/ -/doc/reference/version.xml -/doc/reference/xml/ -/doc/reference/*.bak +/doc/*.stamp +/doc/clutter-gtk-*-decl-list.txt +/doc/clutter-gtk-*-decl.txt +/doc/clutter-gtk-*-overrides.txt +/doc/clutter-gtk-*-undeclared.txt +/doc/clutter-gtk-*-undocumented.txt +/doc/clutter-gtk-*-unused.txt +/doc/clutter-gtk-*.args +/doc/clutter-gtk-*.hierarchy +/doc/clutter-gtk-*.interfaces +/doc/clutter-gtk-*.prerequisites +/doc/clutter-gtk-*.signals +/doc/html/ +/doc/tmpl/ +/doc/version.xml +/doc/xml/ +/doc/*.bak /examples/*.o /examples/gtk-clutter-events /examples/gtk-clutter-multistage diff --git a/configure.ac b/configure.ac index 5c90661..b8dd3cb 100644 --- a/configure.ac +++ b/configure.ac @@ -211,8 +211,7 @@ AC_CONFIG_FILES([ clutter-gtk/gtk-clutter-version.h doc/Makefile - doc/reference/Makefile - doc/reference/version.xml + doc/version.xml examples/Makefile diff --git a/doc/Makefile.am b/doc/Makefile.am index f3ddc22..92125bf 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1 +1,85 @@ -SUBDIRS = reference +## Process this file with automake to produce Makefile.in + +# 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=clutter-gtk-$(CLUTTER_GTK_API_VERSION) + +# The top-level SGML file. You can change this if you want to. +DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.xml + +# The directory containing the source code. Relative to $(srcdir). +# gtk-doc will search all .c & .h files beneath here for inline comments +# documenting the functions and macros. +# e.g. DOC_SOURCE_DIR=../../../gtk +DOC_SOURCE_DIR=$(top_srcdir)/clutter-gtk $(top_builddir)/clutter-gtk + +# Extra options to pass to gtkdoc-scangobj. Not normally needed. +SCANGOBJ_OPTIONS=--type-init-func="clutter_base_init()" + +# 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=--sgml-mode --output-format=xml +MKDB_OPTIONS=--xml-mode --output-format=xml --name-space=gtk_clutter + +# Extra options to supply to gtkdoc-mktmpl +# e.g. MKTMPL_OPTIONS=--only-section-tmpl +MKTMPL_OPTIONS= + +# Extra options to supply to gtkdoc-fixref. Not normally needed. +# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html +FIXXREF_OPTIONS=\ + --extra-dir=$(G_PREFIX)/share/gtk-doc/html/glib \ + --extra-dir=$(G_PREFIX)/share/gtk-doc/html/gobject \ + --extra-dir=$(GDK_PREFIX)/share/gtk-doc/html/gdk \ + --extra-dir=$(GTK_PREFIX)/share/gtk-doc/html/gtk \ + --extra-dir=$(GDK_PIXBUF_PREFIX)/share/gtk-doc/html/gdk-pixbuf \ + --extra-dir=$(CLUTTER_PREFIX)/share/gtk-doc/html/clutter + +# 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)/clutter-gtk/*.h $(top_builddir)/clutter-gtk/*.h +CFILE_GLOB=$(top_srcdir)/clutter-gtk/*.c + +# Header files to ignore when scanning. +# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h +IGNORE_HFILES=\ + gtk-clutter-actor-private.h \ + gtk-clutter-offscreen.h \ + clutter-gtk.h + +# Images to copy into HTML directory. +# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png +HTML_IMAGES= + +# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). +# e.g. content_files=running.sgml building.sgml changes-2.0.sgml +content_files=version.xml + +# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded +# These files must be listed here *and* in content_files +# e.g. expand_content_files=running.sgml +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. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) +# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) + +AM_CFLAGS=-I$(top_srcdir) -I$(top_builddir) -I$(top_builddir)/clutter-gtk $(CLUTTER_GTK_DEPS_CFLAGS) +GTKDOC_LIBS=$(top_builddir)/clutter-gtk/libclutter-gtk-$(CLUTTER_GTK_API_VERSION).la $(CLUTTER_GTK_DEPS_LIBS) + +# This includes the standard gtk-doc make rules, copied by gtkdocize. +include $(top_srcdir)/gtk-doc.make + +# Other files to distribute +# e.g. EXTRA_DIST += version.xml.in +EXTRA_DIST += version.xml.in diff --git a/doc/clutter-gtk-1.0-docs.xml b/doc/clutter-gtk-1.0-docs.xml new file mode 100644 index 0000000..76c5d7a --- /dev/null +++ b/doc/clutter-gtk-1.0-docs.xml @@ -0,0 +1,156 @@ + + +]> + + + + Clutter-Gtk &version; Reference Manual + Version &version; + + + 2006, 2007, 2008, 2009 + Intel Corporation + + + + + Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free + Documentation License, Version 1.1 or any later + version published by the Free Software Foundation with no + Invariant Sections, no Front-Cover Texts, and no Back-Cover + Texts. You may obtain a copy of the GNU Free + Documentation License from the Free Software + Foundation by visiting their Web site or by writing + to: + +
+ The Free Software Foundation, Inc., + 59 Temple Place - Suite 330, + Boston, MA 02111-1307, + USA +
+
+
+
+ + + Clutter-Gtk Overview + + Clutter-Gtk is an integration library for the Clutter toolkit + providing access and integration for the GTK+ library. + + Clutter-Gtk allows embedding a Clutter scene graph into a + GTK+ application; retrieving themeing information; integrate GTK+ + data structures and object classes with Clutter actors. + + + + + Clutter-Gtk Widgets + + + + + + + + Miscellaneous + + + + + + Index + + + + Clutter-GTK Actors and Objects + + + Object Hierarchy + + + + + + Object Index + + + + + + + Glossaries + + + + + + Index of all symbols + + + + + Index of new symbols in 1.0 + + + + + Index of new symbols in 1.2 + + + + + Index of new symbols in 1.4 + + + + + Index of new symbols in 1.6 + + + + + Index of deprecated symbols + + + + + License + + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General + Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) + any later version. + + + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Library General Public License for + more details. + + + + You may obtain a copy of the GNU Library General + Public License from the Free Software Foundation by + visiting their Web + site or by writing to: + +
+ Free Software Foundation, Inc. + 59 Temple Place - Suite 330 + Boston, MA 02111-1307 + USA +
+
+
+ +
diff --git a/doc/clutter-gtk-1.0-sections.txt b/doc/clutter-gtk-1.0-sections.txt new file mode 100644 index 0000000..f5f85c1 --- /dev/null +++ b/doc/clutter-gtk-1.0-sections.txt @@ -0,0 +1,110 @@ +
+gtk-clutter-embed +GtkClutterEmbed +GtkClutterEmbedClass +gtk_clutter_embed_new +gtk_clutter_embed_get_stage + + +gtk_clutter_embed_set_use_layout_size +gtk_clutter_embed_get_use_layout_size + + +GTK_CLUTTER_EMBED +GTK_CLUTTER_IS_EMBED +GTK_CLUTTER_TYPE_EMBED +GTK_CLUTTER_EMBED_CLASS +GTK_CLUTTER_IS_EMBED_CLASS +GTK_CLUTTER_EMBED_GET_CLASS + + +GtkClutterEmbedPrivate +gtk_clutter_embed_get_type +
+ +
+gtk-clutter-actor +GtkClutterActor +GtkClutterActorClass +gtk_clutter_actor_new +gtk_clutter_actor_new_with_contents +gtk_clutter_actor_get_contents +gtk_clutter_actor_get_widget + + +GTK_CLUTTER_ACTOR +GTK_CLUTTER_IS_ACTOR +GTK_CLUTTER_TYPE_ACTOR +GTK_CLUTTER_ACTOR_CLASS +GTK_CLUTTER_IS_ACTOR_CLASS +GTK_CLUTTER_ACTOR_GET_CLASS + + +GtkClutterActorPrivate +gtk_clutter_actor_get_type +
+ +
+gtk-clutter-window +GtkClutterWindow +GtkClutterWindowClass +gtk_clutter_window_new +gtk_clutter_window_get_stage + + +GTK_CLUTTER_WINDOW +GTK_CLUTTER_IS_WINDOW +GTK_CLUTTER_TYPE_WINDOW +GTK_CLUTTER_WINDOW_CLASS +GTK_CLUTTER_IS_WINDOW_CLASS +GTK_CLUTTER_WINDOW_GET_CLASS + + +GtkClutterWindowPrivate +gtk_clutter_window_get_type +
+ +
+gtk-clutter-util +gtk_clutter_init +gtk_clutter_init_with_args +gtk_clutter_get_option_group +
+ +
+gtk-clutter-texture +GtkClutterTexture +GtkClutterTextureClass +GtkClutterTextureError +GTK_CLUTTER_TEXTURE_ERROR +gtk_clutter_texture_new +gtk_clutter_texture_set_from_pixbuf +gtk_clutter_texture_set_from_stock +gtk_clutter_texture_set_from_icon_name + + +GTK_CLUTTER_TYPE_TEXTURE +GTK_CLUTTER_TEXTURE +GTK_CLUTTER_TEXTURE_CLASS +GTK_CLUTTER_IS_TEXTURE +GTK_CLUTTER_IS_TEXTURE_CLASS +GTK_CLUTTER_TEXTURE_GET_CLASS + + +gtk_clutter_texture_get_type +gtk_clutter_texture_error_quark +
+ +
+gtk-clutter-version +Versioning +CLUTTER_GTK_MAJOR_VERSION +CLUTTER_GTK_MINOR_VERSION +CLUTTER_GTK_MICRO_VERSION +CLUTTER_GTK_VERSION +CLUTTER_GTK_VERSION_S +CLUTTER_GTK_VERSION_HEX +CLUTTER_GTK_CHECK_VERSION + +gtk_clutter_check_version +
diff --git a/doc/clutter-gtk-1.0.types b/doc/clutter-gtk-1.0.types new file mode 100644 index 0000000..5314587 --- /dev/null +++ b/doc/clutter-gtk-1.0.types @@ -0,0 +1,5 @@ +#include +gtk_clutter_actor_get_type +gtk_clutter_embed_get_type +gtk_clutter_texture_get_type +gtk_clutter_window_get_type diff --git a/doc/reference/Makefile.am b/doc/reference/Makefile.am deleted file mode 100644 index 92125bf..0000000 --- a/doc/reference/Makefile.am +++ /dev/null @@ -1,85 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# 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=clutter-gtk-$(CLUTTER_GTK_API_VERSION) - -# The top-level SGML file. You can change this if you want to. -DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.xml - -# The directory containing the source code. Relative to $(srcdir). -# gtk-doc will search all .c & .h files beneath here for inline comments -# documenting the functions and macros. -# e.g. DOC_SOURCE_DIR=../../../gtk -DOC_SOURCE_DIR=$(top_srcdir)/clutter-gtk $(top_builddir)/clutter-gtk - -# Extra options to pass to gtkdoc-scangobj. Not normally needed. -SCANGOBJ_OPTIONS=--type-init-func="clutter_base_init()" - -# 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=--sgml-mode --output-format=xml -MKDB_OPTIONS=--xml-mode --output-format=xml --name-space=gtk_clutter - -# Extra options to supply to gtkdoc-mktmpl -# e.g. MKTMPL_OPTIONS=--only-section-tmpl -MKTMPL_OPTIONS= - -# Extra options to supply to gtkdoc-fixref. Not normally needed. -# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html -FIXXREF_OPTIONS=\ - --extra-dir=$(G_PREFIX)/share/gtk-doc/html/glib \ - --extra-dir=$(G_PREFIX)/share/gtk-doc/html/gobject \ - --extra-dir=$(GDK_PREFIX)/share/gtk-doc/html/gdk \ - --extra-dir=$(GTK_PREFIX)/share/gtk-doc/html/gtk \ - --extra-dir=$(GDK_PIXBUF_PREFIX)/share/gtk-doc/html/gdk-pixbuf \ - --extra-dir=$(CLUTTER_PREFIX)/share/gtk-doc/html/clutter - -# 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)/clutter-gtk/*.h $(top_builddir)/clutter-gtk/*.h -CFILE_GLOB=$(top_srcdir)/clutter-gtk/*.c - -# Header files to ignore when scanning. -# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h -IGNORE_HFILES=\ - gtk-clutter-actor-private.h \ - gtk-clutter-offscreen.h \ - clutter-gtk.h - -# Images to copy into HTML directory. -# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png -HTML_IMAGES= - -# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE). -# e.g. content_files=running.sgml building.sgml changes-2.0.sgml -content_files=version.xml - -# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded -# These files must be listed here *and* in content_files -# e.g. expand_content_files=running.sgml -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. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) -# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) - -AM_CFLAGS=-I$(top_srcdir) -I$(top_builddir) -I$(top_builddir)/clutter-gtk $(CLUTTER_GTK_DEPS_CFLAGS) -GTKDOC_LIBS=$(top_builddir)/clutter-gtk/libclutter-gtk-$(CLUTTER_GTK_API_VERSION).la $(CLUTTER_GTK_DEPS_LIBS) - -# This includes the standard gtk-doc make rules, copied by gtkdocize. -include $(top_srcdir)/gtk-doc.make - -# Other files to distribute -# e.g. EXTRA_DIST += version.xml.in -EXTRA_DIST += version.xml.in diff --git a/doc/reference/clutter-gtk-1.0-docs.xml b/doc/reference/clutter-gtk-1.0-docs.xml deleted file mode 100644 index 76c5d7a..0000000 --- a/doc/reference/clutter-gtk-1.0-docs.xml +++ /dev/null @@ -1,156 +0,0 @@ - - -]> - - - - Clutter-Gtk &version; Reference Manual - Version &version; - - - 2006, 2007, 2008, 2009 - Intel Corporation - - - - - Permission is granted to copy, distribute and/or modify this - document under the terms of the GNU Free - Documentation License, Version 1.1 or any later - version published by the Free Software Foundation with no - Invariant Sections, no Front-Cover Texts, and no Back-Cover - Texts. You may obtain a copy of the GNU Free - Documentation License from the Free Software - Foundation by visiting their Web site or by writing - to: - -
- The Free Software Foundation, Inc., - 59 Temple Place - Suite 330, - Boston, MA 02111-1307, - USA -
-
-
-
- - - Clutter-Gtk Overview - - Clutter-Gtk is an integration library for the Clutter toolkit - providing access and integration for the GTK+ library. - - Clutter-Gtk allows embedding a Clutter scene graph into a - GTK+ application; retrieving themeing information; integrate GTK+ - data structures and object classes with Clutter actors. - - - - - Clutter-Gtk Widgets - - - - - - - - Miscellaneous - - - - - - Index - - - - Clutter-GTK Actors and Objects - - - Object Hierarchy - - - - - - Object Index - - - - - - - Glossaries - - - - - - Index of all symbols - - - - - Index of new symbols in 1.0 - - - - - Index of new symbols in 1.2 - - - - - Index of new symbols in 1.4 - - - - - Index of new symbols in 1.6 - - - - - Index of deprecated symbols - - - - - License - - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General - Public License as published by the Free Software - Foundation; either version 2 of the License, or (at your option) - any later version. - - - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for - more details. - - - - You may obtain a copy of the GNU Library General - Public License from the Free Software Foundation by - visiting their Web - site or by writing to: - -
- Free Software Foundation, Inc. - 59 Temple Place - Suite 330 - Boston, MA 02111-1307 - USA -
-
-
- -
diff --git a/doc/reference/clutter-gtk-1.0-sections.txt b/doc/reference/clutter-gtk-1.0-sections.txt deleted file mode 100644 index f5f85c1..0000000 --- a/doc/reference/clutter-gtk-1.0-sections.txt +++ /dev/null @@ -1,110 +0,0 @@ -
-gtk-clutter-embed -GtkClutterEmbed -GtkClutterEmbedClass -gtk_clutter_embed_new -gtk_clutter_embed_get_stage - - -gtk_clutter_embed_set_use_layout_size -gtk_clutter_embed_get_use_layout_size - - -GTK_CLUTTER_EMBED -GTK_CLUTTER_IS_EMBED -GTK_CLUTTER_TYPE_EMBED -GTK_CLUTTER_EMBED_CLASS -GTK_CLUTTER_IS_EMBED_CLASS -GTK_CLUTTER_EMBED_GET_CLASS - - -GtkClutterEmbedPrivate -gtk_clutter_embed_get_type -
- -
-gtk-clutter-actor -GtkClutterActor -GtkClutterActorClass -gtk_clutter_actor_new -gtk_clutter_actor_new_with_contents -gtk_clutter_actor_get_contents -gtk_clutter_actor_get_widget - - -GTK_CLUTTER_ACTOR -GTK_CLUTTER_IS_ACTOR -GTK_CLUTTER_TYPE_ACTOR -GTK_CLUTTER_ACTOR_CLASS -GTK_CLUTTER_IS_ACTOR_CLASS -GTK_CLUTTER_ACTOR_GET_CLASS - - -GtkClutterActorPrivate -gtk_clutter_actor_get_type -
- -
-gtk-clutter-window -GtkClutterWindow -GtkClutterWindowClass -gtk_clutter_window_new -gtk_clutter_window_get_stage - - -GTK_CLUTTER_WINDOW -GTK_CLUTTER_IS_WINDOW -GTK_CLUTTER_TYPE_WINDOW -GTK_CLUTTER_WINDOW_CLASS -GTK_CLUTTER_IS_WINDOW_CLASS -GTK_CLUTTER_WINDOW_GET_CLASS - - -GtkClutterWindowPrivate -gtk_clutter_window_get_type -
- -
-gtk-clutter-util -gtk_clutter_init -gtk_clutter_init_with_args -gtk_clutter_get_option_group -
- -
-gtk-clutter-texture -GtkClutterTexture -GtkClutterTextureClass -GtkClutterTextureError -GTK_CLUTTER_TEXTURE_ERROR -gtk_clutter_texture_new -gtk_clutter_texture_set_from_pixbuf -gtk_clutter_texture_set_from_stock -gtk_clutter_texture_set_from_icon_name - - -GTK_CLUTTER_TYPE_TEXTURE -GTK_CLUTTER_TEXTURE -GTK_CLUTTER_TEXTURE_CLASS -GTK_CLUTTER_IS_TEXTURE -GTK_CLUTTER_IS_TEXTURE_CLASS -GTK_CLUTTER_TEXTURE_GET_CLASS - - -gtk_clutter_texture_get_type -gtk_clutter_texture_error_quark -
- -
-gtk-clutter-version -Versioning -CLUTTER_GTK_MAJOR_VERSION -CLUTTER_GTK_MINOR_VERSION -CLUTTER_GTK_MICRO_VERSION -CLUTTER_GTK_VERSION -CLUTTER_GTK_VERSION_S -CLUTTER_GTK_VERSION_HEX -CLUTTER_GTK_CHECK_VERSION - -gtk_clutter_check_version -
diff --git a/doc/reference/clutter-gtk-1.0.types b/doc/reference/clutter-gtk-1.0.types deleted file mode 100644 index 5314587..0000000 --- a/doc/reference/clutter-gtk-1.0.types +++ /dev/null @@ -1,5 +0,0 @@ -#include -gtk_clutter_actor_get_type -gtk_clutter_embed_get_type -gtk_clutter_texture_get_type -gtk_clutter_window_get_type diff --git a/doc/reference/version.xml.in b/doc/reference/version.xml.in deleted file mode 100644 index 27323da..0000000 --- a/doc/reference/version.xml.in +++ /dev/null @@ -1 +0,0 @@ -@VERSION@ \ No newline at end of file diff --git a/doc/version.xml.in b/doc/version.xml.in new file mode 100644 index 0000000..27323da --- /dev/null +++ b/doc/version.xml.in @@ -0,0 +1 @@ +@VERSION@ \ No newline at end of file -- cgit v1.2.1