/usr/include/libgoffice-0.8/goffice/app/go-doc.h is in libgoffice-0.8-dev 0.8.17-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | /* 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 <goffice/goffice.h>
#include <gsf/gsf.h>
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,
XXXGOIOContext *context,
gchar const *encoding);
GODoc *go_doc_new_from_uri (char const *uri,
GnmFileOpener const *fmt,
XXXGOIOContext *context,
gchar const *encoding);
gboolean go_doc_save (GODoc *doc, XXXGOIOContext *context);
gboolean go_doc_save_as (GODoc *doc, GODocExporter *fmt, char const *uri,
XXXGOIOContext *cc);
gboolean go_doc_sendto (GODoc *doc, XXXGOIOContext *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 */
|