* Bowing params are working better.
[scdataviz] / graph.h
1 /*
2 ** Graph.h
3 ** 
4 ** Made by Johnny Q. Hacker
5 ** Login   <solarion@johnathan>
6 ** 
7
8     Copyright (C) 2008 Joseph Pingenot
9
10     This program is free software: you can redistribute it and/or modify
11     it under the terms of the GNU Affero General Public License as published by
12     the Free Software Foundation, either version 3 of the License, or
13     (at your option) any later version.
14
15     This program is distributed in the hope that it will be useful,
16     but WITHOUT ANY WARRANTY; without even the implied warranty of
17     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18     GNU Affero General Public License for more details.
19
20     You should have received a copy of the GNU Affero General Public License
21     along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
23 ** Started on  Thu Jul 17 10:51:32 2008 Johnny Q. Hacker
24 ** Last update Thu Jul 17 10:51:32 2008 Johnny Q. Hacker
25 */
26
27 #ifndef         GRAPHCLASS_H_
28 #define         GRAPHCLASS_H_
29
30 #include <glib-2.0/glib-object.h>
31
32 typedef enum {SQUARE, CIRCLE, STAR, PLUS, MINUS, CROSS} graph_symbol;
33
34 struct graph_point {
35   double x;
36   double y;
37   GString *label;
38 };
39
40 /*Bezier line*/
41 struct graph_line {
42   /*First point*/
43   double p0_x;
44   double p0_y;
45   /*Control pts*/
46   double p1_x;
47   double p1_y;
48   double p2_x;
49   double p2_y;
50   /*End point*/
51   double p3_x;
52   double p3_y;
53 };
54
55 struct graph_axis {
56   double start;
57   double step;
58   int xminor;
59   int subminor;
60   GString title;
61 };
62
63 typedef struct _Graph {
64   GObject parent_instance;
65   /*Array of n_points sets of x,y coords*/
66   GPtrArray *points;
67   /*This draws all of the lines (generally between points)*/
68   GPtrArray *lines;
69   double maxx;
70   double minx;
71   double maxy;
72   double miny;
73   graph_symbol symbol;
74   struct graph_axis *xaxis;
75   struct graph_axis *yaxis;
76 } Graph;
77
78 typedef struct _GraphClass {
79   GObjectClass parent_class;
80 } GraphClass;
81
82 #define GRAPH_TYPE (graph_get_type())
83 #define GRAPH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GRAPH_TYPE, Graph))
84 #define GRAPH_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), GRAPH, GraphClass))
85 #define IS_GRAPH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GRAPH_TYPE))
86 #define IS_GRAPH_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), GRAPH_CLASS_TYPE))
87 #define GRAPH_GET_CLASS (G_TYPE_INSTANCE_GET_CLASS ((obj), GRAPH, GraphClass))
88
89 Graph *graph_new(void);
90 int graph_add_point(Graph* graph, double x, double y, const GString *label);
91 int graph_add_graph_point(Graph* graph, struct graph_point *pt);
92 int graph_add_line(Graph* graph, double p0_x, double p0_y, double p1_x, double p1_y, double p2_x, double p2_y, double p3_x, double p3_y);
93 int graph_add_graph_line(Graph* graph, struct graph_line *l);
94 void graph_add_linear_connectors(Graph* graph);
95 /*Provide x0, x3; x1 and x2 will be set*/
96 void graph_bezier_linear_to_cubic(double x0, double x3, double *x1, double *x2);
97 /*Provide x0, x1, x2.  x1 and x2 will be set appropriately.*/
98 void graph_bezier_quadratic_to_cubic(double x0, double x3, double *x1, double *x2);
99
100
101
102 #endif      /* !GRAPHCLASS_H_ */