Removing these files which belong in doc/ not help/

svn path=/trunk/; revision=12105
This commit is contained in:
Aaron Weber
2001-08-16 17:51:24 +00:00
parent d0a5fa689f
commit f9950bfd61
21 changed files with 0 additions and 1607 deletions

View File

@ -1,191 +0,0 @@
## Process this file with automake to produce Makefile.in
# The name of the module, e.g. 'glib'.
DOC_MODULE=evolution-services
# The top-level SGML file. Change it if you want.
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
# The directory containing the source code. Relative to $(srcdir).
# gtk-doc will search all .c & .h files beneath here for inline comments
# documenting functions and macros.
DOC_SOURCE_DIR=$(EVOLUTION_DIR)/executive-summary/evolution-services
# Extra options to supply to gtkdoc-scan.
SCAN_OPTIONS=
# Extra options to supply to gtkdoc-mkdb.
MKDB_OPTIONS=
# Extra options to supply to gtkdoc-fixref.
FIXXREF_OPTIONS=
# Used for dependencies.
HFILE_GLOB=
CFILE_GLOB= \
$(top_srcdir)/executive-summary/evolution-services/executive-summary-component.c \
$(top_srcdir)/executive-summary/evolution-services/executive-summary-component-factory-client.c \
$(top_srcdir)/executive-summary/evolution-services/executive-summary-html-view.c
# Header files to ignore when scanning.
IGNORE_HFILES=Executive-Summary.h
# Images to copy into HTML directory.
HTML_IMAGES =
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
content_files =
# Other files to distribute.
extra_files =
# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
# contains GtkObjects/GObjects and you want to document signals and properties.
GTKDOC_CFLAGS = \
-I$(top_srcdir)/executive-summary/evolution-services \
-I$(top_srcdir)/executive-summary \
-I$(top_srcdir) \
-I$(top_builddir) \
$(BONOBO_VFS_GNOME_CFLAGS)
GTKDOC_LIBS = \
$(BONOBO_VFS_GNOME_LIBS) \
$(top_builddir)/executive-summary/evolution-services/.libs/libevolution-services.so
GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC)
GTKDOC_LD=$(LIBTOOL) --mode=link $(CC)
# If you need to override some of the declarations, place them in this file
# and uncomment this line.
#DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt
DOC_OVERRIDES =
###########################################################################
# Everything below here is generic and you shouldn't need to change it.
###########################################################################
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
EXTRA_DIST = \
$(content_files) \
$(extra_files) \
$(HTML_IMAGES) \
$(DOC_MAIN_SGML_FILE) \
$(DOC_MODULE).types \
$(DOC_MODULE)-sections.txt \
$(DOC_OVERRIDES)
DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \
$(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp
SCANOBJ_FILES = \
$(DOC_MODULE).args \
$(DOC_MODULE).hierarchy \
$(DOC_MODULE).signals
if ENABLE_GTK_DOC
#all-local: html-build.stamp
all-local: sgml-build.stamp
#### scan ####
scan-build.stamp: $(HFILE_GLOB)
@echo '*** Scanning header files ***'
if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \
CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scanobj --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \
else \
cd $(srcdir) ; \
for i in $(SCANOBJ_FILES) ; do \
test -f $$i || touch $$i ; \
done \
fi
cd $(srcdir) && \
gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
touch scan-build.stamp
$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp
@true
#### templates ####
tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_OVERRIDES)
@echo '*** Rebuilding template files ***'
cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE)
touch tmpl-build.stamp
tmpl.stamp: tmpl-build.stamp
@true
#### sgml ####
sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building SGML ***'
cd $(srcdir) && \
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --main-sgml-file=$(DOC_MAIN_SGML_FILE) $(MKDB_OPTIONS)
touch sgml-build.stamp
sgml.stamp: sgml-build.stamp
@true
#### html ####
html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
@echo '*** Building HTML ***'
test -d $(srcdir)/html || mkdir $(srcdir)/html
cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
@echo '-- Fixing Crossreferences'
cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
touch html-build.stamp
endif
##############
clean-local:
rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS)
maintainer-clean-local: clean
cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
(installfiles=`echo $(srcdir)/html/*.html`; \
if test "$$installfiles" = '$(srcdir)/html/*.html'; \
then echo '-- Nothing to install' ; \
else \
for i in $$installfiles; do \
echo '-- Installing '$$i ; \
$(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
done; \
echo '-- Installing $(srcdir)/html/index.sgml' ; \
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
fi)
#
# Require gtk-doc when making dist
#
if ENABLE_GTK_DOC
dist-check-gtkdoc:
else
dist-check-gtkdoc:
@echo "*** gtk-doc must be installed and enabled in order to make dist"
@false
endif
dist-hook: dist-check-gtkdoc dist-hook-local
mkdir $(distdir)/tmpl
mkdir $(distdir)/sgml
mkdir $(distdir)/html
-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
-cp $(srcdir)/sgml/*.sgml $(distdir)/sgml
-cp $(srcdir)/html/index.sgml $(distdir)/html
-cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html
images=$(HTML_IMAGES) ; \
for i in $$images ; do \
cp $(srcdir)/$$i $(distdir)/html ; \
done
.PHONY : dist-hook-local

View File

@ -1,536 +0,0 @@
<MACRO>
<NAME>EXECUTIVE_SUMMARY_CLIENT_TYPE</NAME>
#define EXECUTIVE_SUMMARY_CLIENT_TYPE (executive_summary_client_get_type ())
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_CLIENT</NAME>
#define EXECUTIVE_SUMMARY_CLIENT(obj) (GTK_CHECK_CAST ((obj), EXECUTIVE_SUMMARY_CLIENT_TYPE, ExecutiveSummaryClient))
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_CLIENT_CLASS</NAME>
#define EXECUTIVE_SUMMARY_CLIENT_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EXECUTIVE_SUMMARY_CLIENT_TYPE, ExecutiveSummaryClientClass))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_CLIENT</NAME>
#define IS_EXECUTIVE_SUMMARY_CLIENT(obj) (GTK_CHECK_TYPE ((obj), EXECUTIVE_SUMMARY_CLIENT_TYPE))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_CLIENT_CLASS</NAME>
#define IS_EXECUTIVE_SUMMARY_CLIENT_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EXECUTIVE_SUMMARY_CLIENT_TYPE))
</MACRO>
<STRUCT>
<NAME>ExecutiveSummaryClientPrivate</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryClient</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryClientClass</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryClient</NAME>
struct ExecutiveSummaryClient {
BonoboObjectClient parent;
ExecutiveSummaryClientPrivate *private;
};
</STRUCT>
<FUNCTION>
<NAME>executive_summary_client_get_type</NAME>
<RETURNS>GtkType </RETURNS>
void
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_client_construct</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryClient *client,CORBA_Object object
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_client_set_title</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryClient *client,int id,const char *title
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_client_set_icon</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryClient *client,int id,const char *icon
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_client_flash</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryClient *client,int id
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_client_update</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryClient *client,int id,const char *html
</FUNCTION>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_CLIENT_TYPE</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_CLIENT_TYPE (executive_summary_component_client_get_type ())
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_CLIENT</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_CLIENT(obj) (GTK_CHECK_CAST ((obj), EXECUTIVE_SUMMARY_COMPONENT_CLIENT_TYPE, ExecutiveSummaryComponentClient))
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_CLIENT_CLASS</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_CLIENT_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EXECUTIVE_SUMMARY_COMPONENT_CLIENT_TYPE, ExecutiveSummaryComponentClientClass))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT_CLIENT</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT_CLIENT(obj) (GTK_CHECK_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_CLIENT_TYPE))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT_CLIENT_CLASS</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT_CLIENT_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_CLIENT_TYPE))
</MACRO>
<STRUCT>
<NAME>ExecutiveSummaryComponentClientPrivate</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentClient</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentClientClass</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentClient</NAME>
struct ExecutiveSummaryComponentClient {
BonoboObjectClient parent;
ExecutiveSummaryComponentClientPrivate *private;
};
</STRUCT>
<FUNCTION>
<NAME>executive_summary_component_client_get_type</NAME>
<RETURNS>GtkType </RETURNS>
void
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_client_new</NAME>
<RETURNS>ExecutiveSummaryComponentClient *</RETURNS>
const char *id
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_client_set_owner</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentClient *client,ExecutiveSummary *summary
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_client_unset_owner</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentClient *client
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_client_supports</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentClient *client,gboolean *bonobo,gboolean *html
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_client_configure</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentClient *client,ExecutiveSummaryComponentView *view
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_client_destroy_view</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentClient *client,ExecutiveSummaryComponentView *view
</FUNCTION>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_TYPE</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_TYPE (executive_summary_component_factory_client_get_type ())
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT(obj) (GTK_CHECK_CAST ((obj), EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_TYPE, ExecutiveSummaryComponentFactoryClient))
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_CLASS</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_TYPE, ExecutiveSummaryComponentFactoryClientClass))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT(obj) (GTK_CHECK_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_TYPE))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_CLASS</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_TYPE))
</MACRO>
<STRUCT>
<NAME>ExecutiveSummaryComponentFactoryClientPrivate</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentFactoryClient</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentFactoryClientClass</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentFactoryClient</NAME>
struct ExecutiveSummaryComponentFactoryClient {
BonoboObjectClient parent;
ExecutiveSummaryComponentFactoryClientPrivate *private;
};
</STRUCT>
<FUNCTION>
<NAME>executive_summary_component_factory_client_get_type</NAME>
<RETURNS>GtkType </RETURNS>
void
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_factory_client_construct</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentFactoryClient *client,CORBA_Object corba_object
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_factory_client_new</NAME>
<RETURNS>ExecutiveSummaryComponentFactoryClient *</RETURNS>
const char *id
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_factory_client_create_view</NAME>
<RETURNS>CORBA_Object </RETURNS>
ExecutiveSummaryComponentFactoryClient *client
</FUNCTION>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_VIEW_TYPE</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_VIEW_TYPE (executive_summary_component_view_get_type ())
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_VIEW</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_VIEW(obj) (GTK_CHECK_CAST ((obj), EXECUTIVE_SUMMARY_COMPONENT_VIEW_TYPE, ExecutiveSummaryComponentView))
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_VIEW_CLASS</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_VIEW_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EXECUTIVE_SUMMARY_COMPONENT_VIEW_TYPE, ExecutiveSummaryComponentClass))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT_VIEW</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT_VIEW(obj) (GTK_CHECK_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_VIEW_TYPE))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT_VIEW_CLASS</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_VIEW_CLASS_TYPE))
</MACRO>
<STRUCT>
<NAME>ExecutiveSummaryComponentViewPrivate</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentView</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentViewClass</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentView</NAME>
struct ExecutiveSummaryComponentView {
GtkObject object;
ExecutiveSummaryComponentViewPrivate *private;
};
</STRUCT>
<FUNCTION>
<NAME>executive_summary_component_view_get_type</NAME>
<RETURNS>GtkType </RETURNS>
void
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_construct</NAME>
<RETURNS>void</RETURNS>
ExecutiveSummaryComponentView *view,ExecutiveSummaryComponent *component,BonoboControl *control,const char *html,const char *title,const char *icon
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_new</NAME>
<RETURNS>ExecutiveSummaryComponentView *</RETURNS>
ExecutiveSummaryComponent *component,BonoboControl *control,const char *html,const char *title,const char *icon
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_set_title</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentView *view,const char *title
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_get_title</NAME>
<RETURNS>const char *</RETURNS>
ExecutiveSummaryComponentView *view
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_set_icon</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentView *view,const char *icon
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_get_icon</NAME>
<RETURNS>const char *</RETURNS>
ExecutiveSummaryComponentView *view
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_flash</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentView *view
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_set_html</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentView *view,const char *html
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_get_html</NAME>
<RETURNS>const char *</RETURNS>
ExecutiveSummaryComponentView *view
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_get_control</NAME>
<RETURNS>BonoboObject *</RETURNS>
ExecutiveSummaryComponentView *view
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_get_id</NAME>
<RETURNS>int </RETURNS>
ExecutiveSummaryComponentView *view
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_set_id</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentView *view,int id
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_configure</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentView *view
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_set_objref</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryComponentView *view,Bonobo_Control objref
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_view_get_widget</NAME>
<RETURNS>GtkWidget *</RETURNS>
ExecutiveSummaryComponentView *view
</FUNCTION>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_TYPE</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_TYPE (executive_summary_component_get_type ())
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT(obj) (GTK_CHECK_CAST ((obj), EXECUTIVE_SUMMARY_COMPONENT_TYPE, ExecutiveSummaryComponent))
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_CLASS</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EXECUTIVE_SUMMARY_COMPONENT_TYPE, ExecutiveSummaryComponentClass))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT(obj) (GTK_CHECK_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_TYPE))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT_CLASS</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_TYPE))
</MACRO>
<STRUCT>
<NAME>ExecutiveSummaryComponentPrivate</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponent</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentClass</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponent</NAME>
struct ExecutiveSummaryComponent {
BonoboObject parent;
ExecutiveSummaryComponentPrivate *private;
};
</STRUCT>
<FUNCTION>
<NAME>executive_summary_component_get_type</NAME>
<RETURNS>GtkType </RETURNS>
void
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_new</NAME>
<RETURNS>BonoboObject *</RETURNS>
void
</FUNCTION>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_FACTORY_TYPE</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_FACTORY_TYPE (executive_summary_component_factory_get_type ())
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_FACTORY</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_FACTORY(obj) (GTK_CHECK_CAST ((obj), EXECUTIVE_SUMMARY_COMPONENT_FACTORY_TYPE, ExecutiveSummaryComponentFactory))
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLASS</NAME>
#define EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EXECUTIVE_SUMMARY_COMPONENT_FACTORY_TYPE, ExecutiveSummaryComponentFactoryClass))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY(obj) (GTK_CHECK_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_FACTORY_TYPE))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLASS</NAME>
#define IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EXECUTIVE_SUMMARY_COMPONENT_FACTORY_TYPE))
</MACRO>
<STRUCT>
<NAME>ExecutiveSummaryComponentFactoryPrivate</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentFactory</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryComponentFactoryClass</NAME>
</STRUCT>
<USER_FUNCTION>
<NAME>EvolutionServicesCreateViewFn</NAME>
<RETURNS>BonoboObject *</RETURNS>
ExecutiveSummaryComponentFactory *factory,
void *closure
</USER_FUNCTION>
<STRUCT>
<NAME>ExecutiveSummaryComponentFactory</NAME>
struct ExecutiveSummaryComponentFactory {
BonoboObject parent;
ExecutiveSummaryComponentFactoryPrivate *private;
};
</STRUCT>
<FUNCTION>
<NAME>executive_summary_component_factory_get_type</NAME>
<RETURNS>GtkType </RETURNS>
void
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_component_factory_new</NAME>
<RETURNS>BonoboObject *</RETURNS>
EvolutionServicesCreateViewFn create_view,void *closure
</FUNCTION>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_HTML_VIEW_HTML_CHANGED</NAME>
#define EXECUTIVE_SUMMARY_HTML_VIEW_HTML_CHANGED "GNOME:Evolution:Summary:HTMLView:html_changed"
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_HTML_VIEW_TYPE</NAME>
#define EXECUTIVE_SUMMARY_HTML_VIEW_TYPE (executive_summary_html_view_get_type ())
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_HTML_VIEW</NAME>
#define EXECUTIVE_SUMMARY_HTML_VIEW(obj) (GTK_CHECK_CAST ((obj), EXECUTIVE_SUMMARY_HTML_VIEW_TYPE, ExecutiveSummaryHtmlView))
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_HTML_VIEW_CLASS</NAME>
#define EXECUTIVE_SUMMARY_HTML_VIEW_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EXECUTIVE_SUMMARY_HTML_VIEW_TYPE, ExecutiveSummaryHtmlViewClass))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_HTML_VIEW</NAME>
#define IS_EXECUTIVE_SUMMARY_HTML_VIEW(obj) (GTK_CHECK_TYPE ((obj), EXECUTIVE_SUMMARY_HTML_VIEW_TYPE))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_HTML_VIEW_CLASS</NAME>
#define IS_EXECUTIVE_SUMMARY_HTML_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EXECUTIVE_SUMMARY_HTML_VIEW_TYPE))
</MACRO>
<STRUCT>
<NAME>ExecutiveSummaryHtmlViewPrivate</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryHtmlView</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryHtmlViewClass</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryHtmlView</NAME>
struct ExecutiveSummaryHtmlView {
BonoboObject parent;
ExecutiveSummaryHtmlViewPrivate *private;
};
</STRUCT>
<FUNCTION>
<NAME>executive_summary_html_view_get_type</NAME>
<RETURNS>GtkType </RETURNS>
void
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_html_view_new_full</NAME>
<RETURNS>BonoboObject *</RETURNS>
BonoboEventSource *event_source
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_html_view_new</NAME>
<RETURNS>BonoboObject *</RETURNS>
void
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_html_view_set_html</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummaryHtmlView *view,const char *html
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_html_view_get_html</NAME>
<RETURNS>const char *</RETURNS>
ExecutiveSummaryHtmlView *view
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_html_view_get_event_source</NAME>
<RETURNS>BonoboEventSource *</RETURNS>
ExecutiveSummaryHtmlView *view
</FUNCTION>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_TYPE</NAME>
#define EXECUTIVE_SUMMARY_TYPE (executive_summary_get_type ())
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY</NAME>
#define EXECUTIVE_SUMMARY(obj) (GTK_CHECK_CAST ((obj), EXECUTIVE_SUMMARY_TYPE, ExecutiveSummary))
</MACRO>
<MACRO>
<NAME>EXECUTIVE_SUMMARY_CLASS</NAME>
#define EXECUTIVE_SUMMARY_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EXECUTIVE_SUMMARY_TYPE, ExecutiveSummaryClass))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY</NAME>
#define IS_EXECUTIVE_SUMMARY(obj) (GTK_CHECK_TYPE ((obj), EXECUTIVE_SUMMARY_TYPE))
</MACRO>
<MACRO>
<NAME>IS_EXECUTIVE_SUMMARY_CLASS</NAME>
#define IS_EXECUTIVE_SUMMARY_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EXECUTIVE_SUMMARY_TYPE))
</MACRO>
<STRUCT>
<NAME>ExecutiveSummaryPrivate</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummary</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummaryClass</NAME>
</STRUCT>
<STRUCT>
<NAME>ExecutiveSummary</NAME>
struct ExecutiveSummary {
BonoboObject parent;
ExecutiveSummaryPrivate *private;
};
</STRUCT>
<FUNCTION>
<NAME>executive_summary_get_type</NAME>
<RETURNS>GtkType </RETURNS>
void
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_construct</NAME>
<RETURNS>void </RETURNS>
ExecutiveSummary *es,GNOME_Evolution_Summary_ViewFrame corba_object
</FUNCTION>
<FUNCTION>
<NAME>executive_summary_new</NAME>
<RETURNS>BonoboObject *</RETURNS>
void
</FUNCTION>

View File

@ -1,95 +0,0 @@
<INCLUDE>executive-summary-component.h</INCLUDE>
<SECTION>
<FILE>executive-summary-component</FILE>
EXECUTIVE_SUMMARY_COMPONENT
<TITLE>ExecutiveSummaryComponent</TITLE>
executive_summary_component_new
<SUBSECTION Standard>
EXECUTIVE_SUMMARY_COMPONENT_TYPE
EXECUTIVE_SUMMARY_COMPONENT
EXECUTIVE_SUMMARY_COMPONENT_CLASS
IS_EXECUTIVE_SUMMARY_COMPONENT
IS_EXECUTIVE_SUMMARY_COMPONENT_CLASS
executive_summary_component_get_type
<SUBSECTION Private>
ExecutiveSummaryComponent
ExecutiveSummaryComponentPrivate
</SECTION>
<SECTION>
<FILE>executive-summary-component-factory</FILE>
EXECUTIVE_SUMMARY_COMPONENT_FACTORY
<TITLE>ExecutiveSummaryComponentFactory</TITLE>
EvolutionServicesCreateViewFn
executive_summary_component_factory_new
<SUBSECTION Standard>
EXECUTIVE_SUMMARY_COMPONENT_FACTORY_TYPE
EXECUTIVE_SUMMARY_COMPONENT_FACTORY
EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLASS
IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY
IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLASS
executive_summary_component_factory_get_type
<SUBSECTION Private>
ExecutiveSummaryComponentFactory
ExecutiveSummaryComponentFactoryPrivate
</SECTION>
<INCLUDE>executive-summary-component-factory-client.h</INCLUDE>
<SECTION>
<FILE>executive-summary-component-factory-client</FILE>
EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT
<TITLE>ExecutiveSummaryComponentFactoryClient</TITLE>
executive_summary_component_factory_client_construct
executive_summary_component_factory_client_new
executive_summary_component_factory_client_create_view
<SUBSECTION Standard>
EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_TYPE
EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT
EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_CLASS
IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT
IS_EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT_CLASS
executive_summary_component_factory_client_get_type
<SUBSECTION Private>
ExecutiveSummaryComponentFactoryClient
ExecutiveSummaryComponentFactoryClientPrivate
</SECTION>
<INCLUDE>executive-summary-html-view.h</INCLUDE>
<SECTION>
<FILE>executive-summary-html-view</FILE>
EXECUTIVE_SUMMARY_HTML_VIEW
<TITLE>ExecutiveSummaryHtmlView</TITLE>
EXECUTIVE_SUMMARY_HTML_VIEW_HTML_CHANGED
executive_summary_html_view_new_full
executive_summary_html_view_new
executive_summary_html_view_set_html
executive_summary_html_view_get_html
executive_summary_html_view_get_event_source
<SUBSECTION Standard>
EXECUTIVE_SUMMARY_HTML_VIEW_TYPE
EXECUTIVE_SUMMARY_HTML_VIEW
IS_EXECUTIVE_SUMMARY_HTML_VIEW
EXECUTIVE_SUMMARY_HTML_VIEW_CLASS
IS_EXECUTIVE_SUMMARY_HTML_VIEW_CLASS
executive_summary_html_view_get_type
<SUBSECTION Private>
ExecutiveSummaryHtmlView
ExecutiveSummaryHtmlViewPrivate
</SECTION>

View File

@ -1,10 +0,0 @@
#include <gnome.h>
#include <bonobo.h>
#include <evolution-services/executive-summary-component.h>
#include <evolution-services/executive-summary-component-factory-client.h>
#include <evolution-services/executive-summary-html-view.h>
executive_summary_component_get_type
executive_summary_component_factory_get_type
executive_summary_component_factory_client_get_type
executive_summary_html_view_get_type

View File

@ -1,20 +0,0 @@
<reference id="evolution-services-private-reference">
<title>Evolution Services Private API Reference</title>
<partintro>
<para>
This part presents the class and function reference for the
private APIs of the different components of the &Evolution;
Executive Summary Services Framework.
</para>
</partintro>
&ExecutiveSummaryComponentFactoryClient;
</reference>
<!--
Local variables:
mode: sgml
sml-parent-document: ("../evolution-devel-guide.sgml" "book" "part" "")
End:
-->

View File

@ -1,22 +0,0 @@
<reference id="evolution-services-public-reference">
<title>Evolution Services Public API Reference</title>
<partintro>
<para>
This part presents the class and function reference for the
public APIs of the different components of the &Evolution;
Executive Summary Services Framework.
</para>
</partintro>
&ExecutiveSummaryComponent;
&ExecutiveSummaryComponentFactory;
&ExecutiveSummaryHtmlView;
</reference>
<!--
Local variables:
mode: sgml
sml-parent-document: ("../evolution-devel-guide.sgml" "book" "part" "")
End:
-->

View File

@ -1,8 +0,0 @@
<!-- ##### SIGNAL ExecutiveSummaryHtmlView::handle-uri ##### -->
<para>
</para>
@executivesummaryhtmlview: the object which received the signal.
@arg1:

View File

@ -1,53 +0,0 @@
<!-- ##### SECTION Title ##### -->
ExecutiveSummaryComponentFactoryClient
<!-- ##### SECTION Short_Description ##### -->
GtkObject client to simplfy use of GNOME_Evolution_Summary_ComponentFactory
<!-- ##### SECTION Long_Description ##### -->
<para>
This object provides an easy wrapper around the CORBA object that represents the
GNOME_Evolution_Summary_ComponentFactory interface. It handles conversion from
normal types to CORBA types and has error checking.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
</para>
<!-- ##### MACRO EXECUTIVE_SUMMARY_COMPONENT_FACTORY_CLIENT ##### -->
<para>
Casts a #GtkObject into an #ExecutiveSummaryComponentFactoryClient
</para>
@obj:
<!-- ##### FUNCTION executive_summary_component_factory_client_construct ##### -->
<para>
</para>
@client:
@corba_object:
<!-- ##### FUNCTION executive_summary_component_factory_client_new ##### -->
<para>
</para>
@id:
@Returns:
<!-- ##### FUNCTION executive_summary_component_factory_client_create_view ##### -->
<para>
</para>
@client:
@Returns:

View File

@ -1,46 +0,0 @@
<!-- ##### SECTION Title ##### -->
ExecutiveSummaryComponentFactory
<!-- ##### SECTION Short_Description ##### -->
GtkObject wrapper for GNOME/Evolution/Summary/ComponentFactory.
<!-- ##### SECTION Long_Description ##### -->
<para>
An ExecutiveSummaryComponentFactory simplifies the creation of a
GNOME_Evolution_Summary_ComponentFactory object. It also allows error checking
and all the standard #GtkObject signals.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
</para>
<!-- ##### MACRO EXECUTIVE_SUMMARY_COMPONENT_FACTORY ##### -->
<para>
Casts a #GtkObject to an #ExecutiveSummaryComponentFactory.
</para>
@obj: A #GtkObject.
<!-- ##### USER_FUNCTION EvolutionServicesCreateViewFn ##### -->
<para>
The type of function that is called when the factory has to create a new view.
</para>
@factory: The #ExecutiveSummaryComponent that is creating the view.
@closure: The data that was passed into executive_summary_factory_new ().
@Returns: An #ExecutiveSummaryComponent.
<!-- ##### FUNCTION executive_summary_component_factory_new ##### -->
<para>
</para>
@create_view:
@closure:
@Returns:

View File

@ -1,37 +0,0 @@
<!-- ##### SECTION Title ##### -->
ExecutiveSummaryComponent
<!-- ##### SECTION Short_Description ##### -->
The base #BonoboObject that implements GNOME/Evolution/Summary/Component.
<!-- ##### SECTION Long_Description ##### -->
<para>
This #GtkObject wrapper around the GNOME/Evolution/Summary/Component, is the
base object that has all the other interfaces aggregated onto it. These
interfaces are: GNOME/Evolution/HTMLView, Bonobo/Control, Bonobo/EventSource,
Bonobo/PropertyBag, Bonobo/PropertyControl and Bonobo/PersistStream. Each of
the aggregated interfaces performs a specific job in the creation of the service.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
#ExecutiveSummaryHtmlView, #BonoboControl, #BonoboEventSource, #BonoboPropertyBag,
#BonoboPropertyControl, #BonoboPersistStream.
</para>
<!-- ##### MACRO EXECUTIVE_SUMMARY_COMPONENT ##### -->
<para>
Casts a #GtkObject to an #ExecutiveSummaryComponent.
</para>
@obj: A #GtkObject.
<!-- ##### FUNCTION executive_summary_component_new ##### -->
<para>
</para>
@Returns:

View File

@ -1,75 +0,0 @@
<!-- ##### SECTION Title ##### -->
ExecutiveSummaryHtmlView
<!-- ##### SECTION Short_Description ##### -->
A Bonobo component used to implement HTML based services.
<!-- ##### SECTION Long_Description ##### -->
<para>
When writing HTML services, this component is aggregated onto an #ExecutiveSummaryComponent, to allow the Executive Summary to be able to find the HTML.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
#ExecutiveSummaryComponent, #BonoboEventSource
</para>
<!-- ##### MACRO EXECUTIVE_SUMMARY_HTML_VIEW ##### -->
<para>
Casts a #GtkObject into an #ExecutiveSummaryHtmlView
</para>
@obj: A #GtkObject
<!-- ##### MACRO EXECUTIVE_SUMMARY_HTML_VIEW_HTML_CHANGED ##### -->
<para>
This is the event that is emitted on the BonoboEventSource when the HTML is changed.
</para>
<!-- ##### FUNCTION executive_summary_html_view_new_full ##### -->
<para>
</para>
@event_source:
@Returns:
<!-- ##### FUNCTION executive_summary_html_view_new ##### -->
<para>
</para>
@Returns:
<!-- ##### FUNCTION executive_summary_html_view_set_html ##### -->
<para>
</para>
@view:
@html:
<!-- ##### FUNCTION executive_summary_html_view_get_html ##### -->
<para>
</para>
@view:
@Returns:
<!-- ##### FUNCTION executive_summary_html_view_get_event_source ##### -->
<para>
</para>
@view:
@Returns:

View File

@ -1,195 +0,0 @@
## Process this file with automake to produce Makefile.in
# The name of the module, e.g. 'glib'.
DOC_MODULE=evolution-shell-importer
# The top-level SGML file. Change it if you want.
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
# The directory containing the source code. Relative to $(srcdir).
# gtk-doc will search all .c & .h files beneath here for inline comments
# documenting functions and macros.
DOC_SOURCE_DIR=$(EVOLUTION_DIR)/shell/importer
# Extra options to supply to gtkdoc-scan.
SCAN_OPTIONS=
# Extra options to supply to gtkdoc-mkdb.
MKDB_OPTIONS=
# Extra options to supply to gtkdoc-fixref.
FIXXREF_OPTIONS=
# Used for dependencies.
HFILE_GLOB= \
$(top_srcdir)/shell/importer/evolution-importer.h \
$(top_srcdir)/shell/importer/evolution-importer-client.h
CFILE_GLOB= \
$(top_srcdir)/shell/importer/evolution-importer.c \
$(top_srcdir)/shell/importer/evolution-importer-client.c
# Header files to ignore when scanning.
IGNORE_HFILES= \
GNOME_Evolution_Importer.h \
importer.h
# Images to copy into HTML directory.
HTML_IMAGES =
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
content_files =
# Other files to distribute.
extra_files =
# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
# contains GtkObjects/GObjects and you want to document signals and properties.
GTKDOC_CFLAGS = \
-I$(top_srcdir)/shell/importer \
-I$(top_srcdir)/shell \
-I$(top_srcdir) \
-I$(top_builddir) \
$(BONOBO_VFS_GNOME_CFLAGS)
GTKDOC_LIBS = \
$(BONOBO_VFS_GNOME_LIBS) \
$(top_builddir)/shell/importer/.libs/libevolution-importer.so
GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC)
GTKDOC_LD=$(LIBTOOL) --mode=link $(CC)
# If you need to override some of the declarations, place them in this file
# and uncomment this line.
#DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt
DOC_OVERRIDES =
###########################################################################
# Everything below here is generic and you shouldn't need to change it.
###########################################################################
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
EXTRA_DIST = \
$(content_files) \
$(extra_files) \
$(HTML_IMAGES) \
$(DOC_MAIN_SGML_FILE) \
$(DOC_MODULE).types \
$(DOC_MODULE)-sections.txt \
$(DOC_OVERRIDES)
DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \
$(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp
SCANOBJ_FILES = \
$(DOC_MODULE).args \
$(DOC_MODULE).hierarchy \
$(DOC_MODULE).signals
if ENABLE_GTK_DOC
#all-local: html-build.stamp
all-local: sgml-build.stamp
#### scan ####
scan-build.stamp: $(HFILE_GLOB)
@echo '*** Scanning header files ***'
if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \
CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scanobj --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \
else \
cd $(srcdir) ; \
for i in $(SCANOBJ_FILES) ; do \
test -f $$i || touch $$i ; \
done \
fi
cd $(srcdir) && \
gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
touch scan-build.stamp
$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp
@true
#### templates ####
tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_OVERRIDES)
@echo '*** Rebuilding template files ***'
cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE)
touch tmpl-build.stamp
tmpl.stamp: tmpl-build.stamp
@true
#### sgml ####
sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building SGML ***'
cd $(srcdir) && \
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --main-sgml-file=$(DOC_MAIN_SGML_FILE) $(MKDB_OPTIONS)
touch sgml-build.stamp
sgml.stamp: sgml-build.stamp
@true
#### html ####
html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
@echo '*** Building HTML ***'
test -d $(srcdir)/html || mkdir $(srcdir)/html
cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
@echo '-- Fixing Crossreferences'
cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
touch html-build.stamp
endif
##############
clean-local:
rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS)
maintainer-clean-local: clean
cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
(installfiles=`echo $(srcdir)/html/*.html`; \
if test "$$installfiles" = '$(srcdir)/html/*.html'; \
then echo '-- Nothing to install' ; \
else \
for i in $$installfiles; do \
echo '-- Installing '$$i ; \
$(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
done; \
echo '-- Installing $(srcdir)/html/index.sgml' ; \
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
fi)
#
# Require gtk-doc when making dist
#
if ENABLE_GTK_DOC
dist-check-gtkdoc:
else
dist-check-gtkdoc:
@echo "*** gtk-doc must be installed and enabled in order to make dist"
@false
endif
dist-hook: dist-check-gtkdoc dist-hook-local
mkdir $(distdir)/tmpl
mkdir $(distdir)/sgml
mkdir $(distdir)/html
-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
-cp $(srcdir)/sgml/*.sgml $(distdir)/sgml
-cp $(srcdir)/html/index.sgml $(distdir)/html
-cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html
images=$(HTML_IMAGES) ; \
for i in $$images ; do \
cp $(srcdir)/$$i $(distdir)/html ; \
done
.PHONY : dist-hook-local

View File

@ -1,79 +0,0 @@
<INCLUDE>evolution-importer.h</INCLUDE>
<SECTION>
<FILE>evolution-importer</FILE>
EVOLUTION_IMPORTER
<TITLE>EvolutionImporter</TITLE>
EvolutionImporterSupportFormatFn
EvolutionImporterLoadFileFn
EvolutionImporterProcessItemFn
EvolutionImporterGetErrorFn
EvolutionImporterResult
evolution_importer_new
<SUBSECTION Standard>
EVOLUTION_TYPE_IMPORTER
EVOLUTION_IMPORTER
EVOLUTION_IS_IMPORTER
EVOLUTION_IMPORTER_CLASS
EVOLUTION_IS_IMPORTER_CLASS
evolution_importer_get_type
<SUBSECTION Private>
EvolutionImporter
EvolutionImporterPrivate
</SECTION>
<INCLUDE>evolution-importer-listener.h</INCLUDE>
<SECTION>
<FILE>evolution-importer-listener</FILE>
EVOLUTION_IMPORTER_LISTENER
<TITLE>EvolutionImporterListener</TITLE>
EvolutionImporterListenerCallback
evolution_importer_listener_new
<SUBSECTION Standard>
EVOLUTION_TYPE_IMPORTER_LISTENER
EVOLUTION_IMPORTER_LISTENER
EVOLUTION_IMPORTER_LISTENER_CLASS
EVOLUTION_IS_IMPORTER_LISTENER
EVOLUTION_IS_IMPORTER_LISTENER_CLASS
evolution_importer_listener_get_type
<SUBSECTION Private>
EvolutionImporterListener
EvolutionImporterListenerPrivate
</SECTION>
<INCLUDE>evolution-importer-client.h</INCLUDE>
<SECTION>
<FILE>evolution-importer-client</FILE>
EVOLUTION_IMPORTER_CLIENT
<TITLE>EvolutionImporterClient</TITLE>
evolution_importer_client_new
evolution_importer_client_new_from_id
evolution_importer_client_support_format
evolution_importer_client_load_file
evolution_importer_client_process_item
evolution_importer_client_get_error
<SUBSECTION Standard>
EVOLUTION_TYPE_IMPORTER_CLIENT
EVOLUTION_IMPORTER_CLIENT
EVOLUTION_IMPORTER_CLIENT_CLASS
EVOLUTION_IS_IMPORTER_CLIENT
EVOLUTION_IS_IMPORTER_CLIENT_CLASS
evolution_importer_client_get_type
<SUBSECTION Private>
EvolutionImporterClient
</SECTION>

View File

@ -1,9 +0,0 @@
#include <gnome.h>
#include <bonobo.h>
#include <shell/importer/evolution-importer.h>
#include <shell/importer/evolution-importer-client.h>
#include <shell/importer/evolution-importer-listener.h>
evolution_importer_get_type
evolution_importer_client_get_type
evolution_importer_listener_get_type

View File

@ -1,21 +0,0 @@
<reference id="importer-private-reference">
<title>Importer Private API Reference</title>
<partintro>
<para>
This part presents the class and function reference for the
private APIs of the different components of the &Evolution;
Import Framework.
</para>
</partintro>
&EvolutionImporterListener;
&EvolutionImporterClient;
</reference>
<!--
Local variables:
mode: sgml
sml-parent-document: ("../evolution-devel-guide.sgml" "book" "part" "")
End:
-->

View File

@ -1,20 +0,0 @@
<reference id="importer-public-reference">
<title>Importer Public API Reference</title>
<partintro>
<para>
This part presents the class and function reference for the
public APIs of the different components of the &Evolution;
Import Framework.
</para>
</partintro>
&EvolutionImporter;
</reference>
<!--
Local variables:
mode: sgml
sml-parent-document: ("../evolution-devel-guide.sgml" "book" "part" "")
End:
-->

View File

@ -1,84 +0,0 @@
<!-- ##### SECTION Title ##### -->
EvolutionImporterClient
<!-- ##### SECTION Short_Description ##### -->
A #GtkObject based client to simplify use of a GNOME_Evolution_Importer object.
<!-- ##### SECTION Long_Description ##### -->
<para>
This #GtkObject provides a convience wrapper to the GNOME_Evolution_Importer object, providing error checking and hiding all the CORBA internals from the user.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
</para>
<!-- ##### MACRO EVOLUTION_IMPORTER_CLIENT ##### -->
<para>
Casts a #GtkObject into an #EvolutionImporterClient
</para>
@obj: A #GtkObject
<!-- ##### FUNCTION evolution_importer_client_new ##### -->
<para>
</para>
@objref:
@Returns:
<!-- ##### FUNCTION evolution_importer_client_new_from_id ##### -->
<para>
</para>
@id:
@Returns:
<!-- ##### FUNCTION evolution_importer_client_support_format ##### -->
<para>
</para>
@client:
@filename:
@Returns:
<!-- ##### FUNCTION evolution_importer_client_load_file ##### -->
<para>
</para>
@client:
@filename:
@folderpath:
@Returns:
<!-- ##### FUNCTION evolution_importer_client_process_item ##### -->
<para>
</para>
@client:
@listener:
<!-- # Unused Parameters # -->
@callback:
@closure:
<!-- ##### FUNCTION evolution_importer_client_get_error ##### -->
<para>
</para>
@client:
@Returns:

View File

@ -1,96 +0,0 @@
<!-- ##### SECTION Title ##### -->
EvolutionImporter
<!-- ##### SECTION Short_Description ##### -->
A #BonoboObject that implements the GNOME/Evolution/Importer interface.
<!-- ##### SECTION Long_Description ##### -->
<para>
A #BonoboObject wrapper around the GNOME/Evolution/Importer interface, providing error checking and reference counting, hiding the CORBA internals from the user and providing a simple way to create a GNOME_Evolution_Importer object.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
</para>
<!-- ##### MACRO EVOLUTION_IMPORTER ##### -->
<para>
Casts a #GtkObject into an #EvolutionImporter.
</para>
@obj: A #GtkObject.
<!-- ##### USER_FUNCTION EvolutionImporterSupportFormatFn ##### -->
<para>
The type of function that is called when the importer wishes to find out if the importing component can support the file given in @filename.
</para>
@importer: The #EvolutionImporter.
@filename: The filename of the file to check.
@closure: The data passed into evolution_importer_new ().
@Returns: A #gboolean. TRUE if the importing component can import the file, FALSE otherwise.
<!-- ##### USER_FUNCTION EvolutionImporterLoadFileFn ##### -->
<para>
The type of function that is called when the importer wishes the importing component to load the file given in @filename, and initialise itself.
</para>
@importer: The #EvolutionImporter.
@filename: The filename of the file to load.
@folderpath:
@closure: The data passed into evolution_importer_new ().
@Returns: A #gboolean. TRUE if the load and initialisation was successful, FALSE otherwise.
<!-- ##### USER_FUNCTION EvolutionImporterProcessItemFn ##### -->
<para>
The type of function that is called when the importer wants the importing component to process the next item (or items) in a file.
</para>
@importer: The #EvolutionImporter
@listener: A GNOME_Evolution_Importer_Listener CORBA object.
@closure: The data passed into evolution_importer_new ().
@ev: A #CORBA_Environment for returning any CORBA exceptions.
<!-- ##### USER_FUNCTION EvolutionImporterGetErrorFn ##### -->
<para>
The type of function that is called when the importer wants to get a string version of an error. Not all importing components support this function.
</para>
@importer: The #EvolutionImporter.
@closure: The data passed to evolution_importer_new ().
@Returns: A string representation of the error, or NULL if there was no error, or the importing component does not support the getError method.
<!-- ##### ENUM EvolutionImporterResult ##### -->
<para>
</para>
@EVOLUTION_IMPORTER_OK:
@EVOLUTION_IMPORTER_UNSUPPORTED_OPERATION:
@EVOLUTION_IMPORTER_INTERRUPTED:
@EVOLUTION_IMPORTER_BUSY:
@EVOLUTION_IMPORTER_NOT_READY:
@EVOLUTION_IMPORTER_UNKNOWN_DATA:
@EVOLUTION_IMPORTER_BAD_DATA:
@EVOLUTION_IMPORTER_BAD_FILE:
@EVOLUTION_IMPORTER_UNKNOWN_ERROR:
<!-- ##### FUNCTION evolution_importer_new ##### -->
<para>
</para>
@support_format_fn:
@load_file_fn:
@process_item_fn:
@get_error_fn:
@closure:
@Returns:

View File

@ -1,10 +0,0 @@
<!-- ##### USER_FUNCTION EvolutionImporterClientCallback ##### -->
<para>
</para>
@client:
@result:
@more_items:
@data: