/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * go-pie.h * * Copyright (C) 2003-2004 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 GOG_PIE_PLOT_H #define GOG_PIE_PLOT_H #include #include G_BEGIN_DECLS typedef struct { GogSeriesElement base; double separation; } GogPieSeriesElement; #define GOG_PIE_SERIES_ELEMENT_TYPE (gog_pie_series_element_get_type ()) #define GOG_PIE_SERIES_ELEMENT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOG_PIE_SERIES_ELEMENT_TYPE, GogPieSeriesElement)) #define IS_GOG_PIE_SERIES_ELEMENT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOG_PIE_SERIES_ELEMENT_TYPE)) GType gog_pie_series_element_get_type (void); typedef struct { GogPlot base; float initial_angle; /* degrees counterclockwise from 3 o'clock */ float span; float default_separation; /* as a percentage of the radius */ gboolean in_3d; } GogPiePlot; #define GOG_PIE_PLOT_TYPE (gog_pie_plot_get_type ()) #define GOG_PIE_PLOT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOG_PIE_PLOT_TYPE, GogPiePlot)) #define GOG_IS_PIE_PLOT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOG_PIE_PLOT_TYPE)) GType gog_pie_plot_get_type (void); typedef struct { GogPiePlot base; float center_size; } GogRingPlot; #define GOG_RING_PLOT_TYPE (gog_ring_plot_get_type ()) #define GOG_RING_PLOT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOG_RING_PLOT_TYPE, GogRingPlot)) #define GOG_IS_RING_PLOT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOG_RING_PLOT_TYPE)) GType gog_ring_plot_get_type (void); typedef struct { GogSeries base; float initial_angle; /* degrees counterclockwise from 3 o'clock */ float separation; /* as a percentage of the radius */ double total; float *extensions; } GogPieSeries; #define GOG_PIE_SERIES_TYPE (gog_pie_series_get_type ()) #define GOG_PIE_SERIES(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOG_PIE_SERIES_TYPE, GogPieSeries)) #define GOG_IS_PIE_SERIES(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOG_PIE_SERIES_TYPE)) GType gog_pie_series_get_type (void); G_END_DECLS #endif /* GOG_PIE_SERIES_H */