/usr/include/libgoffice-0.8/goffice/component/go-component.h is in libgoffice-0.8-dev 0.8.17-3.
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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* go-component.h :
*
* Copyright (C) 2005 Jean Brefort (jean.brefort@normalesup.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_COMPONENT_H
#define GO_COMPONENT_H
#include <glib-object.h>
#include <goffice/goffice.h>
#include <goffice/component/goffice-component.h>
G_BEGIN_DECLS
GO_VAR_DECL double GOCXres, GOCYres;
struct _GOComponent {
GObject parent;
/*protected*/
char *mime_type;
double width, ascent, descent, height;
double default_width, default_ascent, default_descent;
gboolean needs_window, resizable, editable;
char const *data;
int length;
GdkWindow *window;
};
struct _GOComponentClass {
GObjectClass parent_class;
GtkWindow* (*edit) (GOComponent *component);
gboolean (*get_data) (GOComponent *component, gpointer *data, int *length,
GDestroyNotify *clearfunc, gpointer *user_data);
void (*mime_type_set) (GOComponent* component);
void (*set_data) (GOComponent *component);
void (*set_default_size) (GOComponent* component);
void (*set_size) (GOComponent *component);
void (*set_window) (GOComponent *component);
void (*render) (GOComponent *component, cairo_t *cr,
double width, double height);
/* signals */
void (*changed) (GOComponent* component);
};
typedef struct _GOComponentClass GOComponentClass;
#define GO_TYPE_COMPONENT (go_component_get_type ())
#define GO_COMPONENT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GO_TYPE_COMPONENT, GOComponent))
#define GO_IS_COMPONENT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GO_TYPE_COMPONENT))
#define GOC_PARAM_PERSISTENT (1 << (G_PARAM_USER_SHIFT+0))
GType go_component_get_type (void);
GOComponent *go_component_new_by_mime_type (char const *mime_type);
void go_component_set_default_size (GOComponent *component,
double width, double ascent, double descent);
gboolean go_component_needs_window (GOComponent *component);
void go_component_set_window (GOComponent *component, GdkWindow *window);
void go_component_set_data (GOComponent *component,
char const *data, int length);
gboolean go_component_get_data (GOComponent *component, gpointer *data, int *length,
GDestroyNotify *clearfunc, gpointer *user_data);
void go_component_set_size (GOComponent *component, double width, double height);
gboolean go_component_is_resizable (GOComponent *component);
gboolean go_component_is_editable (GOComponent *component);
GtkWindow* go_component_edit (GOComponent *component);
void go_component_emit_changed (GOComponent *component);
void go_component_set_command_context (GOCmdContext *cc);
GOCmdContext *go_component_get_command_context (void);
void go_component_render (GOComponent *component, cairo_t *cr, double width, double height);
G_END_DECLS
#endif /* GOFFICE_COMPONENT_H */
|