/usr/include/libgoffice-0.8/goffice/graph/gog-axis-line-impl.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 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* gog-axis-line-impl.h :
*
* Copyright (C) 2005 Emmanuel Pacaud (emmanuel.pacaud@univ-poitiers.fr)
*
* 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 GOG_AXIS_LINE_IMPL_H
#define GOG_AXIS_LINE_IMPL_H
#include <goffice/goffice.h>
G_BEGIN_DECLS
typedef struct {
gboolean tick_in, tick_out;
int size_pts;
} GogAxisTickProperties;
struct _GogAxisBase {
GogStyledObject base;
GogChart *chart;
GogAxis *axis;
GogAxisPosition position;
unsigned crossed_axis_id;
GogDatasetElement cross_location;
int padding;
GogAxisTickProperties major, minor;
gboolean major_tick_labeled;
};
typedef GogStyledObjectClass GogAxisBaseClass;
GogAxisPosition gog_axis_base_get_position (GogAxisBase *axis_base);
void gog_axis_base_set_position (GogAxisBase *axis_base, GogAxisPosition position);
GogAxisPosition gog_axis_base_get_clamped_position (GogAxisBase *axis_base);
typedef struct {
GogView base;
double x_start, y_start;
double x_stop, y_stop;
} GogAxisBaseView;
typedef GogViewClass GogAxisBaseViewClass;
#define GOG_TYPE_AXIS_BASE_VIEW (gog_axis_base_view_get_type ())
#define GOG_AXIS_BASE_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOG_TYPE_AXIS_BASE_VIEW, GogAxisBaseView))
#define GOG_IS_AXIS_BASE_VIEW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOG_TYPE_AXIS_BASE_VIEW))
GType gog_axis_base_view_get_type (void);
void gog_axis_base_view_label_position_request (GogView *view,
GogViewAllocation const *bbox,
GogViewAllocation *pos);
G_END_DECLS
#endif /*GOG_AXIS_LINE_IMPL_H*/
|