/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * go-doc.h : A GOffice document * * Copyright (C) 2004-2006 Jody Goldberg (jody gnome org) * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 * USA */ #ifndef GO_DOC_H #define GO_DOC_H #include #include G_BEGIN_DECLS #define GO_TYPE_DOC (go_doc_get_type ()) #define GO_DOC(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GO_TYPE_DOC, GODoc)) #define GO_IS_DOC(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GO_TYPE_DOC)) GType go_doc_get_type (void); void go_doc_set_pristine (GODoc *doc, gboolean pristine); gboolean go_doc_is_pristine (GODoc const *doc); void go_doc_set_dirty (GODoc *doc, gboolean is_dirty); gboolean go_doc_is_dirty (GODoc const *doc); gboolean go_doc_set_uri (GODoc *doc, char const *uri); char const *go_doc_get_uri (GODoc const *doc); GsfDocMetaData *go_doc_get_meta_data (GODoc const *doc); void go_doc_set_meta_data (GODoc *doc, GsfDocMetaData *data); void go_doc_update_meta_data (GODoc *doc); #if 0 GODoc *go_doc_new_from_input (GsfInput *input, GODocImporter const *fmt, GOIOContext *context, gchar const *encoding); GODoc *go_doc_new_from_uri (char const *uri, GnmFileOpener const *fmt, GOIOContext *context, gchar const *encoding); gboolean go_doc_save (GODoc *doc, GOIOContext *context); gboolean go_doc_save_as (GODoc *doc, GODocExporter *fmt, char const *uri, GOIOContext *cc); gboolean go_doc_sendto (GODoc *doc, GOIOContext *cc); #endif /* put into GODoc (as properties) */ /* Images related functions */ GOImage *go_doc_get_image (GODoc *doc, char const *id); GOImage *go_doc_add_image (GODoc *doc, char const *id, GOImage *image); GHashTable *go_doc_get_images (GODoc *doc); void go_doc_init_write (GODoc *doc, GsfXMLOut *output); void go_doc_write (GODoc *doc, GsfXMLOut *output); void go_doc_save_image (GODoc *doc, char const *id); void go_doc_init_read (GODoc *doc, GsfInput *input); void go_doc_read (GODoc *doc, GsfXMLIn *xin, xmlChar const **attrs); void go_doc_end_read (GODoc *doc); GOImage *go_doc_image_fetch (GODoc *doc, char const *id); G_END_DECLS #endif /* GO_DOC_H */